diff options
| author | Werner Koch <[email protected]> | 2022-03-22 09:19:55 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2022-03-22 09:19:55 +0000 |
| commit | ed53d41b4c463072bac30b0e4c73f8bf445bd22d (patch) | |
| tree | 70e419b21ec837f0f864304962bfc084f0c9e62f /tools/gpgtar-extract.c | |
| parent | dirmngr: Make WKD_GET work even for servers not handling SRV RRs. (diff) | |
| download | gnupg-ed53d41b4c463072bac30b0e4c73f8bf445bd22d.tar.gz gnupg-ed53d41b4c463072bac30b0e4c73f8bf445bd22d.zip | |
gpgtar: New option --with-log
* tools/gpgtar.c: New option --with-log.
* tools/gpgtar.h (opt): Add field with_log.
* tools/gpgtar-extract.c (gpgtar_extract): Move directory string
building up. Add option --log-file if needed.
* tools/gpgtar-create.c (gpgtar_create): Make tmpbuf static becuase it
is used outside of its scope.
* tools/gpgtar-list.c (gpgtar_list): Ditto.
Diffstat (limited to 'tools/gpgtar-extract.c')
| -rw-r--r-- | tools/gpgtar-extract.c | 81 |
1 files changed, 45 insertions, 36 deletions
diff --git a/tools/gpgtar-extract.c b/tools/gpgtar-extract.c index 5f907733b..832039b2c 100644 --- a/tools/gpgtar-extract.c +++ b/tools/gpgtar-extract.c @@ -325,9 +325,46 @@ gpgtar_extract (const char *filename, int decrypt) struct tarinfo_s tarinfo_buffer; tarinfo_t tarinfo = &tarinfo_buffer; pid_t pid = (pid_t)(-1); + char *logfilename = NULL; + memset (&tarinfo_buffer, 0, sizeof tarinfo_buffer); + if (opt.directory) + dirname = xtrystrdup (opt.directory); + else + { + if (opt.filename) + { + dirprefix = strrchr (opt.filename, '/'); + if (dirprefix) + dirprefix++; + else + dirprefix = opt.filename; + } + else if (filename) + { + dirprefix = strrchr (filename, '/'); + if (dirprefix) + dirprefix++; + else + dirprefix = filename; + } + + if (!dirprefix || !*dirprefix) + dirprefix = "GPGARCH"; + + dirname = create_directory (dirprefix); + if (!dirname) + { + err = gpg_error (GPG_ERR_GENERAL); + goto leave; + } + } + + if (opt.verbose) + log_info ("extracting to '%s/'\n", dirname); + if (decrypt) { strlist_t arg; @@ -341,11 +378,17 @@ gpgtar_extract (const char *filename, int decrypt) ccparray_put (&ccp, "--require-compliance"); if (opt.status_fd != -1) { - char tmpbuf[40]; + static char tmpbuf[40]; snprintf (tmpbuf, sizeof tmpbuf, "--status-fd=%d", opt.status_fd); ccparray_put (&ccp, tmpbuf); } + if (opt.with_log) + { + ccparray_put (&ccp, "--log-file"); + logfilename = xstrconcat (dirname, ".log", NULL); + ccparray_put (&ccp, logfilename); + } ccparray_put (&ccp, "--output"); ccparray_put (&ccp, "-"); ccparray_put (&ccp, "--decrypt"); @@ -396,41 +439,6 @@ gpgtar_extract (const char *filename, int decrypt) } - if (opt.directory) - dirname = xtrystrdup (opt.directory); - else - { - if (opt.filename) - { - dirprefix = strrchr (opt.filename, '/'); - if (dirprefix) - dirprefix++; - else - dirprefix = opt.filename; - } - else if (filename) - { - dirprefix = strrchr (filename, '/'); - if (dirprefix) - dirprefix++; - else - dirprefix = filename; - } - - if (!dirprefix || !*dirprefix) - dirprefix = "GPGARCH"; - - dirname = create_directory (dirprefix); - if (!dirname) - { - err = gpg_error (GPG_ERR_GENERAL); - goto leave; - } - } - - if (opt.verbose) - log_info ("extracting to '%s/'\n", dirname); - for (;;) { err = gpgtar_read_header (stream, tarinfo, &header, &extheader); @@ -470,6 +478,7 @@ gpgtar_extract (const char *filename, int decrypt) free_strlist (extheader); xfree (header); xfree (dirname); + xfree (logfilename); if (stream != es_stdin) es_fclose (stream); return err; |
