37a28a3d020a531eb04bda330328af519a599598
[oweals/busybox.git] / tar.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  *
4  * Mini tar implementation for busybox Note, that as of BusyBox 0.43 tar has
5  * been completely rewritten from the ground up.  It still has remnents of the
6  * old code lying about, but it pretty different (i.e. cleaner, less global
7  * variables, etc)
8  *
9  * Copyright (C) 1999 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 in 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 #ifdef BB_FEATURE_TAR_CREATE
56
57 static const char tar_usage[] =
58         "tar -[cxtvOf] [tarFileName] [FILE] ...\n\n"
59         "Create, extract, or list files from a tar file.\n\n"
60         "Options:\n"
61
62         "\tc=create, x=extract, t=list contents, v=verbose,\n"
63         "\tO=extract to stdout, f=tarfile or \"-\" for stdin\n";
64
65 #else
66
67 static const char tar_usage[] =
68         "tar -[xtvOf] [tarFileName] [FILE] ...\n\n"
69         "Extract, or list files stored in a tar file.  This\n"
70         "version of tar does not support creation of tar files.\n\n"
71         "Options:\n"
72
73         "\tx=extract, t=list contents, v=verbose,\n"
74         "\tO=extract to stdout, f=tarfile or \"-\" for stdin\n";
75
76 #endif
77
78
79 /* Tar file constants  */
80 #ifndef MAJOR
81 #define MAJOR(dev) (((dev)>>8)&0xff)
82 #define MINOR(dev) ((dev)&0xff)
83 #endif
84
85
86 /* POSIX tar Header Block, from POSIX 1003.1-1990  */
87 struct TarHeader
88 {
89                                 /* byte offset */
90         char name[100];               /*   0 */
91         char mode[8];                 /* 100 */
92         char uid[8];                  /* 108 */
93         char gid[8];                  /* 116 */
94         char size[12];                /* 124 */
95         char mtime[12];               /* 136 */
96         char chksum[8];               /* 148 */
97         char typeflag;                /* 156 */
98         char linkname[100];           /* 157 */
99         char magic[6];                /* 257 */
100         char version[2];              /* 263 */
101         char uname[32];               /* 265 */
102         char gname[32];               /* 297 */
103         char devmajor[8];             /* 329 */
104         char devminor[8];             /* 337 */
105         char prefix[155];             /* 345 */
106         /* padding                       500 */
107 };
108 typedef struct TarHeader TarHeader;
109
110
111 /* A few useful constants */
112 #define TAR_MAGIC          "ustar"        /* ustar and a null */
113 #define TAR_VERSION        "00"           /* 00 and no null */
114 #define TAR_MAGIC_LEN       6
115 #define TAR_VERSION_LEN     2
116 #define TAR_NAME_LEN        100
117 #define TAR_BLOCK_SIZE      512
118
119 /* A nice enum with all the possible tar file content types */
120 enum TarFileType 
121 {
122         REGTYPE  = '0',            /* regular file */
123         REGTYPE0 = '\0',           /* regular file (ancient bug compat)*/
124         LNKTYPE  = '1',            /* hard link */
125         SYMTYPE  = '2',            /* symbolic link */
126         CHRTYPE  = '3',            /* character special */
127         BLKTYPE  = '4',            /* block special */
128         DIRTYPE  = '5',            /* directory */
129         FIFOTYPE = '6',            /* FIFO special */
130         CONTTYPE = '7',            /* reserved */
131 };
132 typedef enum TarFileType TarFileType;
133
134 /* This struct ignores magic, non-numeric user name, 
135  * non-numeric group name, and the checksum, since
136  * these are all ignored by BusyBox tar. */ 
137 struct TarInfo
138 {
139         int              tarFd;          /* An open file descriptor for reading from the tarball */
140         char *           name;           /* File name */
141         mode_t           mode;           /* Unix mode, including device bits. */
142         uid_t            uid;            /* Numeric UID */
143         gid_t            gid;            /* Numeric GID */
144         size_t           size;           /* Size of file */
145         time_t           mtime;          /* Last-modified time */
146         enum TarFileType type;           /* Regular, directory, link, etc */
147         char *           linkname;       /* Name for symbolic and hard links */
148         long             devmajor;       /* Major number for special device */
149         long             devminor;       /* Minor number for special device */
150 };
151 typedef struct TarInfo TarInfo;
152
153 /* Static data  */
154 static const unsigned long TarChecksumOffset = (const unsigned long)&(((TarHeader *)0)->chksum);
155
156
157 /* Local procedures to restore files from a tar file.  */
158 static int readTarFile(const char* tarName, int extractFlag, int listFlag, 
159                 int tostdoutFlag, int verboseFlag);
160
161
162
163 #ifdef BB_FEATURE_TAR_CREATE
164 /* Local procedures to save files into a tar file.  */
165 static int writeTarFile(const char* tarName, int extractFlag, int listFlag, 
166                 int tostdoutFlag, int verboseFlag, int argc, char **argv);
167 static int putOctal(char *cp, int len, long value);
168
169 #endif
170
171
172 extern int tar_main(int argc, char **argv)
173 {
174         const char *tarName=NULL;
175         const char *options;
176         int listFlag     = FALSE;
177         int extractFlag  = FALSE;
178         int createFlag   = FALSE;
179         int verboseFlag  = FALSE;
180         int tostdoutFlag = FALSE;
181
182         argc--;
183         argv++;
184
185         if (argc < 1)
186                 usage(tar_usage);
187
188         /* Parse options  */
189         if (**argv == '-')
190                 options = (*argv++) + 1;
191         else
192                 options = (*argv++);
193         argc--;
194
195         for (; *options; options++) {
196                 switch (*options) {
197                 case 'f':
198                         if (tarName != NULL)
199                                 fatalError( "Only one 'f' option allowed\n");
200
201                         tarName = *argv++;
202                         if (tarName == NULL)
203                                 fatalError( "Option requires an argument: No file specified\n");
204                         argc--;
205
206                         break;
207
208                 case 't':
209                         if (extractFlag == TRUE || createFlag == TRUE)
210                                 goto flagError;
211                         listFlag = TRUE;
212                         break;
213
214                 case 'x':
215                         if (listFlag == TRUE || createFlag == TRUE)
216                                 goto flagError;
217                         extractFlag = TRUE;
218                         break;
219                 case 'c':
220                         if (extractFlag == TRUE || listFlag == TRUE)
221                                 goto flagError;
222                         createFlag = TRUE;
223                         break;
224
225                 case 'v':
226                         verboseFlag = TRUE;
227                         break;
228
229                 case 'O':
230                         tostdoutFlag = TRUE;
231                         break;
232
233                 case '-':
234                         usage(tar_usage);
235                         break;
236
237                 default:
238                         fatalError( "Unknown tar flag '%c'\n" 
239                                         "Try `tar --help' for more information\n", *options);
240                 }
241         }
242
243         /* 
244          * Do the correct type of action supplying the rest of the
245          * command line arguments as the list of files to process.
246          */
247         if (createFlag == TRUE) {
248 #ifndef BB_FEATURE_TAR_CREATE
249                 fatalError( "This version of tar was not compiled with tar creation support.\n");
250 #else
251                 exit(writeTarFile(tarName, extractFlag, listFlag, tostdoutFlag, verboseFlag, argc, argv));
252 #endif
253         } else {
254                 exit(readTarFile(tarName, extractFlag, listFlag, tostdoutFlag, verboseFlag));
255         }
256
257   flagError:
258         fatalError( "Exactly one of 'c', 'x' or 't' must be specified\n");
259 }
260                                         
261 static void
262 tarExtractRegularFile(TarInfo *header, int extractFlag, int tostdoutFlag)
263 {
264         size_t  writeSize;
265         size_t  readSize;
266         size_t  actualWriteSz;
267         char    buffer[BUFSIZ];
268         size_t  size = header->size;
269         int outFd=fileno(stdout);
270
271         /* Open the file to be written, if a file is supposed to be written */
272         if (extractFlag==TRUE && tostdoutFlag==FALSE) {
273                 if ((outFd=open(header->name, O_CREAT|O_TRUNC|O_WRONLY, header->mode & ~S_IFMT)) < 0)
274                         errorMsg(io_error, header->name, strerror(errno)); 
275                 /* Create the path to the file, just in case it isn't there...
276                  * This should not screw up path permissions or anything. */
277                 createPath(header->name, 0777);
278         }
279
280         /* Write out the file, if we are supposed to be doing that */
281         while ( size > 0 ) {
282                 actualWriteSz=0;
283                 if ( size > sizeof(buffer) )
284                         writeSize = readSize = sizeof(buffer);
285                 else {
286                         int mod = size % 512;
287                         if ( mod != 0 )
288                                 readSize = size + (512 - mod);
289                         else
290                                 readSize = size;
291                         writeSize = size;
292                 }
293                 if ( (readSize = fullRead(header->tarFd, buffer, readSize)) <= 0 ) {
294                         /* Tarball seems to have a problem */
295                         errorMsg("tar: Unexpected EOF in archive\n"); 
296                         return;
297                 }
298                 if ( readSize < writeSize )
299                         writeSize = readSize;
300
301                 /* Write out the file, if we are supposed to be doing that */
302                 if (extractFlag==TRUE) {
303
304                         if ((actualWriteSz=fullWrite(outFd, buffer, writeSize)) != writeSize ) {
305                                 /* Output file seems to have a problem */
306                                 errorMsg(io_error, header->name, strerror(errno)); 
307                                 return;
308                         }
309                 }
310
311                 size -= actualWriteSz;
312         }
313
314         /* Now we are done writing the file out, so try 
315          * and fix up the permissions and whatnot */
316         if (extractFlag==TRUE && tostdoutFlag==FALSE) {
317                 struct utimbuf t;
318                 /* Now set permissions etc for the new file */
319                 fchown(outFd, header->uid, header->gid);
320                 fchmod(outFd, header->mode & ~S_IFMT);
321                 close(outFd);
322                 /* File must be closed before trying to change the date */
323                 t.actime = time(0);
324                 t.modtime = header->mtime;
325                 utime(header->name, &t);
326         }
327 }
328
329 static void
330 fixUpPermissions(TarInfo *header)
331 {
332         struct utimbuf t;
333         /* Now set permissions etc for the new file */
334         chown(header->name, header->uid, header->gid);
335         chmod(header->name, header->mode);
336         /* Reset the time */
337         t.actime = time(0);
338         t.modtime = header->mtime;
339         utime(header->name, &t);
340 }
341                                 
342 static void
343 tarExtractDirectory(TarInfo *header, int extractFlag, int tostdoutFlag)
344 {
345
346         if (extractFlag==FALSE || tostdoutFlag==TRUE)
347                 return;
348
349         if (createPath(header->name, header->mode) != TRUE) {
350                 errorMsg("Error creating directory '%s': %s", header->name, strerror(errno)); 
351                 return;  
352         }
353         /* make the final component, just in case it was
354          * omitted by createPath() (which will skip the
355          * directory if it doesn't have a terminating '/') */
356         if (mkdir(header->name, header->mode) == 0) {
357                 fixUpPermissions(header);
358         }
359 }
360
361 static void
362 tarExtractHardLink(TarInfo *header, int extractFlag, int tostdoutFlag)
363 {
364         if (extractFlag==FALSE || tostdoutFlag==TRUE)
365                 return;
366
367         if (link(header->linkname, header->name) < 0) {
368                 errorMsg("Error creating hard link '%s': %s\n", header->linkname, strerror(errno)); 
369                 return;
370         }
371
372         /* Now set permissions etc for the new directory */
373         fixUpPermissions(header);
374 }
375
376 static void
377 tarExtractSymLink(TarInfo *header, int extractFlag, int tostdoutFlag)
378 {
379         if (extractFlag==FALSE || tostdoutFlag==TRUE)
380                 return;
381
382 #ifdef  S_ISLNK
383         if (symlink(header->linkname, header->name) < 0) {
384                 errorMsg("Error creating symlink '%s': %s\n", header->linkname, strerror(errno)); 
385                 return;
386         }
387         /* Try to change ownership of the symlink.
388          * If libs doesn't support that, don't bother.
389          * Changing the pointed-to-file is the Wrong Thing(tm).
390          */
391 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
392         lchown(header->name, header->uid, header->gid);
393 #endif
394
395         /* Do not change permissions or date on symlink,
396          * since it changes the pointed to file instead.  duh. */
397 #else
398         fprintf(stderr, "Cannot create symbolic links\n");
399 #endif
400 }
401
402 static void
403 tarExtractSpecial(TarInfo *header, int extractFlag, int tostdoutFlag)
404 {
405         if (extractFlag==FALSE || tostdoutFlag==TRUE)
406                 return;
407
408         if (S_ISCHR(header->mode) || S_ISBLK(header->mode) || S_ISSOCK(header->mode)) {
409                 mknod(header->name, header->mode, makedev(header->devmajor, header->devminor));
410         } else if (S_ISFIFO(header->mode)) {
411                 mkfifo(header->name, header->mode);
412         } else {
413                 open(header->name, O_WRONLY | O_CREAT | O_TRUNC, header->mode);
414         }
415
416         /* Now set permissions etc for the new directory */
417         fixUpPermissions(header);
418 }
419
420 /* Read an octal value in a field of the specified width, with optional
421  * spaces on both sides of the number and with an optional null character
422  * at the end.  Returns -1 on an illegal format.  */
423 static long getOctal(const char *cp, int size)
424 {
425         long val = 0;
426
427         for(;(size > 0) && (*cp == ' '); cp++, size--);
428         if ((size == 0) || !isOctal(*cp))
429                 return -1;
430         for(; (size > 0) && isOctal(*cp); size--) {
431                 val = val * 8 + *cp++ - '0';
432         }
433         for (;(size > 0) && (*cp == ' '); cp++, size--);
434         if ((size > 0) && *cp)
435                 return -1;
436         return val;
437 }
438
439
440 /* Parse the tar header and fill in the nice struct with the details */
441 static int
442 parseTarHeader(struct TarHeader *rawHeader, struct TarInfo *header)
443 {
444         int i;
445         long chksum, sum;
446         unsigned char *s = (unsigned char *)rawHeader;
447
448         header->name  = rawHeader->name;
449         header->mode  = getOctal(rawHeader->mode, sizeof(rawHeader->mode));
450         header->uid   =  getOctal(rawHeader->uid, sizeof(rawHeader->uid));
451         header->gid   =  getOctal(rawHeader->gid, sizeof(rawHeader->gid));
452         header->size  = getOctal(rawHeader->size, sizeof(rawHeader->size));
453         header->mtime = getOctal(rawHeader->mtime, sizeof(rawHeader->mtime));
454         chksum = getOctal(rawHeader->chksum, sizeof(rawHeader->chksum));
455         header->type  = rawHeader->typeflag;
456         header->linkname  = rawHeader->linkname;
457         header->devmajor  = getOctal(rawHeader->devmajor, sizeof(rawHeader->devmajor));
458         header->devminor  = getOctal(rawHeader->devminor, sizeof(rawHeader->devminor));
459
460         /* Check the checksum */
461         sum = ' ' * sizeof(rawHeader->chksum);
462         for ( i = TarChecksumOffset; i > 0; i-- )
463                 sum += *s++;
464         s += sizeof(rawHeader->chksum);       
465         for ( i = (512 - TarChecksumOffset - sizeof(rawHeader->chksum)); i > 0; i-- )
466                 sum += *s++;
467         if (sum == chksum )
468                 return ( TRUE);
469         return( FALSE);
470 }
471
472
473 /*
474  * Read a tar file and extract or list the specified files within it.
475  * If the list is empty than all files are extracted or listed.
476  */
477 static int readTarFile(const char* tarName, int extractFlag, int listFlag, 
478                 int tostdoutFlag, int verboseFlag)
479 {
480         int status, tarFd=0;
481         int errorFlag=FALSE;
482         TarHeader rawHeader;
483         TarInfo header;
484         int alreadyWarned=FALSE;
485         //int skipFileFlag=FALSE;
486
487         /* Open the tar file for reading.  */
488         if (!strcmp(tarName, "-"))
489                 tarFd = fileno(stdin);
490         else
491                 tarFd = open(tarName, O_RDONLY);
492         if (tarFd < 0) {
493                 errorMsg( "Error opening '%s': %s\n", tarName, strerror(errno));
494                 return ( FALSE);
495         }
496
497         /* Set the umask for this process so it doesn't 
498          * screw up permission setting for us later. */
499         umask(0);
500
501         /* Read the tar file, and iterate over it one file at a time */
502         while ( (status = fullRead(tarFd, (char*)&rawHeader, TAR_BLOCK_SIZE)) == TAR_BLOCK_SIZE ) {
503
504                 /* First, try to read the header */
505                 if ( parseTarHeader(&rawHeader, &header) == FALSE ) {
506                         close( tarFd);
507                         if ( *(header.name) == '\0' ) {
508                                 goto endgame;
509                         } else {
510                                 errorFlag=TRUE;
511                                 errorMsg("Bad tar header, skipping\n");
512                                 continue;
513                         }
514                 }
515                 if ( *(header.name) == '\0' )
516                                 goto endgame;
517
518                 /* Check for and relativify any absolute paths */
519                 if ( *(header.name) == '/' ) {
520
521                         while (*(header.name) == '/')
522                                 ++*(header.name);
523
524                         if (alreadyWarned == FALSE) {
525                                 errorMsg("Absolute path detected, removing leading slashes\n");
526                                 alreadyWarned = TRUE;
527                         }
528                 }
529
530                 /* Special treatment if the list (-t) flag is on */
531                 if (verboseFlag == TRUE && extractFlag == FALSE) {
532                         int len, len1;
533                         char buf[35];
534                         struct tm *tm = localtime (&(header.mtime));
535
536                         len=printf("%s %d/%-d ", modeString(header.mode), header.uid, header.gid);
537                         if (header.type==CHRTYPE || header.type==BLKTYPE) {
538                                 len1=snprintf(buf, sizeof(buf), "%ld,%-ld ", 
539                                                 header.devmajor, header.devminor);
540                         } else {
541                                 len1=snprintf(buf, sizeof(buf), "%d ", header.size);
542                         }
543                         /* Jump through some hoops to make the columns match up */
544                         for(;(len+len1)<31;len++)
545                                 printf(" ");
546                         printf(buf);
547
548                         /* Use ISO 8610 time format */
549                         if (tm) { 
550                                 printf ("%04d-%02d-%02d %02d:%02d:%02d ", 
551                                                 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, 
552                                                 tm->tm_hour, tm->tm_min, tm->tm_sec);
553                         }
554                 }
555                 /* List contents if we are supposed to do that */
556                 if (verboseFlag == TRUE || listFlag == TRUE) {
557                         /* Now the normal listing */
558                         printf("%s", header.name);
559                         /* If this is a link, say so */
560                         if (header.type==LNKTYPE)
561                                 printf(" link to %s", header.linkname);
562                         else if (header.type==SYMTYPE)
563                                 printf(" -> %s", header.linkname);
564                         printf("\n");
565                 }
566
567 #if 0
568                 /* See if we want to restore this file or not */
569                 skipFileFlag=FALSE;
570                 if (wantFileName(outName) == FALSE) {
571                         skipFileFlag = TRUE;
572                 }
573 #endif
574
575                 /* If we got here, we can be certain we have a legitimate 
576                  * header to work with.  So work with it.  */
577                 switch ( header.type ) {
578                         case REGTYPE:
579                         case REGTYPE0:
580                                 /* If the name ends in a '/' then assume it is
581                                  * supposed to be a directory, and fall through */
582                                 if (header.name[strlen(header.name)-1] != '/') {
583                                         tarExtractRegularFile(&header, extractFlag, tostdoutFlag);
584                                         break;
585                                 }
586                         case DIRTYPE:
587                                 tarExtractDirectory( &header, extractFlag, tostdoutFlag);
588                                 break;
589                         case LNKTYPE:
590                                 tarExtractHardLink( &header, extractFlag, tostdoutFlag);
591                                 break;
592                         case SYMTYPE:
593                                 tarExtractSymLink( &header, extractFlag, tostdoutFlag);
594                                 break;
595                         case CHRTYPE:
596                         case BLKTYPE:
597                         case FIFOTYPE:
598                                 tarExtractSpecial( &header, extractFlag, tostdoutFlag);
599                                 break;
600                         default:
601                                 close( tarFd);
602                                 return( FALSE);
603                 }
604         }
605         close(tarFd);
606         if (status > 0) {
607                 /* Bummer - we read a partial header */
608                 errorMsg( "Error reading '%s': %s\n", tarName, strerror(errno));
609                 return ( FALSE);
610         }
611         else 
612                 return( status);
613
614         /* Stuff to do when we are done */
615 endgame:
616         close( tarFd);
617         if ( *(header.name) == '\0' ) {
618                 if (errorFlag==FALSE)
619                         return( TRUE);
620         } 
621         return( FALSE);
622 }
623
624
625 #ifdef BB_FEATURE_TAR_CREATE
626
627 /* Put an octal string into the specified buffer.
628  * The number is zero and space padded and possibly null padded.
629  * Returns TRUE if successful.  */ 
630 static int putOctal (char *cp, int len, long value)
631 {
632         int tempLength;
633         char *tempString;
634         char tempBuffer[32];
635
636         /* Create a string of the specified length with an initial space,
637          * leading zeroes and the octal number, and a trailing null.  */
638         tempString = tempBuffer;
639
640         sprintf (tempString, " %0*lo", len - 2, value);
641
642         tempLength = strlen (tempString) + 1;
643
644         /* If the string is too large, suppress the leading space.  */
645         if (tempLength > len) {
646                 tempLength--;
647                 tempString++;
648         }
649
650         /* If the string is still too large, suppress the trailing null.  */
651         if (tempLength > len)
652                 tempLength--;
653
654         /* If the string is still too large, fail.  */
655         if (tempLength > len)
656                 return FALSE;
657
658         /* Copy the string to the field.  */
659         memcpy (cp, tempString, len);
660
661         return TRUE;
662 }
663
664 static int fileAction(const char *fileName, struct stat *statbuf)
665 {
666         fprintf(stdout, "%s\n", fileName);
667         return (TRUE);
668 }
669
670 static int writeTarFile(const char* tarName, int extractFlag, int listFlag, 
671                 int tostdoutFlag, int verboseFlag, int argc, char **argv)
672 {
673         int tarFd=0;
674         //int errorFlag=FALSE;
675         //TarHeader rawHeader;
676         //TarInfo header;
677         //int alreadyWarned=FALSE;
678         char *directory = ".";
679         //int skipFileFlag=FALSE;
680
681         /* Open the tar file for writing.  */
682         if (!strcmp(tarName, "-"))
683                 tarFd = fileno(stdout);
684         else
685                 tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
686         if (tarFd < 0) {
687                 errorMsg( "Error opening '%s': %s\n", tarName, strerror(errno));
688                 return ( FALSE);
689         }
690
691         /* Set the umask for this process so it doesn't 
692          * screw up permission setting for us later. */
693         umask(0);
694
695         /* Read the directory/files and iterate over them one at a time */
696         if (recursiveAction(directory, TRUE, FALSE, FALSE,
697                                                 fileAction, fileAction) == FALSE) {
698                 exit(FALSE);
699         }
700
701
702         // TODO: DO STUFF HERE
703         close(tarFd);
704         return( TRUE);
705 }
706
707
708 #endif
709