b6c2ef91e20f720a10cd4167983450c8a1cbc529
[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,
142                                         struct stat *statbuf,
143                                         const char *name)
144 {
145         /* Note: hlInfoHeadPtr can never be NULL! */
146         HardLinkInfo *hlInfo;
147
148         hlInfo = (HardLinkInfo *) xmalloc(sizeof(HardLinkInfo) + strlen(name));
149         hlInfo->next = *hlInfoHeadPtr;
150         *hlInfoHeadPtr = hlInfo;
151         hlInfo->dev = statbuf->st_dev;
152         hlInfo->ino = statbuf->st_ino;
153         hlInfo->linkCount = statbuf->st_nlink;
154         strcpy(hlInfo->name, name);
155 }
156
157 static void freeHardLinkInfo(HardLinkInfo ** hlInfoHeadPtr)
158 {
159         HardLinkInfo *hlInfo = NULL;
160         HardLinkInfo *hlInfoNext = NULL;
161
162         if (hlInfoHeadPtr) {
163                 hlInfo = *hlInfoHeadPtr;
164                 while (hlInfo) {
165                         hlInfoNext = hlInfo->next;
166                         free(hlInfo);
167                         hlInfo = hlInfoNext;
168                 }
169                 *hlInfoHeadPtr = NULL;
170         }
171         return;
172 }
173
174 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
175 static inline HardLinkInfo *findHardLinkInfo(HardLinkInfo * hlInfo, struct stat *statbuf)
176 {
177         while (hlInfo) {
178                 if ((statbuf->st_ino == hlInfo->ino) && (statbuf->st_dev == hlInfo->dev))
179                         break;
180                 hlInfo = hlInfo->next;
181         }
182         return (hlInfo);
183 }
184
185 /* Put an octal string into the specified buffer.
186  * The number is zero and space padded and possibly null padded.
187  * Returns TRUE if successful.  */
188 static int putOctal(char *cp, int len, long value)
189 {
190         int tempLength;
191         char tempBuffer[32];
192         char *tempString = tempBuffer;
193
194         /* Create a string of the specified length with an initial space,
195          * leading zeroes and the octal number, and a trailing null.  */
196         sprintf(tempString, "%0*lo", len - 1, value);
197
198         /* If the string is too large, suppress the leading space.  */
199         tempLength = strlen(tempString) + 1;
200         if (tempLength > len) {
201                 tempLength--;
202                 tempString++;
203         }
204
205         /* If the string is still too large, suppress the trailing null.  */
206         if (tempLength > len)
207                 tempLength--;
208
209         /* If the string is still too large, fail.  */
210         if (tempLength > len)
211                 return FALSE;
212
213         /* Copy the string to the field.  */
214         memcpy(cp, tempString, len);
215
216         return TRUE;
217 }
218
219 /* Write out a tar header for the specified file/directory/whatever */
220 static inline int writeTarHeader(struct TarBallInfo *tbInfo,
221                                                                  const char *header_name,
222                                                                  const char *real_name, struct stat *statbuf)
223 {
224         long chksum = 0;
225         struct TarHeader header;
226         const unsigned char *cp = (const unsigned char *) &header;
227         ssize_t size = sizeof(struct TarHeader);
228
229         memset(&header, 0, size);
230
231         strncpy(header.name, header_name, sizeof(header.name));
232
233         putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
234         putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
235         putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
236         putOctal(header.size, sizeof(header.size), 0);  /* Regular file size is handled later */
237         putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
238         strncpy(header.magic, TAR_MAGIC TAR_VERSION,
239                         TAR_MAGIC_LEN + TAR_VERSION_LEN);
240
241         /* Enter the user and group names (default to root if it fails) */
242         if (my_getpwuid(header.uname, statbuf->st_uid) == NULL)
243                 strcpy(header.uname, "root");
244         if (my_getgrgid(header.gname, statbuf->st_gid) == NULL)
245                 strcpy(header.gname, "root");
246
247         if (tbInfo->hlInfo) {
248                 /* This is a hard link */
249                 header.typeflag = LNKTYPE;
250                 strncpy(header.linkname, tbInfo->hlInfo->name,
251                                 sizeof(header.linkname));
252         } else if (S_ISLNK(statbuf->st_mode)) {
253                 char *lpath = xreadlink(real_name);
254
255                 if (!lpath)             /* Already printed err msg inside xreadlink() */
256                         return (FALSE);
257                 header.typeflag = SYMTYPE;
258                 strncpy(header.linkname, lpath, sizeof(header.linkname));
259                 free(lpath);
260         } else if (S_ISDIR(statbuf->st_mode)) {
261                 header.typeflag = DIRTYPE;
262                 strncat(header.name, "/", sizeof(header.name));
263         } else if (S_ISCHR(statbuf->st_mode)) {
264                 header.typeflag = CHRTYPE;
265                 putOctal(header.devmajor, sizeof(header.devmajor),
266                                  MAJOR(statbuf->st_rdev));
267                 putOctal(header.devminor, sizeof(header.devminor),
268                                  MINOR(statbuf->st_rdev));
269         } else if (S_ISBLK(statbuf->st_mode)) {
270                 header.typeflag = BLKTYPE;
271                 putOctal(header.devmajor, sizeof(header.devmajor),
272                                  MAJOR(statbuf->st_rdev));
273                 putOctal(header.devminor, sizeof(header.devminor),
274                                  MINOR(statbuf->st_rdev));
275         } else if (S_ISFIFO(statbuf->st_mode)) {
276                 header.typeflag = FIFOTYPE;
277         } else if (S_ISREG(statbuf->st_mode)) {
278                 header.typeflag = REGTYPE;
279                 putOctal(header.size, sizeof(header.size), statbuf->st_size);
280         } else {
281                 bb_error_msg("%s: Unknown file type", real_name);
282                 return (FALSE);
283         }
284
285         /* Calculate and store the checksum (i.e., the sum of all of the bytes of
286          * the header).  The checksum field must be filled with blanks for the
287          * calculation.  The checksum field is formatted differently from the
288          * other fields: it has [6] digits, a null, then a space -- rather than
289          * digits, followed by a null like the other fields... */
290         memset(header.chksum, ' ', sizeof(header.chksum));
291         cp = (const unsigned char *) &header;
292         while (size-- > 0)
293                 chksum += *cp++;
294         putOctal(header.chksum, 7, chksum);
295
296         /* Now write the header out to disk */
297         if ((size =
298                  bb_full_write(tbInfo->tarFd, (char *) &header,
299                                         sizeof(struct TarHeader))) < 0) {
300                 bb_error_msg(bb_msg_io_error, real_name);
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
309         if (tbInfo->verboseFlag) {
310                 FILE *vbFd = stdout;
311
312                 if (tbInfo->verboseFlag == 2)   /* If the archive goes to stdout, verbose to stderr */
313                         vbFd = stderr;
314                 fprintf(vbFd, "%s\n", header.name);
315         }
316
317         return (TRUE);
318 }
319
320 # if defined CONFIG_FEATURE_TAR_EXCLUDE
321 static inline int exclude_file(const llist_t *excluded_files, const char *file)
322 {
323         if (excluded_files == NULL) {
324                 return 0;
325         }
326
327         while (excluded_files) {
328                 if (excluded_files->data[0] == '/') {
329                         if (fnmatch(excluded_files->data, file,
330                                                 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
331                                 return 1;
332                 } else {
333                         const char *p;
334
335                         for (p = file; p[0] != '\0'; p++) {
336                                 if ((p == file || p[-1] == '/') && p[0] != '/' &&
337                                         fnmatch(excluded_files->data, p,
338                                                         FNM_PATHNAME | FNM_LEADING_DIR) == 0)
339                                         return 1;
340                         }
341                 }
342                 excluded_files = excluded_files->link;
343         }
344
345         return 0;
346 }
347 #endif
348
349 static int writeFileToTarball(const char *fileName, struct stat *statbuf,
350                                                           void *userData)
351 {
352         struct TarBallInfo *tbInfo = (struct TarBallInfo *) userData;
353         const char *header_name;
354
355         /*
356            ** Check to see if we are dealing with a hard link.
357            ** If so -
358            ** Treat the first occurance of a given dev/inode as a file while
359            ** treating any additional occurances as hard links.  This is done
360            ** by adding the file information to the HardLinkInfo linked list.
361          */
362         tbInfo->hlInfo = NULL;
363         if (statbuf->st_nlink > 1) {
364                 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf);
365                 if (tbInfo->hlInfo == NULL)
366                         addHardLinkInfo(&tbInfo->hlInfoHead, statbuf, fileName);
367         }
368
369         /* It is against the rules to archive a socket */
370         if (S_ISSOCK(statbuf->st_mode)) {
371                 bb_error_msg("%s: socket ignored", fileName);
372                 return (TRUE);
373         }
374
375         /* It is a bad idea to store the archive we are in the process of creating,
376          * so check the device and inode to be sure that this particular file isn't
377          * the new tarball */
378         if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
379                 tbInfo->statBuf.st_ino == statbuf->st_ino) {
380                 bb_error_msg("%s: file is the archive; skipping", fileName);
381                 return (TRUE);
382         }
383
384         header_name = fileName;
385         while (header_name[0] == '/') {
386                 static int alreadyWarned = FALSE;
387
388                 if (alreadyWarned == FALSE) {
389                         bb_error_msg("Removing leading '/' from member names");
390                         alreadyWarned = TRUE;
391                 }
392                 header_name++;
393         }
394
395         if (strlen(fileName) >= NAME_SIZE) {
396                 bb_error_msg(bb_msg_name_longer_than_foo, NAME_SIZE);
397                 return (TRUE);
398         }
399
400         if (header_name[0] == '\0')
401                 return TRUE;
402
403 # if defined CONFIG_FEATURE_TAR_EXCLUDE
404         if (exclude_file(tbInfo->excludeList, header_name)) {
405                 return SKIP;
406         }
407 # endif                                                 /* CONFIG_FEATURE_TAR_EXCLUDE */
408
409         if (writeTarHeader(tbInfo, header_name, fileName, statbuf) == FALSE) {
410                 return (FALSE);
411         }
412
413         /* Now, if the file is a regular file, copy it out to the tarball */
414         if ((tbInfo->hlInfo == NULL)
415                 && (S_ISREG(statbuf->st_mode))) {
416                 int inputFileFd;
417                 char buffer[BUFSIZ];
418                 ssize_t size = 0, readSize = 0;
419
420                 /* open the file we want to archive, and make sure all is well */
421                 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
422                         bb_perror_msg("%s: Cannot open", fileName);
423                         return (FALSE);
424                 }
425
426                 /* write the file to the archive */
427                 while ((size = bb_full_read(inputFileFd, buffer, sizeof(buffer))) > 0) {
428                         if (bb_full_write(tbInfo->tarFd, buffer, size) != size) {
429                                 /* Output file seems to have a problem */
430                                 bb_error_msg(bb_msg_io_error, fileName);
431                                 return (FALSE);
432                         }
433                         readSize += size;
434                 }
435                 if (size == -1) {
436                         bb_error_msg(bb_msg_io_error, fileName);
437                         return (FALSE);
438                 }
439                 /* Pad the file up to the tar block size */
440                 for (; (readSize % TAR_BLOCK_SIZE) != 0; readSize++) {
441                         write(tbInfo->tarFd, "\0", 1);
442                 }
443                 close(inputFileFd);
444         }
445
446         return (TRUE);
447 }
448
449 static inline int writeTarFile(const char *tarName, const int verboseFlag,
450                                                            const llist_t *include, const llist_t *exclude, const int gzip)
451 {
452 #ifdef CONFIG_FEATURE_TAR_GZIP
453         int gzipDataPipe[2] = { -1, -1 };
454         int gzipStatusPipe[2] = { -1, -1 };
455         pid_t gzipPid = 0;
456         volatile int vfork_exec_errno = 0;
457 #endif
458
459         int errorFlag = FALSE;
460         ssize_t size;
461         struct TarBallInfo tbInfo;
462
463         tbInfo.hlInfoHead = NULL;
464
465         /* Make sure there is at least one file to tar up.  */
466         if (include == NULL) {
467                 bb_error_msg_and_die("Cowardly refusing to create an empty archive");
468         }
469
470         /* Open the tar file for writing.  */
471         if (tarName == NULL || (tarName[0] == '-' && tarName[1] == '\0')) {
472                 tbInfo.tarFd = fileno(stdout);
473                 tbInfo.verboseFlag = verboseFlag ? 2 : 0;
474         } else {
475                 unlink(tarName);
476                 tbInfo.tarFd = open(tarName, O_WRONLY | O_CREAT | O_EXCL, 0644);
477                 tbInfo.verboseFlag = verboseFlag ? 1 : 0;
478         }
479
480         if (tbInfo.tarFd < 0) {
481                 bb_perror_msg("%s: Cannot open", tarName);
482                 freeHardLinkInfo(&tbInfo.hlInfoHead);
483                 return (FALSE);
484         }
485
486         /* Store the stat info for the tarball's file, so
487          * can avoid including the tarball into itself....  */
488         if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
489                 bb_error_msg_and_die(bb_msg_io_error, tarName);
490
491 #ifdef CONFIG_FEATURE_TAR_GZIP
492         if (gzip) {
493                 if (pipe(gzipDataPipe) < 0 || pipe(gzipStatusPipe) < 0) {
494                         bb_perror_msg_and_die("Failed to create gzip pipe");
495                 }
496
497                 signal(SIGPIPE, SIG_IGN);       /* we only want EPIPE on errors */
498
499 # if __GNUC__
500                         /* Avoid vfork clobbering */
501                         (void) &include;
502                         (void) &errorFlag;
503 # endif
504  
505                 gzipPid = vfork();
506
507                 if (gzipPid == 0) {
508                         dup2(gzipDataPipe[0], 0);
509                         close(gzipDataPipe[1]);
510
511                         if (tbInfo.tarFd != 1);
512                         dup2(tbInfo.tarFd, 1);
513
514                         close(gzipStatusPipe[0]);
515                         fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC);  /* close on exec shows sucess */
516
517                         execl("/bin/gzip", "gzip", "-f", 0);
518                         vfork_exec_errno = errno;
519
520                         close(gzipStatusPipe[1]);
521                         exit(-1);
522                 } else if (gzipPid > 0) {
523                         close(gzipDataPipe[0]);
524                         close(gzipStatusPipe[1]);
525
526                         while (1) {
527                                 char buf;
528
529                                 int n = read(gzipStatusPipe[0], &buf, 1);
530
531                                 if (n == 0 && vfork_exec_errno != 0) {
532                                         errno = vfork_exec_errno;
533                                         bb_perror_msg_and_die("Could not exec gzip process");
534                                 } else if ((n < 0) && (errno == EAGAIN || errno == EINTR))
535                                         continue;       /* try it again */
536                                 break;
537                         }
538                         close(gzipStatusPipe[0]);
539
540                         tbInfo.tarFd = gzipDataPipe[1];
541                 } else {
542                         bb_perror_msg_and_die("Failed to vfork gzip process");
543                 }
544         }
545 #endif
546
547         tbInfo.excludeList = exclude;
548
549         /* Read the directory/files and iterate over them one at a time */
550         while (include) {
551                 if (!recursive_action(include->data, TRUE, FALSE, FALSE,
552                                                           writeFileToTarball, writeFileToTarball,
553                                                           (void *) &tbInfo)) {
554                         errorFlag = TRUE;
555                 }
556                 include = include->link;
557         }
558         /* Write two empty blocks to the end of the archive */
559         for (size = 0; size < (2 * TAR_BLOCK_SIZE); size++) {
560                 write(tbInfo.tarFd, "\0", 1);
561         }
562
563         /* To be pedantically correct, we would check if the tarball
564          * is smaller than 20 tar blocks, and pad it if it was smaller,
565          * but that isn't necessary for GNU tar interoperability, and
566          * so is considered a waste of space */
567
568         /* Hang up the tools, close up shop, head home */
569         close(tbInfo.tarFd);
570         if (errorFlag)
571                 bb_error_msg("Error exit delayed from previous errors");
572
573         freeHardLinkInfo(&tbInfo.hlInfoHead);
574
575 #ifdef CONFIG_FEATURE_TAR_GZIP
576         if (gzip && gzipPid) {
577                 if (waitpid(gzipPid, NULL, 0) == -1)
578                         printf("Couldnt wait ?");
579         }
580 #endif
581
582         return !errorFlag;
583 }
584 #endif                                                  /* tar_create */
585
586 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
587 static llist_t *append_file_list_to_list(llist_t *list)
588 {
589         FILE *src_stream;
590         llist_t *cur = list;
591         llist_t *tmp;
592         char *line;
593         llist_t *newlist = NULL;
594
595         while(cur) {
596                 src_stream = bb_xfopen(cur->data, "r");
597                 tmp = cur;
598                 cur = cur->link;
599                 free(tmp);
600         while((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
601                         newlist = llist_add_to(newlist, line);
602         }
603         fclose(src_stream);
604         }
605         return newlist;
606 }
607 #endif
608
609
610 static const char tar_options[]="ctxjT:X:C:f:Opvz";
611 #define CTX_CREATE      1
612 #define CTX_TEST        2
613 #define CTX_EXTRACT     4
614 #define TAR_OPT_BZIP2    8
615 #define TAR_OPT_INCLUDE  16
616 #define TAR_OPT_EXCLUDE  32
617 #define TAR_OPT_BASEDIR  64
618 #define TAR_OPT_ARNAME   128
619 #define TAR_OPT_2STDOUT  256
620 #define TAR_OPT_P        512
621 #define TAR_OPT_VERBOSE  1024
622 #define TAR_OPT_GZIP     2048
623
624 int tar_main(int argc, char **argv)
625 {
626         char (*get_header_ptr)(archive_handle_t *) = get_header_tar;
627         archive_handle_t *tar_handle;
628         int opt;
629         char *base_dir = NULL;
630         const char *tar_filename = "-";
631         unsigned char ctx_flag = 0;
632
633         if (argc < 2) {
634                 bb_show_usage();
635         }
636
637         /* Prepend '-' to the first argument if required */
638         if (argv[1][0] != '-') {
639                 char *tmp;
640
641                 bb_xasprintf(&tmp, "-%s", argv[1]);
642                 argv[1] = tmp;
643         }
644
645         /* Initialise default values */
646         tar_handle = init_handle();
647         tar_handle->flags = ARCHIVE_CREATE_LEADING_DIRS | ARCHIVE_PRESERVE_DATE;
648
649         bb_opt_complementaly = "c~tx:t~cx:x~ct:X*";
650         opt = bb_getopt_ulflags(argc, argv, tar_options,
651                                 NULL,   /* T: arg is ignored by default
652                                             a list is an include list */
653                                 &(tar_handle->reject),
654                                 &base_dir,      /* Change to dir <optarg> */
655                                 &tar_filename); /* archive filename */
656         /* Check one and only one context option was given */
657         if(opt & 0x80000000UL)
658                 bb_show_usage();
659         ctx_flag = opt & (CTX_CREATE | CTX_TEST | CTX_EXTRACT);
660         if(ctx_flag & CTX_TEST) {
661                         if ((tar_handle->action_header == header_list) || 
662                                 (tar_handle->action_header == header_verbose_list)) {
663                                 tar_handle->action_header = header_verbose_list;
664                         } else {
665                                 tar_handle->action_header = header_list;
666                         }
667         }
668         if(ctx_flag & CTX_EXTRACT) {
669                 if (tar_handle->action_data != data_extract_to_stdout)
670                                 tar_handle->action_data = data_extract_all;
671                         }
672         if(opt & TAR_OPT_2STDOUT) {
673                 /* To stdout */
674                         tar_handle->action_data = data_extract_to_stdout;
675         }
676         if(opt & TAR_OPT_VERBOSE) {
677                         if ((tar_handle->action_header == header_list) || 
678                                 (tar_handle->action_header == header_verbose_list)) 
679                         {
680                                 tar_handle->action_header = header_verbose_list;
681                         } else {
682                                 tar_handle->action_header = header_list;
683                         }
684         }
685 #ifdef CONFIG_FEATURE_TAR_GZIP
686         if(opt & TAR_OPT_GZIP) {
687                         get_header_ptr = get_header_tar_gz;
688         }
689 #endif
690 #ifdef CONFIG_FEATURE_TAR_BZIP2
691         if(opt & TAR_OPT_BZIP2) {
692                         get_header_ptr = get_header_tar_bz2;
693         }
694 #endif
695 #ifdef CONFIG_FEATURE_TAR_EXCLUDE
696         if(opt & TAR_OPT_EXCLUDE) {
697                 tar_handle->reject = append_file_list_to_list(tar_handle->reject);
698         }
699 #endif
700         /* Check if we are reading from stdin */
701         if ((argv[optind]) && (*argv[optind] == '-')) {
702                 /* Default is to read from stdin, so just skip to next arg */
703                 optind++;
704         }
705
706         /* Setup an array of filenames to work with */
707         /* TODO: This is the same as in ar, seperate function ? */
708         while (optind < argc) {
709                 tar_handle->accept = llist_add_to(tar_handle->accept, argv[optind]);
710                 optind++;
711         }
712
713         if ((tar_handle->accept) || (tar_handle->reject)) {
714                 tar_handle->filter = filter_accept_reject_list;
715         }
716
717 #ifdef CONFIG_FEATURE_TAR_CREATE
718         /* create an archive */
719         if (ctx_flag == CTX_CREATE) {
720                 int verboseFlag = FALSE;
721                 int gzipFlag = FALSE;
722
723 # ifdef CONFIG_FEATURE_TAR_GZIP
724                 if (get_header_ptr == get_header_tar_gz) {
725                         gzipFlag = TRUE;
726                 }
727 # endif /* CONFIG_FEATURE_TAR_GZIP */
728 # ifdef CONFIG_FEATURE_TAR_BZIP2
729                 if (get_header_ptr == get_header_tar_bz2) {
730                         bb_error_msg_and_die("Creating bzip2 compressed archives is not currently supported.");
731                 }
732 # endif /* CONFIG_FEATURE_TAR_BZIP2 */
733
734                 if ((tar_handle->action_header == header_list) || 
735                                 (tar_handle->action_header == header_verbose_list)) {
736                         verboseFlag = TRUE;
737                 }
738                 writeTarFile(tar_filename, verboseFlag, tar_handle->accept,
739                         tar_handle->reject, gzipFlag);
740         } else 
741 #endif /* CONFIG_FEATURE_TAR_CREATE */
742         {
743                 if ((tar_filename[0] == '-') && (tar_filename[1] == '\0')) {
744                         tar_handle->src_fd = fileno(stdin);
745                         tar_handle->seek = seek_by_char;
746                 } else {
747                         tar_handle->src_fd = bb_xopen(tar_filename, O_RDONLY);
748                 }
749
750                 if ((base_dir) && (chdir(base_dir))) {
751                         bb_perror_msg_and_die("Couldnt chdir");
752                 }
753
754                 while (get_header_ptr(tar_handle) == EXIT_SUCCESS);
755
756                 /* Ckeck that every file that should have been extracted was */
757                 while (tar_handle->accept) {
758                         if (find_list_entry(tar_handle->reject, tar_handle->accept->data) == NULL) {
759                                 if (find_list_entry(tar_handle->passed, tar_handle->accept->data) == NULL) {
760                                         bb_error_msg_and_die("%s: Not found in archive\n", tar_handle->accept->data);
761                                 }
762                         }
763                         tar_handle->accept = tar_handle->accept->link;
764                 }
765         }
766
767 #ifdef CONFIG_FEATURE_CLEAN_UP
768         if (tar_handle->src_fd != fileno(stdin)) {
769                 close(tar_handle->src_fd);
770         }
771 #endif /* CONFIG_FEATURE_CLEAN_UP */
772
773         return(EXIT_SUCCESS);
774 }