Patch from Konstantin Isakov <ikm@pisem.net>:
[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 <signal.h>
51 #include <sys/wait.h>
52 #include <sys/socket.h>
53 #include "unarchive.h"
54 #include "busybox.h"
55
56 #ifdef CONFIG_FEATURE_TAR_CREATE
57
58 /* Tar file constants  */
59 # define TAR_MAGIC          "ustar"     /* ustar and a null */
60 # define TAR_VERSION        "  "        /* Be compatable with GNU tar format */
61
62 # ifndef MAJOR
63 #  define MAJOR(dev) (((dev)>>8)&0xff)
64 #  define MINOR(dev) ((dev)&0xff)
65 # endif
66
67 static const int TAR_BLOCK_SIZE = 512;
68 static const int TAR_MAGIC_LEN = 6;
69 static const int TAR_VERSION_LEN = 2;
70
71 /* POSIX tar Header Block, from POSIX 1003.1-1990  */
72 enum { NAME_SIZE = 100 };       /* because gcc won't let me use 'static const int' */
73 struct TarHeader {              /* byte offset */
74         char name[NAME_SIZE];   /*   0-99 */
75         char mode[8];           /* 100-107 */
76         char uid[8];            /* 108-115 */
77         char gid[8];            /* 116-123 */
78         char size[12];          /* 124-135 */
79         char mtime[12];         /* 136-147 */
80         char chksum[8];         /* 148-155 */
81         char typeflag;          /* 156-156 */
82         char linkname[NAME_SIZE];       /* 157-256 */
83         char magic[6];          /* 257-262 */
84         char version[2];        /* 263-264 */
85         char uname[32];         /* 265-296 */
86         char gname[32];         /* 297-328 */
87         char devmajor[8];       /* 329-336 */
88         char devminor[8];       /* 337-344 */
89         char prefix[155];       /* 345-499 */
90         char padding[12];       /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
91 };
92 typedef struct TarHeader TarHeader;
93
94 /*
95 ** writeTarFile(),  writeFileToTarball(), and writeTarHeader() are
96 ** the only functions that deal with the HardLinkInfo structure.
97 ** Even these functions use the xxxHardLinkInfo() functions.
98 */
99 typedef struct HardLinkInfo HardLinkInfo;
100 struct HardLinkInfo {
101         HardLinkInfo *next;     /* Next entry in list */
102         dev_t dev;                      /* Device number */
103         ino_t ino;                      /* Inode number */
104         short linkCount;        /* (Hard) Link Count */
105         char name[1];           /* Start of filename (must be last) */
106 };
107
108 /* Some info to be carried along when creating a new tarball */
109 struct TarBallInfo {
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         const llist_t *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         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 inline void addHardLinkInfo(HardLinkInfo ** hlInfoHeadPtr, dev_t dev,
142                                                                    ino_t ino, short linkCount,
143                                                                    const char *name)
144 {
145         /* Note: hlInfoHeadPtr can never be NULL! */
146         HardLinkInfo *hlInfo;
147
148         hlInfo =
149                 (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 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 inline HardLinkInfo *findHardLinkInfo(HardLinkInfo * hlInfo, dev_t dev,
180                                                                                          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 inline int writeTarHeader(struct TarBallInfo *tbInfo,
226                                                                  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,
258                                 sizeof(header.linkname));
259         } else if (S_ISLNK(statbuf->st_mode)) {
260                 char *lpath = xreadlink(real_name);
261
262                 if (!lpath)             /* Already printed err msg inside xreadlink() */
263                         return (FALSE);
264                 header.typeflag = SYMTYPE;
265                 strncpy(header.linkname, lpath, sizeof(header.linkname));
266                 free(lpath);
267         } else if (S_ISDIR(statbuf->st_mode)) {
268                 header.typeflag = DIRTYPE;
269                 strncat(header.name, "/", sizeof(header.name));
270         } else if (S_ISCHR(statbuf->st_mode)) {
271                 header.typeflag = CHRTYPE;
272                 putOctal(header.devmajor, sizeof(header.devmajor),
273                                  MAJOR(statbuf->st_rdev));
274                 putOctal(header.devminor, sizeof(header.devminor),
275                                  MINOR(statbuf->st_rdev));
276         } else if (S_ISBLK(statbuf->st_mode)) {
277                 header.typeflag = BLKTYPE;
278                 putOctal(header.devmajor, sizeof(header.devmajor),
279                                  MAJOR(statbuf->st_rdev));
280                 putOctal(header.devminor, sizeof(header.devminor),
281                                  MINOR(statbuf->st_rdev));
282         } else if (S_ISFIFO(statbuf->st_mode)) {
283                 header.typeflag = FIFOTYPE;
284         } else if (S_ISREG(statbuf->st_mode)) {
285                 header.typeflag = REGTYPE;
286                 putOctal(header.size, sizeof(header.size), statbuf->st_size);
287         } else {
288                 error_msg("%s: Unknown file type", real_name);
289                 return (FALSE);
290         }
291
292         /* Calculate and store the checksum (i.e., the sum of all of the bytes of
293          * the header).  The checksum field must be filled with blanks for the
294          * calculation.  The checksum field is formatted differently from the
295          * other fields: it has [6] digits, a null, then a space -- rather than
296          * digits, followed by a null like the other fields... */
297         memset(header.chksum, ' ', sizeof(header.chksum));
298         cp = (const unsigned char *) &header;
299         while (size-- > 0)
300                 chksum += *cp++;
301         putOctal(header.chksum, 7, chksum);
302
303         /* Now write the header out to disk */
304         if ((size =
305                  full_write(tbInfo->tarFd, (char *) &header,
306                                         sizeof(struct TarHeader))) < 0) {
307                 error_msg(io_error, real_name, strerror(errno));
308                 return (FALSE);
309         }
310         /* Pad the header up to the tar block size */
311         for (; size < TAR_BLOCK_SIZE; size++) {
312                 write(tbInfo->tarFd, "\0", 1);
313         }
314         /* Now do the verbose thing (or not) */
315
316         if (tbInfo->verboseFlag) {
317                 FILE *vbFd = stdout;
318
319                 if (tbInfo->verboseFlag == 2)   /* If the archive goes to stdout, verbose to stderr */
320                         vbFd = stderr;
321                 fprintf(vbFd, "%s\n", header.name);
322         }
323
324         return (TRUE);
325 }
326
327 # if defined CONFIG_FEATURE_TAR_EXCLUDE
328 static inline int exclude_file(const llist_t *excluded_files, const char *file)
329 {
330         if (excluded_files == NULL) {
331                 return 0;
332         }
333
334         while (excluded_files) {
335                 if (excluded_files->data[0] == '/') {
336                         if (fnmatch(excluded_files->data, file,
337                                                 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
338                                 return 1;
339                 } else {
340                         const char *p;
341
342                         for (p = file; p[0] != '\0'; p++) {
343                                 if ((p == file || p[-1] == '/') && p[0] != '/' &&
344                                         fnmatch(excluded_files->data, p,
345                                                         FNM_PATHNAME | FNM_LEADING_DIR) == 0)
346                                         return 1;
347                         }
348                 }
349                 excluded_files = excluded_files->link;
350         }
351
352         return 0;
353 }
354 #endif
355
356 static int writeFileToTarball(const char *fileName, struct stat *statbuf,
357                                                           void *userData)
358 {
359         struct TarBallInfo *tbInfo = (struct TarBallInfo *) userData;
360         const char *header_name;
361
362         /*
363            ** Check to see if we are dealing with a hard link.
364            ** If so -
365            ** Treat the first occurance of a given dev/inode as a file while
366            ** treating any additional occurances as hard links.  This is done
367            ** by adding the file information to the HardLinkInfo linked list.
368          */
369         tbInfo->hlInfo = NULL;
370         if (statbuf->st_nlink > 1) {
371                 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf->st_dev,
372                                                                                   statbuf->st_ino);
373                 if (tbInfo->hlInfo == NULL)
374                         addHardLinkInfo(&tbInfo->hlInfoHead, statbuf->st_dev,
375                                                         statbuf->st_ino, statbuf->st_nlink, fileName);
376         }
377
378         /* It is against the rules to archive a socket */
379         if (S_ISSOCK(statbuf->st_mode)) {
380                 error_msg("%s: socket ignored", fileName);
381                 return (TRUE);
382         }
383
384         /* It is a bad idea to store the archive we are in the process of creating,
385          * so check the device and inode to be sure that this particular file isn't
386          * the new tarball */
387         if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
388                 tbInfo->statBuf.st_ino == statbuf->st_ino) {
389                 error_msg("%s: file is the archive; skipping", fileName);
390                 return (TRUE);
391         }
392
393         header_name = fileName;
394         while (header_name[0] == '/') {
395                 static int alreadyWarned = FALSE;
396
397                 if (alreadyWarned == FALSE) {
398                         error_msg("Removing leading '/' from member names");
399                         alreadyWarned = TRUE;
400                 }
401                 header_name++;
402         }
403
404         if (strlen(fileName) >= NAME_SIZE) {
405                 error_msg(name_longer_than_foo, NAME_SIZE);
406                 return (TRUE);
407         }
408
409         if (header_name[0] == '\0')
410                 return TRUE;
411
412 # if defined CONFIG_FEATURE_TAR_EXCLUDE
413         if (exclude_file(tbInfo->excludeList, header_name)) {
414                 return SKIP;
415         }
416 # endif                                                 /* CONFIG_FEATURE_TAR_EXCLUDE */
417
418         if (writeTarHeader(tbInfo, header_name, fileName, statbuf) == FALSE) {
419                 return (FALSE);
420         }
421
422         /* Now, if the file is a regular file, copy it out to the tarball */
423         if ((tbInfo->hlInfo == NULL)
424                 && (S_ISREG(statbuf->st_mode))) {
425                 int inputFileFd;
426                 char buffer[BUFSIZ];
427                 ssize_t size = 0, readSize = 0;
428
429                 /* open the file we want to archive, and make sure all is well */
430                 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
431                         error_msg("%s: Cannot open: %s", fileName, strerror(errno));
432                         return (FALSE);
433                 }
434
435                 /* write the file to the archive */
436                 while ((size = full_read(inputFileFd, buffer, sizeof(buffer))) > 0) {
437                         if (full_write(tbInfo->tarFd, buffer, size) != size) {
438                                 /* Output file seems to have a problem */
439                                 error_msg(io_error, fileName, strerror(errno));
440                                 return (FALSE);
441                         }
442                         readSize += size;
443                 }
444                 if (size == -1) {
445                         error_msg(io_error, fileName, strerror(errno));
446                         return (FALSE);
447                 }
448                 /* Pad the file up to the tar block size */
449                 for (; (readSize % TAR_BLOCK_SIZE) != 0; readSize++) {
450                         write(tbInfo->tarFd, "\0", 1);
451                 }
452                 close(inputFileFd);
453         }
454
455         return (TRUE);
456 }
457
458 static inline int writeTarFile(const char *tarName, const int verboseFlag,
459                                                            const llist_t *include, const llist_t *exclude, const int gzip)
460 {
461 #ifdef CONFIG_FEATURE_TAR_GZIP
462         int gzipDataPipe[2] = { -1, -1 };
463         int gzipStatusPipe[2] = { -1, -1 };
464         pid_t gzipPid = 0;
465 #endif
466
467         int errorFlag = FALSE;
468         ssize_t size;
469         struct TarBallInfo tbInfo;
470
471         tbInfo.hlInfoHead = NULL;
472
473         /* Make sure there is at least one file to tar up.  */
474         if (include == NULL) {
475                 error_msg_and_die("Cowardly refusing to create an empty archive");
476         }
477
478         /* Open the tar file for writing.  */
479         if (tarName == NULL) {
480                 tbInfo.tarFd = fileno(stdout);
481                 tbInfo.verboseFlag = verboseFlag ? 2 : 0;
482         } else {
483                 tbInfo.tarFd = open(tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
484                 tbInfo.verboseFlag = verboseFlag ? 1 : 0;
485         }
486
487         if (tbInfo.tarFd < 0) {
488                 perror_msg("Error opening '%s'", tarName);
489                 freeHardLinkInfo(&tbInfo.hlInfoHead);
490                 return (FALSE);
491         }
492
493         /* Store the stat info for the tarball's file, so
494          * can avoid including the tarball into itself....  */
495         if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
496                 error_msg_and_die(io_error, tarName, strerror(errno));
497
498 #ifdef CONFIG_FEATURE_TAR_GZIP
499         if (gzip) {
500                 if (socketpair(AF_UNIX, SOCK_STREAM, 0, gzipDataPipe) < 0
501                         || pipe(gzipStatusPipe) < 0)
502                         perror_msg_and_die("Failed to create gzip pipe");
503
504                 signal(SIGPIPE, SIG_IGN);       /* we only want EPIPE on errors */
505
506                 gzipPid = fork();
507
508                 if (gzipPid == 0) {
509                         dup2(gzipDataPipe[0], 0);
510                         close(gzipDataPipe[1]);
511
512                         if (tbInfo.tarFd != 1);
513                         dup2(tbInfo.tarFd, 1);
514
515                         close(gzipStatusPipe[0]);
516                         fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC);  /* close on exec shows sucess */
517
518                         execl("/bin/gzip", "gzip", "-f", 0);
519
520                         write(gzipStatusPipe[1], "", 1);
521                         close(gzipStatusPipe[1]);
522
523                         exit(-1);
524                 } else if (gzipPid > 0) {
525                         close(gzipDataPipe[0]);
526                         close(gzipStatusPipe[1]);
527
528                         while (1) {
529                                 char buf;
530
531                                 int n = read(gzipStatusPipe[0], &buf, 1);
532
533                                 if (n == 1)
534                                         error_msg_and_die("Could not exec gzip process");       /* socket was not closed => error */
535                                 else if ((n < 0) && (errno == EAGAIN || errno == EINTR))
536                                         continue;       /* try it again */
537                                 break;
538                         }
539                         close(gzipStatusPipe[0]);
540
541                         tbInfo.tarFd = gzipDataPipe[1];
542                 } else {
543                         perror_msg_and_die("Failed to fork gzip process");
544                 }
545         }
546 #endif
547
548         tbInfo.excludeList = exclude;
549
550         /* Read the directory/files and iterate over them one at a time */
551         while (include) {
552                 if (!recursive_action(include->data, TRUE, FALSE, FALSE,
553                                                           writeFileToTarball, writeFileToTarball,
554                                                           (void *) &tbInfo)) {
555                         errorFlag = TRUE;
556                 }
557                 include = include->link;
558         }
559         /* Write two empty blocks to the end of the archive */
560         for (size = 0; size < (2 * TAR_BLOCK_SIZE); size++) {
561                 write(tbInfo.tarFd, "\0", 1);
562         }
563
564         /* To be pedantically correct, we would check if the tarball
565          * is smaller than 20 tar blocks, and pad it if it was smaller,
566          * but that isn't necessary for GNU tar interoperability, and
567          * so is considered a waste of space */
568
569         /* Hang up the tools, close up shop, head home */
570         close(tbInfo.tarFd);
571         if (errorFlag)
572                 error_msg("Error exit delayed from previous errors");
573
574         freeHardLinkInfo(&tbInfo.hlInfoHead);
575
576 #ifdef CONFIG_FEATURE_TAR_GZIP
577         if (gzip && gzipPid) {
578                 if (waitpid(gzipPid, NULL, 0) == -1)
579                         printf("Couldnt wait ?");
580         }
581 #endif
582
583         return !errorFlag;
584 }
585 #endif                                                  /* tar_create */
586
587 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
588 static const llist_t *append_file_list_to_list(const char *filename, const llist_t *list)
589 {
590         FILE *src_stream = xfopen(filename, "r");
591         while(1) {
592                 char *line = get_line_from_file(src_stream);
593                 if (line == NULL) {
594                         break;
595                 }
596                 chomp(line);
597                 list = add_to_list(list, line);
598                 free(line);
599         }
600         fclose(src_stream);
601
602         return (list);
603 }
604 #endif
605
606 int tar_main(int argc, char **argv)
607 {
608 #ifdef CONFIG_FEATURE_TAR_GZIP
609         char (*get_header_ptr)(archive_handle_t *) = get_header_tar;
610 #endif
611         archive_handle_t *tar_handle;
612         int opt;
613         char *base_dir = NULL;
614
615 #ifdef CONFIG_FEATURE_TAR_CREATE
616         char *src_filename = NULL;
617         unsigned char tar_create = FALSE;
618 #endif
619
620         if (argc < 2) {
621                 show_usage();
622         }
623
624         /* Initialise default values */
625         tar_handle = init_handle();
626         tar_handle->src_fd = fileno(stdin);
627         tar_handle->flags = ARCHIVE_CREATE_LEADING_DIRS;
628
629         while ((opt = getopt(argc, argv, "ctxT:X:C:f:Opvz")) != -1) {
630                 switch (opt) {
631                         /* One and only one of these is required */
632 #ifdef CONFIG_FEATURE_TAR_CREATE
633                 case 'c':
634                         tar_create = TRUE;
635                         break;
636 #endif
637                 case 't':
638                         if ((tar_handle->action_header == header_list) || 
639                                 (tar_handle->action_header == header_verbose_list)) {
640                                 tar_handle->action_header = header_verbose_list;
641                         } else {
642                                 tar_handle->action_header = header_list;
643                         }
644                         break;
645                 case 'x':
646                         tar_handle->action_data = data_extract_all;
647                         break;
648
649                         /* These are optional */
650                         /* Exclude or Include files listed in <filename> */
651 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
652                 case 'X':
653                         tar_handle->reject =
654                                 append_file_list_to_list(optarg, tar_handle->reject);
655                         break;
656 #endif
657                 case 'T':
658                         /* by default a list is an include list */
659                         break;
660                 case 'C':               /* Change to dir <optarg> */
661                         base_dir = optarg;
662                         break;
663                 case 'f':               /* archive filename */
664 #ifdef CONFIG_FEATURE_TAR_CREATE
665                         src_filename = optarg;
666 #endif
667                         tar_handle->src_fd = xopen(optarg, O_RDONLY);
668                         break;
669                 case 'O':               /* To stdout */
670                         tar_handle->action_data = data_extract_to_stdout;
671                         break;
672                 case 'p':
673                         tar_handle->flags |= ARCHIVE_PRESERVE_DATE;
674                         break;
675                 case 'v':
676                         if ((tar_handle->action_header == header_list) || 
677                                 (tar_handle->action_header == header_verbose_list)) {
678                                 tar_handle->action_header = header_verbose_list;
679                         } else {
680                                 tar_handle->action_header = header_list;
681                         }
682                         break;
683 #ifdef CONFIG_FEATURE_TAR_GZIP
684                 case 'z':
685                         get_header_ptr = get_header_tar_gz;
686                         break;
687 #endif
688 #ifdef CONFIG_FEATURE_TAR_BZIP2
689                         /* Not enabled yet */
690                 case 'j':
691                         archive_handle->archive_action = bunzip2;
692                         break;
693 #endif
694                 default:
695                         show_usage();
696                 }
697         }
698
699         if (*argv[optind] == '-') {
700                 optind++;
701         }
702
703         /* Setup an array of filenames to work with */
704         /* TODO: This is the same as in ar, seperate function ? */
705         while (optind < argc) {
706                 char absolute_path[PATH_MAX];
707
708                 realpath(argv[optind], absolute_path);
709                 tar_handle->accept = add_to_list(tar_handle->accept, absolute_path);
710                 optind++;
711 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
712                 if (tar_handle->reject) {
713                         tar_handle->filter = filter_accept_reject_list;
714                 } else
715 #endif
716                         tar_handle->filter = filter_accept_list;
717                 }
718
719         if ((base_dir) && (chdir(base_dir))) {
720                 perror_msg_and_die("Couldnt chdir");
721                 }
722
723 #ifdef CONFIG_FEATURE_TAR_CREATE
724         /* create an archive */
725         if (tar_create == TRUE) {
726                 int verboseFlag = FALSE;
727                 int gzipFlag = FALSE;
728
729 # ifdef CONFIG_FEATURE_TAR_GZIP
730                 if (get_header_ptr == get_header_tar_gz) {
731                         gzipFlag = TRUE;
732                 }
733 # endif
734                 if (tar_handle->action_header == header_verbose_list) {
735                         verboseFlag = TRUE;
736         }
737                 writeTarFile(src_filename, verboseFlag, tar_handle->accept,
738                         tar_handle->reject, gzipFlag);
739         } else 
740 #endif
741 #ifdef CONFIG_FEATURE_TAR_GZIP
742                 if (get_header_ptr == get_header_tar_gz) {
743                         get_header_tar_gz(tar_handle);
744                 } else
745 #endif
746                         while (get_header_tar(tar_handle) == EXIT_SUCCESS);
747
748 #ifdef CONFIG_FEATURE_CLEAN_UP
749         if (tar_handle->src_fd != fileno(stdin)) {
750                 close(tar_handle->src_fd);
751         }
752 #endif
753
754         return(EXIT_SUCCESS);
755 }