4eda4c61a12c6f44ea8eac6c28941934ac42f7cb
[oweals/busybox.git] / tar.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini tar implementation for busybox 
4  *
5  * Note, that as of BusyBox-0.43, tar has been completely rewritten from the
6  * ground up.  It still has remnents of the old code lying about, but it is
7  * very different now (i.e. cleaner, less global variables, etc)
8  *
9  * Copyright (C) 2000 by Lineo, inc.
10  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
11  *
12  * Based in part in the tar implementation in sash
13  *  Copyright (c) 1999 by David I. Bell
14  *  Permission is granted to use, distribute, or modify this source,
15  *  provided that this copyright notice remains intact.
16  *  Permission to distribute sash derived code under the GPL has been granted.
17  *
18  * Based in part on the tar implementation from busybox-0.28
19  *  Copyright (C) 1995 Bruce Perens
20  *  This is free software under the GNU General Public License.
21  *
22  * This program is free software; you can redistribute it and/or modify
23  * it under the terms of the GNU General Public License as published by
24  * the Free Software Foundation; either version 2 of the License, or
25  * (at your option) any later version.
26  *
27  * This program is distributed in the hope that it will be useful,
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
30  * General Public License for more details.
31  *
32  * You should have received a copy of the GNU General Public License
33  * along with this program; if not, write to the Free Software
34  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
35  *
36  */
37
38
39 #include "internal.h"
40 #define BB_DECLARE_EXTERN
41 #define bb_need_io_error
42 #include "messages.c"
43 #include <stdio.h>
44 #include <dirent.h>
45 #include <errno.h>
46 #include <fcntl.h>
47 #include <signal.h>
48 #include <time.h>
49 #include <utime.h>
50 #include <sys/types.h>
51 #include <sys/sysmacros.h>
52 #include <sys/param.h>                  /* for PATH_MAX */
53
54
55 static const char tar_usage[] =
56 #ifdef BB_FEATURE_TAR_CREATE
57         "tar -[cxtvO] "
58 #else
59         "tar -[xtvO] "
60 #endif
61 #if defined BB_FEATURE_TAR_EXCLUDE
62         "[--exclude File] "
63 #endif
64         "[-f tarFile] [FILE] ...\n\n"
65         "Create, extract, or list files from a tar file.  Note that\n"
66         "this version of tar treats hard links as separate files.\n\n"
67         "Main operation mode:\n"
68 #ifdef BB_FEATURE_TAR_CREATE
69         "\tc\t\tcreate\n"
70 #endif
71         "\tx\t\textract\n"
72         "\tt\t\tlist\n"
73         "File selection:\n"
74         "\tf\t\tname of tarfile or \"-\" for stdin\n"
75         "\tO\t\textract to stdout\n"
76 #if defined BB_FEATURE_TAR_EXCLUDE
77         "\t--exclude\tfile to exclude\n"
78 #endif
79         "Informative output:\n"
80         "\tv\t\tverbosely list files processed\n"
81         ;
82
83 /* Tar file constants  */
84 #ifndef MAJOR
85 #define MAJOR(dev) (((dev)>>8)&0xff)
86 #define MINOR(dev) ((dev)&0xff)
87 #endif
88
89
90 /* POSIX tar Header Block, from POSIX 1003.1-1990  */
91 struct TarHeader
92 {
93                                 /* byte offset */
94         char name[100];               /*   0-99 */
95         char mode[8];                 /* 100-107 */
96         char uid[8];                  /* 108-115 */
97         char gid[8];                  /* 116-123 */
98         char size[12];                /* 124-135 */
99         char mtime[12];               /* 136-147 */
100         char chksum[8];               /* 148-155 */
101         char typeflag;                /* 156-156 */
102         char linkname[100];           /* 157-256 */
103         char magic[6];                /* 257-262 */
104         char version[2];              /* 263-264 */
105         char uname[32];               /* 265-296 */
106         char gname[32];               /* 297-328 */
107         char devmajor[8];             /* 329-336 */
108         char devminor[8];             /* 337-344 */
109         char prefix[155];             /* 345-499 */
110         char padding[12];             /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
111 };
112 typedef struct TarHeader TarHeader;
113
114
115 /* A few useful constants */
116 #define TAR_MAGIC          "ustar"        /* ustar and a null */
117 #define TAR_VERSION        "  "           /* Be compatable with GNU tar format */
118 #define TAR_MAGIC_LEN       6
119 #define TAR_VERSION_LEN     2
120 #define TAR_BLOCK_SIZE      512
121
122 /* A nice enum with all the possible tar file content types */
123 enum TarFileType 
124 {
125         REGTYPE  = '0',            /* regular file */
126         REGTYPE0 = '\0',           /* regular file (ancient bug compat)*/
127         LNKTYPE  = '1',            /* hard link */
128         SYMTYPE  = '2',            /* symbolic link */
129         CHRTYPE  = '3',            /* character special */
130         BLKTYPE  = '4',            /* block special */
131         DIRTYPE  = '5',            /* directory */
132         FIFOTYPE = '6',            /* FIFO special */
133         CONTTYPE = '7',            /* reserved */
134 };
135 typedef enum TarFileType TarFileType;
136
137 /* This struct ignores magic, non-numeric user name, 
138  * non-numeric group name, and the checksum, since
139  * these are all ignored by BusyBox tar. */ 
140 struct TarInfo
141 {
142         int              tarFd;          /* An open file descriptor for reading from the tarball */
143         char *           name;           /* File name */
144         mode_t           mode;           /* Unix mode, including device bits. */
145         uid_t            uid;            /* Numeric UID */
146         gid_t            gid;            /* Numeric GID */
147         size_t           size;           /* Size of file */
148         time_t           mtime;          /* Last-modified time */
149         enum TarFileType type;           /* Regular, directory, link, etc */
150         char *           linkname;       /* Name for symbolic and hard links */
151         long             devmajor;       /* Major number for special device */
152         long             devminor;       /* Minor number for special device */
153 };
154 typedef struct TarInfo TarInfo;
155
156 /* Local procedures to restore files from a tar file.  */
157 static int readTarFile(const char* tarName, int extractFlag, int listFlag, 
158                 int tostdoutFlag, int verboseFlag, char** excludeList);
159
160
161
162 #ifdef BB_FEATURE_TAR_CREATE
163 /* Local procedures to save files into a tar file.  */
164 static int writeTarFile(const char* tarName, int tostdoutFlag, 
165                 int verboseFlag, int argc, char **argv, char** excludeList);
166 #endif
167
168
169 extern int tar_main(int argc, char **argv)
170 {
171         char** excludeList=NULL;
172 #if defined BB_FEATURE_TAR_EXCLUDE
173         int excludeListSize=0;
174 #endif
175         const char *tarName=NULL;
176         int listFlag     = FALSE;
177         int extractFlag  = FALSE;
178         int createFlag   = FALSE;
179         int verboseFlag  = FALSE;
180         int tostdoutFlag = FALSE;
181         int stopIt;
182
183         if (argc <= 1)
184                 usage(tar_usage);
185
186         /* Parse any options */
187         while (--argc > 0 && **(++argv) == '-') {
188                 stopIt=FALSE;
189                 while (stopIt==FALSE && *(++(*argv))) {
190                         switch (**argv) {
191                                 case 'f':
192                                         if (--argc == 0) {
193                                                 fatalError( "Option requires an argument: No file specified\n");
194                                         }
195                                         if (tarName != NULL)
196                                                 fatalError( "Only one 'f' option allowed\n");
197                                         tarName = *(++argv);
198                                         if (tarName == NULL)
199                                                 fatalError( "Option requires an argument: No file specified\n");
200                                         stopIt=TRUE;
201                                         break;
202
203                                 case 't':
204                                         if (extractFlag == TRUE || createFlag == TRUE)
205                                                 goto flagError;
206                                         listFlag = TRUE;
207                                         break;
208
209                                 case 'x':
210                                         if (listFlag == TRUE || createFlag == TRUE)
211                                                 goto flagError;
212                                         extractFlag = TRUE;
213                                         break;
214                                 case 'c':
215                                         if (extractFlag == TRUE || listFlag == TRUE)
216                                                 goto flagError;
217                                         createFlag = TRUE;
218                                         break;
219
220                                 case 'v':
221                                         verboseFlag = TRUE;
222                                         break;
223
224                                 case 'O':
225                                         tostdoutFlag = TRUE;
226                                         tarName = "-";
227                                         break;
228                                 case '-':
229 #if defined BB_FEATURE_TAR_EXCLUDE
230                                         if (strcmp(*argv, "-exclude")==0) {
231                                                 if (--argc == 0) {
232                                                         fatalError( "Option requires an argument: No file specified\n");
233                                                 }
234                                                 excludeList=realloc( excludeList, sizeof(char**) * (excludeListSize+2));
235                                                 excludeList[excludeListSize] = *(++argv);
236                                                 /* Remove leading "/"s */
237                                                 if (*excludeList[excludeListSize] =='/') {
238                                                         excludeList[excludeListSize] = (excludeList[excludeListSize])+1;
239                                                 }
240                                                 if (excludeList[excludeListSize++] == NULL)
241                                                         fatalError( "Option requires an argument: No file specified\n");
242                                                 /* Tack a NULL onto the end of the list */
243                                                 excludeList[excludeListSize] = NULL;
244                                                 stopIt=TRUE;
245                                                 break;
246                                         }
247 #endif
248                                         usage(tar_usage);
249                                         break;
250
251                                 default:
252                                         fatalError( "Unknown tar flag '%c'\n" 
253                                                         "Try `tar --help' for more information\n", **argv);
254                         }
255                 }
256         }
257
258         /* 
259          * Do the correct type of action supplying the rest of the
260          * command line arguments as the list of files to process.
261          */
262         if (createFlag == TRUE) {
263 #ifndef BB_FEATURE_TAR_CREATE
264                 fatalError( "This version of tar was not compiled with tar creation support.\n");
265 #else
266                 exit(writeTarFile(tarName, tostdoutFlag, verboseFlag, argc, argv, excludeList));
267 #endif
268         } else {
269                 exit(readTarFile(tarName, extractFlag, listFlag, tostdoutFlag, verboseFlag, excludeList));
270         }
271
272   flagError:
273         fatalError( "Exactly one of 'c', 'x' or 't' must be specified\n");
274 }
275                                         
276 static void
277 fixUpPermissions(TarInfo *header)
278 {
279         struct utimbuf t;
280         /* Now set permissions etc for the new file */
281         chown(header->name, header->uid, header->gid);
282         chmod(header->name, header->mode);
283         /* Reset the time */
284         t.actime = time(0);
285         t.modtime = header->mtime;
286         utime(header->name, &t);
287 }
288                                 
289 static int
290 tarExtractRegularFile(TarInfo *header, int extractFlag, int tostdoutFlag)
291 {
292         size_t  writeSize;
293         size_t  readSize;
294         size_t  actualWriteSz;
295         char    buffer[BUFSIZ];
296         size_t  size = header->size;
297         int outFd=fileno(stdout);
298
299         /* Open the file to be written, if a file is supposed to be written */
300         if (extractFlag==TRUE && tostdoutFlag==FALSE) {
301                 if ((outFd=open(header->name, O_CREAT|O_TRUNC|O_WRONLY, header->mode & ~S_IFMT)) < 0)
302                         errorMsg(io_error, header->name, strerror(errno)); 
303                 /* Create the path to the file, just in case it isn't there...
304                  * This should not screw up path permissions or anything. */
305                 createPath(header->name, 0777);
306         }
307
308         /* Write out the file, if we are supposed to be doing that */
309         while ( size > 0 ) {
310                 actualWriteSz=0;
311                 if ( size > sizeof(buffer) )
312                         writeSize = readSize = sizeof(buffer);
313                 else {
314                         int mod = size % 512;
315                         if ( mod != 0 )
316                                 readSize = size + (512 - mod);
317                         else
318                                 readSize = size;
319                         writeSize = size;
320                 }
321                 if ( (readSize = fullRead(header->tarFd, buffer, readSize)) <= 0 ) {
322                         /* Tarball seems to have a problem */
323                         errorMsg("tar: Unexpected EOF in archive\n"); 
324                         return( FALSE);
325                 }
326                 if ( readSize < writeSize )
327                         writeSize = readSize;
328
329                 /* Write out the file, if we are supposed to be doing that */
330                 if (extractFlag==TRUE) {
331
332                         if ((actualWriteSz=fullWrite(outFd, buffer, writeSize)) != writeSize ) {
333                                 /* Output file seems to have a problem */
334                                 errorMsg(io_error, header->name, strerror(errno)); 
335                                 return( FALSE);
336                         }
337                 } else {
338                         actualWriteSz=writeSize;
339                 }
340
341                 size -= actualWriteSz;
342         }
343
344         /* Now we are done writing the file out, so try 
345          * and fix up the permissions and whatnot */
346         if (extractFlag==TRUE && tostdoutFlag==FALSE) {
347                 close(outFd);
348                 fixUpPermissions(header);
349         }
350         return( TRUE);
351 }
352
353 static int
354 tarExtractDirectory(TarInfo *header, int extractFlag, int tostdoutFlag)
355 {
356
357         if (extractFlag==FALSE || tostdoutFlag==TRUE)
358                 return( TRUE);
359
360         if (createPath(header->name, header->mode) != TRUE) {
361                 errorMsg("tar: %s: Cannot mkdir: %s\n", 
362                                 header->name, strerror(errno)); 
363                 return( FALSE);
364         }
365         /* make the final component, just in case it was
366          * omitted by createPath() (which will skip the
367          * directory if it doesn't have a terminating '/') */
368         if (mkdir(header->name, header->mode) == 0) {
369                 fixUpPermissions(header);
370         }
371         return( TRUE);
372 }
373
374 static int
375 tarExtractHardLink(TarInfo *header, int extractFlag, int tostdoutFlag)
376 {
377         if (extractFlag==FALSE || tostdoutFlag==TRUE)
378                 return( TRUE);
379
380         if (link(header->linkname, header->name) < 0) {
381                 errorMsg("tar: %s: Cannot create hard link to '%s': %s\n", 
382                                 header->name, header->linkname, strerror(errno)); 
383                 return( FALSE);
384         }
385
386         /* Now set permissions etc for the new directory */
387         fixUpPermissions(header);
388         return( TRUE);
389 }
390
391 static int
392 tarExtractSymLink(TarInfo *header, int extractFlag, int tostdoutFlag)
393 {
394         if (extractFlag==FALSE || tostdoutFlag==TRUE)
395                 return( TRUE);
396
397 #ifdef  S_ISLNK
398         if (symlink(header->linkname, header->name) < 0) {
399                 errorMsg("tar: %s: Cannot create symlink to '%s': %s\n", 
400                                 header->name, header->linkname, strerror(errno)); 
401                 return( FALSE);
402         }
403         /* Try to change ownership of the symlink.
404          * If libs doesn't support that, don't bother.
405          * Changing the pointed-to-file is the Wrong Thing(tm).
406          */
407 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
408         lchown(header->name, header->uid, header->gid);
409 #endif
410
411         /* Do not change permissions or date on symlink,
412          * since it changes the pointed to file instead.  duh. */
413 #else
414         errorMsg("tar: %s: Cannot create symlink to '%s': %s\n", 
415                         header->name, header->linkname, 
416                         "symlinks not supported"); 
417 #endif
418         return( TRUE);
419 }
420
421 static int
422 tarExtractSpecial(TarInfo *header, int extractFlag, int tostdoutFlag)
423 {
424         if (extractFlag==FALSE || tostdoutFlag==TRUE)
425                 return( TRUE);
426
427         if (S_ISCHR(header->mode) || S_ISBLK(header->mode) || S_ISSOCK(header->mode)) {
428                 if (mknod(header->name, header->mode, makedev(header->devmajor, header->devminor)) < 0) {
429                         errorMsg("tar: %s: Cannot mknod: %s\n",
430                                 header->name, strerror(errno)); 
431                         return( FALSE);
432                 }
433         } else if (S_ISFIFO(header->mode)) {
434                 if (mkfifo(header->name, header->mode) < 0) {
435                         errorMsg("tar: %s: Cannot mkfifo: %s\n",
436                                 header->name, strerror(errno)); 
437                         return( FALSE);
438                 }
439         }
440
441         /* Now set permissions etc for the new directory */
442         fixUpPermissions(header);
443         return( TRUE);
444 }
445
446 /* Read an octal value in a field of the specified width, with optional
447  * spaces on both sides of the number and with an optional null character
448  * at the end.  Returns -1 on an illegal format.  */
449 static long getOctal(const char *cp, int size)
450 {
451         long val = 0;
452
453         for(;(size > 0) && (*cp == ' '); cp++, size--);
454         if ((size == 0) || !isOctal(*cp))
455                 return -1;
456         for(; (size > 0) && isOctal(*cp); size--) {
457                 val = val * 8 + *cp++ - '0';
458         }
459         for (;(size > 0) && (*cp == ' '); cp++, size--);
460         if ((size > 0) && *cp)
461                 return -1;
462         return val;
463 }
464
465
466 /* Parse the tar header and fill in the nice struct with the details */
467 static int
468 readTarHeader(struct TarHeader *rawHeader, struct TarInfo *header)
469 {
470         int i;
471         long chksum, sum=0;
472         unsigned char *s = (unsigned char *)rawHeader;
473
474         header->name  = rawHeader->name;
475         /* Check for and relativify any absolute paths */
476         if ( *(header->name) == '/' ) {
477                 static int alreadyWarned=FALSE;
478
479                 while (*(header->name) == '/')
480                         ++*(header->name);
481
482                 if (alreadyWarned == FALSE) {
483                         errorMsg("tar: Removing leading '/' from member names\n");
484                         alreadyWarned = TRUE;
485                 }
486         }
487
488         header->mode  = getOctal(rawHeader->mode, sizeof(rawHeader->mode));
489         header->uid   =  getOctal(rawHeader->uid, sizeof(rawHeader->uid));
490         header->gid   =  getOctal(rawHeader->gid, sizeof(rawHeader->gid));
491         header->size  = getOctal(rawHeader->size, sizeof(rawHeader->size));
492         header->mtime = getOctal(rawHeader->mtime, sizeof(rawHeader->mtime));
493         chksum = getOctal(rawHeader->chksum, sizeof(rawHeader->chksum));
494         header->type  = rawHeader->typeflag;
495         header->linkname  = rawHeader->linkname;
496         /* Check for and relativify any absolute paths */
497         if ( *(header->linkname) == '/' ) {
498                 static int alreadyWarned=FALSE;
499
500                 while (*(header->linkname) == '/')
501                         ++*(header->linkname);
502
503                 if (alreadyWarned == FALSE) {
504                         errorMsg("tar: Removing leading '/' from link names\n");
505                         alreadyWarned = TRUE;
506                 }
507         }
508         header->devmajor  = getOctal(rawHeader->devmajor, sizeof(rawHeader->devmajor));
509         header->devminor  = getOctal(rawHeader->devminor, sizeof(rawHeader->devminor));
510
511         /* Check the checksum */
512         for (i = sizeof(*rawHeader); i-- != 0;) {
513                 sum += *s++;
514         }
515         /* Remove the effects of the checksum field (replace 
516          * with blanks for the purposes of the checksum) */
517         s = rawHeader->chksum;
518         for (i = sizeof(rawHeader->chksum) ; i-- != 0;) {
519                 sum -= *s++;
520         }
521         sum += ' ' * sizeof(rawHeader->chksum);
522         if (sum == chksum )
523                 return ( TRUE);
524         return( FALSE);
525 }
526
527
528 /*
529  * Read a tar file and extract or list the specified files within it.
530  * If the list is empty than all files are extracted or listed.
531  */
532 static int readTarFile(const char* tarName, int extractFlag, int listFlag, 
533                 int tostdoutFlag, int verboseFlag, char** excludeList)
534 {
535         int status, tarFd=-1;
536         int errorFlag=FALSE;
537         TarHeader rawHeader;
538         TarInfo header;
539 #if defined BB_FEATURE_TAR_EXCLUDE
540         char** tmpList;
541 #endif
542
543         /* Open the tar file for reading.  */
544         if (!strcmp(tarName, "-"))
545                 tarFd = fileno(stdin);
546         else
547                 tarFd = open(tarName, O_RDONLY);
548         if (tarFd < 0) {
549                 errorMsg( "Error opening '%s': %s\n", tarName, strerror(errno));
550                 return ( FALSE);
551         }
552
553         /* Set the umask for this process so it doesn't 
554          * screw up permission setting for us later. */
555         umask(0);
556
557         /* Read the tar file, and iterate over it one file at a time */
558         while ( (status = fullRead(tarFd, (char*)&rawHeader, TAR_BLOCK_SIZE)) == TAR_BLOCK_SIZE ) {
559
560                 /* First, try to read the header */
561                 if ( readTarHeader(&rawHeader, &header) == FALSE ) {
562                         if ( *(header.name) == '\0' ) {
563                                 goto endgame;
564                         } else {
565                                 errorFlag=TRUE;
566                                 errorMsg("Bad tar header, skipping\n");
567                                 continue;
568                         }
569                 }
570                 if ( *(header.name) == '\0' )
571                                 goto endgame;
572                 header.tarFd = tarFd;
573
574 #if defined BB_FEATURE_TAR_EXCLUDE
575                 {
576                         int skipFlag=FALSE;
577                         /* Check for excluded files....  */
578                         for (tmpList=excludeList; tmpList && *tmpList; tmpList++) {
579                                 /* Do some extra hoop jumping for when directory names
580                                  * end in '/' but the entry in tmpList doesn't */
581                                 if (strncmp( *tmpList, header.name, strlen(*tmpList))==0 || (
582                                                         header.name[strlen(header.name)-1]=='/'
583                                                         && strncmp( *tmpList, header.name, 
584                                                                 MIN(strlen(header.name)-1, strlen(*tmpList)))==0)) {
585                                         /* If it is a regular file, pretend to extract it with
586                                          * the extractFlag set to FALSE, so the junk in the tarball
587                                          * is properly skipped over */
588                                         if ( header.type==REGTYPE || header.type==REGTYPE0 ) {
589                                                         tarExtractRegularFile(&header, FALSE, FALSE);
590                                         }
591                                         skipFlag=TRUE;
592                                         break;
593                                 }
594                         }
595                         /* There are not the droids you're looking for, move along */
596                         if (skipFlag==TRUE)
597                                 continue;
598                 }
599 #endif
600                 /* Special treatment if the list (-t) flag is on */
601                 if (verboseFlag == TRUE && extractFlag == FALSE) {
602                         int len, len1;
603                         char buf[35];
604                         struct tm *tm = localtime (&(header.mtime));
605
606                         len=printf("%s ", modeString(header.mode));
607                         memset(buf, 0, 8*sizeof(char));
608                         my_getpwuid(buf, header.uid);
609                         if (! *buf)
610                                 len+=printf("%d", header.uid);
611                         else
612                                 len+=printf("%s", buf);
613                         memset(buf, 0, 8*sizeof(char));
614                         my_getgrgid(buf, header.gid);
615                         if (! *buf)
616                                 len+=printf("/%-d ", header.gid);
617                         else
618                                 len+=printf("/%-s ", buf);
619
620                         if (header.type==CHRTYPE || header.type==BLKTYPE) {
621                                 len1=snprintf(buf, sizeof(buf), "%ld,%-ld ", 
622                                                 header.devmajor, header.devminor);
623                         } else {
624                                 len1=snprintf(buf, sizeof(buf), "%d ", header.size);
625                         }
626                         /* Jump through some hoops to make the columns match up */
627                         for(;(len+len1)<31;len++)
628                                 printf(" ");
629                         printf(buf);
630
631                         /* Use ISO 8610 time format */
632                         if (tm) { 
633                                 printf ("%04d-%02d-%02d %02d:%02d:%02d ", 
634                                                 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, 
635                                                 tm->tm_hour, tm->tm_min, tm->tm_sec);
636                         }
637                 }
638                 /* List contents if we are supposed to do that */
639                 if (verboseFlag == TRUE || listFlag == TRUE) {
640                         /* Now the normal listing */
641                         printf("%s", header.name);
642                 }
643                 if (verboseFlag == TRUE && listFlag == TRUE) {
644                         /* If this is a link, say so */
645                         if (header.type==LNKTYPE)
646                                 printf(" link to %s", header.linkname);
647                         else if (header.type==SYMTYPE)
648                                 printf(" -> %s", header.linkname);
649                 }
650                 if (verboseFlag == TRUE || listFlag == TRUE) {
651                         printf("\n");
652                 }
653
654                 /* Remove any clutter lying in our way */
655                 unlink( header.name);
656
657                 /* If we got here, we can be certain we have a legitimate 
658                  * header to work with.  So work with it.  */
659                 switch ( header.type ) {
660                         case REGTYPE:
661                         case REGTYPE0:
662                                 /* If the name ends in a '/' then assume it is
663                                  * supposed to be a directory, and fall through */
664                                 if (header.name[strlen(header.name)-1] != '/') {
665                                         if (tarExtractRegularFile(&header, extractFlag, tostdoutFlag)==FALSE)
666                                                 errorFlag=TRUE;
667                                         break;
668                                 }
669                         case DIRTYPE:
670                                 if (tarExtractDirectory( &header, extractFlag, tostdoutFlag)==FALSE)
671                                         errorFlag=TRUE;
672                                 break;
673                         case LNKTYPE:
674                                 if (tarExtractHardLink( &header, extractFlag, tostdoutFlag)==FALSE)
675                                         errorFlag=TRUE;
676                                 break;
677                         case SYMTYPE:
678                                 if (tarExtractSymLink( &header, extractFlag, tostdoutFlag)==FALSE)
679                                         errorFlag=TRUE;
680                                 break;
681                         case CHRTYPE:
682                         case BLKTYPE:
683                         case FIFOTYPE:
684                                 if (tarExtractSpecial( &header, extractFlag, tostdoutFlag)==FALSE)
685                                         errorFlag=TRUE;
686                                 break;
687                         default:
688                                 close( tarFd);
689                                 return( FALSE);
690                 }
691         }
692         close(tarFd);
693         if (status > 0) {
694                 /* Bummer - we read a partial header */
695                 errorMsg( "Error reading '%s': %s\n", tarName, strerror(errno));
696                 return ( FALSE);
697         }
698         else if (errorFlag==TRUE) {
699                 errorMsg( "tar: Error exit delayed from previous errors\n");
700                 return( FALSE);
701         } else 
702                 return( status);
703
704         /* Stuff to do when we are done */
705 endgame:
706         close( tarFd);
707         if ( *(header.name) == '\0' ) {
708                 if (errorFlag==TRUE)
709                         errorMsg( "tar: Error exit delayed from previous errors\n");
710                 else
711                         return( TRUE);
712         } 
713         return( FALSE);
714 }
715
716
717 #ifdef BB_FEATURE_TAR_CREATE
718
719 /* Some info to be carried along when creating a new tarball */
720 struct TarBallInfo
721 {
722         char* fileName;               /* File name of the tarball */
723         int tarFd;                    /* Open-for-write file descriptor
724                                                                          for the tarball */
725         struct stat statBuf;          /* Stat info for the tarball, letting
726                                                                          us know the inode and device that the
727                                                                          tarball lives, so we can avoid trying 
728                                                                          to include the tarball into itself */
729         int verboseFlag;              /* Whether to print extra stuff or not */
730         char** excludeList;           /* List of files to not include */
731 };
732 typedef struct TarBallInfo TarBallInfo;
733
734
735 /* Put an octal string into the specified buffer.
736  * The number is zero and space padded and possibly null padded.
737  * Returns TRUE if successful.  */ 
738 static int putOctal (char *cp, int len, long value)
739 {
740         int tempLength;
741         char tempBuffer[32];
742         char *tempString = tempBuffer;
743
744         /* Create a string of the specified length with an initial space,
745          * leading zeroes and the octal number, and a trailing null.  */
746         sprintf (tempString, "%0*lo", len - 1, value);
747
748         /* If the string is too large, suppress the leading space.  */
749         tempLength = strlen (tempString) + 1;
750         if (tempLength > len) {
751                 tempLength--;
752                 tempString++;
753         }
754
755         /* If the string is still too large, suppress the trailing null.  */
756         if (tempLength > len)
757                 tempLength--;
758
759         /* If the string is still too large, fail.  */
760         if (tempLength > len)
761                 return FALSE;
762
763         /* Copy the string to the field.  */
764         memcpy (cp, tempString, len);
765
766         return TRUE;
767 }
768
769 /* Write out a tar header for the specified file/directory/whatever */
770 static int
771 writeTarHeader(struct TarBallInfo *tbInfo, const char *fileName, struct stat *statbuf)
772 {
773         long chksum=0;
774         struct TarHeader header;
775 #if defined BB_FEATURE_TAR_EXCLUDE
776         char** tmpList;
777 #endif
778         const unsigned char *cp = (const unsigned char *) &header;
779         ssize_t size = sizeof(struct TarHeader);
780
781         memset( &header, 0, size);
782
783         if (*fileName=='/') {
784                 static int alreadyWarned=FALSE;
785                 if (alreadyWarned==FALSE) {
786                         errorMsg("tar: Removing leading '/' from member names\n");
787                         alreadyWarned=TRUE;
788                 }
789                 strncpy(header.name, fileName+1, sizeof(header.name)); 
790         }
791         else {
792                 strncpy(header.name, fileName, sizeof(header.name)); 
793         }
794
795 #if defined BB_FEATURE_TAR_EXCLUDE
796         /* Check for excluded files....  */
797         for (tmpList=tbInfo->excludeList; tmpList && *tmpList; tmpList++) {
798                 /* Do some extra hoop jumping for when directory names
799                  * end in '/' but the entry in tmpList doesn't */
800                 if (strncmp( *tmpList, header.name, strlen(*tmpList))==0 || (
801                                         header.name[strlen(header.name)-1]=='/'
802                                         && strncmp( *tmpList, header.name, 
803                                                 MIN(strlen(header.name)-1, strlen(*tmpList)))==0)) {
804                         /* Set the mode to something that is not a regular file, thereby
805                          * faking out writeTarFile into thinking that nothing further need
806                          * be done for this file.  Yes, I know this is ugly, but it works. */
807                         statbuf->st_mode = 0;
808                         return( TRUE);
809                 }
810         }
811 #endif
812
813         putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
814         putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
815         putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
816         putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */
817         putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
818         strncpy(header.magic, TAR_MAGIC TAR_VERSION, 
819                         TAR_MAGIC_LEN + TAR_VERSION_LEN );
820
821         /* Enter the user and group names (default to root if it fails) */
822         my_getpwuid(header.uname, statbuf->st_uid);
823         if (! *header.uname)
824                 strcpy(header.uname, "root");
825         my_getgrgid(header.gname, statbuf->st_gid);
826         if (! *header.uname)
827                 strcpy(header.uname, "root");
828
829         // FIXME (or most likely not): I break Hard Links
830         if (S_ISLNK(statbuf->st_mode)) {
831                 char buffer[BUFSIZ];
832                 header.typeflag  = SYMTYPE;
833                 if ( readlink(fileName, buffer, sizeof(buffer) - 1) < 0) {
834                         errorMsg("Error reading symlink '%s': %s\n", header.name, strerror(errno));
835                         return ( FALSE);
836                 }
837                 if (*buffer=='/') {
838                         static int alreadyWarned=FALSE;
839                         if (alreadyWarned==FALSE) {
840                                 errorMsg("tar: Removing leading '/' from link names\n");
841                                 alreadyWarned=TRUE;
842                         }
843                         strncpy(header.linkname, buffer+1, sizeof(header.linkname)); 
844                 }
845                 else {
846                         strncpy(header.linkname, buffer, sizeof(header.linkname)); 
847                 }
848         } else if (S_ISDIR(statbuf->st_mode)) {
849                 header.typeflag  = DIRTYPE;
850                 strncat(header.name, "/", sizeof(header.name)); 
851         } else if (S_ISCHR(statbuf->st_mode)) {
852                 header.typeflag  = CHRTYPE;
853                 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
854                 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
855         } else if (S_ISBLK(statbuf->st_mode)) {
856                 header.typeflag  = BLKTYPE;
857                 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
858                 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
859         } else if (S_ISFIFO(statbuf->st_mode)) {
860                 header.typeflag  = FIFOTYPE;
861         } else if (S_ISREG(statbuf->st_mode)) {
862                 header.typeflag  = REGTYPE;
863                 putOctal(header.size, sizeof(header.size), statbuf->st_size);
864         } else {
865                 errorMsg("tar: %s: Unknown file type\n", fileName);
866                 return ( FALSE);
867         }
868
869         /* Calculate and store the checksum (i.e. the sum of all of the bytes of
870          * the header).  The checksum field must be filled with blanks for the
871          * calculation.  The checksum field is formatted differently from the
872          * other fields: it has [6] digits, a null, then a space -- rather than
873          * digits, followed by a null like the other fields... */
874         memset(header.chksum, ' ', sizeof(header.chksum));
875         cp = (const unsigned char *) &header;
876         while (size-- > 0)
877                 chksum += *cp++;
878         putOctal(header.chksum, 7, chksum);
879         
880         /* Now write the header out to disk */
881         if ((size=fullWrite(tbInfo->tarFd, (char*)&header, sizeof(struct TarHeader))) < 0) {
882                 errorMsg(io_error, fileName, strerror(errno)); 
883                 return ( FALSE);
884         }
885         /* Pad the header up to the tar block size */
886         for (; size<TAR_BLOCK_SIZE; size++) {
887                 write(tbInfo->tarFd, "\0", 1);
888         }
889         /* Now do the verbose thing (or not) */
890         if (tbInfo->verboseFlag==TRUE)
891                 fprintf(stdout, "%s\n", header.name);
892
893         return ( TRUE);
894 }
895
896
897 static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData)
898 {
899         struct TarBallInfo *tbInfo = (struct TarBallInfo *)userData;
900
901         /* It is against the rules to archive a socket */
902         if (S_ISSOCK(statbuf->st_mode)) {
903                 errorMsg("tar: %s: socket ignored\n", fileName);
904                 return( TRUE);
905         }
906
907         /* It is a bad idea to store the archive we are in the process of creating,
908          * so check the device and inode to be sure that this particular file isn't
909          * the new tarball */
910         if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
911                         tbInfo->statBuf.st_ino == statbuf->st_ino) {
912                 errorMsg("tar: %s: file is the archive; skipping\n", fileName);
913                 return( TRUE);
914         }
915
916         if (writeTarHeader(tbInfo, fileName, statbuf)==FALSE) {
917                 return( FALSE);
918         } 
919
920         /* Now, if the file is a regular file, copy it out to the tarball */
921         if (S_ISREG(statbuf->st_mode)) {
922                 int  inputFileFd;
923                 char buffer[BUFSIZ];
924                 ssize_t size=0, readSize=0;
925
926                 /* open the file we want to archive, and make sure all is well */
927                 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
928                         errorMsg("tar: %s: Cannot open: %s\n", fileName, strerror(errno));
929                         return( FALSE);
930                 }
931                 
932                 /* write the file to the archive */
933                 while ( (size = fullRead(inputFileFd, buffer, sizeof(buffer))) > 0 ) {
934                         if (fullWrite(tbInfo->tarFd, buffer, size) != size ) {
935                                 /* Output file seems to have a problem */
936                                 errorMsg(io_error, fileName, strerror(errno)); 
937                                 return( FALSE);
938                         }
939                         readSize+=size;
940                 }
941                 if (size == -1) {
942                         errorMsg(io_error, fileName, strerror(errno)); 
943                         return( FALSE);
944                 }
945                 /* Pad the file up to the tar block size */
946                 for (; (readSize%TAR_BLOCK_SIZE) != 0; readSize++) {
947                         write(tbInfo->tarFd, "\0", 1);
948                 }
949                 close( inputFileFd);
950         }
951
952         return( TRUE);
953 }
954
955 static int writeTarFile(const char* tarName, int tostdoutFlag, 
956                 int verboseFlag, int argc, char **argv, char** excludeList)
957 {
958         int tarFd=-1;
959         int errorFlag=FALSE;
960         ssize_t size;
961         struct TarBallInfo tbInfo;
962         tbInfo.verboseFlag = verboseFlag;
963
964         /* Make sure there is at least one file to tar up.  */
965         if (argc <= 0)
966                 fatalError("tar: Cowardly refusing to create an empty archive\n");
967
968         /* Open the tar file for writing.  */
969         if (tostdoutFlag == TRUE)
970                 tbInfo.tarFd = fileno(stdout);
971         else
972                 tbInfo.tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
973         if (tbInfo.tarFd < 0) {
974                 errorMsg( "tar: Error opening '%s': %s\n", tarName, strerror(errno));
975                 return ( FALSE);
976         }
977         tbInfo.excludeList=excludeList;
978         /* Store the stat info for the tarball's file, so
979          * can avoid including the tarball into itself....  */
980         if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
981                 fatalError(io_error, tarName, strerror(errno)); 
982
983         /* Set the umask for this process so it doesn't 
984          * screw up permission setting for us later. */
985         umask(0);
986
987         /* Read the directory/files and iterate over them one at a time */
988         while (argc-- > 0) {
989                 if (recursiveAction(*argv++, TRUE, FALSE, FALSE,
990                                         writeFileToTarball, writeFileToTarball, 
991                                         (void*) &tbInfo) == FALSE) {
992                         errorFlag = TRUE;
993                 }
994         }
995         /* Write two empty blocks to the end of the archive */
996         for (size=0; size<(2*TAR_BLOCK_SIZE); size++) {
997                 write(tbInfo.tarFd, "\0", 1);
998         }
999
1000         /* To be pedantically correct, we would check if the tarball
1001          * is smaller then 20 tar blocks, and pad it if it was smaller,
1002          * but that isn't necessary for GNU tar interoperability, and
1003          * so is considered a waste of space */
1004
1005         /* Hang up the tools, close up shop, head home */
1006         close(tarFd);
1007         if (errorFlag == TRUE) {
1008                 errorMsg("tar: Error exit delayed from previous errors\n");
1009                 return(FALSE);
1010         }
1011         return( TRUE);
1012 }
1013
1014
1015 #endif
1016