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