Fix a tar bug: tar removed leading '/'s for symlink targets.
[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         header->devmajor  = getOctal(rawHeader->devmajor, sizeof(rawHeader->devmajor));
497         header->devminor  = getOctal(rawHeader->devminor, sizeof(rawHeader->devminor));
498
499         /* Check the checksum */
500         for (i = sizeof(*rawHeader); i-- != 0;) {
501                 sum += *s++;
502         }
503         /* Remove the effects of the checksum field (replace 
504          * with blanks for the purposes of the checksum) */
505         s = rawHeader->chksum;
506         for (i = sizeof(rawHeader->chksum) ; i-- != 0;) {
507                 sum -= *s++;
508         }
509         sum += ' ' * sizeof(rawHeader->chksum);
510         if (sum == chksum )
511                 return ( TRUE);
512         return( FALSE);
513 }
514
515
516 /*
517  * Read a tar file and extract or list the specified files within it.
518  * If the list is empty than all files are extracted or listed.
519  */
520 static int readTarFile(const char* tarName, int extractFlag, int listFlag, 
521                 int tostdoutFlag, int verboseFlag, char** excludeList)
522 {
523         int status, tarFd=-1;
524         int errorFlag=FALSE;
525         TarHeader rawHeader;
526         TarInfo header;
527 #if defined BB_FEATURE_TAR_EXCLUDE
528         char** tmpList;
529 #endif
530
531         /* Open the tar file for reading.  */
532         if (!strcmp(tarName, "-"))
533                 tarFd = fileno(stdin);
534         else
535                 tarFd = open(tarName, O_RDONLY);
536         if (tarFd < 0) {
537                 errorMsg( "Error opening '%s': %s\n", tarName, strerror(errno));
538                 return ( FALSE);
539         }
540
541         /* Set the umask for this process so it doesn't 
542          * screw up permission setting for us later. */
543         umask(0);
544
545         /* Read the tar file, and iterate over it one file at a time */
546         while ( (status = fullRead(tarFd, (char*)&rawHeader, TAR_BLOCK_SIZE)) == TAR_BLOCK_SIZE ) {
547
548                 /* First, try to read the header */
549                 if ( readTarHeader(&rawHeader, &header) == FALSE ) {
550                         if ( *(header.name) == '\0' ) {
551                                 goto endgame;
552                         } else {
553                                 errorFlag=TRUE;
554                                 errorMsg("Bad tar header, skipping\n");
555                                 continue;
556                         }
557                 }
558                 if ( *(header.name) == '\0' )
559                                 goto endgame;
560                 header.tarFd = tarFd;
561
562 #if defined BB_FEATURE_TAR_EXCLUDE
563                 {
564                         int skipFlag=FALSE;
565                         /* Check for excluded files....  */
566                         for (tmpList=excludeList; tmpList && *tmpList; tmpList++) {
567                                 /* Do some extra hoop jumping for when directory names
568                                  * end in '/' but the entry in tmpList doesn't */
569                                 if (strncmp( *tmpList, header.name, strlen(*tmpList))==0 || (
570                                                         header.name[strlen(header.name)-1]=='/'
571                                                         && strncmp( *tmpList, header.name, 
572                                                                 MIN(strlen(header.name)-1, strlen(*tmpList)))==0)) {
573                                         /* If it is a regular file, pretend to extract it with
574                                          * the extractFlag set to FALSE, so the junk in the tarball
575                                          * is properly skipped over */
576                                         if ( header.type==REGTYPE || header.type==REGTYPE0 ) {
577                                                         tarExtractRegularFile(&header, FALSE, FALSE);
578                                         }
579                                         skipFlag=TRUE;
580                                         break;
581                                 }
582                         }
583                         /* There are not the droids you're looking for, move along */
584                         if (skipFlag==TRUE)
585                                 continue;
586                 }
587 #endif
588                 /* Special treatment if the list (-t) flag is on */
589                 if (verboseFlag == TRUE && extractFlag == FALSE) {
590                         int len, len1;
591                         char buf[35];
592                         struct tm *tm = localtime (&(header.mtime));
593
594                         len=printf("%s ", modeString(header.mode));
595                         memset(buf, 0, 8*sizeof(char));
596                         my_getpwuid(buf, header.uid);
597                         if (! *buf)
598                                 len+=printf("%d", header.uid);
599                         else
600                                 len+=printf("%s", buf);
601                         memset(buf, 0, 8*sizeof(char));
602                         my_getgrgid(buf, header.gid);
603                         if (! *buf)
604                                 len+=printf("/%-d ", header.gid);
605                         else
606                                 len+=printf("/%-s ", buf);
607
608                         if (header.type==CHRTYPE || header.type==BLKTYPE) {
609                                 len1=snprintf(buf, sizeof(buf), "%ld,%-ld ", 
610                                                 header.devmajor, header.devminor);
611                         } else {
612                                 len1=snprintf(buf, sizeof(buf), "%d ", header.size);
613                         }
614                         /* Jump through some hoops to make the columns match up */
615                         for(;(len+len1)<31;len++)
616                                 printf(" ");
617                         printf(buf);
618
619                         /* Use ISO 8610 time format */
620                         if (tm) { 
621                                 printf ("%04d-%02d-%02d %02d:%02d:%02d ", 
622                                                 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, 
623                                                 tm->tm_hour, tm->tm_min, tm->tm_sec);
624                         }
625                 }
626                 /* List contents if we are supposed to do that */
627                 if (verboseFlag == TRUE || listFlag == TRUE) {
628                         /* Now the normal listing */
629                         printf("%s", header.name);
630                 }
631                 if (verboseFlag == TRUE && listFlag == TRUE) {
632                         /* If this is a link, say so */
633                         if (header.type==LNKTYPE)
634                                 printf(" link to %s", header.linkname);
635                         else if (header.type==SYMTYPE)
636                                 printf(" -> %s", header.linkname);
637                 }
638                 if (verboseFlag == TRUE || listFlag == TRUE) {
639                         printf("\n");
640                 }
641
642                 /* Remove any clutter lying in our way */
643                 unlink( header.name);
644
645                 /* If we got here, we can be certain we have a legitimate 
646                  * header to work with.  So work with it.  */
647                 switch ( header.type ) {
648                         case REGTYPE:
649                         case REGTYPE0:
650                                 /* If the name ends in a '/' then assume it is
651                                  * supposed to be a directory, and fall through */
652                                 if (header.name[strlen(header.name)-1] != '/') {
653                                         if (tarExtractRegularFile(&header, extractFlag, tostdoutFlag)==FALSE)
654                                                 errorFlag=TRUE;
655                                         break;
656                                 }
657                         case DIRTYPE:
658                                 if (tarExtractDirectory( &header, extractFlag, tostdoutFlag)==FALSE)
659                                         errorFlag=TRUE;
660                                 break;
661                         case LNKTYPE:
662                                 if (tarExtractHardLink( &header, extractFlag, tostdoutFlag)==FALSE)
663                                         errorFlag=TRUE;
664                                 break;
665                         case SYMTYPE:
666                                 if (tarExtractSymLink( &header, extractFlag, tostdoutFlag)==FALSE)
667                                         errorFlag=TRUE;
668                                 break;
669                         case CHRTYPE:
670                         case BLKTYPE:
671                         case FIFOTYPE:
672                                 if (tarExtractSpecial( &header, extractFlag, tostdoutFlag)==FALSE)
673                                         errorFlag=TRUE;
674                                 break;
675                         default:
676                                 close( tarFd);
677                                 return( FALSE);
678                 }
679         }
680         close(tarFd);
681         if (status > 0) {
682                 /* Bummer - we read a partial header */
683                 errorMsg( "Error reading '%s': %s\n", tarName, strerror(errno));
684                 return ( FALSE);
685         }
686         else if (errorFlag==TRUE) {
687                 errorMsg( "tar: Error exit delayed from previous errors\n");
688                 return( FALSE);
689         } else 
690                 return( status);
691
692         /* Stuff to do when we are done */
693 endgame:
694         close( tarFd);
695         if ( *(header.name) == '\0' ) {
696                 if (errorFlag==TRUE)
697                         errorMsg( "tar: Error exit delayed from previous errors\n");
698                 else
699                         return( TRUE);
700         } 
701         return( FALSE);
702 }
703
704
705 #ifdef BB_FEATURE_TAR_CREATE
706
707 /* Some info to be carried along when creating a new tarball */
708 struct TarBallInfo
709 {
710         char* fileName;               /* File name of the tarball */
711         int tarFd;                    /* Open-for-write file descriptor
712                                                                          for the tarball */
713         struct stat statBuf;          /* Stat info for the tarball, letting
714                                                                          us know the inode and device that the
715                                                                          tarball lives, so we can avoid trying 
716                                                                          to include the tarball into itself */
717         int verboseFlag;              /* Whether to print extra stuff or not */
718         char** excludeList;           /* List of files to not include */
719 };
720 typedef struct TarBallInfo TarBallInfo;
721
722
723 /* Put an octal string into the specified buffer.
724  * The number is zero and space padded and possibly null padded.
725  * Returns TRUE if successful.  */ 
726 static int putOctal (char *cp, int len, long value)
727 {
728         int tempLength;
729         char tempBuffer[32];
730         char *tempString = tempBuffer;
731
732         /* Create a string of the specified length with an initial space,
733          * leading zeroes and the octal number, and a trailing null.  */
734         sprintf (tempString, "%0*lo", len - 1, value);
735
736         /* If the string is too large, suppress the leading space.  */
737         tempLength = strlen (tempString) + 1;
738         if (tempLength > len) {
739                 tempLength--;
740                 tempString++;
741         }
742
743         /* If the string is still too large, suppress the trailing null.  */
744         if (tempLength > len)
745                 tempLength--;
746
747         /* If the string is still too large, fail.  */
748         if (tempLength > len)
749                 return FALSE;
750
751         /* Copy the string to the field.  */
752         memcpy (cp, tempString, len);
753
754         return TRUE;
755 }
756
757 /* Write out a tar header for the specified file/directory/whatever */
758 static int
759 writeTarHeader(struct TarBallInfo *tbInfo, const char *fileName, struct stat *statbuf)
760 {
761         long chksum=0;
762         struct TarHeader header;
763 #if defined BB_FEATURE_TAR_EXCLUDE
764         char** tmpList;
765 #endif
766         const unsigned char *cp = (const unsigned char *) &header;
767         ssize_t size = sizeof(struct TarHeader);
768
769         memset( &header, 0, size);
770
771         if (*fileName=='/') {
772                 static int alreadyWarned=FALSE;
773                 if (alreadyWarned==FALSE) {
774                         errorMsg("tar: Removing leading '/' from member names\n");
775                         alreadyWarned=TRUE;
776                 }
777                 strncpy(header.name, fileName+1, sizeof(header.name)); 
778         }
779         else {
780                 strncpy(header.name, fileName, sizeof(header.name)); 
781         }
782
783 #if defined BB_FEATURE_TAR_EXCLUDE
784         /* Check for excluded files....  */
785         for (tmpList=tbInfo->excludeList; tmpList && *tmpList; tmpList++) {
786                 /* Do some extra hoop jumping for when directory names
787                  * end in '/' but the entry in tmpList doesn't */
788                 if (strncmp( *tmpList, header.name, strlen(*tmpList))==0 || (
789                                         header.name[strlen(header.name)-1]=='/'
790                                         && strncmp( *tmpList, header.name, 
791                                                 MIN(strlen(header.name)-1, strlen(*tmpList)))==0)) {
792                         /* Set the mode to something that is not a regular file, thereby
793                          * faking out writeTarFile into thinking that nothing further need
794                          * be done for this file.  Yes, I know this is ugly, but it works. */
795                         statbuf->st_mode = 0;
796                         return( TRUE);
797                 }
798         }
799 #endif
800
801         putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
802         putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
803         putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
804         putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */
805         putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
806         strncpy(header.magic, TAR_MAGIC TAR_VERSION, 
807                         TAR_MAGIC_LEN + TAR_VERSION_LEN );
808
809         /* Enter the user and group names (default to root if it fails) */
810         my_getpwuid(header.uname, statbuf->st_uid);
811         if (! *header.uname)
812                 strcpy(header.uname, "root");
813         my_getgrgid(header.gname, statbuf->st_gid);
814         if (! *header.uname)
815                 strcpy(header.uname, "root");
816
817         /* WARNING/NOTICE: I break Hard Links */
818         if (S_ISLNK(statbuf->st_mode)) {
819                 char buffer[BUFSIZ];
820                 header.typeflag  = SYMTYPE;
821                 if ( readlink(fileName, buffer, sizeof(buffer) - 1) < 0) {
822                         errorMsg("Error reading symlink '%s': %s\n", header.name, strerror(errno));
823                         return ( FALSE);
824                 }
825                 strncpy(header.linkname, buffer, sizeof(header.linkname)); 
826         } else if (S_ISDIR(statbuf->st_mode)) {
827                 header.typeflag  = DIRTYPE;
828                 strncat(header.name, "/", sizeof(header.name)); 
829         } else if (S_ISCHR(statbuf->st_mode)) {
830                 header.typeflag  = CHRTYPE;
831                 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
832                 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
833         } else if (S_ISBLK(statbuf->st_mode)) {
834                 header.typeflag  = BLKTYPE;
835                 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
836                 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
837         } else if (S_ISFIFO(statbuf->st_mode)) {
838                 header.typeflag  = FIFOTYPE;
839         } else if (S_ISREG(statbuf->st_mode)) {
840                 header.typeflag  = REGTYPE;
841                 putOctal(header.size, sizeof(header.size), statbuf->st_size);
842         } else {
843                 errorMsg("tar: %s: Unknown file type\n", fileName);
844                 return ( FALSE);
845         }
846
847         /* Calculate and store the checksum (i.e. the sum of all of the bytes of
848          * the header).  The checksum field must be filled with blanks for the
849          * calculation.  The checksum field is formatted differently from the
850          * other fields: it has [6] digits, a null, then a space -- rather than
851          * digits, followed by a null like the other fields... */
852         memset(header.chksum, ' ', sizeof(header.chksum));
853         cp = (const unsigned char *) &header;
854         while (size-- > 0)
855                 chksum += *cp++;
856         putOctal(header.chksum, 7, chksum);
857         
858         /* Now write the header out to disk */
859         if ((size=fullWrite(tbInfo->tarFd, (char*)&header, sizeof(struct TarHeader))) < 0) {
860                 errorMsg(io_error, fileName, strerror(errno)); 
861                 return ( FALSE);
862         }
863         /* Pad the header up to the tar block size */
864         for (; size<TAR_BLOCK_SIZE; size++) {
865                 write(tbInfo->tarFd, "\0", 1);
866         }
867         /* Now do the verbose thing (or not) */
868         if (tbInfo->verboseFlag==TRUE)
869                 fprintf(stdout, "%s\n", header.name);
870
871         return ( TRUE);
872 }
873
874
875 static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData)
876 {
877         struct TarBallInfo *tbInfo = (struct TarBallInfo *)userData;
878
879         /* It is against the rules to archive a socket */
880         if (S_ISSOCK(statbuf->st_mode)) {
881                 errorMsg("tar: %s: socket ignored\n", fileName);
882                 return( TRUE);
883         }
884
885         /* It is a bad idea to store the archive we are in the process of creating,
886          * so check the device and inode to be sure that this particular file isn't
887          * the new tarball */
888         if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
889                         tbInfo->statBuf.st_ino == statbuf->st_ino) {
890                 errorMsg("tar: %s: file is the archive; skipping\n", fileName);
891                 return( TRUE);
892         }
893
894         if (writeTarHeader(tbInfo, fileName, statbuf)==FALSE) {
895                 return( FALSE);
896         } 
897
898         /* Now, if the file is a regular file, copy it out to the tarball */
899         if (S_ISREG(statbuf->st_mode)) {
900                 int  inputFileFd;
901                 char buffer[BUFSIZ];
902                 ssize_t size=0, readSize=0;
903
904                 /* open the file we want to archive, and make sure all is well */
905                 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
906                         errorMsg("tar: %s: Cannot open: %s\n", fileName, strerror(errno));
907                         return( FALSE);
908                 }
909                 
910                 /* write the file to the archive */
911                 while ( (size = fullRead(inputFileFd, buffer, sizeof(buffer))) > 0 ) {
912                         if (fullWrite(tbInfo->tarFd, buffer, size) != size ) {
913                                 /* Output file seems to have a problem */
914                                 errorMsg(io_error, fileName, strerror(errno)); 
915                                 return( FALSE);
916                         }
917                         readSize+=size;
918                 }
919                 if (size == -1) {
920                         errorMsg(io_error, fileName, strerror(errno)); 
921                         return( FALSE);
922                 }
923                 /* Pad the file up to the tar block size */
924                 for (; (readSize%TAR_BLOCK_SIZE) != 0; readSize++) {
925                         write(tbInfo->tarFd, "\0", 1);
926                 }
927                 close( inputFileFd);
928         }
929
930         return( TRUE);
931 }
932
933 static int writeTarFile(const char* tarName, int tostdoutFlag, 
934                 int verboseFlag, int argc, char **argv, char** excludeList)
935 {
936         int tarFd=-1;
937         int errorFlag=FALSE;
938         ssize_t size;
939         struct TarBallInfo tbInfo;
940         tbInfo.verboseFlag = verboseFlag;
941
942         /* Make sure there is at least one file to tar up.  */
943         if (argc <= 0)
944                 fatalError("tar: Cowardly refusing to create an empty archive\n");
945
946         /* Open the tar file for writing.  */
947         if (tostdoutFlag == TRUE)
948                 tbInfo.tarFd = fileno(stdout);
949         else
950                 tbInfo.tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
951         if (tbInfo.tarFd < 0) {
952                 errorMsg( "tar: Error opening '%s': %s\n", tarName, strerror(errno));
953                 return ( FALSE);
954         }
955         tbInfo.excludeList=excludeList;
956         /* Store the stat info for the tarball's file, so
957          * can avoid including the tarball into itself....  */
958         if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
959                 fatalError(io_error, tarName, strerror(errno)); 
960
961         /* Set the umask for this process so it doesn't 
962          * screw up permission setting for us later. */
963         umask(0);
964
965         /* Read the directory/files and iterate over them one at a time */
966         while (argc-- > 0) {
967                 if (recursiveAction(*argv++, TRUE, FALSE, FALSE,
968                                         writeFileToTarball, writeFileToTarball, 
969                                         (void*) &tbInfo) == FALSE) {
970                         errorFlag = TRUE;
971                 }
972         }
973         /* Write two empty blocks to the end of the archive */
974         for (size=0; size<(2*TAR_BLOCK_SIZE); size++) {
975                 write(tbInfo.tarFd, "\0", 1);
976         }
977
978         /* To be pedantically correct, we would check if the tarball
979          * is smaller then 20 tar blocks, and pad it if it was smaller,
980          * but that isn't necessary for GNU tar interoperability, and
981          * so is considered a waste of space */
982
983         /* Hang up the tools, close up shop, head home */
984         close(tarFd);
985         if (errorFlag == TRUE) {
986                 errorMsg("tar: Error exit delayed from previous errors\n");
987                 return(FALSE);
988         }
989         return( TRUE);
990 }
991
992
993 #endif
994