blob: 018ccdc11b155d0a6b4d1b7fa9115b12f4f2461a [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002/*
Erik Andersen68a9ea42000-04-04 18:39:50 +00003 * Mini tar implementation for busybox
Erik Andersen6acaa402000-03-26 14:03:20 +00004 *
Glenn L McGrath2e772ed2001-10-05 02:58:48 +00005 * Modifed to use common extraction code used by ar, cpio, dpkg-deb, dpkg
6 * Glenn McGrath <bug1@optushome.com.au>
7 *
Erik Andersen61677fe2000-04-13 01:18:56 +00008 * 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 Andersen77d92682001-05-23 20:32:09 +000010 * very different now (i.e., cleaner, less global variables, etc.)
Eric Andersenc4996011999-10-20 22:08:37 +000011 *
Eric Andersen8ec10a92001-01-27 09:33:39 +000012 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Erik Andersen1ad302a2000-03-24 00:54:46 +000013 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersen96bcfd31999-11-12 01:30:18 +000014 *
Erik Andersen6acaa402000-03-26 14:03:20 +000015 * 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 Andersen68a9ea42000-04-04 18:39:50 +000021 * Based in part on the tar implementation from busybox-0.28
Erik Andersen6acaa402000-03-26 14:03:20 +000022 * Copyright (C) 1995 Bruce Perens
23 * This is free software under the GNU General Public License.
24 *
Eric Andersenc4996011999-10-20 22:08:37 +000025 * 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 Andersencc8ed391999-10-05 16:24:54 +000039 */
40
Eric Andersencc8ed391999-10-05 16:24:54 +000041#include <fcntl.h>
Matt Kraai43c8c382000-09-04 16:51:55 +000042#include <getopt.h>
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000043#include <search.h>
44#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000045#include <stdlib.h>
46#include <unistd.h>
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000047#include <fnmatch.h>
48#include <string.h>
49#include <errno.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000050#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000051
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000052#ifdef BB_FEATURE_TAR_CREATE
Eric Andersencc8ed391999-10-05 16:24:54 +000053
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000054/* 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
63static const int TAR_BLOCK_SIZE = 512;
64static const int TAR_MAGIC_LEN = 6;
65static const int TAR_VERSION_LEN = 2;
Eric Andersencc8ed391999-10-05 16:24:54 +000066
Erik Andersen298854f2000-03-23 01:09:18 +000067/* POSIX tar Header Block, from POSIX 1003.1-1990 */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000068enum { NAME_SIZE = 100 }; /* because gcc won't let me use 'static const int' */
Erik Andersen298854f2000-03-23 01:09:18 +000069struct TarHeader
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000070{ /* byte offset */
Eric Andersen1b1cfde2000-09-24 00:54:37 +000071 char name[NAME_SIZE]; /* 0-99 */
Erik Andersen0817d132000-04-09 15:17:40 +000072 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 Andersen1b1cfde2000-09-24 00:54:37 +000079 char linkname[NAME_SIZE]; /* 157-256 */
Erik Andersen0817d132000-04-09 15:17:40 +000080 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 Andersen298854f2000-03-23 01:09:18 +000088};
89typedef struct TarHeader TarHeader;
Eric Andersencc8ed391999-10-05 16:24:54 +000090
Eric Andersen3d957c82000-12-07 00:34:58 +000091/*
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*/
96typedef struct HardLinkInfo HardLinkInfo;
97struct 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 Andersen68a9ea42000-04-04 18:39:50 +0000106/* Some info to be carried along when creating a new tarball */
107struct 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 Andersenecd51242000-04-08 03:08:21 +0000117 char** excludeList; /* List of files to not include */
Eric Andersen3d957c82000-12-07 00:34:58 +0000118 HardLinkInfo *hlInfoHead; /* Hard Link Tracking Information */
119 HardLinkInfo *hlInfo; /* Hard Link Info for the current file */
Erik Andersen68a9ea42000-04-04 18:39:50 +0000120};
121typedef struct TarBallInfo TarBallInfo;
122
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000123/* A nice enum with all the possible tar file content types */
124enum 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};
138typedef enum TarFileType TarFileType;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000139
Eric Andersen3d957c82000-12-07 00:34:58 +0000140/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
141static void
142addHardLinkInfo (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
160static void
161freeHardLinkInfo (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;) */
179static HardLinkInfo *
180findHardLinkInfo (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 Andersen6acaa402000-03-26 14:03:20 +0000190/* 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. */
193static int putOctal (char *cp, int len, long value)
194{
195 int tempLength;
Erik Andersen6acaa402000-03-26 14:03:20 +0000196 char tempBuffer[32];
Erik Andersen5661fe02000-04-05 01:00:52 +0000197 char *tempString = tempBuffer;
Erik Andersen6acaa402000-03-26 14:03:20 +0000198
199 /* Create a string of the specified length with an initial space,
200 * leading zeroes and the octal number, and a trailing null. */
Erik Andersen5661fe02000-04-05 01:00:52 +0000201 sprintf (tempString, "%0*lo", len - 1, value);
Erik Andersen6acaa402000-03-26 14:03:20 +0000202
203 /* If the string is too large, suppress the leading space. */
Erik Andersen5661fe02000-04-05 01:00:52 +0000204 tempLength = strlen (tempString) + 1;
Erik Andersen6acaa402000-03-26 14:03:20 +0000205 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 Andersen68a9ea42000-04-04 18:39:50 +0000224/* Write out a tar header for the specified file/directory/whatever */
Erik Andersen3364d782000-03-28 00:58:14 +0000225static int
Matt Kraaie80a2632000-12-19 20:45:49 +0000226writeTarHeader(struct TarBallInfo *tbInfo, const char *header_name,
227 const char *real_name, struct stat *statbuf)
Erik Andersen6acaa402000-03-26 14:03:20 +0000228{
Erik Andersen5661fe02000-04-05 01:00:52 +0000229 long chksum=0;
230 struct TarHeader header;
231 const unsigned char *cp = (const unsigned char *) &header;
232 ssize_t size = sizeof(struct TarHeader);
Eric Andersenfdd51032000-08-02 18:48:26 +0000233
Erik Andersen5661fe02000-04-05 01:00:52 +0000234 memset( &header, 0, size);
Erik Andersen3364d782000-03-28 00:58:14 +0000235
Matt Kraaie80a2632000-12-19 20:45:49 +0000236 strncpy(header.name, header_name, sizeof(header.name));
Erik Andersenecd51242000-04-08 03:08:21 +0000237
Erik Andersen5661fe02000-04-05 01:00:52 +0000238 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 Andersen68a9ea42000-04-04 18:39:50 +0000245
Erik Andersen84e09e42000-04-08 20:58:35 +0000246 /* Enter the user and group names (default to root if it fails) */
Erik Andersen5661fe02000-04-05 01:00:52 +0000247 my_getpwuid(header.uname, statbuf->st_uid);
Erik Andersen5661fe02000-04-05 01:00:52 +0000248 if (! *header.uname)
Erik Andersen84e09e42000-04-08 20:58:35 +0000249 strcpy(header.uname, "root");
Erik Andersen5661fe02000-04-05 01:00:52 +0000250 my_getgrgid(header.gname, statbuf->st_gid);
251 if (! *header.uname)
Erik Andersen84e09e42000-04-08 20:58:35 +0000252 strcpy(header.uname, "root");
Erik Andersen5661fe02000-04-05 01:00:52 +0000253
Eric Andersen3d957c82000-12-07 00:34:58 +0000254 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 Whitley8a633262001-04-30 18:17:00 +0000259 char *lpath = xreadlink(real_name);
Eric Andersen28355a32001-05-07 17:48:28 +0000260 if (!lpath) /* Already printed err msg inside xreadlink() */
261 return ( FALSE);
Erik Andersen5661fe02000-04-05 01:00:52 +0000262 header.typeflag = SYMTYPE;
Mark Whitley8a633262001-04-30 18:17:00 +0000263 strncpy(header.linkname, lpath, sizeof(header.linkname));
264 free(lpath);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000265 } else if (S_ISDIR(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000266 header.typeflag = DIRTYPE;
267 strncat(header.name, "/", sizeof(header.name));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000268 } else if (S_ISCHR(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000269 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 Andersen68a9ea42000-04-04 18:39:50 +0000272 } else if (S_ISBLK(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000273 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 Andersen68a9ea42000-04-04 18:39:50 +0000276 } else if (S_ISFIFO(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000277 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 Andersen68a9ea42000-04-04 18:39:50 +0000281 } else {
Matt Kraaidd19c692001-01-31 19:00:21 +0000282 error_msg("%s: Unknown file type", real_name);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000283 return ( FALSE);
284 }
Erik Andersen68a9ea42000-04-04 18:39:50 +0000285
Eric Andersen77d92682001-05-23 20:32:09 +0000286 /* Calculate and store the checksum (i.e., the sum of all of the bytes of
Erik Andersen5661fe02000-04-05 01:00:52 +0000287 * 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 Whitleyf57c9442000-12-07 19:56:48 +0000298 if ((size=full_write(tbInfo->tarFd, (char*)&header, sizeof(struct TarHeader))) < 0) {
Matt Kraaie80a2632000-12-19 20:45:49 +0000299 error_msg(io_error, real_name, strerror(errno));
Erik Andersen5661fe02000-04-05 01:00:52 +0000300 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 Andersenfdd51032000-08-02 18:48:26 +0000307 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 Andersen3364d782000-03-28 00:58:14 +0000313
314 return ( TRUE);
315}
316
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000317static 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 Andersen3364d782000-03-28 00:58:14 +0000343
Erik Andersen68a9ea42000-04-04 18:39:50 +0000344static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData)
Erik Andersen3364d782000-03-28 00:58:14 +0000345{
Erik Andersen68a9ea42000-04-04 18:39:50 +0000346 struct TarBallInfo *tbInfo = (struct TarBallInfo *)userData;
Matt Kraaie80a2632000-12-19 20:45:49 +0000347 const char *header_name;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000348
Eric Andersen3d957c82000-12-07 00:34:58 +0000349 /*
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 Andersen68a9ea42000-04-04 18:39:50 +0000365 /* It is against the rules to archive a socket */
366 if (S_ISSOCK(statbuf->st_mode)) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000367 error_msg("%s: socket ignored", fileName);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000368 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 Kraaidd19c692001-01-31 19:00:21 +0000376 error_msg("%s: file is the archive; skipping", fileName);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000377 return( TRUE);
378 }
379
Matt Kraaie80a2632000-12-19 20:45:49 +0000380 header_name = fileName;
381 while (header_name[0] == '/') {
Matt Kraaia1f97752000-12-19 06:24:08 +0000382 static int alreadyWarned=FALSE;
383 if (alreadyWarned==FALSE) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000384 error_msg("Removing leading '/' from member names");
Matt Kraaia1f97752000-12-19 06:24:08 +0000385 alreadyWarned=TRUE;
386 }
Matt Kraaie80a2632000-12-19 20:45:49 +0000387 header_name++;
Matt Kraaia1f97752000-12-19 06:24:08 +0000388 }
389
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000390 if (strlen(fileName) >= NAME_SIZE) {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000391 error_msg(name_longer_than_foo, NAME_SIZE);
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000392 return ( TRUE);
393 }
394
Matt Kraaie80a2632000-12-19 20:45:49 +0000395 if (header_name[0] == '\0')
Matt Kraaia1f97752000-12-19 06:24:08 +0000396 return TRUE;
397
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000398# if defined BB_FEATURE_TAR_EXCLUDE
Matt Kraaibe7499c2001-01-03 17:22:10 +0000399 if (exclude_file(tbInfo->excludeList, header_name)) {
400 return SKIP;
Matt Kraaia1f97752000-12-19 06:24:08 +0000401 }
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000402# endif //BB_FEATURE_TAR_EXCLUDE
Matt Kraaia1f97752000-12-19 06:24:08 +0000403
Matt Kraaie80a2632000-12-19 20:45:49 +0000404 if (writeTarHeader(tbInfo, header_name, fileName, statbuf)==FALSE) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000405 return( FALSE);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000406 }
Erik Andersen5661fe02000-04-05 01:00:52 +0000407
408 /* Now, if the file is a regular file, copy it out to the tarball */
Eric Andersen3d957c82000-12-07 00:34:58 +0000409 if ((tbInfo->hlInfo == NULL)
410 && (S_ISREG(statbuf->st_mode))) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000411 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 Kraaidd19c692001-01-31 19:00:21 +0000417 error_msg("%s: Cannot open: %s", fileName, strerror(errno));
Erik Andersen5661fe02000-04-05 01:00:52 +0000418 return( FALSE);
419 }
420
421 /* write the file to the archive */
Mark Whitleyf57c9442000-12-07 19:56:48 +0000422 while ( (size = full_read(inputFileFd, buffer, sizeof(buffer))) > 0 ) {
423 if (full_write(tbInfo->tarFd, buffer, size) != size ) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000424 /* Output file seems to have a problem */
Mark Whitleyf57c9442000-12-07 19:56:48 +0000425 error_msg(io_error, fileName, strerror(errno));
Erik Andersen5661fe02000-04-05 01:00:52 +0000426 return( FALSE);
427 }
428 readSize+=size;
429 }
430 if (size == -1) {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000431 error_msg(io_error, fileName, strerror(errno));
Erik Andersen5661fe02000-04-05 01:00:52 +0000432 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 Andersen68a9ea42000-04-04 18:39:50 +0000440
441 return( TRUE);
Erik Andersen6acaa402000-03-26 14:03:20 +0000442}
443
Matt Kraaid8ad76c2000-11-08 02:35:47 +0000444static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
445 char** excludeList)
Erik Andersen6acaa402000-03-26 14:03:20 +0000446{
Erik Andersen3364d782000-03-28 00:58:14 +0000447 int tarFd=-1;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000448 int errorFlag=FALSE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000449 ssize_t size;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000450 struct TarBallInfo tbInfo;
451 tbInfo.verboseFlag = verboseFlag;
Eric Andersen3d957c82000-12-07 00:34:58 +0000452 tbInfo.hlInfoHead = NULL;
Erik Andersen3364d782000-03-28 00:58:14 +0000453
454 /* Make sure there is at least one file to tar up. */
Matt Kraaid8ad76c2000-11-08 02:35:47 +0000455 if (*argv == NULL)
Matt Kraaidd19c692001-01-31 19:00:21 +0000456 error_msg_and_die("Cowardly refusing to create an empty archive");
Erik Andersen6acaa402000-03-26 14:03:20 +0000457
458 /* Open the tar file for writing. */
Matt Kraaid8ad76c2000-11-08 02:35:47 +0000459 if (!strcmp(tarName, "-"))
Erik Andersen68a9ea42000-04-04 18:39:50 +0000460 tbInfo.tarFd = fileno(stdout);
Erik Andersen6acaa402000-03-26 14:03:20 +0000461 else
Erik Andersen68a9ea42000-04-04 18:39:50 +0000462 tbInfo.tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
463 if (tbInfo.tarFd < 0) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000464 perror_msg( "Error opening '%s'", tarName);
Eric Andersen3d957c82000-12-07 00:34:58 +0000465 freeHardLinkInfo(&tbInfo.hlInfoHead);
Erik Andersen6acaa402000-03-26 14:03:20 +0000466 return ( FALSE);
467 }
Erik Andersenecd51242000-04-08 03:08:21 +0000468 tbInfo.excludeList=excludeList;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000469 /* 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 Whitleyf57c9442000-12-07 19:56:48 +0000472 error_msg_and_die(io_error, tarName, strerror(errno));
Erik Andersen6acaa402000-03-26 14:03:20 +0000473
Erik Andersen6acaa402000-03-26 14:03:20 +0000474 /* Read the directory/files and iterate over them one at a time */
Matt Kraaid8ad76c2000-11-08 02:35:47 +0000475 while (*argv != NULL) {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000476 if (recursive_action(*argv++, TRUE, FALSE, FALSE,
Erik Andersen68a9ea42000-04-04 18:39:50 +0000477 writeFileToTarball, writeFileToTarball,
478 (void*) &tbInfo) == FALSE) {
479 errorFlag = TRUE;
Erik Andersen3364d782000-03-28 00:58:14 +0000480 }
Erik Andersen6acaa402000-03-26 14:03:20 +0000481 }
Erik Andersen5661fe02000-04-05 01:00:52 +0000482 /* 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 Andersen0817d132000-04-09 15:17:40 +0000486
487 /* To be pedantically correct, we would check if the tarball
Eric Andersen3c5ee9a2000-11-14 22:15:48 +0000488 * is smaller than 20 tar blocks, and pad it if it was smaller,
Erik Andersen0817d132000-04-09 15:17:40 +0000489 * but that isn't necessary for GNU tar interoperability, and
490 * so is considered a waste of space */
491
Erik Andersen68a9ea42000-04-04 18:39:50 +0000492 /* Hang up the tools, close up shop, head home */
Erik Andersen6acaa402000-03-26 14:03:20 +0000493 close(tarFd);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000494 if (errorFlag == TRUE) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000495 error_msg("Error exit delayed from previous errors");
Eric Andersen3d957c82000-12-07 00:34:58 +0000496 freeHardLinkInfo(&tbInfo.hlInfoHead);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000497 return(FALSE);
498 }
Eric Andersen3d957c82000-12-07 00:34:58 +0000499 freeHardLinkInfo(&tbInfo.hlInfoHead);
Erik Andersen6acaa402000-03-26 14:03:20 +0000500 return( TRUE);
501}
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000502#endif //tar_create
Erik Andersen6acaa402000-03-26 14:03:20 +0000503
Glenn L McGrathd642a672001-10-13 06:54:45 +0000504void append_file_to_list(const char *new_name, char ***list, int *list_count)
505{
506 *list = realloc(*list, sizeof(char *) * (*list_count + 2));
507 if (last_char_is(new_name, '/')) {
508 (*list)[*list_count] = concat_path_file(new_name, "*");
509 } else {
510 (*list)[*list_count] = xstrdup(new_name);
511 }
512 (*list_count)++;
513 (*list)[*list_count] = NULL;
514}
515
516void append_file_list_to_list(char *filename, char ***name_list, int *num_of_entries)
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000517{
518 FILE *src_stream;
519 char *line;
520 char *line_ptr;
521
522 src_stream = xfopen(filename, "r");
523 while ((line = get_line_from_file(src_stream)) != NULL) {
524 line_ptr = last_char_is(line, '\n');
525 if (line_ptr) {
526 *line_ptr = '\0';
527 }
Glenn L McGrathd642a672001-10-13 06:54:45 +0000528 append_file_to_list(line, name_list, num_of_entries);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000529 free(line);
530 }
531 fclose(src_stream);
532}
Erik Andersen6acaa402000-03-26 14:03:20 +0000533
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000534#ifdef BB_FEATURE_TAR_EXCLUDE
Glenn L McGrath0e766182001-10-13 05:03:29 +0000535/*
536 * Create a list of names that are in the include list AND NOT in the exclude lists
537 */
538char **list_and_not_list(char **include_list, char **exclude_list)
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000539{
540 char **new_include_list = NULL;
541 int new_include_count = 0;
542 int include_count = 0;
543 int exclude_count;
Matt Kraaif86bbfa2001-10-12 19:00:15 +0000544
Glenn L McGrath0e766182001-10-13 05:03:29 +0000545 if (include_list == NULL) {
546 return(NULL);
547 }
548
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000549 while (include_list[include_count] != NULL) {
550 int found = FALSE;
551 exclude_count = 0;
552 while (exclude_list[exclude_count] != NULL) {
553 if (strcmp(include_list[include_count], exclude_list[exclude_count]) == 0) {
554 found = TRUE;
555 break;
556 }
557 exclude_count++;
558 }
559
560 if (found == FALSE) {
561 new_include_list = realloc(new_include_list, sizeof(char *) * (include_count + 2));
562 new_include_list[new_include_count] = include_list[include_count];
563 new_include_count++;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000564 } else {
565 free(include_list[include_count]);
566 }
567 include_count++;
568 }
Glenn L McGrath0e766182001-10-13 05:03:29 +0000569 new_include_list[new_include_count] = NULL;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000570 return(new_include_list);
571}
Erik Andersen6acaa402000-03-26 14:03:20 +0000572#endif
573
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000574int tar_main(int argc, char **argv)
575{
576 enum untar_funct_e {
577 /* These are optional */
578 untar_from_file = 1,
579 untar_from_stdin = 2,
580 untar_unzip = 4,
581 /* Require one and only one of these */
582 untar_list = 8,
583 untar_create = 16,
584 untar_extract = 32
585 };
586
587#ifdef BB_FEATURE_TAR_EXCLUDE
588 char **exclude_list = NULL;
Glenn L McGrath0e766182001-10-13 05:03:29 +0000589 int exclude_list_count = 0;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000590#endif
591
592 FILE *src_stream = NULL;
593 FILE *uncompressed_stream = NULL;
594 char **include_list = NULL;
Glenn L McGrath0e766182001-10-13 05:03:29 +0000595 char **the_real_list = NULL;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000596 char *src_filename = NULL;
597 char *dst_prefix = NULL;
598 char *file_list_name = NULL;
599 int opt;
600 unsigned short untar_funct = 0;
601 unsigned short untar_funct_required = 0;
602 unsigned short extract_function = 0;
Glenn L McGrath0e766182001-10-13 05:03:29 +0000603 int include_list_count = 0;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000604 int gunzip_pid;
605 int gz_fd = 0;
606
607 if (argc < 2) {
608 show_usage();
609 }
610
611 /* Prepend '-' to the first argument if required */
612 if (argv[1][0] != '-') {
613 char *tmp = xmalloc(strlen(argv[1]) + 2);
614 tmp[0] = '-';
615 strcpy(tmp + 1, argv[1]);
616 argv[1] = tmp;
617 }
618
619 while ((opt = getopt(argc, argv, "ctxT:X:C:f:Opvz")) != -1) {
620 switch (opt) {
621
622 /* One and only one of these is required */
623 case 'c':
624 untar_funct_required |= untar_create;
625 break;
626 case 't':
627 untar_funct_required |= untar_list;
628 extract_function |= extract_list |extract_unconditional;
629 break;
630 case 'x':
631 untar_funct_required |= untar_extract;
632 extract_function |= (extract_all_to_fs | extract_unconditional | extract_create_leading_dirs);
633 break;
634
635 /* These are optional */
636 /* Exclude or Include files listed in <filename>*/
637#ifdef BB_FEATURE_TAR_EXCLUDE
638 case 'X':
Glenn L McGrathd642a672001-10-13 06:54:45 +0000639 append_file_list_to_list(optarg, &exclude_list, &exclude_list_count);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000640 break;
641#endif
642 case 'T':
643 // by default a list is an include list
Glenn L McGrathd642a672001-10-13 06:54:45 +0000644 append_file_list_to_list(optarg, &include_list, &include_list_count);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000645 break;
646
647 case 'C': // Change to dir <optarg>
648 /* Make sure dst_prefix ends in a '/' */
649 dst_prefix = concat_path_file(optarg, "/");
650 break;
651 case 'f': // archive filename
652 if (strcmp(optarg, "-") == 0) {
653 // Untar from stdin to stdout
654 untar_funct |= untar_from_stdin;
655 } else {
656 untar_funct |= untar_from_file;
657 src_filename = xstrdup(optarg);
658 }
659 break;
660 case 'O':
661 extract_function |= extract_to_stdout;
662 break;
663 case 'p':
664 break;
665 case 'v':
666 if (extract_function & extract_list) {
667 extract_function |= extract_verbose_list;
668 }
669 extract_function |= extract_list;
670 break;
671#ifdef BB_FEATURE_TAR_GZIP
672 case 'z':
673 untar_funct |= untar_unzip;
674 break;
675#endif
676 default:
677 show_usage();
678 }
679 }
680
681 /* Make sure the valid arguments were passed */
682 if (untar_funct_required == 0) {
683 error_msg_and_die("You must specify one of the `-ctx' options");
684 }
685 if ((untar_funct_required != untar_create) &&
686 (untar_funct_required != untar_extract) &&
687 (untar_funct_required != untar_list)) {
688 error_msg_and_die("You may not specify more than one `ctx' option.");
689 }
690 untar_funct |= untar_funct_required;
691
692 /* Setup an array of filenames to work with */
693 while (optind < argc) {
Glenn L McGrathd642a672001-10-13 06:54:45 +0000694 append_file_to_list(argv[optind], &include_list, &include_list_count);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000695 optind++;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000696 }
697
Glenn L McGrath0e766182001-10-13 05:03:29 +0000698 /* By default the include list is the list we act on */
699 the_real_list = include_list;
700
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000701#ifdef BB_FEATURE_TAR_EXCLUDE
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000702 if (exclude_list != NULL) {
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000703 if (include_list == NULL) {
Glenn L McGrath0e766182001-10-13 05:03:29 +0000704 /* the_real_list is an exclude list */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000705 extract_function |= extract_exclude_list;
Glenn L McGrath0e766182001-10-13 05:03:29 +0000706 the_real_list = exclude_list;
707 } else {
708 /* Both an exclude and include file list was present,
709 * its an exclude from include list only.
710 * Remove excluded files from the include list
711 */
712 the_real_list = list_and_not_list(include_list, exclude_list);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000713 }
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000714 }
715#endif
716
717 if (extract_function & (extract_list | extract_all_to_fs)) {
718 if (dst_prefix == NULL) {
719 dst_prefix = xstrdup("./");
720 }
721
722 /* Setup the source of the tar data */
723 if (untar_funct & untar_from_file) {
724 src_stream = xfopen(src_filename, "r");
725 } else {
726 src_stream = stdin;
727 }
728#ifdef BB_FEATURE_TAR_GZIP
729 /* Get a binary tree of all the tar file headers */
730 if (untar_funct & untar_unzip) {
731 uncompressed_stream = gz_open(src_stream, &gunzip_pid);
732 } else
733#endif // BB_FEATURE_TAR_GZIP
734 uncompressed_stream = src_stream;
735
736 /* extract or list archive */
Glenn L McGrath0e766182001-10-13 05:03:29 +0000737 unarchive(uncompressed_stream, stdout, &get_header_tar, extract_function, dst_prefix, the_real_list);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000738 fclose(uncompressed_stream);
739 }
740#ifdef BB_FEATURE_TAR_CREATE
741 /* create an archive */
742 else if (untar_funct & untar_create) {
743 int verboseFlag = FALSE;
744
745#ifdef BB_FEATURE_TAR_GZIP
746 if (untar_funct && untar_unzip) {
747 error_msg_and_die("Creation of compressed tarfile not internally support by tar, pipe to busybox gunzip");
748 }
749#endif // BB_FEATURE_TAR_GZIP
750 if (extract_function & extract_verbose_list) {
751 verboseFlag = TRUE;
752 }
Glenn L McGrath0e766182001-10-13 05:03:29 +0000753 writeTarFile(src_filename, verboseFlag, &argv[argc - 1], the_real_list);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000754 }
755#endif // BB_FEATURE_TAR_CREATE
756
757 /* Cleanups */
758#ifdef BB_FEATURE_TAR_GZIP
759 if (untar_funct & untar_unzip) {
760 fclose(src_stream);
761 close(gz_fd);
762 gz_close(gunzip_pid);
763 }
764#endif // BB_FEATURE_TAR_GZIP
765 if (src_filename) {
766 free(src_filename);
767 }
768 if (file_list_name) {
769 free(file_list_name);
770 }
771 return(EXIT_SUCCESS);
772}