Don't delete source file when decompressing to stdout
[oweals/busybox.git] / archival / tar.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini tar implementation for busybox 
4  *
5  * Modifed to use common extraction code used by ar, cpio, dpkg-deb, dpkg
6  *  Glenn McGrath <bug1@optushome.com.au>
7  *
8  * Note, that as of BusyBox-0.43, tar has been completely rewritten from the
9  * ground up.  It still has remnents of the old code lying about, but it is
10  * very different now (i.e., cleaner, less global variables, etc.)
11  *
12  * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
13  * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
14  *
15  * Based in part in the tar implementation in sash
16  *  Copyright (c) 1999 by David I. Bell
17  *  Permission is granted to use, distribute, or modify this source,
18  *  provided that this copyright notice remains intact.
19  *  Permission to distribute sash derived code under the GPL has been granted.
20  *
21  * Based in part on the tar implementation from busybox-0.28
22  *  Copyright (C) 1995 Bruce Perens
23  *  This is free software under the GNU General Public License.
24  *
25  * This program is free software; you can redistribute it and/or modify
26  * it under the terms of the GNU General Public License as published by
27  * the Free Software Foundation; either version 2 of the License, or
28  * (at your option) any later version.
29  *
30  * This program is distributed in the hope that it will be useful,
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33  * General Public License for more details.
34  *
35  * You should have received a copy of the GNU General Public License
36  * along with this program; if not, write to the Free Software
37  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
38  *
39  */
40
41 #include <fcntl.h>
42 #include <getopt.h>
43 #include <search.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <unistd.h>
47 #include <fnmatch.h>
48 #include <string.h>
49 #include <errno.h>
50 #include "unarchive.h"
51 #include "busybox.h"
52
53 #ifdef CONFIG_FEATURE_TAR_CREATE
54
55 /* Tar file constants  */
56 # define TAR_MAGIC          "ustar"        /* ustar and a null */
57 # define TAR_VERSION        "  "           /* Be compatable with GNU tar format */
58
59 # ifndef MAJOR
60 #  define MAJOR(dev) (((dev)>>8)&0xff)
61 #  define MINOR(dev) ((dev)&0xff)
62 # endif
63
64 static const int TAR_BLOCK_SIZE = 512;
65 static const int TAR_MAGIC_LEN = 6;
66 static const int TAR_VERSION_LEN = 2;
67
68 /* POSIX tar Header Block, from POSIX 1003.1-1990  */
69 enum { NAME_SIZE = 100 }; /* because gcc won't let me use 'static const int' */
70 struct TarHeader
71 {                            /* byte offset */
72         char name[NAME_SIZE];         /*   0-99 */
73         char mode[8];                 /* 100-107 */
74         char uid[8];                  /* 108-115 */
75         char gid[8];                  /* 116-123 */
76         char size[12];                /* 124-135 */
77         char mtime[12];               /* 136-147 */
78         char chksum[8];               /* 148-155 */
79         char typeflag;                /* 156-156 */
80         char linkname[NAME_SIZE];     /* 157-256 */
81         char magic[6];                /* 257-262 */
82         char version[2];              /* 263-264 */
83         char uname[32];               /* 265-296 */
84         char gname[32];               /* 297-328 */
85         char devmajor[8];             /* 329-336 */
86         char devminor[8];             /* 337-344 */
87         char prefix[155];             /* 345-499 */
88         char padding[12];             /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
89 };
90 typedef struct TarHeader TarHeader;
91
92 /*
93 ** writeTarFile(),  writeFileToTarball(), and writeTarHeader() are
94 ** the only functions that deal with the HardLinkInfo structure.
95 ** Even these functions use the xxxHardLinkInfo() functions.
96 */
97 typedef struct HardLinkInfo HardLinkInfo;
98 struct HardLinkInfo
99 {
100         HardLinkInfo *next;           /* Next entry in list */
101         dev_t dev;                    /* Device number */
102         ino_t ino;                    /* Inode number */
103         short linkCount;              /* (Hard) Link Count */
104         char name[1];                 /* Start of filename (must be last) */
105 };
106
107 /* Some info to be carried along when creating a new tarball */
108 struct TarBallInfo
109 {
110         char* fileName;               /* File name of the tarball */
111         int tarFd;                    /* Open-for-write file descriptor
112                                                                          for the tarball */
113         struct stat statBuf;          /* Stat info for the tarball, letting
114                                                                          us know the inode and device that the
115                                                                          tarball lives, so we can avoid trying 
116                                                                          to include the tarball into itself */
117         int verboseFlag;              /* Whether to print extra stuff or not */
118         char** excludeList;           /* List of files to not include */
119         HardLinkInfo *hlInfoHead;     /* Hard Link Tracking Information */
120         HardLinkInfo *hlInfo;         /* Hard Link Info for the current file */
121 };
122 typedef struct TarBallInfo TarBallInfo;
123
124 /* A nice enum with all the possible tar file content types */
125 enum TarFileType 
126 {
127         REGTYPE  = '0',            /* regular file */
128         REGTYPE0 = '\0',           /* regular file (ancient bug compat)*/
129         LNKTYPE  = '1',            /* hard link */
130         SYMTYPE  = '2',            /* symbolic link */
131         CHRTYPE  = '3',            /* character special */
132         BLKTYPE  = '4',            /* block special */
133         DIRTYPE  = '5',            /* directory */
134         FIFOTYPE = '6',            /* FIFO special */
135         CONTTYPE = '7',            /* reserved */
136         GNULONGLINK = 'K',         /* GNU long (>100 chars) link name */
137         GNULONGNAME = 'L',         /* GNU long (>100 chars) file name */
138 };
139 typedef enum TarFileType TarFileType;
140
141 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
142 static void
143 addHardLinkInfo (HardLinkInfo **hlInfoHeadPtr, dev_t dev, ino_t ino,
144                 short linkCount, const char *name)
145 {
146         /* Note: hlInfoHeadPtr can never be NULL! */
147         HardLinkInfo *hlInfo;
148
149         hlInfo = (HardLinkInfo *)xmalloc(sizeof(HardLinkInfo)+strlen(name)+1);
150         if (hlInfo) {
151                 hlInfo->next = *hlInfoHeadPtr;
152                 *hlInfoHeadPtr = hlInfo;
153                 hlInfo->dev = dev;
154                 hlInfo->ino = ino;
155                 hlInfo->linkCount = linkCount;
156                 strcpy(hlInfo->name, name);
157         }
158         return;
159 }
160
161 static void
162 freeHardLinkInfo (HardLinkInfo **hlInfoHeadPtr)
163 {
164         HardLinkInfo *hlInfo = NULL;
165         HardLinkInfo *hlInfoNext = NULL;
166
167         if (hlInfoHeadPtr) {
168                 hlInfo = *hlInfoHeadPtr;
169                 while (hlInfo) {
170                         hlInfoNext = hlInfo->next;
171                         free(hlInfo);
172                         hlInfo = hlInfoNext;
173                 }
174                 *hlInfoHeadPtr = NULL;
175         }
176         return;
177 }
178
179 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
180 static HardLinkInfo *
181 findHardLinkInfo (HardLinkInfo *hlInfo, dev_t dev, ino_t ino)
182 {
183         while(hlInfo) {
184                 if ((ino == hlInfo->ino) && (dev == hlInfo->dev))
185                         break;
186                 hlInfo = hlInfo->next;
187         }
188         return(hlInfo);
189 }
190
191 /* Put an octal string into the specified buffer.
192  * The number is zero and space padded and possibly null padded.
193  * Returns TRUE if successful.  */ 
194 static int putOctal (char *cp, int len, long value)
195 {
196         int tempLength;
197         char tempBuffer[32];
198         char *tempString = tempBuffer;
199
200         /* Create a string of the specified length with an initial space,
201          * leading zeroes and the octal number, and a trailing null.  */
202         sprintf (tempString, "%0*lo", len - 1, value);
203
204         /* If the string is too large, suppress the leading space.  */
205         tempLength = strlen (tempString) + 1;
206         if (tempLength > len) {
207                 tempLength--;
208                 tempString++;
209         }
210
211         /* If the string is still too large, suppress the trailing null.  */
212         if (tempLength > len)
213                 tempLength--;
214
215         /* If the string is still too large, fail.  */
216         if (tempLength > len)
217                 return FALSE;
218
219         /* Copy the string to the field.  */
220         memcpy (cp, tempString, len);
221
222         return TRUE;
223 }
224
225 /* Write out a tar header for the specified file/directory/whatever */
226 static int
227 writeTarHeader(struct TarBallInfo *tbInfo, const char *header_name,
228                 const char *real_name, struct stat *statbuf)
229 {
230         long chksum=0;
231         struct TarHeader header;
232         const unsigned char *cp = (const unsigned char *) &header;
233         ssize_t size = sizeof(struct TarHeader);
234                 
235         memset( &header, 0, size);
236
237         strncpy(header.name, header_name, sizeof(header.name)); 
238
239         putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
240         putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
241         putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
242         putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */
243         putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
244         strncpy(header.magic, TAR_MAGIC TAR_VERSION, 
245                         TAR_MAGIC_LEN + TAR_VERSION_LEN );
246
247         /* Enter the user and group names (default to root if it fails) */
248         my_getpwuid(header.uname, statbuf->st_uid);
249         if (! *header.uname)
250                 strcpy(header.uname, "root");
251         my_getgrgid(header.gname, statbuf->st_gid);
252         if (! *header.uname)
253                 strcpy(header.uname, "root");
254
255         if (tbInfo->hlInfo) {
256                 /* This is a hard link */
257                 header.typeflag = LNKTYPE;
258                 strncpy(header.linkname, tbInfo->hlInfo->name, sizeof(header.linkname));
259         } else if (S_ISLNK(statbuf->st_mode)) {
260                 char *lpath = xreadlink(real_name);
261                 if (!lpath) /* Already printed err msg inside xreadlink() */
262                         return ( FALSE);
263                 header.typeflag  = SYMTYPE;
264                 strncpy(header.linkname, lpath, sizeof(header.linkname)); 
265                 free(lpath);
266         } else if (S_ISDIR(statbuf->st_mode)) {
267                 header.typeflag  = DIRTYPE;
268                 strncat(header.name, "/", sizeof(header.name)); 
269         } else if (S_ISCHR(statbuf->st_mode)) {
270                 header.typeflag  = CHRTYPE;
271                 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
272                 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
273         } else if (S_ISBLK(statbuf->st_mode)) {
274                 header.typeflag  = BLKTYPE;
275                 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
276                 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
277         } else if (S_ISFIFO(statbuf->st_mode)) {
278                 header.typeflag  = FIFOTYPE;
279         } else if (S_ISREG(statbuf->st_mode)) {
280                 header.typeflag  = REGTYPE;
281                 putOctal(header.size, sizeof(header.size), statbuf->st_size);
282         } else {
283                 error_msg("%s: Unknown file type", real_name);
284                 return ( FALSE);
285         }
286
287         /* Calculate and store the checksum (i.e., the sum of all of the bytes of
288          * the header).  The checksum field must be filled with blanks for the
289          * calculation.  The checksum field is formatted differently from the
290          * other fields: it has [6] digits, a null, then a space -- rather than
291          * digits, followed by a null like the other fields... */
292         memset(header.chksum, ' ', sizeof(header.chksum));
293         cp = (const unsigned char *) &header;
294         while (size-- > 0)
295                 chksum += *cp++;
296         putOctal(header.chksum, 7, chksum);
297         
298         /* Now write the header out to disk */
299         if ((size=full_write(tbInfo->tarFd, (char*)&header, sizeof(struct TarHeader))) < 0) {
300                 error_msg(io_error, real_name, strerror(errno)); 
301                 return ( FALSE);
302         }
303         /* Pad the header up to the tar block size */
304         for (; size<TAR_BLOCK_SIZE; size++) {
305                 write(tbInfo->tarFd, "\0", 1);
306         }
307         /* Now do the verbose thing (or not) */
308         if (tbInfo->verboseFlag==TRUE) {
309                 FILE *vbFd = stdout;
310                 if (tbInfo->tarFd == fileno(stdout))    // If the archive goes to stdout, verbose to stderr
311                         vbFd = stderr;
312                 fprintf(vbFd, "%s\n", header.name);
313         }
314
315         return ( TRUE);
316 }
317
318 # if defined CONFIG_FEATURE_TAR_EXCLUDE
319 static int exclude_file(char **excluded_files, const char *file)
320 {
321         int i;
322
323         if (excluded_files == NULL)
324                 return 0;
325
326         for (i = 0; excluded_files[i] != NULL; i++) {
327                 if (excluded_files[i][0] == '/') {
328                         if (fnmatch(excluded_files[i], file,
329                                                 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
330                                 return 1;
331                 } else {
332                         const char *p;
333
334                         for (p = file; p[0] != '\0'; p++) {
335                                 if ((p == file || p[-1] == '/') && p[0] != '/' &&
336                                                 fnmatch(excluded_files[i], p,
337                                                         FNM_PATHNAME | FNM_LEADING_DIR) == 0)
338                                         return 1;
339                         }
340                 }
341         }
342
343         return 0;
344 }
345 #endif
346
347 static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData)
348 {
349         struct TarBallInfo *tbInfo = (struct TarBallInfo *)userData;
350         const char *header_name;
351
352         /*
353         ** Check to see if we are dealing with a hard link.
354         ** If so -
355         ** Treat the first occurance of a given dev/inode as a file while
356         ** treating any additional occurances as hard links.  This is done
357         ** by adding the file information to the HardLinkInfo linked list.
358         */
359         tbInfo->hlInfo = NULL;
360         if (statbuf->st_nlink > 1) {
361                 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf->st_dev, 
362                                 statbuf->st_ino);
363                 if (tbInfo->hlInfo == NULL)
364                         addHardLinkInfo (&tbInfo->hlInfoHead, statbuf->st_dev,
365                                         statbuf->st_ino, statbuf->st_nlink, fileName);
366         }
367
368         /* It is against the rules to archive a socket */
369         if (S_ISSOCK(statbuf->st_mode)) {
370                 error_msg("%s: socket ignored", fileName);
371                 return( TRUE);
372         }
373
374         /* It is a bad idea to store the archive we are in the process of creating,
375          * so check the device and inode to be sure that this particular file isn't
376          * the new tarball */
377         if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
378                         tbInfo->statBuf.st_ino == statbuf->st_ino) {
379                 error_msg("%s: file is the archive; skipping", fileName);
380                 return( TRUE);
381         }
382
383         header_name = fileName;
384         while (header_name[0] == '/') {
385                 static int alreadyWarned=FALSE;
386                 if (alreadyWarned==FALSE) {
387                         error_msg("Removing leading '/' from member names");
388                         alreadyWarned=TRUE;
389                 }
390                 header_name++;
391         }
392
393         if (strlen(fileName) >= NAME_SIZE) {
394                 error_msg(name_longer_than_foo, NAME_SIZE);
395                 return ( TRUE);
396         }
397
398         if (header_name[0] == '\0')
399                 return TRUE;
400
401 # if defined CONFIG_FEATURE_TAR_EXCLUDE
402         if (exclude_file(tbInfo->excludeList, header_name)) {
403                 return SKIP;
404         }
405 # endif //CONFIG_FEATURE_TAR_EXCLUDE
406
407         if (writeTarHeader(tbInfo, header_name, fileName, statbuf)==FALSE) {
408                 return( FALSE);
409         } 
410
411         /* Now, if the file is a regular file, copy it out to the tarball */
412         if ((tbInfo->hlInfo == NULL)
413         &&  (S_ISREG(statbuf->st_mode))) {
414                 int  inputFileFd;
415                 char buffer[BUFSIZ];
416                 ssize_t size=0, readSize=0;
417
418                 /* open the file we want to archive, and make sure all is well */
419                 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
420                         error_msg("%s: Cannot open: %s", fileName, strerror(errno));
421                         return( FALSE);
422                 }
423                 
424                 /* write the file to the archive */
425                 while ( (size = full_read(inputFileFd, buffer, sizeof(buffer))) > 0 ) {
426                         if (full_write(tbInfo->tarFd, buffer, size) != size ) {
427                                 /* Output file seems to have a problem */
428                                 error_msg(io_error, fileName, strerror(errno)); 
429                                 return( FALSE);
430                         }
431                         readSize+=size;
432                 }
433                 if (size == -1) {
434                         error_msg(io_error, fileName, strerror(errno)); 
435                         return( FALSE);
436                 }
437                 /* Pad the file up to the tar block size */
438                 for (; (readSize%TAR_BLOCK_SIZE) != 0; readSize++) {
439                         write(tbInfo->tarFd, "\0", 1);
440                 }
441                 close( inputFileFd);
442         }
443
444         return( TRUE);
445 }
446
447 static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
448                 char** excludeList)
449 {
450         int tarFd=-1;
451         int errorFlag=FALSE;
452         ssize_t size;
453         struct TarBallInfo tbInfo;
454         tbInfo.verboseFlag = verboseFlag;
455         tbInfo.hlInfoHead = NULL;
456
457         /* Make sure there is at least one file to tar up.  */
458         if (*argv == NULL)
459                 error_msg_and_die("Cowardly refusing to create an empty archive");
460
461         /* Open the tar file for writing.  */
462         if (tarName == NULL)
463                 tbInfo.tarFd = fileno(stdout);
464         else
465                 tbInfo.tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
466         if (tbInfo.tarFd < 0) {
467                 perror_msg( "Error opening '%s'", tarName);
468                 freeHardLinkInfo(&tbInfo.hlInfoHead);
469                 return ( FALSE);
470         }
471         tbInfo.excludeList=excludeList;
472         /* Store the stat info for the tarball's file, so
473          * can avoid including the tarball into itself....  */
474         if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
475                 error_msg_and_die(io_error, tarName, strerror(errno)); 
476
477         /* Read the directory/files and iterate over them one at a time */
478         while (*argv != NULL) {
479                 if (! recursive_action(*argv++, TRUE, FALSE, FALSE,
480                                         writeFileToTarball, writeFileToTarball, 
481                                         (void*) &tbInfo)) {
482                         errorFlag = TRUE;
483                 }
484         }
485         /* Write two empty blocks to the end of the archive */
486         for (size=0; size<(2*TAR_BLOCK_SIZE); size++) {
487                 write(tbInfo.tarFd, "\0", 1);
488         }
489
490         /* To be pedantically correct, we would check if the tarball
491          * is smaller than 20 tar blocks, and pad it if it was smaller,
492          * but that isn't necessary for GNU tar interoperability, and
493          * so is considered a waste of space */
494
495         /* Hang up the tools, close up shop, head home */
496         close(tarFd);
497         if (errorFlag) {
498                 error_msg("Error exit delayed from previous errors");
499                 freeHardLinkInfo(&tbInfo.hlInfoHead);
500                 return(FALSE);
501         }
502         freeHardLinkInfo(&tbInfo.hlInfoHead);
503         return( TRUE);
504 }
505 #endif //tar_create
506
507 void append_file_to_list(const char *new_name, char ***list, int *list_count)
508 {
509         *list = realloc(*list, sizeof(char *) * (*list_count + 2));
510         (*list)[*list_count] = xstrdup(new_name);
511         (*list_count)++;
512         (*list)[*list_count] = NULL;
513 }
514
515 void append_file_list_to_list(char *filename, char ***name_list, int *num_of_entries)
516 {
517         FILE *src_stream;
518         char *line;
519         
520         src_stream = xfopen(filename, "r");
521         while ((line = get_line_from_file(src_stream)) != NULL) {
522                 chomp (line);
523                 append_file_to_list(line, name_list, num_of_entries);
524                 free(line);
525         }
526         fclose(src_stream);
527 }
528
529 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
530 /*
531  * Create a list of names that are in the include list AND NOT in the exclude lists
532  */
533 char **list_and_not_list(char **include_list, char **exclude_list)
534 {
535         char **new_include_list = NULL;
536         int new_include_count = 0;
537         int include_count = 0;
538         int exclude_count;
539
540         if (include_list == NULL) {
541                 return(NULL);
542         }
543         
544         while (include_list[include_count] != NULL) {
545                 int found = FALSE;
546                 exclude_count = 0;
547                 while (exclude_list[exclude_count] != NULL) {
548                         if (strcmp(include_list[include_count], exclude_list[exclude_count]) == 0) {
549                                 found = TRUE;
550                                 break;
551                         }
552                         exclude_count++;
553                 }
554
555                 if (! found) {
556                         new_include_list = realloc(new_include_list, sizeof(char *) * (include_count + 2));
557                         new_include_list[new_include_count] = include_list[include_count];
558                         new_include_count++;
559                 } else {
560                         free(include_list[include_count]);
561                 }
562                 include_count++;
563         }
564         new_include_list[new_include_count] = NULL;
565         return(new_include_list);
566 }
567 #endif
568
569 int tar_main(int argc, char **argv)
570 {
571         enum untar_funct_e {
572                 /* This is optional */
573                 untar_unzip = 1,
574                 /* Require one and only one of these */
575                 untar_list = 2,
576                 untar_create = 4,
577                 untar_extract = 8
578         };
579
580         FILE *src_stream = NULL;
581         FILE *uncompressed_stream = NULL;
582         char **include_list = NULL;
583         char **exclude_list = NULL;
584         char *src_filename = NULL;
585         char *dst_prefix = NULL;
586         int opt;
587         unsigned short untar_funct = 0;
588         unsigned short untar_funct_required = 0;
589         unsigned short extract_function = 0;
590         int include_list_count = 0;
591 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
592         int exclude_list_count = 0;
593 #endif
594 #ifdef CONFIG_FEATURE_TAR_GZIP
595         int gunzip_pid;
596         int gz_fd = 0;
597 #endif
598
599         if (argc < 2) {
600                 show_usage();
601         }
602
603         /* Prepend '-' to the first argument if required */
604         if (argv[1][0] != '-') {
605                 char *tmp = xmalloc(strlen(argv[1]) + 2);
606                 tmp[0] = '-';
607                 strcpy(tmp + 1, argv[1]);
608                 argv[1] = tmp;
609         }
610
611         while ((opt = getopt(argc, argv, "ctxT:X:C:f:Opvz")) != -1) {
612                 switch (opt) {
613
614                 /* One and only one of these is required */
615                 case 'c':
616                         untar_funct_required |= untar_create;
617                         break;
618                 case 't':
619                         untar_funct_required |= untar_list;
620                         extract_function |= extract_list |extract_unconditional;
621                         break;
622                 case 'x':
623                         untar_funct_required |= untar_extract;
624                         extract_function |= (extract_all_to_fs | extract_unconditional | extract_create_leading_dirs);
625                         break;
626
627                 /* These are optional */
628                 /* Exclude or Include files listed in <filename>*/
629 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
630                 case 'X':
631                         append_file_list_to_list(optarg, &exclude_list, &exclude_list_count);
632                         break;
633 #endif
634                 case 'T':
635                         // by default a list is an include list
636                         append_file_list_to_list(optarg, &include_list, &include_list_count);
637                         break;
638
639                 case 'C':       // Change to dir <optarg>
640                         /* Make sure dst_prefix ends in a '/' */
641                         dst_prefix = concat_path_file(optarg, "/");
642                         break;
643                 case 'f':       // archive filename
644                         if (strcmp(optarg, "-") == 0) {
645                                 src_filename = NULL;
646                         } else {
647                                 src_filename = xstrdup(optarg);
648                         }
649                         break;
650                 case 'O':
651                         extract_function |= extract_to_stdout;
652                         break;
653                 case 'p':
654                         break;
655                 case 'v':
656                         if (extract_function & extract_list) {
657                                 extract_function |= extract_verbose_list;
658                         }
659                         extract_function |= extract_list;
660                         break;
661 #ifdef CONFIG_FEATURE_TAR_GZIP
662                 case 'z':
663                         untar_funct |= untar_unzip;
664                         break;
665 #endif
666                 default:
667                         show_usage();
668                 }
669         }
670
671         /* Make sure the valid arguments were passed */
672         if (untar_funct_required == 0) {
673                 error_msg_and_die("You must specify one of the `-ctx' options");
674         }
675         if ((untar_funct_required != untar_create) && 
676                         (untar_funct_required != untar_extract) &&
677                         (untar_funct_required != untar_list)) {
678                 error_msg_and_die("You may not specify more than one `ctx' option.");
679         }
680         untar_funct |= untar_funct_required;
681
682         /* Setup an array of filenames to work with */
683         while (optind < argc) {
684                 append_file_to_list(argv[optind], &include_list, &include_list_count);
685                 optind++;
686         }
687         if (extract_function & (extract_list | extract_all_to_fs)) {
688                 if (dst_prefix == NULL) {
689                         dst_prefix = xstrdup("./");
690                 }
691
692                 /* Setup the source of the tar data */
693                 if (src_filename != NULL) {
694                         src_stream = xfopen(src_filename, "r");
695                 } else {
696                         src_stream = stdin;
697                 }
698 #ifdef CONFIG_FEATURE_TAR_GZIP
699                 /* Get a binary tree of all the tar file headers */
700                 if (untar_funct & untar_unzip) {
701                         uncompressed_stream = gz_open(src_stream, &gunzip_pid);
702                 } else
703 #endif // CONFIG_FEATURE_TAR_GZIP
704                         uncompressed_stream = src_stream;
705                 
706                 /* extract or list archive */
707                 unarchive(uncompressed_stream, stdout, &get_header_tar, extract_function, dst_prefix, include_list, exclude_list);
708                 fclose(uncompressed_stream);
709         }
710 #ifdef CONFIG_FEATURE_TAR_CREATE
711         /* create an archive */
712         else if (untar_funct & untar_create) {
713                 int verboseFlag = FALSE;
714
715 #ifdef CONFIG_FEATURE_TAR_GZIP
716                 if (untar_funct & untar_unzip) {
717                         error_msg_and_die("Creation of compressed tarfile not internally support by tar, pipe to busybox gunzip");
718                 }
719 #endif // CONFIG_FEATURE_TAR_GZIP
720                 if (extract_function & extract_verbose_list) {
721                         verboseFlag = TRUE;
722                 }
723                 writeTarFile(src_filename, verboseFlag, include_list, exclude_list);
724         }
725 #endif // CONFIG_FEATURE_TAR_CREATE
726
727         /* Cleanups */
728 #ifdef CONFIG_FEATURE_TAR_GZIP
729         if (untar_funct & untar_unzip) {
730                 fclose(src_stream);
731                 close(gz_fd);
732                 gz_close(gunzip_pid);
733         }
734 #endif // CONFIG_FEATURE_TAR_GZIP
735 #ifdef CONFIG_FEATURE_CLEAN_UP
736         if (src_filename) {
737                 free(src_filename);
738         }
739 #endif
740         return(EXIT_SUCCESS);
741 }