1 /* vi: set sw=4 ts=4: */
3 * Mini tar implementation for busybox
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.)
9 * Copyright (C) 1999,2000,2001 by Lineo, inc.
10 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
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.
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.
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.
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.
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
46 #include <sys/types.h>
47 #include <sys/sysmacros.h>
55 /* Tar file constants */
57 #define MAJOR(dev) (((dev)>>8)&0xff)
58 #define MINOR(dev) ((dev)&0xff)
61 enum { NAME_SIZE = 100 }; /* because gcc won't let me use 'static const int' */
63 /* POSIX tar Header Block, from POSIX 1003.1-1990 */
67 char name[NAME_SIZE]; /* 0-99 */
68 char mode[8]; /* 100-107 */
69 char uid[8]; /* 108-115 */
70 char gid[8]; /* 116-123 */
71 char size[12]; /* 124-135 */
72 char mtime[12]; /* 136-147 */
73 char chksum[8]; /* 148-155 */
74 char typeflag; /* 156-156 */
75 char linkname[NAME_SIZE]; /* 157-256 */
76 char magic[6]; /* 257-262 */
77 char version[2]; /* 263-264 */
78 char uname[32]; /* 265-296 */
79 char gname[32]; /* 297-328 */
80 char devmajor[8]; /* 329-336 */
81 char devminor[8]; /* 337-344 */
82 char prefix[155]; /* 345-499 */
83 char padding[12]; /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
85 typedef struct TarHeader TarHeader;
88 /* A few useful constants */
89 #define TAR_MAGIC "ustar" /* ustar and a null */
90 #define TAR_VERSION " " /* Be compatable with GNU tar format */
91 static const int TAR_MAGIC_LEN = 6;
92 static const int TAR_VERSION_LEN = 2;
93 static const int TAR_BLOCK_SIZE = 512;
95 /* A nice enum with all the possible tar file content types */
98 REGTYPE = '0', /* regular file */
99 REGTYPE0 = '\0', /* regular file (ancient bug compat)*/
100 LNKTYPE = '1', /* hard link */
101 SYMTYPE = '2', /* symbolic link */
102 CHRTYPE = '3', /* character special */
103 BLKTYPE = '4', /* block special */
104 DIRTYPE = '5', /* directory */
105 FIFOTYPE = '6', /* FIFO special */
106 CONTTYPE = '7', /* reserved */
107 GNULONGLINK = 'K', /* GNU long (>100 chars) link name */
108 GNULONGNAME = 'L', /* GNU long (>100 chars) file name */
110 typedef enum TarFileType TarFileType;
112 /* This struct ignores magic, non-numeric user name,
113 * non-numeric group name, and the checksum, since
114 * these are all ignored by BusyBox tar. */
117 int tarFd; /* An open file descriptor for reading from the tarball */
118 char * name; /* File name */
119 mode_t mode; /* Unix mode, including device bits. */
120 uid_t uid; /* Numeric UID */
121 gid_t gid; /* Numeric GID */
122 size_t size; /* Size of file */
123 time_t mtime; /* Last-modified time */
124 enum TarFileType type; /* Regular, directory, link, etc. */
125 char * linkname; /* Name for symbolic and hard links */
126 long devmajor; /* Major number for special device */
127 long devminor; /* Minor number for special device */
129 typedef struct TarInfo TarInfo;
131 /* Local procedures to restore files from a tar file. */
132 static int readTarFile(int tarFd, int extractFlag, int listFlag,
133 int tostdoutFlag, int verboseFlag, char** extractList,
136 #ifdef BB_FEATURE_TAR_CREATE
137 /* Local procedures to save files into a tar file. */
138 static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
142 #if defined BB_FEATURE_TAR_EXCLUDE
143 static struct option longopts[] = {
144 { "exclude", 1, NULL, 'e' },
149 extern int tar_main(int argc, char **argv)
151 char** excludeList=NULL;
152 char** extractList=NULL;
153 const char *tarName="-";
154 const char *cwd=NULL;
155 #if defined BB_FEATURE_TAR_EXCLUDE
156 int excludeListSize=0;
160 #if defined BB_FEATURE_TAR_GZIP
161 FILE *comp_file = NULL;
162 int unzipFlag = FALSE;
164 int listFlag = FALSE;
165 int extractFlag = FALSE;
166 int createFlag = FALSE;
167 int verboseFlag = FALSE;
168 int tostdoutFlag = FALSE;
176 if (argv[1][0] != '-') {
177 char *tmp = xmalloc(strlen(argv[1]) + 2);
179 strcpy(tmp + 1, argv[1]);
184 #ifndef BB_FEATURE_TAR_EXCLUDE
185 (opt = getopt(argc, argv, "cxtzvOf:pC:"))
187 (opt = getopt_long(argc, argv, "cxtzvOf:X:pC:", longopts, NULL))
192 if (extractFlag == TRUE || listFlag == TRUE)
197 if (listFlag == TRUE || createFlag == TRUE)
202 if (extractFlag == TRUE || createFlag == TRUE)
206 #ifdef BB_FEATURE_TAR_GZIP
219 error_msg_and_die( "Only one 'f' option allowed");
222 #if defined BB_FEATURE_TAR_EXCLUDE
224 excludeList=xrealloc( excludeList,
225 sizeof(char *) * (excludeListSize+2));
226 excludeList[excludeListSize] = optarg;
227 /* Tack a NULL onto the end of the list */
228 excludeList[++excludeListSize] = NULL;
230 fileList = xfopen(optarg, "r");
231 while (fgets(file, sizeof(file), fileList) != NULL) {
232 excludeList = xrealloc(excludeList,
233 sizeof(char *) * (excludeListSize+2));
235 excludeList[excludeListSize] = xstrdup(file);
236 /* Tack a NULL onto the end of the list */
237 excludeList[++excludeListSize] = NULL;
245 cwd = xgetcwd((char *)cwd);
247 printf("cd: %s: %s\n", optarg, strerror(errno));
257 * Do the correct type of action supplying the rest of the
258 * command line arguments as the list of files to process.
260 if (createFlag == TRUE) {
261 #ifndef BB_FEATURE_TAR_CREATE
262 error_msg_and_die( "This version of tar was not compiled with tar creation support.");
264 #ifdef BB_FEATURE_TAR_GZIP
266 error_msg_and_die("Creation of compressed not internally support by tar, pipe to busybox gunzip");
268 status = writeTarFile(tarName, verboseFlag, argv + optind, excludeList);
271 if (listFlag == TRUE || extractFlag == TRUE) {
274 extractList = argv + optind;
275 /* Open the tar file for reading. */
276 if (!strcmp(tarName, "-"))
277 tarFd = fileno(stdin);
279 tarFd = open(tarName, O_RDONLY);
281 perror_msg_and_die("Error opening '%s'", tarName);
283 #ifdef BB_FEATURE_TAR_GZIP
284 /* unzip tarFd in a seperate process */
285 if (unzipFlag == TRUE) {
286 comp_file = fdopen(tarFd, "r");
288 /* set the buffer size */
289 setvbuf(comp_file, NULL, _IOFBF, 0x8000);
291 if ((tarFd = fileno(gz_open(comp_file, &pid))) == EXIT_FAILURE) {
292 error_msg_and_die("Couldnt unzip file");
296 status = readTarFile(tarFd, extractFlag, listFlag, tostdoutFlag,
297 verboseFlag, extractList, excludeList);
299 #ifdef BB_FEATURE_TAR_GZIP
300 if (unzipFlag == TRUE) {
315 error_msg_and_die( "Exactly one of 'c', 'x' or 't' must be specified");
319 fixUpPermissions(TarInfo *header)
322 /* Now set permissions etc. for the new file */
323 chown(header->name, header->uid, header->gid);
324 chmod(header->name, header->mode);
327 t.modtime = header->mtime;
328 utime(header->name, &t);
332 tarExtractRegularFile(TarInfo *header, int extractFlag, int tostdoutFlag)
336 size_t actualWriteSz;
337 char buffer[20 * TAR_BLOCK_SIZE];
338 size_t size = header->size;
339 int outFd=fileno(stdout);
341 /* Open the file to be written, if a file is supposed to be written */
342 if (extractFlag==TRUE && tostdoutFlag==FALSE) {
343 /* Create the path to the file, just in case it isn't there...
344 * This should not screw up path permissions or anything. */
345 char *dir = dirname (header->name);
346 make_directory (dir, -1, FILEUTILS_RECUR);
348 if ((outFd=open(header->name, O_CREAT|O_TRUNC|O_WRONLY,
349 header->mode & ~S_IFMT)) < 0) {
350 error_msg(io_error, header->name, strerror(errno));
355 /* Write out the file, if we are supposed to be doing that */
358 if ( size > sizeof(buffer) )
359 writeSize = readSize = sizeof(buffer);
361 int mod = size % TAR_BLOCK_SIZE;
363 readSize = size + (TAR_BLOCK_SIZE - mod);
368 if ( (readSize = full_read(header->tarFd, buffer, readSize)) <= 0 ) {
369 /* Tarball seems to have a problem */
370 error_msg("Unexpected EOF in archive");
373 if ( readSize < writeSize )
374 writeSize = readSize;
376 /* Write out the file, if we are supposed to be doing that */
377 if (extractFlag==TRUE) {
379 if ((actualWriteSz=full_write(outFd, buffer, writeSize)) != writeSize ) {
380 /* Output file seems to have a problem */
381 error_msg(io_error, header->name, strerror(errno));
385 actualWriteSz=writeSize;
388 size -= actualWriteSz;
391 /* Now we are done writing the file out, so try
392 * and fix up the permissions and whatnot */
393 if (extractFlag==TRUE && tostdoutFlag==FALSE) {
395 fixUpPermissions(header);
401 tarExtractDirectory(TarInfo *header, int extractFlag, int tostdoutFlag)
403 if (extractFlag==FALSE || tostdoutFlag==TRUE)
406 if (make_directory(header->name, header->mode, FILEUTILS_RECUR) < 0)
409 fixUpPermissions(header);
414 tarExtractHardLink(TarInfo *header, int extractFlag, int tostdoutFlag)
416 if (extractFlag==FALSE || tostdoutFlag==TRUE)
419 if (link(header->linkname, header->name) < 0) {
420 perror_msg("%s: Cannot create hard link to '%s'", header->name,
425 /* Now set permissions etc. for the new directory */
426 fixUpPermissions(header);
431 tarExtractSymLink(TarInfo *header, int extractFlag, int tostdoutFlag)
433 if (extractFlag==FALSE || tostdoutFlag==TRUE)
437 if (symlink(header->linkname, header->name) < 0) {
438 perror_msg("%s: Cannot create symlink to '%s'", header->name,
442 /* Try to change ownership of the symlink.
443 * If libs doesn't support that, don't bother.
444 * Changing the pointed-to-file is the Wrong Thing(tm).
446 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
447 lchown(header->name, header->uid, header->gid);
450 /* Do not change permissions or date on symlink,
451 * since it changes the pointed to file instead. duh. */
453 error_msg("%s: Cannot create symlink to '%s': %s",
454 header->name, header->linkname,
455 "symlinks not supported");
461 tarExtractSpecial(TarInfo *header, int extractFlag, int tostdoutFlag)
463 if (extractFlag==FALSE || tostdoutFlag==TRUE)
466 if (S_ISCHR(header->mode) || S_ISBLK(header->mode) || S_ISSOCK(header->mode)) {
467 if (mknod(header->name, header->mode, makedev(header->devmajor, header->devminor)) < 0) {
468 perror_msg("%s: Cannot mknod", header->name);
471 } else if (S_ISFIFO(header->mode)) {
472 if (mkfifo(header->name, header->mode) < 0) {
473 perror_msg("%s: Cannot mkfifo", header->name);
478 /* Now set permissions etc. for the new directory */
479 fixUpPermissions(header);
483 /* Parse the tar header and fill in the nice struct with the details */
485 readTarHeader(struct TarHeader *rawHeader, struct TarInfo *header)
489 unsigned char *s = (unsigned char *)rawHeader;
491 header->name = rawHeader->name;
492 /* Check for and relativify any absolute paths */
493 if ( *(header->name) == '/' ) {
494 static int alreadyWarned=FALSE;
496 while (*(header->name) == '/')
499 if (alreadyWarned == FALSE) {
500 error_msg("Removing leading '/' from member names");
501 alreadyWarned = TRUE;
505 header->mode = strtol(rawHeader->mode, NULL, 8);
506 header->uid = strtol(rawHeader->uid, NULL, 8);
507 header->gid = strtol(rawHeader->gid, NULL, 8);
508 header->size = strtol(rawHeader->size, NULL, 8);
509 header->mtime = strtol(rawHeader->mtime, NULL, 8);
510 chksum = strtol(rawHeader->chksum, NULL, 8);
511 header->type = rawHeader->typeflag;
512 header->linkname = rawHeader->linkname;
513 header->devmajor = strtol(rawHeader->devmajor, NULL, 8);
514 header->devminor = strtol(rawHeader->devminor, NULL, 8);
516 /* Check the checksum */
517 for (i = sizeof(*rawHeader); i-- != 0;) {
520 /* Remove the effects of the checksum field (replace
521 * with blanks for the purposes of the checksum) */
522 s = rawHeader->chksum;
523 for (i = sizeof(rawHeader->chksum) ; i-- != 0;) {
526 sum += ' ' * sizeof(rawHeader->chksum);
532 static int exclude_file(char **excluded_files, const char *file)
536 if (excluded_files == NULL)
539 for (i = 0; excluded_files[i] != NULL; i++) {
540 if (excluded_files[i][0] == '/') {
541 if (fnmatch(excluded_files[i], file,
542 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
547 for (p = file; p[0] != '\0'; p++) {
548 if ((p == file || p[-1] == '/') && p[0] != '/' &&
549 fnmatch(excluded_files[i], p,
550 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
559 static int extract_file(char **extract_files, const char *file)
563 if (extract_files == NULL)
566 for (i = 0; extract_files[i] != NULL; i++) {
567 if (fnmatch(extract_files[i], file, FNM_LEADING_DIR) == 0)
575 * Read a tar file and extract or list the specified files within it.
576 * If the list is empty than all files are extracted or listed.
578 static int readTarFile(int tarFd, int extractFlag, int listFlag,
579 int tostdoutFlag, int verboseFlag, char** extractList,
584 int skipNextHeaderFlag=FALSE;
588 /* Read the tar file, and iterate over it one file at a time */
589 while ( (status = full_read(tarFd, (char*)&rawHeader, TAR_BLOCK_SIZE)) == TAR_BLOCK_SIZE ) {
591 /* Try to read the header */
592 if ( readTarHeader(&rawHeader, &header) == FALSE ) {
593 if ( *(header.name) == '\0' ) {
597 error_msg("Bad tar header, skipping");
601 if ( *(header.name) == '\0' )
603 header.tarFd = tarFd;
605 /* Skip funky extra GNU headers that precede long files */
606 if ( (header.type == GNULONGNAME) || (header.type == GNULONGLINK) ) {
607 skipNextHeaderFlag=TRUE;
608 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
612 if ( skipNextHeaderFlag == TRUE ) {
613 skipNextHeaderFlag=FALSE;
614 error_msg(name_longer_than_foo, NAME_SIZE);
615 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
620 #if defined BB_FEATURE_TAR_EXCLUDE
621 if (exclude_file(excludeList, header.name)) {
622 /* There are not the droids you're looking for, move along */
623 /* If it is a regular file, pretend to extract it with
624 * the extractFlag set to FALSE, so the junk in the tarball
625 * is properly skipped over */
626 if ( header.type==REGTYPE || header.type==REGTYPE0 ) {
627 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
634 if (!extract_file(extractList, header.name)) {
635 /* There are not the droids you're looking for, move along */
636 /* If it is a regular file, pretend to extract it with
637 * the extractFlag set to FALSE, so the junk in the tarball
638 * is properly skipped over */
639 if ( header.type==REGTYPE || header.type==REGTYPE0 ) {
640 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
646 if (listFlag == TRUE) {
647 /* Special treatment if the list (-t) flag is on */
648 if (verboseFlag == TRUE) {
651 struct tm *tm = localtime (&(header.mtime));
653 len=printf("%s ", mode_string(header.mode));
654 my_getpwuid(buf, header.uid);
656 len+=printf("%d", header.uid);
658 len+=printf("%s", buf);
659 my_getgrgid(buf, header.gid);
661 len+=printf("/%-d ", header.gid);
663 len+=printf("/%-s ", buf);
665 if (header.type==CHRTYPE || header.type==BLKTYPE) {
666 len1=snprintf(buf, sizeof(buf), "%ld,%-ld ",
667 header.devmajor, header.devminor);
669 len1=snprintf(buf, sizeof(buf), "%lu ", (long)header.size);
671 /* Jump through some hoops to make the columns match up */
672 for(;(len+len1)<31;len++)
676 /* Use ISO 8610 time format */
678 printf ("%04d-%02d-%02d %02d:%02d:%02d ",
679 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
680 tm->tm_hour, tm->tm_min, tm->tm_sec);
683 printf("%s", header.name);
684 if (verboseFlag == TRUE) {
685 if (header.type==LNKTYPE) /* If this is a link, say so */
686 printf(" link to %s", header.linkname);
687 else if (header.type==SYMTYPE)
688 printf(" -> %s", header.linkname);
693 /* List contents if we are supposed to do that */
694 if (verboseFlag == TRUE && extractFlag == TRUE) {
695 /* Now the normal listing */
697 if (tostdoutFlag == TRUE) // If the archive goes to stdout, verbose to stderr
699 fprintf(vbFd, "%s\n", header.name);
702 /* Remove files if we would overwrite them */
703 if (extractFlag == TRUE && tostdoutFlag == FALSE)
706 /* If we got here, we can be certain we have a legitimate
707 * header to work with. So work with it. */
708 switch ( header.type ) {
711 /* If the name ends in a '/' then assume it is
712 * supposed to be a directory, and fall through */
713 if (!last_char_is(header.name,'/')) {
714 if (tarExtractRegularFile(&header, extractFlag, tostdoutFlag)==FALSE)
719 if (tarExtractDirectory( &header, extractFlag, tostdoutFlag)==FALSE)
723 if (tarExtractHardLink( &header, extractFlag, tostdoutFlag)==FALSE)
727 if (tarExtractSymLink( &header, extractFlag, tostdoutFlag)==FALSE)
733 if (tarExtractSpecial( &header, extractFlag, tostdoutFlag)==FALSE)
737 /* Handled earlier */
740 skipNextHeaderFlag=TRUE;
744 error_msg("Unknown file type '%c' in tar file", header.type);
751 /* Bummer - we read a partial header */
752 perror_msg("Error reading tar file");
755 else if (errorFlag==TRUE) {
756 error_msg( "Error exit delayed from previous errors");
761 /* Stuff to do when we are done */
764 if ( *(header.name) == '\0' ) {
766 error_msg( "Error exit delayed from previous errors");
774 #ifdef BB_FEATURE_TAR_CREATE
777 ** writeTarFile(), writeFileToTarball(), and writeTarHeader() are
778 ** the only functions that deal with the HardLinkInfo structure.
779 ** Even these functions use the xxxHardLinkInfo() functions.
781 typedef struct HardLinkInfo HardLinkInfo;
784 HardLinkInfo *next; /* Next entry in list */
785 dev_t dev; /* Device number */
786 ino_t ino; /* Inode number */
787 short linkCount; /* (Hard) Link Count */
788 char name[1]; /* Start of filename (must be last) */
791 /* Some info to be carried along when creating a new tarball */
794 char* fileName; /* File name of the tarball */
795 int tarFd; /* Open-for-write file descriptor
797 struct stat statBuf; /* Stat info for the tarball, letting
798 us know the inode and device that the
799 tarball lives, so we can avoid trying
800 to include the tarball into itself */
801 int verboseFlag; /* Whether to print extra stuff or not */
802 char** excludeList; /* List of files to not include */
803 HardLinkInfo *hlInfoHead; /* Hard Link Tracking Information */
804 HardLinkInfo *hlInfo; /* Hard Link Info for the current file */
806 typedef struct TarBallInfo TarBallInfo;
809 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
811 addHardLinkInfo (HardLinkInfo **hlInfoHeadPtr, dev_t dev, ino_t ino,
812 short linkCount, const char *name)
814 /* Note: hlInfoHeadPtr can never be NULL! */
815 HardLinkInfo *hlInfo;
817 hlInfo = (HardLinkInfo *)xmalloc(sizeof(HardLinkInfo)+strlen(name)+1);
819 hlInfo->next = *hlInfoHeadPtr;
820 *hlInfoHeadPtr = hlInfo;
823 hlInfo->linkCount = linkCount;
824 strcpy(hlInfo->name, name);
830 freeHardLinkInfo (HardLinkInfo **hlInfoHeadPtr)
832 HardLinkInfo *hlInfo = NULL;
833 HardLinkInfo *hlInfoNext = NULL;
836 hlInfo = *hlInfoHeadPtr;
838 hlInfoNext = hlInfo->next;
842 *hlInfoHeadPtr = NULL;
847 /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
848 static HardLinkInfo *
849 findHardLinkInfo (HardLinkInfo *hlInfo, dev_t dev, ino_t ino)
852 if ((ino == hlInfo->ino) && (dev == hlInfo->dev))
854 hlInfo = hlInfo->next;
859 /* Put an octal string into the specified buffer.
860 * The number is zero and space padded and possibly null padded.
861 * Returns TRUE if successful. */
862 static int putOctal (char *cp, int len, long value)
866 char *tempString = tempBuffer;
868 /* Create a string of the specified length with an initial space,
869 * leading zeroes and the octal number, and a trailing null. */
870 sprintf (tempString, "%0*lo", len - 1, value);
872 /* If the string is too large, suppress the leading space. */
873 tempLength = strlen (tempString) + 1;
874 if (tempLength > len) {
879 /* If the string is still too large, suppress the trailing null. */
880 if (tempLength > len)
883 /* If the string is still too large, fail. */
884 if (tempLength > len)
887 /* Copy the string to the field. */
888 memcpy (cp, tempString, len);
893 /* Write out a tar header for the specified file/directory/whatever */
895 writeTarHeader(struct TarBallInfo *tbInfo, const char *header_name,
896 const char *real_name, struct stat *statbuf)
899 struct TarHeader header;
900 const unsigned char *cp = (const unsigned char *) &header;
901 ssize_t size = sizeof(struct TarHeader);
903 memset( &header, 0, size);
905 strncpy(header.name, header_name, sizeof(header.name));
907 putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
908 putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
909 putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
910 putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */
911 putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
912 strncpy(header.magic, TAR_MAGIC TAR_VERSION,
913 TAR_MAGIC_LEN + TAR_VERSION_LEN );
915 /* Enter the user and group names (default to root if it fails) */
916 my_getpwuid(header.uname, statbuf->st_uid);
918 strcpy(header.uname, "root");
919 my_getgrgid(header.gname, statbuf->st_gid);
921 strcpy(header.uname, "root");
923 if (tbInfo->hlInfo) {
924 /* This is a hard link */
925 header.typeflag = LNKTYPE;
926 strncpy(header.linkname, tbInfo->hlInfo->name, sizeof(header.linkname));
927 } else if (S_ISLNK(statbuf->st_mode)) {
928 char *lpath = xreadlink(real_name);
929 if (!lpath) /* Already printed err msg inside xreadlink() */
931 header.typeflag = SYMTYPE;
932 strncpy(header.linkname, lpath, sizeof(header.linkname));
934 } else if (S_ISDIR(statbuf->st_mode)) {
935 header.typeflag = DIRTYPE;
936 strncat(header.name, "/", sizeof(header.name));
937 } else if (S_ISCHR(statbuf->st_mode)) {
938 header.typeflag = CHRTYPE;
939 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
940 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
941 } else if (S_ISBLK(statbuf->st_mode)) {
942 header.typeflag = BLKTYPE;
943 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
944 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
945 } else if (S_ISFIFO(statbuf->st_mode)) {
946 header.typeflag = FIFOTYPE;
947 } else if (S_ISREG(statbuf->st_mode)) {
948 header.typeflag = REGTYPE;
949 putOctal(header.size, sizeof(header.size), statbuf->st_size);
951 error_msg("%s: Unknown file type", real_name);
955 /* Calculate and store the checksum (i.e., the sum of all of the bytes of
956 * the header). The checksum field must be filled with blanks for the
957 * calculation. The checksum field is formatted differently from the
958 * other fields: it has [6] digits, a null, then a space -- rather than
959 * digits, followed by a null like the other fields... */
960 memset(header.chksum, ' ', sizeof(header.chksum));
961 cp = (const unsigned char *) &header;
964 putOctal(header.chksum, 7, chksum);
966 /* Now write the header out to disk */
967 if ((size=full_write(tbInfo->tarFd, (char*)&header, sizeof(struct TarHeader))) < 0) {
968 error_msg(io_error, real_name, strerror(errno));
971 /* Pad the header up to the tar block size */
972 for (; size<TAR_BLOCK_SIZE; size++) {
973 write(tbInfo->tarFd, "\0", 1);
975 /* Now do the verbose thing (or not) */
976 if (tbInfo->verboseFlag==TRUE) {
978 if (tbInfo->tarFd == fileno(stdout)) // If the archive goes to stdout, verbose to stderr
980 fprintf(vbFd, "%s\n", header.name);
987 static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData)
989 struct TarBallInfo *tbInfo = (struct TarBallInfo *)userData;
990 const char *header_name;
993 ** Check to see if we are dealing with a hard link.
995 ** Treat the first occurance of a given dev/inode as a file while
996 ** treating any additional occurances as hard links. This is done
997 ** by adding the file information to the HardLinkInfo linked list.
999 tbInfo->hlInfo = NULL;
1000 if (statbuf->st_nlink > 1) {
1001 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf->st_dev,
1003 if (tbInfo->hlInfo == NULL)
1004 addHardLinkInfo (&tbInfo->hlInfoHead, statbuf->st_dev,
1005 statbuf->st_ino, statbuf->st_nlink, fileName);
1008 /* It is against the rules to archive a socket */
1009 if (S_ISSOCK(statbuf->st_mode)) {
1010 error_msg("%s: socket ignored", fileName);
1014 /* It is a bad idea to store the archive we are in the process of creating,
1015 * so check the device and inode to be sure that this particular file isn't
1016 * the new tarball */
1017 if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
1018 tbInfo->statBuf.st_ino == statbuf->st_ino) {
1019 error_msg("%s: file is the archive; skipping", fileName);
1023 header_name = fileName;
1024 while (header_name[0] == '/') {
1025 static int alreadyWarned=FALSE;
1026 if (alreadyWarned==FALSE) {
1027 error_msg("Removing leading '/' from member names");
1033 if (strlen(fileName) >= NAME_SIZE) {
1034 error_msg(name_longer_than_foo, NAME_SIZE);
1038 if (header_name[0] == '\0')
1041 #if defined BB_FEATURE_TAR_EXCLUDE
1042 if (exclude_file(tbInfo->excludeList, header_name)) {
1047 if (writeTarHeader(tbInfo, header_name, fileName, statbuf)==FALSE) {
1051 /* Now, if the file is a regular file, copy it out to the tarball */
1052 if ((tbInfo->hlInfo == NULL)
1053 && (S_ISREG(statbuf->st_mode))) {
1055 char buffer[BUFSIZ];
1056 ssize_t size=0, readSize=0;
1058 /* open the file we want to archive, and make sure all is well */
1059 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
1060 error_msg("%s: Cannot open: %s", fileName, strerror(errno));
1064 /* write the file to the archive */
1065 while ( (size = full_read(inputFileFd, buffer, sizeof(buffer))) > 0 ) {
1066 if (full_write(tbInfo->tarFd, buffer, size) != size ) {
1067 /* Output file seems to have a problem */
1068 error_msg(io_error, fileName, strerror(errno));
1074 error_msg(io_error, fileName, strerror(errno));
1077 /* Pad the file up to the tar block size */
1078 for (; (readSize%TAR_BLOCK_SIZE) != 0; readSize++) {
1079 write(tbInfo->tarFd, "\0", 1);
1081 close( inputFileFd);
1087 static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
1091 int errorFlag=FALSE;
1093 struct TarBallInfo tbInfo;
1094 tbInfo.verboseFlag = verboseFlag;
1095 tbInfo.hlInfoHead = NULL;
1097 /* Make sure there is at least one file to tar up. */
1099 error_msg_and_die("Cowardly refusing to create an empty archive");
1101 /* Open the tar file for writing. */
1102 if (!strcmp(tarName, "-"))
1103 tbInfo.tarFd = fileno(stdout);
1105 tbInfo.tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1106 if (tbInfo.tarFd < 0) {
1107 perror_msg( "Error opening '%s'", tarName);
1108 freeHardLinkInfo(&tbInfo.hlInfoHead);
1111 tbInfo.excludeList=excludeList;
1112 /* Store the stat info for the tarball's file, so
1113 * can avoid including the tarball into itself.... */
1114 if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
1115 error_msg_and_die(io_error, tarName, strerror(errno));
1117 /* Read the directory/files and iterate over them one at a time */
1118 while (*argv != NULL) {
1119 if (recursive_action(*argv++, TRUE, FALSE, FALSE,
1120 writeFileToTarball, writeFileToTarball,
1121 (void*) &tbInfo) == FALSE) {
1125 /* Write two empty blocks to the end of the archive */
1126 for (size=0; size<(2*TAR_BLOCK_SIZE); size++) {
1127 write(tbInfo.tarFd, "\0", 1);
1130 /* To be pedantically correct, we would check if the tarball
1131 * is smaller than 20 tar blocks, and pad it if it was smaller,
1132 * but that isn't necessary for GNU tar interoperability, and
1133 * so is considered a waste of space */
1135 /* Hang up the tools, close up shop, head home */
1137 if (errorFlag == TRUE) {
1138 error_msg("Error exit delayed from previous errors");
1139 freeHardLinkInfo(&tbInfo.hlInfoHead);
1142 freeHardLinkInfo(&tbInfo.hlInfoHead);