Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2 | /* |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 3 | * Mini tar implementation for busybox |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 4 | * |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 5 | * Modifed to use common extraction code used by ar, cpio, dpkg-deb, dpkg |
| 6 | * Glenn McGrath <bug1@optushome.com.au> |
| 7 | * |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 8 | * Note, that as of BusyBox-0.43, tar has been completely rewritten from the |
| 9 | * ground up. It still has remnents of the old code lying about, but it is |
Eric Andersen | 77d9268 | 2001-05-23 20:32:09 +0000 | [diff] [blame] | 10 | * very different now (i.e., cleaner, less global variables, etc.) |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 11 | * |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 12 | * Copyright (C) 1999,2000,2001 by Lineo, inc. |
Erik Andersen | 1ad302a | 2000-03-24 00:54:46 +0000 | [diff] [blame] | 13 | * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 14 | * |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 15 | * Based in part in the tar implementation in sash |
| 16 | * Copyright (c) 1999 by David I. Bell |
| 17 | * Permission is granted to use, distribute, or modify this source, |
| 18 | * provided that this copyright notice remains intact. |
| 19 | * Permission to distribute sash derived code under the GPL has been granted. |
| 20 | * |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 21 | * Based in part on the tar implementation from busybox-0.28 |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 22 | * Copyright (C) 1995 Bruce Perens |
| 23 | * This is free software under the GNU General Public License. |
| 24 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 25 | * This program is free software; you can redistribute it and/or modify |
| 26 | * it under the terms of the GNU General Public License as published by |
| 27 | * the Free Software Foundation; either version 2 of the License, or |
| 28 | * (at your option) any later version. |
| 29 | * |
| 30 | * This program is distributed in the hope that it will be useful, |
| 31 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 32 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 33 | * General Public License for more details. |
| 34 | * |
| 35 | * You should have received a copy of the GNU General Public License |
| 36 | * along with this program; if not, write to the Free Software |
| 37 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 38 | * |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 39 | */ |
| 40 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 41 | #include <fcntl.h> |
Matt Kraai | 43c8c38 | 2000-09-04 16:51:55 +0000 | [diff] [blame] | 42 | #include <getopt.h> |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 43 | #include <search.h> |
| 44 | #include <stdio.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 45 | #include <stdlib.h> |
| 46 | #include <unistd.h> |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 47 | #include <fnmatch.h> |
| 48 | #include <string.h> |
| 49 | #include <errno.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 50 | #include "busybox.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 51 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 52 | #ifdef BB_FEATURE_TAR_CREATE |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 53 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 54 | /* Tar file constants */ |
| 55 | # define TAR_MAGIC "ustar" /* ustar and a null */ |
| 56 | # define TAR_VERSION " " /* Be compatable with GNU tar format */ |
| 57 | |
| 58 | # ifndef MAJOR |
| 59 | # define MAJOR(dev) (((dev)>>8)&0xff) |
| 60 | # define MINOR(dev) ((dev)&0xff) |
| 61 | # endif |
| 62 | |
| 63 | static const int TAR_BLOCK_SIZE = 512; |
| 64 | static const int TAR_MAGIC_LEN = 6; |
| 65 | static const int TAR_VERSION_LEN = 2; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 66 | |
Erik Andersen | 298854f | 2000-03-23 01:09:18 +0000 | [diff] [blame] | 67 | /* POSIX tar Header Block, from POSIX 1003.1-1990 */ |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 68 | enum { NAME_SIZE = 100 }; /* because gcc won't let me use 'static const int' */ |
Erik Andersen | 298854f | 2000-03-23 01:09:18 +0000 | [diff] [blame] | 69 | struct TarHeader |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 70 | { /* byte offset */ |
Eric Andersen | 1b1cfde | 2000-09-24 00:54:37 +0000 | [diff] [blame] | 71 | char name[NAME_SIZE]; /* 0-99 */ |
Erik Andersen | 0817d13 | 2000-04-09 15:17:40 +0000 | [diff] [blame] | 72 | char mode[8]; /* 100-107 */ |
| 73 | char uid[8]; /* 108-115 */ |
| 74 | char gid[8]; /* 116-123 */ |
| 75 | char size[12]; /* 124-135 */ |
| 76 | char mtime[12]; /* 136-147 */ |
| 77 | char chksum[8]; /* 148-155 */ |
| 78 | char typeflag; /* 156-156 */ |
Eric Andersen | 1b1cfde | 2000-09-24 00:54:37 +0000 | [diff] [blame] | 79 | char linkname[NAME_SIZE]; /* 157-256 */ |
Erik Andersen | 0817d13 | 2000-04-09 15:17:40 +0000 | [diff] [blame] | 80 | char magic[6]; /* 257-262 */ |
| 81 | char version[2]; /* 263-264 */ |
| 82 | char uname[32]; /* 265-296 */ |
| 83 | char gname[32]; /* 297-328 */ |
| 84 | char devmajor[8]; /* 329-336 */ |
| 85 | char devminor[8]; /* 337-344 */ |
| 86 | char prefix[155]; /* 345-499 */ |
| 87 | char padding[12]; /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */ |
Erik Andersen | 298854f | 2000-03-23 01:09:18 +0000 | [diff] [blame] | 88 | }; |
| 89 | typedef struct TarHeader TarHeader; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 90 | |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 91 | /* |
| 92 | ** writeTarFile(), writeFileToTarball(), and writeTarHeader() are |
| 93 | ** the only functions that deal with the HardLinkInfo structure. |
| 94 | ** Even these functions use the xxxHardLinkInfo() functions. |
| 95 | */ |
| 96 | typedef struct HardLinkInfo HardLinkInfo; |
| 97 | struct HardLinkInfo |
| 98 | { |
| 99 | HardLinkInfo *next; /* Next entry in list */ |
| 100 | dev_t dev; /* Device number */ |
| 101 | ino_t ino; /* Inode number */ |
| 102 | short linkCount; /* (Hard) Link Count */ |
| 103 | char name[1]; /* Start of filename (must be last) */ |
| 104 | }; |
| 105 | |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 106 | /* Some info to be carried along when creating a new tarball */ |
| 107 | struct TarBallInfo |
| 108 | { |
| 109 | char* fileName; /* File name of the tarball */ |
| 110 | int tarFd; /* Open-for-write file descriptor |
| 111 | for the tarball */ |
| 112 | struct stat statBuf; /* Stat info for the tarball, letting |
| 113 | us know the inode and device that the |
| 114 | tarball lives, so we can avoid trying |
| 115 | to include the tarball into itself */ |
| 116 | int verboseFlag; /* Whether to print extra stuff or not */ |
Erik Andersen | ecd5124 | 2000-04-08 03:08:21 +0000 | [diff] [blame] | 117 | char** excludeList; /* List of files to not include */ |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 118 | HardLinkInfo *hlInfoHead; /* Hard Link Tracking Information */ |
| 119 | HardLinkInfo *hlInfo; /* Hard Link Info for the current file */ |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 120 | }; |
| 121 | typedef struct TarBallInfo TarBallInfo; |
| 122 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 123 | /* A nice enum with all the possible tar file content types */ |
| 124 | enum TarFileType |
| 125 | { |
| 126 | REGTYPE = '0', /* regular file */ |
| 127 | REGTYPE0 = '\0', /* regular file (ancient bug compat)*/ |
| 128 | LNKTYPE = '1', /* hard link */ |
| 129 | SYMTYPE = '2', /* symbolic link */ |
| 130 | CHRTYPE = '3', /* character special */ |
| 131 | BLKTYPE = '4', /* block special */ |
| 132 | DIRTYPE = '5', /* directory */ |
| 133 | FIFOTYPE = '6', /* FIFO special */ |
| 134 | CONTTYPE = '7', /* reserved */ |
| 135 | GNULONGLINK = 'K', /* GNU long (>100 chars) link name */ |
| 136 | GNULONGNAME = 'L', /* GNU long (>100 chars) file name */ |
| 137 | }; |
| 138 | typedef enum TarFileType TarFileType; |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 139 | |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 140 | /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */ |
| 141 | static void |
| 142 | addHardLinkInfo (HardLinkInfo **hlInfoHeadPtr, dev_t dev, ino_t ino, |
| 143 | short linkCount, const char *name) |
| 144 | { |
| 145 | /* Note: hlInfoHeadPtr can never be NULL! */ |
| 146 | HardLinkInfo *hlInfo; |
| 147 | |
| 148 | hlInfo = (HardLinkInfo *)xmalloc(sizeof(HardLinkInfo)+strlen(name)+1); |
| 149 | if (hlInfo) { |
| 150 | hlInfo->next = *hlInfoHeadPtr; |
| 151 | *hlInfoHeadPtr = hlInfo; |
| 152 | hlInfo->dev = dev; |
| 153 | hlInfo->ino = ino; |
| 154 | hlInfo->linkCount = linkCount; |
| 155 | strcpy(hlInfo->name, name); |
| 156 | } |
| 157 | return; |
| 158 | } |
| 159 | |
| 160 | static void |
| 161 | freeHardLinkInfo (HardLinkInfo **hlInfoHeadPtr) |
| 162 | { |
| 163 | HardLinkInfo *hlInfo = NULL; |
| 164 | HardLinkInfo *hlInfoNext = NULL; |
| 165 | |
| 166 | if (hlInfoHeadPtr) { |
| 167 | hlInfo = *hlInfoHeadPtr; |
| 168 | while (hlInfo) { |
| 169 | hlInfoNext = hlInfo->next; |
| 170 | free(hlInfo); |
| 171 | hlInfo = hlInfoNext; |
| 172 | } |
| 173 | *hlInfoHeadPtr = NULL; |
| 174 | } |
| 175 | return; |
| 176 | } |
| 177 | |
| 178 | /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */ |
| 179 | static HardLinkInfo * |
| 180 | findHardLinkInfo (HardLinkInfo *hlInfo, dev_t dev, ino_t ino) |
| 181 | { |
| 182 | while(hlInfo) { |
| 183 | if ((ino == hlInfo->ino) && (dev == hlInfo->dev)) |
| 184 | break; |
| 185 | hlInfo = hlInfo->next; |
| 186 | } |
| 187 | return(hlInfo); |
| 188 | } |
| 189 | |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 190 | /* Put an octal string into the specified buffer. |
| 191 | * The number is zero and space padded and possibly null padded. |
| 192 | * Returns TRUE if successful. */ |
| 193 | static int putOctal (char *cp, int len, long value) |
| 194 | { |
| 195 | int tempLength; |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 196 | char tempBuffer[32]; |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 197 | char *tempString = tempBuffer; |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 198 | |
| 199 | /* Create a string of the specified length with an initial space, |
| 200 | * leading zeroes and the octal number, and a trailing null. */ |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 201 | sprintf (tempString, "%0*lo", len - 1, value); |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 202 | |
| 203 | /* If the string is too large, suppress the leading space. */ |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 204 | tempLength = strlen (tempString) + 1; |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 205 | if (tempLength > len) { |
| 206 | tempLength--; |
| 207 | tempString++; |
| 208 | } |
| 209 | |
| 210 | /* If the string is still too large, suppress the trailing null. */ |
| 211 | if (tempLength > len) |
| 212 | tempLength--; |
| 213 | |
| 214 | /* If the string is still too large, fail. */ |
| 215 | if (tempLength > len) |
| 216 | return FALSE; |
| 217 | |
| 218 | /* Copy the string to the field. */ |
| 219 | memcpy (cp, tempString, len); |
| 220 | |
| 221 | return TRUE; |
| 222 | } |
| 223 | |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 224 | /* Write out a tar header for the specified file/directory/whatever */ |
Erik Andersen | 3364d78 | 2000-03-28 00:58:14 +0000 | [diff] [blame] | 225 | static int |
Matt Kraai | e80a263 | 2000-12-19 20:45:49 +0000 | [diff] [blame] | 226 | writeTarHeader(struct TarBallInfo *tbInfo, const char *header_name, |
| 227 | const char *real_name, struct stat *statbuf) |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 228 | { |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 229 | long chksum=0; |
| 230 | struct TarHeader header; |
| 231 | const unsigned char *cp = (const unsigned char *) &header; |
| 232 | ssize_t size = sizeof(struct TarHeader); |
Eric Andersen | fdd5103 | 2000-08-02 18:48:26 +0000 | [diff] [blame] | 233 | |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 234 | memset( &header, 0, size); |
Erik Andersen | 3364d78 | 2000-03-28 00:58:14 +0000 | [diff] [blame] | 235 | |
Matt Kraai | e80a263 | 2000-12-19 20:45:49 +0000 | [diff] [blame] | 236 | strncpy(header.name, header_name, sizeof(header.name)); |
Erik Andersen | ecd5124 | 2000-04-08 03:08:21 +0000 | [diff] [blame] | 237 | |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 238 | putOctal(header.mode, sizeof(header.mode), statbuf->st_mode); |
| 239 | putOctal(header.uid, sizeof(header.uid), statbuf->st_uid); |
| 240 | putOctal(header.gid, sizeof(header.gid), statbuf->st_gid); |
| 241 | putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */ |
| 242 | putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime); |
| 243 | strncpy(header.magic, TAR_MAGIC TAR_VERSION, |
| 244 | TAR_MAGIC_LEN + TAR_VERSION_LEN ); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 245 | |
Erik Andersen | 84e09e4 | 2000-04-08 20:58:35 +0000 | [diff] [blame] | 246 | /* Enter the user and group names (default to root if it fails) */ |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 247 | my_getpwuid(header.uname, statbuf->st_uid); |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 248 | if (! *header.uname) |
Erik Andersen | 84e09e4 | 2000-04-08 20:58:35 +0000 | [diff] [blame] | 249 | strcpy(header.uname, "root"); |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 250 | my_getgrgid(header.gname, statbuf->st_gid); |
| 251 | if (! *header.uname) |
Erik Andersen | 84e09e4 | 2000-04-08 20:58:35 +0000 | [diff] [blame] | 252 | strcpy(header.uname, "root"); |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 253 | |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 254 | if (tbInfo->hlInfo) { |
| 255 | /* This is a hard link */ |
| 256 | header.typeflag = LNKTYPE; |
| 257 | strncpy(header.linkname, tbInfo->hlInfo->name, sizeof(header.linkname)); |
| 258 | } else if (S_ISLNK(statbuf->st_mode)) { |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 259 | char *lpath = xreadlink(real_name); |
Eric Andersen | 28355a3 | 2001-05-07 17:48:28 +0000 | [diff] [blame] | 260 | if (!lpath) /* Already printed err msg inside xreadlink() */ |
| 261 | return ( FALSE); |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 262 | header.typeflag = SYMTYPE; |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 263 | strncpy(header.linkname, lpath, sizeof(header.linkname)); |
| 264 | free(lpath); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 265 | } else if (S_ISDIR(statbuf->st_mode)) { |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 266 | header.typeflag = DIRTYPE; |
| 267 | strncat(header.name, "/", sizeof(header.name)); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 268 | } else if (S_ISCHR(statbuf->st_mode)) { |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 269 | header.typeflag = CHRTYPE; |
| 270 | putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev)); |
| 271 | putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev)); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 272 | } else if (S_ISBLK(statbuf->st_mode)) { |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 273 | header.typeflag = BLKTYPE; |
| 274 | putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev)); |
| 275 | putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev)); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 276 | } else if (S_ISFIFO(statbuf->st_mode)) { |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 277 | header.typeflag = FIFOTYPE; |
| 278 | } else if (S_ISREG(statbuf->st_mode)) { |
| 279 | header.typeflag = REGTYPE; |
| 280 | putOctal(header.size, sizeof(header.size), statbuf->st_size); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 281 | } else { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 282 | error_msg("%s: Unknown file type", real_name); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 283 | return ( FALSE); |
| 284 | } |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 285 | |
Eric Andersen | 77d9268 | 2001-05-23 20:32:09 +0000 | [diff] [blame] | 286 | /* Calculate and store the checksum (i.e., the sum of all of the bytes of |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 287 | * the header). The checksum field must be filled with blanks for the |
| 288 | * calculation. The checksum field is formatted differently from the |
| 289 | * other fields: it has [6] digits, a null, then a space -- rather than |
| 290 | * digits, followed by a null like the other fields... */ |
| 291 | memset(header.chksum, ' ', sizeof(header.chksum)); |
| 292 | cp = (const unsigned char *) &header; |
| 293 | while (size-- > 0) |
| 294 | chksum += *cp++; |
| 295 | putOctal(header.chksum, 7, chksum); |
| 296 | |
| 297 | /* Now write the header out to disk */ |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 298 | if ((size=full_write(tbInfo->tarFd, (char*)&header, sizeof(struct TarHeader))) < 0) { |
Matt Kraai | e80a263 | 2000-12-19 20:45:49 +0000 | [diff] [blame] | 299 | error_msg(io_error, real_name, strerror(errno)); |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 300 | return ( FALSE); |
| 301 | } |
| 302 | /* Pad the header up to the tar block size */ |
| 303 | for (; size<TAR_BLOCK_SIZE; size++) { |
| 304 | write(tbInfo->tarFd, "\0", 1); |
| 305 | } |
| 306 | /* Now do the verbose thing (or not) */ |
Eric Andersen | fdd5103 | 2000-08-02 18:48:26 +0000 | [diff] [blame] | 307 | if (tbInfo->verboseFlag==TRUE) { |
| 308 | FILE *vbFd = stdout; |
| 309 | if (tbInfo->tarFd == fileno(stdout)) // If the archive goes to stdout, verbose to stderr |
| 310 | vbFd = stderr; |
| 311 | fprintf(vbFd, "%s\n", header.name); |
| 312 | } |
Erik Andersen | 3364d78 | 2000-03-28 00:58:14 +0000 | [diff] [blame] | 313 | |
| 314 | return ( TRUE); |
| 315 | } |
| 316 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 317 | static int exclude_file(char **excluded_files, const char *file) |
| 318 | { |
| 319 | int i; |
| 320 | |
| 321 | if (excluded_files == NULL) |
| 322 | return 0; |
| 323 | |
| 324 | for (i = 0; excluded_files[i] != NULL; i++) { |
| 325 | if (excluded_files[i][0] == '/') { |
| 326 | if (fnmatch(excluded_files[i], file, |
| 327 | FNM_PATHNAME | FNM_LEADING_DIR) == 0) |
| 328 | return 1; |
| 329 | } else { |
| 330 | const char *p; |
| 331 | |
| 332 | for (p = file; p[0] != '\0'; p++) { |
| 333 | if ((p == file || p[-1] == '/') && p[0] != '/' && |
| 334 | fnmatch(excluded_files[i], p, |
| 335 | FNM_PATHNAME | FNM_LEADING_DIR) == 0) |
| 336 | return 1; |
| 337 | } |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | return 0; |
| 342 | } |
Erik Andersen | 3364d78 | 2000-03-28 00:58:14 +0000 | [diff] [blame] | 343 | |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 344 | static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData) |
Erik Andersen | 3364d78 | 2000-03-28 00:58:14 +0000 | [diff] [blame] | 345 | { |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 346 | struct TarBallInfo *tbInfo = (struct TarBallInfo *)userData; |
Matt Kraai | e80a263 | 2000-12-19 20:45:49 +0000 | [diff] [blame] | 347 | const char *header_name; |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 348 | |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 349 | /* |
| 350 | ** Check to see if we are dealing with a hard link. |
| 351 | ** If so - |
| 352 | ** Treat the first occurance of a given dev/inode as a file while |
| 353 | ** treating any additional occurances as hard links. This is done |
| 354 | ** by adding the file information to the HardLinkInfo linked list. |
| 355 | */ |
| 356 | tbInfo->hlInfo = NULL; |
| 357 | if (statbuf->st_nlink > 1) { |
| 358 | tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf->st_dev, |
| 359 | statbuf->st_ino); |
| 360 | if (tbInfo->hlInfo == NULL) |
| 361 | addHardLinkInfo (&tbInfo->hlInfoHead, statbuf->st_dev, |
| 362 | statbuf->st_ino, statbuf->st_nlink, fileName); |
| 363 | } |
| 364 | |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 365 | /* It is against the rules to archive a socket */ |
| 366 | if (S_ISSOCK(statbuf->st_mode)) { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 367 | error_msg("%s: socket ignored", fileName); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 368 | return( TRUE); |
| 369 | } |
| 370 | |
| 371 | /* It is a bad idea to store the archive we are in the process of creating, |
| 372 | * so check the device and inode to be sure that this particular file isn't |
| 373 | * the new tarball */ |
| 374 | if (tbInfo->statBuf.st_dev == statbuf->st_dev && |
| 375 | tbInfo->statBuf.st_ino == statbuf->st_ino) { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 376 | error_msg("%s: file is the archive; skipping", fileName); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 377 | return( TRUE); |
| 378 | } |
| 379 | |
Matt Kraai | e80a263 | 2000-12-19 20:45:49 +0000 | [diff] [blame] | 380 | header_name = fileName; |
| 381 | while (header_name[0] == '/') { |
Matt Kraai | a1f9775 | 2000-12-19 06:24:08 +0000 | [diff] [blame] | 382 | static int alreadyWarned=FALSE; |
| 383 | if (alreadyWarned==FALSE) { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 384 | error_msg("Removing leading '/' from member names"); |
Matt Kraai | a1f9775 | 2000-12-19 06:24:08 +0000 | [diff] [blame] | 385 | alreadyWarned=TRUE; |
| 386 | } |
Matt Kraai | e80a263 | 2000-12-19 20:45:49 +0000 | [diff] [blame] | 387 | header_name++; |
Matt Kraai | a1f9775 | 2000-12-19 06:24:08 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Eric Andersen | 1b1cfde | 2000-09-24 00:54:37 +0000 | [diff] [blame] | 390 | if (strlen(fileName) >= NAME_SIZE) { |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 391 | error_msg(name_longer_than_foo, NAME_SIZE); |
Eric Andersen | 1b1cfde | 2000-09-24 00:54:37 +0000 | [diff] [blame] | 392 | return ( TRUE); |
| 393 | } |
| 394 | |
Matt Kraai | e80a263 | 2000-12-19 20:45:49 +0000 | [diff] [blame] | 395 | if (header_name[0] == '\0') |
Matt Kraai | a1f9775 | 2000-12-19 06:24:08 +0000 | [diff] [blame] | 396 | return TRUE; |
| 397 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 398 | # if defined BB_FEATURE_TAR_EXCLUDE |
Matt Kraai | be7499c | 2001-01-03 17:22:10 +0000 | [diff] [blame] | 399 | if (exclude_file(tbInfo->excludeList, header_name)) { |
| 400 | return SKIP; |
Matt Kraai | a1f9775 | 2000-12-19 06:24:08 +0000 | [diff] [blame] | 401 | } |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 402 | # endif //BB_FEATURE_TAR_EXCLUDE |
Matt Kraai | a1f9775 | 2000-12-19 06:24:08 +0000 | [diff] [blame] | 403 | |
Matt Kraai | e80a263 | 2000-12-19 20:45:49 +0000 | [diff] [blame] | 404 | if (writeTarHeader(tbInfo, header_name, fileName, statbuf)==FALSE) { |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 405 | return( FALSE); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 406 | } |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 407 | |
| 408 | /* Now, if the file is a regular file, copy it out to the tarball */ |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 409 | if ((tbInfo->hlInfo == NULL) |
| 410 | && (S_ISREG(statbuf->st_mode))) { |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 411 | int inputFileFd; |
| 412 | char buffer[BUFSIZ]; |
| 413 | ssize_t size=0, readSize=0; |
| 414 | |
| 415 | /* open the file we want to archive, and make sure all is well */ |
| 416 | if ((inputFileFd = open(fileName, O_RDONLY)) < 0) { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 417 | error_msg("%s: Cannot open: %s", fileName, strerror(errno)); |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 418 | return( FALSE); |
| 419 | } |
| 420 | |
| 421 | /* write the file to the archive */ |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 422 | while ( (size = full_read(inputFileFd, buffer, sizeof(buffer))) > 0 ) { |
| 423 | if (full_write(tbInfo->tarFd, buffer, size) != size ) { |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 424 | /* Output file seems to have a problem */ |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 425 | error_msg(io_error, fileName, strerror(errno)); |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 426 | return( FALSE); |
| 427 | } |
| 428 | readSize+=size; |
| 429 | } |
| 430 | if (size == -1) { |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 431 | error_msg(io_error, fileName, strerror(errno)); |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 432 | return( FALSE); |
| 433 | } |
| 434 | /* Pad the file up to the tar block size */ |
| 435 | for (; (readSize%TAR_BLOCK_SIZE) != 0; readSize++) { |
| 436 | write(tbInfo->tarFd, "\0", 1); |
| 437 | } |
| 438 | close( inputFileFd); |
| 439 | } |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 440 | |
| 441 | return( TRUE); |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 442 | } |
| 443 | |
Matt Kraai | d8ad76c | 2000-11-08 02:35:47 +0000 | [diff] [blame] | 444 | static int writeTarFile(const char* tarName, int verboseFlag, char **argv, |
| 445 | char** excludeList) |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 446 | { |
Erik Andersen | 3364d78 | 2000-03-28 00:58:14 +0000 | [diff] [blame] | 447 | int tarFd=-1; |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 448 | int errorFlag=FALSE; |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 449 | ssize_t size; |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 450 | struct TarBallInfo tbInfo; |
| 451 | tbInfo.verboseFlag = verboseFlag; |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 452 | tbInfo.hlInfoHead = NULL; |
Erik Andersen | 3364d78 | 2000-03-28 00:58:14 +0000 | [diff] [blame] | 453 | |
| 454 | /* Make sure there is at least one file to tar up. */ |
Matt Kraai | d8ad76c | 2000-11-08 02:35:47 +0000 | [diff] [blame] | 455 | if (*argv == NULL) |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 456 | error_msg_and_die("Cowardly refusing to create an empty archive"); |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 457 | |
| 458 | /* Open the tar file for writing. */ |
Matt Kraai | d8ad76c | 2000-11-08 02:35:47 +0000 | [diff] [blame] | 459 | if (!strcmp(tarName, "-")) |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 460 | tbInfo.tarFd = fileno(stdout); |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 461 | else |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 462 | tbInfo.tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644); |
| 463 | if (tbInfo.tarFd < 0) { |
Matt Kraai | 1fa1ade | 2000-12-18 03:57:16 +0000 | [diff] [blame] | 464 | perror_msg( "Error opening '%s'", tarName); |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 465 | freeHardLinkInfo(&tbInfo.hlInfoHead); |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 466 | return ( FALSE); |
| 467 | } |
Erik Andersen | ecd5124 | 2000-04-08 03:08:21 +0000 | [diff] [blame] | 468 | tbInfo.excludeList=excludeList; |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 469 | /* Store the stat info for the tarball's file, so |
| 470 | * can avoid including the tarball into itself.... */ |
| 471 | if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 472 | error_msg_and_die(io_error, tarName, strerror(errno)); |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 473 | |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 474 | /* Read the directory/files and iterate over them one at a time */ |
Matt Kraai | d8ad76c | 2000-11-08 02:35:47 +0000 | [diff] [blame] | 475 | while (*argv != NULL) { |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 476 | if (recursive_action(*argv++, TRUE, FALSE, FALSE, |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 477 | writeFileToTarball, writeFileToTarball, |
| 478 | (void*) &tbInfo) == FALSE) { |
| 479 | errorFlag = TRUE; |
Erik Andersen | 3364d78 | 2000-03-28 00:58:14 +0000 | [diff] [blame] | 480 | } |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 481 | } |
Erik Andersen | 5661fe0 | 2000-04-05 01:00:52 +0000 | [diff] [blame] | 482 | /* Write two empty blocks to the end of the archive */ |
| 483 | for (size=0; size<(2*TAR_BLOCK_SIZE); size++) { |
| 484 | write(tbInfo.tarFd, "\0", 1); |
| 485 | } |
Erik Andersen | 0817d13 | 2000-04-09 15:17:40 +0000 | [diff] [blame] | 486 | |
| 487 | /* To be pedantically correct, we would check if the tarball |
Eric Andersen | 3c5ee9a | 2000-11-14 22:15:48 +0000 | [diff] [blame] | 488 | * is smaller than 20 tar blocks, and pad it if it was smaller, |
Erik Andersen | 0817d13 | 2000-04-09 15:17:40 +0000 | [diff] [blame] | 489 | * but that isn't necessary for GNU tar interoperability, and |
| 490 | * so is considered a waste of space */ |
| 491 | |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 492 | /* Hang up the tools, close up shop, head home */ |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 493 | close(tarFd); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 494 | if (errorFlag == TRUE) { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 495 | error_msg("Error exit delayed from previous errors"); |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 496 | freeHardLinkInfo(&tbInfo.hlInfoHead); |
Erik Andersen | 68a9ea4 | 2000-04-04 18:39:50 +0000 | [diff] [blame] | 497 | return(FALSE); |
| 498 | } |
Eric Andersen | 3d957c8 | 2000-12-07 00:34:58 +0000 | [diff] [blame] | 499 | freeHardLinkInfo(&tbInfo.hlInfoHead); |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 500 | return( TRUE); |
| 501 | } |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 502 | #endif //tar_create |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 503 | |
Glenn L McGrath | d642a67 | 2001-10-13 06:54:45 +0000 | [diff] [blame] | 504 | void append_file_to_list(const char *new_name, char ***list, int *list_count) |
| 505 | { |
| 506 | *list = realloc(*list, sizeof(char *) * (*list_count + 2)); |
Glenn L McGrath | 051eee6 | 2001-10-13 07:11:03 +0000 | [diff] [blame^] | 507 | (*list)[*list_count] = xstrdup(new_name); |
Glenn L McGrath | d642a67 | 2001-10-13 06:54:45 +0000 | [diff] [blame] | 508 | (*list_count)++; |
| 509 | (*list)[*list_count] = NULL; |
| 510 | } |
| 511 | |
| 512 | void append_file_list_to_list(char *filename, char ***name_list, int *num_of_entries) |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 513 | { |
| 514 | FILE *src_stream; |
| 515 | char *line; |
| 516 | char *line_ptr; |
| 517 | |
| 518 | src_stream = xfopen(filename, "r"); |
| 519 | while ((line = get_line_from_file(src_stream)) != NULL) { |
| 520 | line_ptr = last_char_is(line, '\n'); |
| 521 | if (line_ptr) { |
| 522 | *line_ptr = '\0'; |
| 523 | } |
Glenn L McGrath | d642a67 | 2001-10-13 06:54:45 +0000 | [diff] [blame] | 524 | append_file_to_list(line, name_list, num_of_entries); |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 525 | free(line); |
| 526 | } |
| 527 | fclose(src_stream); |
| 528 | } |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 529 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 530 | #ifdef BB_FEATURE_TAR_EXCLUDE |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 531 | /* |
| 532 | * Create a list of names that are in the include list AND NOT in the exclude lists |
| 533 | */ |
| 534 | char **list_and_not_list(char **include_list, char **exclude_list) |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 535 | { |
| 536 | char **new_include_list = NULL; |
| 537 | int new_include_count = 0; |
| 538 | int include_count = 0; |
| 539 | int exclude_count; |
Matt Kraai | f86bbfa | 2001-10-12 19:00:15 +0000 | [diff] [blame] | 540 | |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 541 | if (include_list == NULL) { |
| 542 | return(NULL); |
| 543 | } |
| 544 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 545 | while (include_list[include_count] != NULL) { |
| 546 | int found = FALSE; |
| 547 | exclude_count = 0; |
| 548 | while (exclude_list[exclude_count] != NULL) { |
| 549 | if (strcmp(include_list[include_count], exclude_list[exclude_count]) == 0) { |
| 550 | found = TRUE; |
| 551 | break; |
| 552 | } |
| 553 | exclude_count++; |
| 554 | } |
| 555 | |
| 556 | if (found == FALSE) { |
| 557 | new_include_list = realloc(new_include_list, sizeof(char *) * (include_count + 2)); |
| 558 | new_include_list[new_include_count] = include_list[include_count]; |
| 559 | new_include_count++; |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 560 | } else { |
| 561 | free(include_list[include_count]); |
| 562 | } |
| 563 | include_count++; |
| 564 | } |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 565 | new_include_list[new_include_count] = NULL; |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 566 | return(new_include_list); |
| 567 | } |
Erik Andersen | 6acaa40 | 2000-03-26 14:03:20 +0000 | [diff] [blame] | 568 | #endif |
| 569 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 570 | int tar_main(int argc, char **argv) |
| 571 | { |
| 572 | enum untar_funct_e { |
| 573 | /* These are optional */ |
| 574 | untar_from_file = 1, |
| 575 | untar_from_stdin = 2, |
| 576 | untar_unzip = 4, |
| 577 | /* Require one and only one of these */ |
| 578 | untar_list = 8, |
| 579 | untar_create = 16, |
| 580 | untar_extract = 32 |
| 581 | }; |
| 582 | |
| 583 | #ifdef BB_FEATURE_TAR_EXCLUDE |
| 584 | char **exclude_list = NULL; |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 585 | int exclude_list_count = 0; |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 586 | #endif |
| 587 | |
| 588 | FILE *src_stream = NULL; |
| 589 | FILE *uncompressed_stream = NULL; |
| 590 | char **include_list = NULL; |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 591 | char **the_real_list = NULL; |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 592 | char *src_filename = NULL; |
| 593 | char *dst_prefix = NULL; |
| 594 | char *file_list_name = NULL; |
| 595 | int opt; |
| 596 | unsigned short untar_funct = 0; |
| 597 | unsigned short untar_funct_required = 0; |
| 598 | unsigned short extract_function = 0; |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 599 | int include_list_count = 0; |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 600 | int gunzip_pid; |
| 601 | int gz_fd = 0; |
| 602 | |
| 603 | if (argc < 2) { |
| 604 | show_usage(); |
| 605 | } |
| 606 | |
| 607 | /* Prepend '-' to the first argument if required */ |
| 608 | if (argv[1][0] != '-') { |
| 609 | char *tmp = xmalloc(strlen(argv[1]) + 2); |
| 610 | tmp[0] = '-'; |
| 611 | strcpy(tmp + 1, argv[1]); |
| 612 | argv[1] = tmp; |
| 613 | } |
| 614 | |
| 615 | while ((opt = getopt(argc, argv, "ctxT:X:C:f:Opvz")) != -1) { |
| 616 | switch (opt) { |
| 617 | |
| 618 | /* One and only one of these is required */ |
| 619 | case 'c': |
| 620 | untar_funct_required |= untar_create; |
| 621 | break; |
| 622 | case 't': |
| 623 | untar_funct_required |= untar_list; |
| 624 | extract_function |= extract_list |extract_unconditional; |
| 625 | break; |
| 626 | case 'x': |
| 627 | untar_funct_required |= untar_extract; |
| 628 | extract_function |= (extract_all_to_fs | extract_unconditional | extract_create_leading_dirs); |
| 629 | break; |
| 630 | |
| 631 | /* These are optional */ |
| 632 | /* Exclude or Include files listed in <filename>*/ |
| 633 | #ifdef BB_FEATURE_TAR_EXCLUDE |
| 634 | case 'X': |
Glenn L McGrath | d642a67 | 2001-10-13 06:54:45 +0000 | [diff] [blame] | 635 | append_file_list_to_list(optarg, &exclude_list, &exclude_list_count); |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 636 | break; |
| 637 | #endif |
| 638 | case 'T': |
| 639 | // by default a list is an include list |
Glenn L McGrath | d642a67 | 2001-10-13 06:54:45 +0000 | [diff] [blame] | 640 | append_file_list_to_list(optarg, &include_list, &include_list_count); |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 641 | break; |
| 642 | |
| 643 | case 'C': // Change to dir <optarg> |
| 644 | /* Make sure dst_prefix ends in a '/' */ |
| 645 | dst_prefix = concat_path_file(optarg, "/"); |
| 646 | break; |
| 647 | case 'f': // archive filename |
| 648 | if (strcmp(optarg, "-") == 0) { |
| 649 | // Untar from stdin to stdout |
| 650 | untar_funct |= untar_from_stdin; |
| 651 | } else { |
| 652 | untar_funct |= untar_from_file; |
| 653 | src_filename = xstrdup(optarg); |
| 654 | } |
| 655 | break; |
| 656 | case 'O': |
| 657 | extract_function |= extract_to_stdout; |
| 658 | break; |
| 659 | case 'p': |
| 660 | break; |
| 661 | case 'v': |
| 662 | if (extract_function & extract_list) { |
| 663 | extract_function |= extract_verbose_list; |
| 664 | } |
| 665 | extract_function |= extract_list; |
| 666 | break; |
| 667 | #ifdef BB_FEATURE_TAR_GZIP |
| 668 | case 'z': |
| 669 | untar_funct |= untar_unzip; |
| 670 | break; |
| 671 | #endif |
| 672 | default: |
| 673 | show_usage(); |
| 674 | } |
| 675 | } |
| 676 | |
| 677 | /* Make sure the valid arguments were passed */ |
| 678 | if (untar_funct_required == 0) { |
| 679 | error_msg_and_die("You must specify one of the `-ctx' options"); |
| 680 | } |
| 681 | if ((untar_funct_required != untar_create) && |
| 682 | (untar_funct_required != untar_extract) && |
| 683 | (untar_funct_required != untar_list)) { |
| 684 | error_msg_and_die("You may not specify more than one `ctx' option."); |
| 685 | } |
| 686 | untar_funct |= untar_funct_required; |
| 687 | |
| 688 | /* Setup an array of filenames to work with */ |
| 689 | while (optind < argc) { |
Glenn L McGrath | d642a67 | 2001-10-13 06:54:45 +0000 | [diff] [blame] | 690 | append_file_to_list(argv[optind], &include_list, &include_list_count); |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 691 | optind++; |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 692 | } |
| 693 | |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 694 | /* By default the include list is the list we act on */ |
| 695 | the_real_list = include_list; |
| 696 | |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 697 | #ifdef BB_FEATURE_TAR_EXCLUDE |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 698 | if (exclude_list != NULL) { |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 699 | if (include_list == NULL) { |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 700 | /* the_real_list is an exclude list */ |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 701 | extract_function |= extract_exclude_list; |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 702 | the_real_list = exclude_list; |
| 703 | } else { |
| 704 | /* Both an exclude and include file list was present, |
| 705 | * its an exclude from include list only. |
| 706 | * Remove excluded files from the include list |
| 707 | */ |
| 708 | the_real_list = list_and_not_list(include_list, exclude_list); |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 709 | } |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 710 | } |
| 711 | #endif |
| 712 | |
| 713 | if (extract_function & (extract_list | extract_all_to_fs)) { |
| 714 | if (dst_prefix == NULL) { |
| 715 | dst_prefix = xstrdup("./"); |
| 716 | } |
| 717 | |
| 718 | /* Setup the source of the tar data */ |
| 719 | if (untar_funct & untar_from_file) { |
| 720 | src_stream = xfopen(src_filename, "r"); |
| 721 | } else { |
| 722 | src_stream = stdin; |
| 723 | } |
| 724 | #ifdef BB_FEATURE_TAR_GZIP |
| 725 | /* Get a binary tree of all the tar file headers */ |
| 726 | if (untar_funct & untar_unzip) { |
| 727 | uncompressed_stream = gz_open(src_stream, &gunzip_pid); |
| 728 | } else |
| 729 | #endif // BB_FEATURE_TAR_GZIP |
| 730 | uncompressed_stream = src_stream; |
| 731 | |
| 732 | /* extract or list archive */ |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 733 | unarchive(uncompressed_stream, stdout, &get_header_tar, extract_function, dst_prefix, the_real_list); |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 734 | fclose(uncompressed_stream); |
| 735 | } |
| 736 | #ifdef BB_FEATURE_TAR_CREATE |
| 737 | /* create an archive */ |
| 738 | else if (untar_funct & untar_create) { |
| 739 | int verboseFlag = FALSE; |
| 740 | |
| 741 | #ifdef BB_FEATURE_TAR_GZIP |
| 742 | if (untar_funct && untar_unzip) { |
| 743 | error_msg_and_die("Creation of compressed tarfile not internally support by tar, pipe to busybox gunzip"); |
| 744 | } |
| 745 | #endif // BB_FEATURE_TAR_GZIP |
| 746 | if (extract_function & extract_verbose_list) { |
| 747 | verboseFlag = TRUE; |
| 748 | } |
Glenn L McGrath | 0e76618 | 2001-10-13 05:03:29 +0000 | [diff] [blame] | 749 | writeTarFile(src_filename, verboseFlag, &argv[argc - 1], the_real_list); |
Glenn L McGrath | 2e772ed | 2001-10-05 02:58:48 +0000 | [diff] [blame] | 750 | } |
| 751 | #endif // BB_FEATURE_TAR_CREATE |
| 752 | |
| 753 | /* Cleanups */ |
| 754 | #ifdef BB_FEATURE_TAR_GZIP |
| 755 | if (untar_funct & untar_unzip) { |
| 756 | fclose(src_stream); |
| 757 | close(gz_fd); |
| 758 | gz_close(gunzip_pid); |
| 759 | } |
| 760 | #endif // BB_FEATURE_TAR_GZIP |
| 761 | if (src_filename) { |
| 762 | free(src_filename); |
| 763 | } |
| 764 | if (file_list_name) { |
| 765 | free(file_list_name); |
| 766 | } |
| 767 | return(EXIT_SUCCESS); |
| 768 | } |