Removed unused, unneeded, Lineo-specific script.
[oweals/busybox.git] / archival / 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 "busybox.h"
40 #define BB_DECLARE_EXTERN
41 #define bb_need_io_error
42 #define bb_need_name_longer_than_foo
43 #include "messages.c"
44 #include <stdio.h>
45 #include <dirent.h>
46 #include <errno.h>
47 #include <fcntl.h>
48 #include <signal.h>
49 #include <time.h>
50 #include <utime.h>
51 #include <sys/types.h>
52 #include <sys/sysmacros.h>
53 #include <getopt.h>
54 #include <fnmatch.h>
55
56 #ifdef BB_FEATURE_TAR_GZIP
57 extern int unzip(int in, int out);
58 extern int gunzip_init();
59 #endif
60
61 /* Tar file constants  */
62 #ifndef MAJOR
63 #define MAJOR(dev) (((dev)>>8)&0xff)
64 #define MINOR(dev) ((dev)&0xff)
65 #endif
66
67 #define NAME_SIZE       100
68
69 /* POSIX tar Header Block, from POSIX 1003.1-1990  */
70 struct TarHeader
71 {
72                                 /* byte offset */
73         char name[NAME_SIZE];         /*   0-99 */
74         char mode[8];                 /* 100-107 */
75         char uid[8];                  /* 108-115 */
76         char gid[8];                  /* 116-123 */
77         char size[12];                /* 124-135 */
78         char mtime[12];               /* 136-147 */
79         char chksum[8];               /* 148-155 */
80         char typeflag;                /* 156-156 */
81         char linkname[NAME_SIZE];     /* 157-256 */
82         char magic[6];                /* 257-262 */
83         char version[2];              /* 263-264 */
84         char uname[32];               /* 265-296 */
85         char gname[32];               /* 297-328 */
86         char devmajor[8];             /* 329-336 */
87         char devminor[8];             /* 337-344 */
88         char prefix[155];             /* 345-499 */
89         char padding[12];             /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
90 };
91 typedef struct TarHeader TarHeader;
92
93
94 /* A few useful constants */
95 #define TAR_MAGIC          "ustar"        /* ustar and a null */
96 #define TAR_VERSION        "  "           /* Be compatable with GNU tar format */
97 #define TAR_MAGIC_LEN       6
98 #define TAR_VERSION_LEN     2
99 #define TAR_BLOCK_SIZE      512
100
101 /* A nice enum with all the possible tar file content types */
102 enum TarFileType 
103 {
104         REGTYPE  = '0',            /* regular file */
105         REGTYPE0 = '\0',           /* regular file (ancient bug compat)*/
106         LNKTYPE  = '1',            /* hard link */
107         SYMTYPE  = '2',            /* symbolic link */
108         CHRTYPE  = '3',            /* character special */
109         BLKTYPE  = '4',            /* block special */
110         DIRTYPE  = '5',            /* directory */
111         FIFOTYPE = '6',            /* FIFO special */
112         CONTTYPE = '7',            /* reserved */
113         GNULONGLINK = 'K',         /* GNU long (>100 chars) link name */
114         GNULONGNAME = 'L',         /* GNU long (>100 chars) file name */
115 };
116 typedef enum TarFileType TarFileType;
117
118 /* This struct ignores magic, non-numeric user name, 
119  * non-numeric group name, and the checksum, since
120  * these are all ignored by BusyBox tar. */ 
121 struct TarInfo
122 {
123         int              tarFd;          /* An open file descriptor for reading from the tarball */
124         char *           name;           /* File name */
125         mode_t           mode;           /* Unix mode, including device bits. */
126         uid_t            uid;            /* Numeric UID */
127         gid_t            gid;            /* Numeric GID */
128         size_t           size;           /* Size of file */
129         time_t           mtime;          /* Last-modified time */
130         enum TarFileType type;           /* Regular, directory, link, etc */
131         char *           linkname;       /* Name for symbolic and hard links */
132         long             devmajor;       /* Major number for special device */
133         long             devminor;       /* Minor number for special device */
134 };
135 typedef struct TarInfo TarInfo;
136
137 /* Local procedures to restore files from a tar file.  */
138 extern int readTarFile(int tarFd, int extractFlag, int listFlag, 
139                 int tostdoutFlag, int verboseFlag, char** extractList,
140                 char** excludeList);
141
142 #ifdef BB_FEATURE_TAR_CREATE
143 /* Local procedures to save files into a tar file.  */
144 static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
145                 char** excludeList);
146 #endif
147
148 #ifdef BB_FEATURE_TAR_GZIP
149 /* Signal handler for when child gzip process dies...  */
150 void child_died()
151 {
152         fflush(stdout);
153         fflush(stderr);
154         exit(EXIT_FAILURE);
155 }
156
157 extern int tar_unzip_init(int tarFd)
158 {
159         int child_pid;
160         static int unzip_pipe[2];
161         /* Cope if child dies... Otherwise we block forever in read()... */
162         signal(SIGCHLD, child_died);
163
164         if (pipe(unzip_pipe)!=0)
165                 error_msg_and_die("pipe error\n");
166                         
167         if ( (child_pid = fork()) == -1)
168                 error_msg_and_die("fork failure\n");
169
170         if (child_pid==0) {
171                 /* child process */
172                 gunzip_init();
173                 unzip(tarFd, unzip_pipe[1]);
174                 exit(EXIT_SUCCESS);
175         }
176         else
177                 /* return fd of uncompressed data to parent process */
178                 return(unzip_pipe[0]);
179 }
180 #endif
181
182 extern int tar_main(int argc, char **argv)
183 {
184         char** excludeList=NULL;
185         char** extractList=NULL;
186         const char *tarName="-";
187 #if defined BB_FEATURE_TAR_EXCLUDE
188         int excludeListSize=0;
189         char *excludeFileName ="-";
190         FILE *fileList;
191         char file[256];
192 #endif
193 #if defined BB_FEATURE_TAR_GZIP
194         int unzipFlag    = FALSE;
195 #endif
196         int listFlag     = FALSE;
197         int extractFlag  = FALSE;
198         int createFlag   = FALSE;
199         int verboseFlag  = FALSE;
200         int tostdoutFlag = FALSE;
201         int status       = FALSE;
202         int firstOpt     = TRUE;
203         int stopIt;
204
205         if (argc <= 1)
206                 usage(tar_usage);
207
208         while (*(++argv) && (**argv == '-' || firstOpt == TRUE)) {
209                 firstOpt=FALSE;
210                 stopIt=FALSE;
211                 while (stopIt==FALSE && **argv) {
212                         switch (*((*argv)++)) {
213                                 case 'c':
214                                         if (extractFlag == TRUE || listFlag == TRUE)
215                                                 goto flagError;
216                                         createFlag = TRUE;
217                                         break;
218                                 case 'x':
219                                         if (listFlag == TRUE || createFlag == TRUE)
220                                                 goto flagError;
221                                         extractFlag = TRUE;
222                                         break;
223                                 case 't':
224                                         if (extractFlag == TRUE || createFlag == TRUE)
225                                                 goto flagError;
226                                         listFlag = TRUE;
227                                         break;
228 #ifdef BB_FEATURE_TAR_GZIP
229                                 case 'z':
230                                         unzipFlag = TRUE;
231                                         break;
232 #endif
233                                 case 'v':
234                                         verboseFlag = TRUE;
235                                         break;
236                                 case 'O':
237                                         tostdoutFlag = TRUE;
238                                         break;                                  
239                                 case 'f':
240                                         if (*tarName != '-')
241                                                 error_msg_and_die( "Only one 'f' option allowed\n");
242                                         tarName = *(++argv);
243                                         if (tarName == NULL)
244                                                 error_msg_and_die( "Option requires an argument: No file specified\n");
245                                         stopIt=TRUE;
246                                         break;
247 #if defined BB_FEATURE_TAR_EXCLUDE
248                                 case 'e':
249                                         if (strcmp(*argv, "xclude")==0) {
250                                                 excludeList=xrealloc( excludeList,
251                                                                 sizeof(char *) * (excludeListSize+2));
252                                                 excludeList[excludeListSize] = *(++argv);
253                                                 if (excludeList[excludeListSize] == NULL)
254                                                         error_msg_and_die( "Option requires an argument: No file specified\n");
255                                                 /* Tack a NULL onto the end of the list */
256                                                 excludeList[++excludeListSize] = NULL;
257                                                 stopIt=TRUE;
258                                                 break;
259                                         }
260                                 case 'X':
261                                         if (*excludeFileName != '-')
262                                                 error_msg_and_die("Only one 'X' option allowed\n");
263                                         excludeFileName = *(++argv);
264                                         if (excludeFileName == NULL)
265                                                 error_msg_and_die("Option requires an argument: No file specified\n");
266                                         fileList = fopen (excludeFileName, "r");
267                                         if (! fileList)
268                                                 error_msg_and_die("Exclude file: file not found\n");
269                                         while (fgets(file, sizeof(file), fileList) != NULL) {
270                                                 excludeList = xrealloc(excludeList,
271                                                                 sizeof(char *) * (excludeListSize+2));
272                                                 if (file[strlen(file)-1] == '\n')
273                                                         file[strlen(file)-1] = '\0';
274                                                 excludeList[excludeListSize] = xstrdup(file);
275                                                 /* Tack a NULL onto the end of the list */
276                                                 excludeList[++excludeListSize] = NULL;
277                                         }
278                                         fclose(fileList);
279                                         stopIt=TRUE;
280                                         break;
281 #endif
282                                 case '-':
283                                                 break;
284                                 default:
285                                         usage(tar_usage);
286                         }
287                 }
288         }
289
290         /* 
291          * Do the correct type of action supplying the rest of the
292          * command line arguments as the list of files to process.
293          */
294         if (createFlag == TRUE) {
295 #ifndef BB_FEATURE_TAR_CREATE
296                 error_msg_and_die( "This version of tar was not compiled with tar creation support.\n");
297 #else
298 #ifdef BB_FEATURE_TAR_GZIP
299                 if (unzipFlag==TRUE)
300                         error_msg_and_die("Creation of compressed not internally support by tar, pipe to busybox gunzip\n");
301 #endif
302                 status = writeTarFile(tarName, verboseFlag, argv, excludeList);
303 #endif
304         }
305         if (listFlag == TRUE || extractFlag == TRUE) {
306                 int tarFd;
307                 if (*argv)
308                         extractList = argv;
309                 /* Open the tar file for reading.  */
310                 if (!strcmp(tarName, "-"))
311                         tarFd = fileno(stdin);
312                 else
313                         tarFd = open(tarName, O_RDONLY);
314                 if (tarFd < 0)
315                         perror_msg_and_die("Error opening '%s'", tarName);
316
317 #ifdef BB_FEATURE_TAR_GZIP      
318                 /* unzip tarFd in a seperate process */
319                 if (unzipFlag == TRUE)
320                         tarFd = tar_unzip_init(tarFd);
321 #endif                  
322                 status = readTarFile(tarFd, extractFlag, listFlag, tostdoutFlag,
323                                         verboseFlag, extractList, excludeList);
324         }
325
326         if (status == TRUE)
327                 return EXIT_SUCCESS;
328         else
329                 return EXIT_FAILURE;
330
331   flagError:
332         error_msg_and_die( "Exactly one of 'c', 'x' or 't' must be specified\n");
333 }
334                                         
335 static void
336 fixUpPermissions(TarInfo *header)
337 {
338         struct utimbuf t;
339         /* Now set permissions etc for the new file */
340         chown(header->name, header->uid, header->gid);
341         chmod(header->name, header->mode);
342         /* Reset the time */
343         t.actime = time(0);
344         t.modtime = header->mtime;
345         utime(header->name, &t);
346 }
347                                 
348 static int
349 tarExtractRegularFile(TarInfo *header, int extractFlag, int tostdoutFlag)
350 {
351         size_t  writeSize;
352         size_t  readSize;
353         size_t  actualWriteSz;
354         char    buffer[BUFSIZ];
355         size_t  size = header->size;
356         int outFd=fileno(stdout);
357
358         /* Open the file to be written, if a file is supposed to be written */
359         if (extractFlag==TRUE && tostdoutFlag==FALSE) {
360                 /* Create the path to the file, just in case it isn't there...
361                  * This should not screw up path permissions or anything. */
362                 create_path(header->name, 0777);
363                 if ((outFd=open(header->name, O_CREAT|O_TRUNC|O_WRONLY, 
364                                                 header->mode & ~S_IFMT)) < 0) {
365                         error_msg(io_error, header->name, strerror(errno)); 
366                         return( FALSE);
367                 }
368         }
369
370         /* Write out the file, if we are supposed to be doing that */
371         while ( size > 0 ) {
372                 actualWriteSz=0;
373                 if ( size > sizeof(buffer) )
374                         writeSize = readSize = sizeof(buffer);
375                 else {
376                         int mod = size % 512;
377                         if ( mod != 0 )
378                                 readSize = size + (512 - mod);
379                         else
380                                 readSize = size;
381                         writeSize = size;
382                 }
383                 if ( (readSize = full_read(header->tarFd, buffer, readSize)) <= 0 ) {
384                         /* Tarball seems to have a problem */
385                         error_msg("Unexpected EOF in archive\n"); 
386                         return( FALSE);
387                 }
388                 if ( readSize < writeSize )
389                         writeSize = readSize;
390
391                 /* Write out the file, if we are supposed to be doing that */
392                 if (extractFlag==TRUE) {
393
394                         if ((actualWriteSz=full_write(outFd, buffer, writeSize)) != writeSize ) {
395                                 /* Output file seems to have a problem */
396                                 error_msg(io_error, header->name, strerror(errno)); 
397                                 return( FALSE);
398                         }
399                 } else {
400                         actualWriteSz=writeSize;
401                 }
402
403                 size -= actualWriteSz;
404         }
405
406         /* Now we are done writing the file out, so try 
407          * and fix up the permissions and whatnot */
408         if (extractFlag==TRUE && tostdoutFlag==FALSE) {
409                 close(outFd);
410                 fixUpPermissions(header);
411         }
412         return( TRUE);
413 }
414
415 static int
416 tarExtractDirectory(TarInfo *header, int extractFlag, int tostdoutFlag)
417 {
418
419         if (extractFlag==FALSE || tostdoutFlag==TRUE)
420                 return( TRUE);
421
422         if (create_path(header->name, header->mode) != TRUE) {
423                 perror_msg("%s: Cannot mkdir", header->name); 
424                 return( FALSE);
425         }
426         /* make the final component, just in case it was
427          * omitted by create_path() (which will skip the
428          * directory if it doesn't have a terminating '/') */
429         if (mkdir(header->name, header->mode) == 0) {
430                 fixUpPermissions(header);
431         }
432         return( TRUE);
433 }
434
435 static int
436 tarExtractHardLink(TarInfo *header, int extractFlag, int tostdoutFlag)
437 {
438         if (extractFlag==FALSE || tostdoutFlag==TRUE)
439                 return( TRUE);
440
441         if (link(header->linkname, header->name) < 0) {
442                 perror_msg("%s: Cannot create hard link to '%s'", header->name,
443                                 header->linkname); 
444                 return( FALSE);
445         }
446
447         /* Now set permissions etc for the new directory */
448         fixUpPermissions(header);
449         return( TRUE);
450 }
451
452 static int
453 tarExtractSymLink(TarInfo *header, int extractFlag, int tostdoutFlag)
454 {
455         if (extractFlag==FALSE || tostdoutFlag==TRUE)
456                 return( TRUE);
457
458 #ifdef  S_ISLNK
459         if (symlink(header->linkname, header->name) < 0) {
460                 perror_msg("%s: Cannot create symlink to '%s'", header->name,
461                                 header->linkname); 
462                 return( FALSE);
463         }
464         /* Try to change ownership of the symlink.
465          * If libs doesn't support that, don't bother.
466          * Changing the pointed-to-file is the Wrong Thing(tm).
467          */
468 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
469         lchown(header->name, header->uid, header->gid);
470 #endif
471
472         /* Do not change permissions or date on symlink,
473          * since it changes the pointed to file instead.  duh. */
474 #else
475         error_msg("%s: Cannot create symlink to '%s': %s\n", 
476                         header->name, header->linkname, 
477                         "symlinks not supported"); 
478 #endif
479         return( TRUE);
480 }
481
482 static int
483 tarExtractSpecial(TarInfo *header, int extractFlag, int tostdoutFlag)
484 {
485         if (extractFlag==FALSE || tostdoutFlag==TRUE)
486                 return( TRUE);
487
488         if (S_ISCHR(header->mode) || S_ISBLK(header->mode) || S_ISSOCK(header->mode)) {
489                 if (mknod(header->name, header->mode, makedev(header->devmajor, header->devminor)) < 0) {
490                         perror_msg("%s: Cannot mknod", header->name); 
491                         return( FALSE);
492                 }
493         } else if (S_ISFIFO(header->mode)) {
494                 if (mkfifo(header->name, header->mode) < 0) {
495                         perror_msg("%s: Cannot mkfifo", header->name); 
496                         return( FALSE);
497                 }
498         }
499
500         /* Now set permissions etc for the new directory */
501         fixUpPermissions(header);
502         return( TRUE);
503 }
504
505 /* Read an octal value in a field of the specified width, with optional
506  * spaces on both sides of the number and with an optional null character
507  * at the end.  Returns -1 on an illegal format.  */
508 static long getOctal(const char *cp, int size)
509 {
510         long val = 0;
511
512         for(;(size > 0) && (*cp == ' '); cp++, size--);
513         if ((size == 0) || !is_octal(*cp))
514                 return -1;
515         for(; (size > 0) && is_octal(*cp); size--) {
516                 val = val * 8 + *cp++ - '0';
517         }
518         for (;(size > 0) && (*cp == ' '); cp++, size--);
519         if ((size > 0) && *cp)
520                 return -1;
521         return val;
522 }
523
524
525 /* Parse the tar header and fill in the nice struct with the details */
526 static int
527 readTarHeader(struct TarHeader *rawHeader, struct TarInfo *header)
528 {
529         int i;
530         long chksum, sum=0;
531         unsigned char *s = (unsigned char *)rawHeader;
532
533         header->name  = rawHeader->name;
534         /* Check for and relativify any absolute paths */
535         if ( *(header->name) == '/' ) {
536                 static int alreadyWarned=FALSE;
537
538                 while (*(header->name) == '/')
539                         ++*(header->name);
540
541                 if (alreadyWarned == FALSE) {
542                         error_msg("Removing leading '/' from member names\n");
543                         alreadyWarned = TRUE;
544                 }
545         }
546
547         header->mode  = getOctal(rawHeader->mode, sizeof(rawHeader->mode));
548         header->uid   =  getOctal(rawHeader->uid, sizeof(rawHeader->uid));
549         header->gid   =  getOctal(rawHeader->gid, sizeof(rawHeader->gid));
550         header->size  = getOctal(rawHeader->size, sizeof(rawHeader->size));
551         header->mtime = getOctal(rawHeader->mtime, sizeof(rawHeader->mtime));
552         chksum = getOctal(rawHeader->chksum, sizeof(rawHeader->chksum));
553         header->type  = rawHeader->typeflag;
554         header->linkname  = rawHeader->linkname;
555         header->devmajor  = getOctal(rawHeader->devmajor, sizeof(rawHeader->devmajor));
556         header->devminor  = getOctal(rawHeader->devminor, sizeof(rawHeader->devminor));
557
558         /* Check the checksum */
559         for (i = sizeof(*rawHeader); i-- != 0;) {
560                 sum += *s++;
561         }
562         /* Remove the effects of the checksum field (replace 
563          * with blanks for the purposes of the checksum) */
564         s = rawHeader->chksum;
565         for (i = sizeof(rawHeader->chksum) ; i-- != 0;) {
566                 sum -= *s++;
567         }
568         sum += ' ' * sizeof(rawHeader->chksum);
569         if (sum == chksum )
570                 return ( TRUE);
571         return( FALSE);
572 }
573
574 int exclude_file(char **excluded_files, const char *file)
575 {
576         int i;
577
578         if (excluded_files == NULL)
579                 return 0;
580
581         for (i = 0; excluded_files[i] != NULL; i++) {
582                 if (excluded_files[i][0] == '/') {
583                         if (fnmatch(excluded_files[i], file,
584                                                 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
585                                 return 1;
586                 } else {
587                         const char *p;
588
589                         for (p = file; p[0] != '\0'; p++) {
590                                 if ((p == file || p[-1] == '/') && p[0] != '/' &&
591                                                 fnmatch(excluded_files[i], p,
592                                                         FNM_PATHNAME | FNM_LEADING_DIR) == 0)
593                                         return 1;
594                         }
595                 }
596         }
597
598         return 0;
599 }
600
601 /*
602  * Read a tar file and extract or list the specified files within it.
603  * If the list is empty than all files are extracted or listed.
604  */
605 extern int readTarFile(int tarFd, int extractFlag, int listFlag, 
606                 int tostdoutFlag, int verboseFlag, char** extractList,
607                 char** excludeList)
608 {
609         int status;
610         int errorFlag=FALSE;
611         int skipNextHeaderFlag=FALSE;
612         TarHeader rawHeader;
613         TarInfo header;
614         char** tmpList;
615
616         /* Set the umask for this process so it doesn't 
617          * screw up permission setting for us later. */
618         umask(0);
619
620         /* Read the tar file, and iterate over it one file at a time */
621         while ( (status = full_read(tarFd, (char*)&rawHeader, TAR_BLOCK_SIZE)) == TAR_BLOCK_SIZE ) {
622
623                 /* Try to read the header */
624                 if ( readTarHeader(&rawHeader, &header) == FALSE ) {
625                         if ( *(header.name) == '\0' ) {
626                                 goto endgame;
627                         } else {
628                                 errorFlag=TRUE;
629                                 error_msg("Bad tar header, skipping\n");
630                                 continue;
631                         }
632                 }
633                 if ( *(header.name) == '\0' )
634                                 goto endgame;
635                 header.tarFd = tarFd;
636
637                 /* Skip funky extra GNU headers that precede long files */
638                 if ( (header.type == GNULONGNAME) || (header.type == GNULONGLINK) ) {
639                         skipNextHeaderFlag=TRUE;
640                         if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
641                                 errorFlag = TRUE;
642                         continue;
643                 }
644                 if ( skipNextHeaderFlag == TRUE ) { 
645                         skipNextHeaderFlag=FALSE;
646                         error_msg(name_longer_than_foo, NAME_SIZE); 
647                         if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
648                                 errorFlag = TRUE;
649                         continue;
650                 }
651
652 #if defined BB_FEATURE_TAR_EXCLUDE
653                 if (exclude_file(excludeList, header.name)) {
654                         /* There are not the droids you're looking for, move along */
655                         /* If it is a regular file, pretend to extract it with
656                          * the extractFlag set to FALSE, so the junk in the tarball
657                          * is properly skipped over */
658                         if ( header.type==REGTYPE || header.type==REGTYPE0 ) {
659                                 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
660                                         errorFlag = TRUE;
661                         }
662                         continue;
663                 }
664 #endif
665
666                 if (extractList != NULL) {
667                         int skipFlag = TRUE;
668                         for (tmpList = extractList; *tmpList != NULL; tmpList++) {
669                                 if (strncmp( *tmpList, header.name, strlen(*tmpList))==0 || (
670                                                         header.name[strlen(header.name)-1]=='/'
671                                                         && strncmp( *tmpList, header.name, 
672                                                                 MIN(strlen(header.name)-1, strlen(*tmpList)))==0)) {
673                                         /* If it is a regular file, pretend to extract it with
674                                          * the extractFlag set to FALSE, so the junk in the tarball
675                                          * is properly skipped over */
676                                         skipFlag = FALSE;
677                                         memmove(extractList+1, extractList,
678                                                                 sizeof(*extractList)*(tmpList-extractList));
679                                         extractList++;
680                                         break;
681                                 }
682                         }
683                         /* There are not the droids you're looking for, move along */
684                         if (skipFlag == TRUE) {
685                                 if ( header.type==REGTYPE || header.type==REGTYPE0 )
686                                         if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
687                                                 errorFlag = TRUE;
688                                 continue;
689                         }
690                 }
691
692                 if (listFlag == TRUE) {
693                         /* Special treatment if the list (-t) flag is on */
694                         if (verboseFlag == TRUE) {
695                                 int len, len1;
696                                 char buf[35];
697                                 struct tm *tm = localtime (&(header.mtime));
698
699                                 len=printf("%s ", mode_string(header.mode));
700                                 my_getpwuid(buf, header.uid);
701                                 if (! *buf)
702                                         len+=printf("%d", header.uid);
703                                 else
704                                         len+=printf("%s", buf);
705                                 my_getgrgid(buf, header.gid);
706                                 if (! *buf)
707                                         len+=printf("/%-d ", header.gid);
708                                 else
709                                         len+=printf("/%-s ", buf);
710
711                                 if (header.type==CHRTYPE || header.type==BLKTYPE) {
712                                         len1=snprintf(buf, sizeof(buf), "%ld,%-ld ", 
713                                                         header.devmajor, header.devminor);
714                                 } else {
715                                         len1=snprintf(buf, sizeof(buf), "%lu ", (long)header.size);
716                                 }
717                                 /* Jump through some hoops to make the columns match up */
718                                 for(;(len+len1)<31;len++)
719                                         printf(" ");
720                                 printf(buf);
721
722                                 /* Use ISO 8610 time format */
723                                 if (tm) { 
724                                         printf ("%04d-%02d-%02d %02d:%02d:%02d ", 
725                                                         tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, 
726                                                         tm->tm_hour, tm->tm_min, tm->tm_sec);
727                                 }
728                         }
729                         printf("%s", header.name);
730                         if (verboseFlag == TRUE) {
731                                 if (header.type==LNKTYPE)       /* If this is a link, say so */
732                                         printf(" link to %s", header.linkname);
733                                 else if (header.type==SYMTYPE)
734                                         printf(" -> %s", header.linkname);
735                         }
736                         printf("\n");
737                 }
738
739                 /* List contents if we are supposed to do that */
740                 if (verboseFlag == TRUE && extractFlag == TRUE) {
741                         /* Now the normal listing */
742                         FILE *vbFd = stdout;
743                         if (tostdoutFlag == TRUE)       // If the archive goes to stdout, verbose to stderr
744                                 vbFd = stderr;
745                         fprintf(vbFd, "%s\n", header.name);
746                 }
747                         
748                 /* Remove files if we would overwrite them */
749                 if (extractFlag == TRUE && tostdoutFlag == FALSE)
750                         unlink(header.name);
751
752                 /* If we got here, we can be certain we have a legitimate 
753                  * header to work with.  So work with it.  */
754                 switch ( header.type ) {
755                         case REGTYPE:
756                         case REGTYPE0:
757                                 /* If the name ends in a '/' then assume it is
758                                  * supposed to be a directory, and fall through */
759                                 if (header.name[strlen(header.name)-1] != '/') {
760                                         if (tarExtractRegularFile(&header, extractFlag, tostdoutFlag)==FALSE)
761                                                 errorFlag=TRUE;
762                                         break;
763                                 }
764                         case DIRTYPE:
765                                 if (tarExtractDirectory( &header, extractFlag, tostdoutFlag)==FALSE)
766                                         errorFlag=TRUE;
767                                 break;
768                         case LNKTYPE:
769                                 if (tarExtractHardLink( &header, extractFlag, tostdoutFlag)==FALSE)
770                                         errorFlag=TRUE;
771                                 break;
772                         case SYMTYPE:
773                                 if (tarExtractSymLink( &header, extractFlag, tostdoutFlag)==FALSE)
774                                         errorFlag=TRUE;
775                                 break;
776                         case CHRTYPE:
777                         case BLKTYPE:
778                         case FIFOTYPE:
779                                 if (tarExtractSpecial( &header, extractFlag, tostdoutFlag)==FALSE)
780                                         errorFlag=TRUE;
781                                 break;
782 #if 0
783                         /* Handled earlier */
784                         case GNULONGNAME:
785                         case GNULONGLINK:
786                                 skipNextHeaderFlag=TRUE;
787                                 break;
788 #endif
789                         default:
790                                 error_msg("Unknown file type '%c' in tar file\n", header.type);
791                                 close( tarFd);
792                                 return( FALSE);
793                 }
794         }
795         close(tarFd);
796         if (status > 0) {
797                 /* Bummer - we read a partial header */
798                 perror_msg("Error reading tar file");
799                 return ( FALSE);
800         }
801         else if (errorFlag==TRUE) {
802                 error_msg( "Error exit delayed from previous errors\n");
803                 return( FALSE);
804         } else 
805                 return( status);
806
807         /* Stuff to do when we are done */
808 endgame:
809         close( tarFd);
810         if (extractList != NULL) {
811                 for (; *extractList != NULL; extractList++) {
812                         error_msg("%s: Not found in archive\n", *extractList);
813                         errorFlag = TRUE;
814                 }
815         }
816         if ( *(header.name) == '\0' ) {
817                 if (errorFlag==TRUE)
818                         error_msg( "Error exit delayed from previous errors\n");
819                 else
820                         return( TRUE);
821         } 
822         return( FALSE);
823 }
824
825
826 #ifdef BB_FEATURE_TAR_CREATE
827
828 /*
829 ** writeTarFile(),  writeFileToTarball(), and writeTarHeader() are
830 ** the only functions that deal with the HardLinkInfo structure.
831 ** Even these functions use the xxxHardLinkInfo() functions.
832 */
833 typedef struct HardLinkInfo HardLinkInfo;
834 struct HardLinkInfo
835 {
836         HardLinkInfo *next;           /* Next entry in list */
837         dev_t dev;                    /* Device number */
838         ino_t ino;                    /* Inode number */
839         short linkCount;              /* (Hard) Link Count */
840         char name[1];                 /* Start of filename (must be last) */
841 };
842
843 /* Some info to be carried along when creating a new tarball */
844 struct TarBallInfo
845 {
846         char* fileName;               /* File name of the tarball */
847         int tarFd;                    /* Open-for-write file descriptor
848                                                                          for the tarball */
849         struct stat statBuf;          /* Stat info for the tarball, letting
850                                                                          us know the inode and device that the
851                                                                          tarball lives, so we can avoid trying 
852                                                                          to include the tarball into itself */
853         int verboseFlag;              /* Whether to print extra stuff or not */
854         char** excludeList;           /* List of files to not include */
855         HardLinkInfo *hlInfoHead;     /* Hard Link Tracking Information */
856         HardLinkInfo *hlInfo;         /* Hard Link Info for the current file */
857 };
858 typedef struct TarBallInfo TarBallInfo;
859
860
861 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
862 static void
863 addHardLinkInfo (HardLinkInfo **hlInfoHeadPtr, dev_t dev, ino_t ino,
864                 short linkCount, const char *name)
865 {
866         /* Note: hlInfoHeadPtr can never be NULL! */
867         HardLinkInfo *hlInfo;
868
869         hlInfo = (HardLinkInfo *)xmalloc(sizeof(HardLinkInfo)+strlen(name)+1);
870         if (hlInfo) {
871                 hlInfo->next = *hlInfoHeadPtr;
872                 *hlInfoHeadPtr = hlInfo;
873                 hlInfo->dev = dev;
874                 hlInfo->ino = ino;
875                 hlInfo->linkCount = linkCount;
876                 strcpy(hlInfo->name, name);
877         }
878         return;
879 }
880
881 static void
882 freeHardLinkInfo (HardLinkInfo **hlInfoHeadPtr)
883 {
884         HardLinkInfo *hlInfo = NULL;
885         HardLinkInfo *hlInfoNext = NULL;
886
887         if (hlInfoHeadPtr) {
888                 hlInfo = *hlInfoHeadPtr;
889                 while (hlInfo) {
890                         hlInfoNext = hlInfo->next;
891                         free(hlInfo);
892                         hlInfo = hlInfoNext;
893                 }
894                 *hlInfoHeadPtr = NULL;
895         }
896         return;
897 }
898
899 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
900 static HardLinkInfo *
901 findHardLinkInfo (HardLinkInfo *hlInfo, dev_t dev, ino_t ino)
902 {
903         while(hlInfo) {
904                 if ((ino == hlInfo->ino) && (dev == hlInfo->dev))
905                         break;
906                 hlInfo = hlInfo->next;
907         }
908         return(hlInfo);
909 }
910
911 /* Put an octal string into the specified buffer.
912  * The number is zero and space padded and possibly null padded.
913  * Returns TRUE if successful.  */ 
914 static int putOctal (char *cp, int len, long value)
915 {
916         int tempLength;
917         char tempBuffer[32];
918         char *tempString = tempBuffer;
919
920         /* Create a string of the specified length with an initial space,
921          * leading zeroes and the octal number, and a trailing null.  */
922         sprintf (tempString, "%0*lo", len - 1, value);
923
924         /* If the string is too large, suppress the leading space.  */
925         tempLength = strlen (tempString) + 1;
926         if (tempLength > len) {
927                 tempLength--;
928                 tempString++;
929         }
930
931         /* If the string is still too large, suppress the trailing null.  */
932         if (tempLength > len)
933                 tempLength--;
934
935         /* If the string is still too large, fail.  */
936         if (tempLength > len)
937                 return FALSE;
938
939         /* Copy the string to the field.  */
940         memcpy (cp, tempString, len);
941
942         return TRUE;
943 }
944
945 /* Write out a tar header for the specified file/directory/whatever */
946 static int
947 writeTarHeader(struct TarBallInfo *tbInfo, const char *header_name,
948                 const char *real_name, struct stat *statbuf)
949 {
950         long chksum=0;
951         struct TarHeader header;
952         const unsigned char *cp = (const unsigned char *) &header;
953         ssize_t size = sizeof(struct TarHeader);
954                 
955         memset( &header, 0, size);
956
957         strncpy(header.name, header_name, sizeof(header.name)); 
958
959         putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
960         putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
961         putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
962         putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */
963         putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
964         strncpy(header.magic, TAR_MAGIC TAR_VERSION, 
965                         TAR_MAGIC_LEN + TAR_VERSION_LEN );
966
967         /* Enter the user and group names (default to root if it fails) */
968         my_getpwuid(header.uname, statbuf->st_uid);
969         if (! *header.uname)
970                 strcpy(header.uname, "root");
971         my_getgrgid(header.gname, statbuf->st_gid);
972         if (! *header.uname)
973                 strcpy(header.uname, "root");
974
975         if (tbInfo->hlInfo) {
976                 /* This is a hard link */
977                 header.typeflag = LNKTYPE;
978                 strncpy(header.linkname, tbInfo->hlInfo->name, sizeof(header.linkname));
979         } else if (S_ISLNK(statbuf->st_mode)) {
980                 int link_size=0;
981                 char buffer[BUFSIZ];
982                 header.typeflag  = SYMTYPE;
983                 link_size = readlink(real_name, buffer, sizeof(buffer) - 1);
984                 if ( link_size < 0) {
985                         perror_msg("Error reading symlink '%s'", header.name);
986                         return ( FALSE);
987                 }
988                 buffer[link_size] = '\0';
989                 strncpy(header.linkname, buffer, sizeof(header.linkname)); 
990         } else if (S_ISDIR(statbuf->st_mode)) {
991                 header.typeflag  = DIRTYPE;
992                 strncat(header.name, "/", sizeof(header.name)); 
993         } else if (S_ISCHR(statbuf->st_mode)) {
994                 header.typeflag  = CHRTYPE;
995                 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
996                 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
997         } else if (S_ISBLK(statbuf->st_mode)) {
998                 header.typeflag  = BLKTYPE;
999                 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
1000                 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
1001         } else if (S_ISFIFO(statbuf->st_mode)) {
1002                 header.typeflag  = FIFOTYPE;
1003         } else if (S_ISREG(statbuf->st_mode)) {
1004                 header.typeflag  = REGTYPE;
1005                 putOctal(header.size, sizeof(header.size), statbuf->st_size);
1006         } else {
1007                 error_msg("%s: Unknown file type\n", real_name);
1008                 return ( FALSE);
1009         }
1010
1011         /* Calculate and store the checksum (i.e. the sum of all of the bytes of
1012          * the header).  The checksum field must be filled with blanks for the
1013          * calculation.  The checksum field is formatted differently from the
1014          * other fields: it has [6] digits, a null, then a space -- rather than
1015          * digits, followed by a null like the other fields... */
1016         memset(header.chksum, ' ', sizeof(header.chksum));
1017         cp = (const unsigned char *) &header;
1018         while (size-- > 0)
1019                 chksum += *cp++;
1020         putOctal(header.chksum, 7, chksum);
1021         
1022         /* Now write the header out to disk */
1023         if ((size=full_write(tbInfo->tarFd, (char*)&header, sizeof(struct TarHeader))) < 0) {
1024                 error_msg(io_error, real_name, strerror(errno)); 
1025                 return ( FALSE);
1026         }
1027         /* Pad the header up to the tar block size */
1028         for (; size<TAR_BLOCK_SIZE; size++) {
1029                 write(tbInfo->tarFd, "\0", 1);
1030         }
1031         /* Now do the verbose thing (or not) */
1032         if (tbInfo->verboseFlag==TRUE) {
1033                 FILE *vbFd = stdout;
1034                 if (tbInfo->tarFd == fileno(stdout))    // If the archive goes to stdout, verbose to stderr
1035                         vbFd = stderr;
1036                 fprintf(vbFd, "%s\n", header.name);
1037         }
1038
1039         return ( TRUE);
1040 }
1041
1042
1043 static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData)
1044 {
1045         struct TarBallInfo *tbInfo = (struct TarBallInfo *)userData;
1046         const char *header_name;
1047
1048         /*
1049         ** Check to see if we are dealing with a hard link.
1050         ** If so -
1051         ** Treat the first occurance of a given dev/inode as a file while
1052         ** treating any additional occurances as hard links.  This is done
1053         ** by adding the file information to the HardLinkInfo linked list.
1054         */
1055         tbInfo->hlInfo = NULL;
1056         if (statbuf->st_nlink > 1) {
1057                 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf->st_dev, 
1058                                 statbuf->st_ino);
1059                 if (tbInfo->hlInfo == NULL)
1060                         addHardLinkInfo (&tbInfo->hlInfoHead, statbuf->st_dev,
1061                                         statbuf->st_ino, statbuf->st_nlink, fileName);
1062         }
1063
1064         /* It is against the rules to archive a socket */
1065         if (S_ISSOCK(statbuf->st_mode)) {
1066                 error_msg("%s: socket ignored\n", fileName);
1067                 return( TRUE);
1068         }
1069
1070         /* It is a bad idea to store the archive we are in the process of creating,
1071          * so check the device and inode to be sure that this particular file isn't
1072          * the new tarball */
1073         if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
1074                         tbInfo->statBuf.st_ino == statbuf->st_ino) {
1075                 error_msg("%s: file is the archive; skipping\n", fileName);
1076                 return( TRUE);
1077         }
1078
1079         header_name = fileName;
1080         while (header_name[0] == '/') {
1081                 static int alreadyWarned=FALSE;
1082                 if (alreadyWarned==FALSE) {
1083                         error_msg("Removing leading '/' from member names\n");
1084                         alreadyWarned=TRUE;
1085                 }
1086                 header_name++;
1087         }
1088
1089         if (strlen(fileName) >= NAME_SIZE) {
1090                 error_msg(name_longer_than_foo, NAME_SIZE);
1091                 return ( TRUE);
1092         }
1093
1094         if (header_name[0] == '\0')
1095                 return TRUE;
1096
1097 #if defined BB_FEATURE_TAR_EXCLUDE
1098         if (exclude_file(tbInfo->excludeList, header_name)) {
1099                 return SKIP;
1100         }
1101 #endif
1102
1103         if (writeTarHeader(tbInfo, header_name, fileName, statbuf)==FALSE) {
1104                 return( FALSE);
1105         } 
1106
1107         /* Now, if the file is a regular file, copy it out to the tarball */
1108         if ((tbInfo->hlInfo == NULL)
1109         &&  (S_ISREG(statbuf->st_mode))) {
1110                 int  inputFileFd;
1111                 char buffer[BUFSIZ];
1112                 ssize_t size=0, readSize=0;
1113
1114                 /* open the file we want to archive, and make sure all is well */
1115                 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
1116                         error_msg("%s: Cannot open: %s\n", fileName, strerror(errno));
1117                         return( FALSE);
1118                 }
1119                 
1120                 /* write the file to the archive */
1121                 while ( (size = full_read(inputFileFd, buffer, sizeof(buffer))) > 0 ) {
1122                         if (full_write(tbInfo->tarFd, buffer, size) != size ) {
1123                                 /* Output file seems to have a problem */
1124                                 error_msg(io_error, fileName, strerror(errno)); 
1125                                 return( FALSE);
1126                         }
1127                         readSize+=size;
1128                 }
1129                 if (size == -1) {
1130                         error_msg(io_error, fileName, strerror(errno)); 
1131                         return( FALSE);
1132                 }
1133                 /* Pad the file up to the tar block size */
1134                 for (; (readSize%TAR_BLOCK_SIZE) != 0; readSize++) {
1135                         write(tbInfo->tarFd, "\0", 1);
1136                 }
1137                 close( inputFileFd);
1138         }
1139
1140         return( TRUE);
1141 }
1142
1143 static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
1144                 char** excludeList)
1145 {
1146         int tarFd=-1;
1147         int errorFlag=FALSE;
1148         ssize_t size;
1149         struct TarBallInfo tbInfo;
1150         tbInfo.verboseFlag = verboseFlag;
1151         tbInfo.hlInfoHead = NULL;
1152
1153         /* Make sure there is at least one file to tar up.  */
1154         if (*argv == NULL)
1155                 error_msg_and_die("Cowardly refusing to create an empty archive\n");
1156
1157         /* Open the tar file for writing.  */
1158         if (!strcmp(tarName, "-"))
1159                 tbInfo.tarFd = fileno(stdout);
1160         else
1161                 tbInfo.tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1162         if (tbInfo.tarFd < 0) {
1163                 perror_msg( "Error opening '%s'", tarName);
1164                 freeHardLinkInfo(&tbInfo.hlInfoHead);
1165                 return ( FALSE);
1166         }
1167         tbInfo.excludeList=excludeList;
1168         /* Store the stat info for the tarball's file, so
1169          * can avoid including the tarball into itself....  */
1170         if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
1171                 error_msg_and_die(io_error, tarName, strerror(errno)); 
1172
1173         /* Set the umask for this process so it doesn't 
1174          * screw up permission setting for us later. */
1175         umask(0);
1176
1177         /* Read the directory/files and iterate over them one at a time */
1178         while (*argv != NULL) {
1179                 if (recursive_action(*argv++, TRUE, FALSE, FALSE,
1180                                         writeFileToTarball, writeFileToTarball, 
1181                                         (void*) &tbInfo) == FALSE) {
1182                         errorFlag = TRUE;
1183                 }
1184         }
1185         /* Write two empty blocks to the end of the archive */
1186         for (size=0; size<(2*TAR_BLOCK_SIZE); size++) {
1187                 write(tbInfo.tarFd, "\0", 1);
1188         }
1189
1190         /* To be pedantically correct, we would check if the tarball
1191          * is smaller than 20 tar blocks, and pad it if it was smaller,
1192          * but that isn't necessary for GNU tar interoperability, and
1193          * so is considered a waste of space */
1194
1195         /* Hang up the tools, close up shop, head home */
1196         close(tarFd);
1197         if (errorFlag == TRUE) {
1198                 error_msg("Error exit delayed from previous errors\n");
1199                 freeHardLinkInfo(&tbInfo.hlInfoHead);
1200                 return(FALSE);
1201         }
1202         freeHardLinkInfo(&tbInfo.hlInfoHead);
1203         return( TRUE);
1204 }
1205
1206
1207 #endif
1208