tar: fix multiple -t and/or -v options handling.
authorDenis Vlasenko <vda.linux@googlemail.com>
Fri, 24 Nov 2006 21:55:55 +0000 (21:55 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Fri, 24 Nov 2006 21:55:55 +0000 (21:55 -0000)
do not process list of files to tar up in reverse order.

archival/tar.c
libbb/last_char_is.c

index 4d237f8809ccdba100d38560f40bb7d5af40ebf7..b326d1e8865ab311fc8e37dd3a124eb7f7cc870d 100644 (file)
@@ -276,13 +276,13 @@ static int writeTarHeader(struct TarBallInfo *tbInfo,
        xwrite(tbInfo->tarFd, &header, sizeof(struct TarHeader));
 
        /* Now do the verbose thing (or not) */
-
        if (tbInfo->verboseFlag) {
                FILE *vbFd = stdout;
 
                if (tbInfo->tarFd == STDOUT_FILENO)     /* If the archive goes to stdout, verbose to stderr */
                        vbFd = stderr;
-
+               /* GNU "tar cvvf" prints "extended" listing a-la "ls -l" */
+               /* We don't have such excesses here: for us "v" == "vv" */
                fprintf(vbFd, "%s\n", header.name);
        }
 
@@ -549,9 +549,10 @@ static llist_t *append_file_list_to_list(llist_t *list)
                cur = cur->link;
                free(tmp);
                while ((line = xmalloc_getline(src_stream)) != NULL) {
-                       char *filename_ptr = last_char_is(line, '/');
-                       if (filename_ptr > line)
-                               *filename_ptr = '\0';
+                       /* kill trailing '/' unless the string is just "/" */
+                       char *cp = last_char_is(line, '/');
+                       if (cp > line)
+                               *cp = '\0';
                        llist_add_to(&newlist, line);
                }
                fclose(src_stream);
@@ -664,6 +665,7 @@ int tar_main(int argc, char **argv)
        char *base_dir = NULL;
        const char *tar_filename = "-";
        unsigned opt;
+       int verboseFlag = 0;
        llist_t *excludes = NULL;
 
        /* Initialise default values */
@@ -674,6 +676,7 @@ int tar_main(int argc, char **argv)
 
        /* Prepend '-' to the first argument if required */
        opt_complementary = "--:" // first arg is options
+               "tt:vv:" // count -t,-v
                "?:" // bail out with usage instead of error return
                "X::T::" // cumulative lists
                "\xfd::" // cumulative lists for --exclude
@@ -695,31 +698,20 @@ int tar_main(int argc, char **argv)
                &tar_filename, // -f filename
                USE_FEATURE_TAR_FROM(&(tar_handle->accept),) // T
                USE_FEATURE_TAR_FROM(&(tar_handle->reject),) // X
-               USE_FEATURE_TAR_FROM(&excludes             ) // --exclude
+               USE_FEATURE_TAR_FROM(&excludes            ,) // --exclude
+               &verboseFlag, // combined count for -t and -v
+               &verboseFlag // combined count for -t and -v
                );
 
-       if (opt & OPT_TEST) {
-               if (tar_handle->action_header == header_list
-                || tar_handle->action_header == header_verbose_list
-               ) {
-                       tar_handle->action_header = header_verbose_list;
-               } else
-                       tar_handle->action_header = header_list;
-       }
+       if (verboseFlag) tar_handle->action_header = header_verbose_list;
+       if (verboseFlag == 1) tar_handle->action_header = header_list;
+
        if ((opt & OPT_EXTRACT) && tar_handle->action_data != data_extract_to_stdout)
                tar_handle->action_data = data_extract_all;
 
        if (opt & OPT_2STDOUT)
                tar_handle->action_data = data_extract_to_stdout;
 
-       if (opt & OPT_VERBOSE) {
-               if (tar_handle->action_header == header_list
-                || tar_handle->action_header == header_verbose_list
-               ) {
-                       tar_handle->action_header = header_verbose_list;
-               } else
-                       tar_handle->action_header = header_list;
-       }
        if (opt & OPT_KEEP_OLD)
                tar_handle->flags &= ~ARCHIVE_EXTRACT_UNCONDITIONAL;
 
@@ -762,13 +754,14 @@ int tar_main(int argc, char **argv)
        /* Setup an array of filenames to work with */
        /* TODO: This is the same as in ar, separate function ? */
        while (optind < argc) {
-               char *filename_ptr = last_char_is(argv[optind], '/');
-               if (filename_ptr > argv[optind])
-                       *filename_ptr = '\0';
-
-               llist_add_to(&(tar_handle->accept), argv[optind]);
+               /* kill trailing '/' unless the string is just "/" */
+               char *cp = last_char_is(argv[optind], '/');
+               if (cp > argv[optind])
+                       *cp = '\0';
+               llist_add_to(&tar_handle->accept, argv[optind]);
                optind++;
        }
+       tar_handle->accept = rev_llist(tar_handle->accept);
 
        if (tar_handle->accept || tar_handle->reject)
                tar_handle->filter = filter_accept_reject_list;
@@ -805,22 +798,14 @@ int tar_main(int argc, char **argv)
 
        /* create an archive */
        if (opt & OPT_CREATE) {
-               int verboseFlag = FALSE;
                int zipMode = 0;
-
                if (ENABLE_FEATURE_TAR_GZIP && get_header_ptr == get_header_tar_gz)
                        zipMode = 1;
                if (ENABLE_FEATURE_TAR_BZIP2 && get_header_ptr == get_header_tar_bz2)
                        zipMode = 2;
-
-               if (tar_handle->action_header == header_list
-                || tar_handle->action_header == header_verbose_list
-               ) {
-                       verboseFlag = TRUE;
-               }
                writeTarFile(tar_handle->src_fd, verboseFlag, opt & OPT_DEREFERENCE,
                                tar_handle->accept,
-                       tar_handle->reject, zipMode);
+                               tar_handle->reject, zipMode);
                /* NB: writeTarFile() closes tar_handle->src_fd */
                return EXIT_SUCCESS;
        }
index 9194ac05f03a24cac9da6870942f9db4716cfccf..80a6fe2e4e7be821341e16943f39d6d077a53c10 100644 (file)
@@ -7,20 +7,19 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#include <string.h>
 #include "libbb.h"
 
 /* Find out if the last character of a string matches the one given Don't
  * underrun the buffer if the string length is 0.  Also avoids a possible
  * space-hogging inline of strlen() per usage.
  */
-char * last_char_is(const char *s, int c)
+char* last_char_is(const char *s, int c)
 {
-       char *sret = (char *)s;
-       if (sret) {
-               sret = strrchr(sret, c);
-               if(sret != NULL && *(sret+1) != 0)
-                       sret = NULL;
+       char *sret;
+       if (s) {
+               sret = strrchr(s, c);
+               if (sret && !sret[1])
+                       return sret;
        }
-       return sret;
+       return NULL;
 }