blob: d875805b067564bf95963f084d6811dee1355a73 [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/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003 * Mini tar implementation for busybox
Erik Andersen6acaa402000-03-26 14:03:20 +00004 *
Eric Andersenaff114c2004-04-14 17:51:38 +00005 * Modified to use common extraction code used by ar, cpio, dpkg-deb, dpkg
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00006 * Glenn McGrath <bug1@iinet.net.au>
Glenn L McGrath2e772ed2001-10-05 02:58:48 +00007 *
Erik Andersen61677fe2000-04-13 01:18:56 +00008 * Note, that as of BusyBox-0.43, tar has been completely rewritten from the
Eric Andersenaff114c2004-04-14 17:51:38 +00009 * ground up. It still has remnants 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 Andersenc7bda1c2004-03-15 08:29:22 +000012 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen96bcfd31999-11-12 01:30:18 +000013 *
Erik Andersen6acaa402000-03-26 14:03:20 +000014 * Based in part in the tar implementation in sash
15 * Copyright (c) 1999 by David I. Bell
16 * Permission is granted to use, distribute, or modify this source,
17 * provided that this copyright notice remains intact.
18 * Permission to distribute sash derived code under the GPL has been granted.
19 *
Erik Andersen68a9ea42000-04-04 18:39:50 +000020 * Based in part on the tar implementation from busybox-0.28
Erik Andersen6acaa402000-03-26 14:03:20 +000021 * Copyright (C) 1995 Bruce Perens
Erik Andersen6acaa402000-03-26 14:03:20 +000022 *
Bernhard Reutner-Fischerd9cf7ac2006-04-12 18:39:58 +000023 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersencc8ed391999-10-05 16:24:54 +000024 */
25
Eric Andersencbe31da2001-02-20 06:14:08 +000026#include "busybox.h"
Rob Landley1bfca7b2006-09-10 03:20:37 +000027#include "unarchive.h"
28#include <fnmatch.h>
29#include <getopt.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000030
Denis Vlasenkod031ffa2006-11-24 21:54:44 +000031#if ENABLE_FEATURE_TAR_CREATE
Eric Andersencc8ed391999-10-05 16:24:54 +000032
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000033/* Tar file constants */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000034
Rob Landley3ee6c242005-10-15 03:06:21 +000035#define TAR_BLOCK_SIZE 512
Eric Andersencc8ed391999-10-05 16:24:54 +000036
Erik Andersen298854f2000-03-23 01:09:18 +000037/* POSIX tar Header Block, from POSIX 1003.1-1990 */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +000038#define NAME_SIZE 100
39#define NAME_SIZE_STR "100"
40struct TarHeader { /* byte offset */
41 char name[NAME_SIZE]; /* 0-99 */
42 char mode[8]; /* 100-107 */
43 char uid[8]; /* 108-115 */
44 char gid[8]; /* 116-123 */
45 char size[12]; /* 124-135 */
46 char mtime[12]; /* 136-147 */
47 char chksum[8]; /* 148-155 */
48 char typeflag; /* 156-156 */
49 char linkname[NAME_SIZE]; /* 157-256 */
50 char magic[6]; /* 257-262 */
51 char version[2]; /* 263-264 */
52 char uname[32]; /* 265-296 */
53 char gname[32]; /* 297-328 */
54 char devmajor[8]; /* 329-336 */
55 char devminor[8]; /* 337-344 */
56 char prefix[155]; /* 345-499 */
57 char padding[12]; /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
Erik Andersen298854f2000-03-23 01:09:18 +000058};
59typedef struct TarHeader TarHeader;
Eric Andersencc8ed391999-10-05 16:24:54 +000060
Eric Andersen3d957c82000-12-07 00:34:58 +000061/*
Denis Vlasenko4fbb5842006-11-24 14:55:23 +000062** writeTarFile(), writeFileToTarball(), and writeTarHeader() are
Eric Andersen3d957c82000-12-07 00:34:58 +000063** the only functions that deal with the HardLinkInfo structure.
64** Even these functions use the xxxHardLinkInfo() functions.
65*/
66typedef struct HardLinkInfo HardLinkInfo;
Glenn L McGratha0ee8812002-08-22 13:44:08 +000067struct HardLinkInfo {
68 HardLinkInfo *next; /* Next entry in list */
Rob Landley60fe7bf2005-10-16 03:54:49 +000069 dev_t dev; /* Device number */
70 ino_t ino; /* Inode number */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000071 short linkCount; /* (Hard) Link Count */
72 char name[1]; /* Start of filename (must be last) */
Eric Andersen3d957c82000-12-07 00:34:58 +000073};
74
Erik Andersen68a9ea42000-04-04 18:39:50 +000075/* Some info to be carried along when creating a new tarball */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000076struct TarBallInfo {
Rob Landley60fe7bf2005-10-16 03:54:49 +000077 int tarFd; /* Open-for-write file descriptor
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000078 for the tarball */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000079 struct stat statBuf; /* Stat info for the tarball, letting
80 us know the inode and device that the
Eric Andersenc7bda1c2004-03-15 08:29:22 +000081 tarball lives, so we can avoid trying
Glenn L McGratha0ee8812002-08-22 13:44:08 +000082 to include the tarball into itself */
Rob Landley60fe7bf2005-10-16 03:54:49 +000083 int verboseFlag; /* Whether to print extra stuff or not */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000084 const llist_t *excludeList; /* List of files to not include */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000085 HardLinkInfo *hlInfoHead; /* Hard Link Tracking Information */
86 HardLinkInfo *hlInfo; /* Hard Link Info for the current file */
Erik Andersen68a9ea42000-04-04 18:39:50 +000087};
88typedef struct TarBallInfo TarBallInfo;
89
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000090/* A nice enum with all the possible tar file content types */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000091enum TarFileType {
92 REGTYPE = '0', /* regular file */
93 REGTYPE0 = '\0', /* regular file (ancient bug compat) */
94 LNKTYPE = '1', /* hard link */
95 SYMTYPE = '2', /* symbolic link */
96 CHRTYPE = '3', /* character special */
97 BLKTYPE = '4', /* block special */
98 DIRTYPE = '5', /* directory */
99 FIFOTYPE = '6', /* FIFO special */
100 CONTTYPE = '7', /* reserved */
101 GNULONGLINK = 'K', /* GNU long (>100 chars) link name */
102 GNULONGNAME = 'L', /* GNU long (>100 chars) file name */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000103};
104typedef enum TarFileType TarFileType;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000105
Eric Andersen3d957c82000-12-07 00:34:58 +0000106/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
Rob Landley88621d72006-08-29 19:41:06 +0000107static void addHardLinkInfo(HardLinkInfo ** hlInfoHeadPtr,
Glenn L McGrathf66de642002-11-25 23:57:27 +0000108 struct stat *statbuf,
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000109 const char *fileName)
Eric Andersen3d957c82000-12-07 00:34:58 +0000110{
111 /* Note: hlInfoHeadPtr can never be NULL! */
112 HardLinkInfo *hlInfo;
113
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000114 hlInfo = xmalloc(sizeof(HardLinkInfo) + strlen(fileName));
Glenn L McGrathf66de642002-11-25 23:57:27 +0000115 hlInfo->next = *hlInfoHeadPtr;
116 *hlInfoHeadPtr = hlInfo;
117 hlInfo->dev = statbuf->st_dev;
118 hlInfo->ino = statbuf->st_ino;
119 hlInfo->linkCount = statbuf->st_nlink;
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000120 strcpy(hlInfo->name, fileName);
Eric Andersen3d957c82000-12-07 00:34:58 +0000121}
122
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000123static void freeHardLinkInfo(HardLinkInfo ** hlInfoHeadPtr)
Eric Andersen3d957c82000-12-07 00:34:58 +0000124{
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000125 HardLinkInfo *hlInfo;
126 HardLinkInfo *hlInfoNext;
Eric Andersen3d957c82000-12-07 00:34:58 +0000127
128 if (hlInfoHeadPtr) {
129 hlInfo = *hlInfoHeadPtr;
130 while (hlInfo) {
131 hlInfoNext = hlInfo->next;
132 free(hlInfo);
133 hlInfo = hlInfoNext;
134 }
135 *hlInfoHeadPtr = NULL;
136 }
137 return;
138}
139
140/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
Rob Landley88621d72006-08-29 19:41:06 +0000141static HardLinkInfo *findHardLinkInfo(HardLinkInfo * hlInfo, struct stat *statbuf)
Eric Andersen3d957c82000-12-07 00:34:58 +0000142{
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000143 while (hlInfo) {
Glenn L McGrathf66de642002-11-25 23:57:27 +0000144 if ((statbuf->st_ino == hlInfo->ino) && (statbuf->st_dev == hlInfo->dev))
Eric Andersen3d957c82000-12-07 00:34:58 +0000145 break;
146 hlInfo = hlInfo->next;
147 }
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000148 return hlInfo;
Eric Andersen3d957c82000-12-07 00:34:58 +0000149}
150
Erik Andersen6acaa402000-03-26 14:03:20 +0000151/* Put an octal string into the specified buffer.
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000152 * The number is zero padded and possibly null terminated.
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000153 * Stores low-order bits only if whole value does not fit.
154 * Returns FALSE if that happens. */
155static int putOctal(char *cp, int len, off_t value)
Erik Andersen6acaa402000-03-26 14:03:20 +0000156{
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000157 char tempBuffer[sizeof(off_t)*3+1];
Erik Andersen5661fe02000-04-05 01:00:52 +0000158 char *tempString = tempBuffer;
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000159 int width;
Erik Andersen6acaa402000-03-26 14:03:20 +0000160
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000161 width = sprintf(tempBuffer, "%0*"OFF_FMT"o", len, value);
162 tempString += (width - len);
Erik Andersen6acaa402000-03-26 14:03:20 +0000163
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000164 /* If string has leading zeroes, we can drop one */
165 /* and field will have trailing '\0' */
166 /* (increases chances of compat with other tars) */
167 if (tempString[0] == '0')
168 tempString++;
Erik Andersen6acaa402000-03-26 14:03:20 +0000169
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000170 /* Copy the string to the field */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000171 memcpy(cp, tempString, len);
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000172
173 /* If after shift we have zero - value did not overflow, */
174 /* return 1 (TRUE) then */
175 return (value >> (len*3)) == 0;
Erik Andersen6acaa402000-03-26 14:03:20 +0000176}
177
Erik Andersen68a9ea42000-04-04 18:39:50 +0000178/* Write out a tar header for the specified file/directory/whatever */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000179void BUG_tar_header_size(void);
Rob Landley88621d72006-08-29 19:41:06 +0000180static int writeTarHeader(struct TarBallInfo *tbInfo,
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000181 const char *header_name, const char *fileName, struct stat *statbuf)
Erik Andersen6acaa402000-03-26 14:03:20 +0000182{
Erik Andersen5661fe02000-04-05 01:00:52 +0000183 struct TarHeader header;
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000184 const unsigned char *cp;
185 int chksum;
186 int size;
Erik Andersen3364d782000-03-28 00:58:14 +0000187
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000188 if (sizeof(header) != 512)
189 BUG_tar_header_size();
190
191 bzero(&header, sizeof(struct TarHeader));
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000192
Rob Landley768945b2006-06-25 00:34:52 +0000193 safe_strncpy(header.name, header_name, sizeof(header.name));
Erik Andersenecd51242000-04-08 03:08:21 +0000194
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000195#define PUT_OCTAL(a, b) putOctal((a), sizeof(a), (b))
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000196 /* POSIX says to mask mode with 07777. */
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000197 PUT_OCTAL(header.mode, statbuf->st_mode & 07777);
198 PUT_OCTAL(header.uid, statbuf->st_uid);
199 PUT_OCTAL(header.gid, statbuf->st_gid);
Denis Vlasenkob8a8e602006-11-24 14:59:45 +0000200 memset(header.size, '0', sizeof(header.size)-1); /* Regular file size is handled later */
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000201 PUT_OCTAL(header.mtime, statbuf->st_mtime);
Rob Landley768945b2006-06-25 00:34:52 +0000202 strcpy(header.magic, "ustar ");
Erik Andersen68a9ea42000-04-04 18:39:50 +0000203
Denis Vlasenkoc50f3702006-11-24 14:57:31 +0000204 /* Enter the user and group names */
205 safe_strncpy(header.uname, get_cached_username(statbuf->st_uid), sizeof(header.uname));
206 safe_strncpy(header.gname, get_cached_groupname(statbuf->st_gid), sizeof(header.gname));
Erik Andersen5661fe02000-04-05 01:00:52 +0000207
Eric Andersen3d957c82000-12-07 00:34:58 +0000208 if (tbInfo->hlInfo) {
209 /* This is a hard link */
210 header.typeflag = LNKTYPE;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000211 strncpy(header.linkname, tbInfo->hlInfo->name,
212 sizeof(header.linkname));
Eric Andersen3d957c82000-12-07 00:34:58 +0000213 } else if (S_ISLNK(statbuf->st_mode)) {
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000214 char *lpath = xreadlink(fileName);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000215 if (!lpath) /* Already printed err msg inside xreadlink() */
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000216 return FALSE;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000217 header.typeflag = SYMTYPE;
218 strncpy(header.linkname, lpath, sizeof(header.linkname));
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000219 /* If it is larger than 100 bytes, bail out */
220 if (header.linkname[sizeof(header.linkname)-1] /* at least 100? */
221 && lpath[sizeof(header.linkname)] /* and 101th is also not zero */
222 ) {
223 free(lpath);
224 bb_error_msg("names longer than "NAME_SIZE_STR" chars not supported");
225 return FALSE;
226 }
Mark Whitley8a633262001-04-30 18:17:00 +0000227 free(lpath);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000228 } else if (S_ISDIR(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000229 header.typeflag = DIRTYPE;
230 strncat(header.name, "/", sizeof(header.name));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000231 } else if (S_ISCHR(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000232 header.typeflag = CHRTYPE;
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000233 PUT_OCTAL(header.devmajor, major(statbuf->st_rdev));
234 PUT_OCTAL(header.devminor, minor(statbuf->st_rdev));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000235 } else if (S_ISBLK(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000236 header.typeflag = BLKTYPE;
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000237 PUT_OCTAL(header.devmajor, major(statbuf->st_rdev));
238 PUT_OCTAL(header.devminor, minor(statbuf->st_rdev));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000239 } else if (S_ISFIFO(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000240 header.typeflag = FIFOTYPE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000241 } else if (S_ISREG(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000242 header.typeflag = REGTYPE;
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000243 if ((PUT_OCTAL(header.size, statbuf->st_size) == FALSE)
244 && sizeof(statbuf->st_size) > 4
245 ) {
246 bb_error_msg_and_die("cannot store file '%s' "
247 "of size %"OFF_FMT"d, aborting",
248 fileName, statbuf->st_size);
249 }
Erik Andersen68a9ea42000-04-04 18:39:50 +0000250 } else {
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000251 bb_error_msg("%s: unknown file type", fileName);
252 return FALSE;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000253 }
Denis Vlasenkof2408e62006-11-25 14:48:09 +0000254#undef PUT_OCTAL
Erik Andersen68a9ea42000-04-04 18:39:50 +0000255
Eric Andersen77d92682001-05-23 20:32:09 +0000256 /* Calculate and store the checksum (i.e., the sum of all of the bytes of
Erik Andersen5661fe02000-04-05 01:00:52 +0000257 * the header). The checksum field must be filled with blanks for the
258 * calculation. The checksum field is formatted differently from the
259 * other fields: it has [6] digits, a null, then a space -- rather than
260 * digits, followed by a null like the other fields... */
261 memset(header.chksum, ' ', sizeof(header.chksum));
262 cp = (const unsigned char *) &header;
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000263 chksum = 0;
264 size = sizeof(struct TarHeader);
265 do { chksum += *cp++; } while (--size);
266 putOctal(header.chksum, sizeof(header.chksum)-1, chksum);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000267
Erik Andersen5661fe02000-04-05 01:00:52 +0000268 /* Now write the header out to disk */
Rob Landley1bfca7b2006-09-10 03:20:37 +0000269 xwrite(tbInfo->tarFd, &header, sizeof(struct TarHeader));
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000270
Erik Andersen5661fe02000-04-05 01:00:52 +0000271 /* Now do the verbose thing (or not) */
Robert Grieblf2f26e72002-07-23 22:05:47 +0000272 if (tbInfo->verboseFlag) {
Eric Andersenfdd51032000-08-02 18:48:26 +0000273 FILE *vbFd = stdout;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000274
Eric Andersen70060d22004-03-27 10:02:48 +0000275 if (tbInfo->tarFd == STDOUT_FILENO) /* If the archive goes to stdout, verbose to stderr */
Eric Andersenfdd51032000-08-02 18:48:26 +0000276 vbFd = stderr;
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000277 /* GNU "tar cvvf" prints "extended" listing a-la "ls -l" */
278 /* We don't have such excesses here: for us "v" == "vv" */
Eric Andersenfdd51032000-08-02 18:48:26 +0000279 fprintf(vbFd, "%s\n", header.name);
280 }
Erik Andersen3364d782000-03-28 00:58:14 +0000281
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000282 return TRUE;
Erik Andersen3364d782000-03-28 00:58:14 +0000283}
284
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000285# if ENABLE_FEATURE_TAR_FROM
Rob Landley88621d72006-08-29 19:41:06 +0000286static int exclude_file(const llist_t *excluded_files, const char *file)
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000287{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000288 while (excluded_files) {
289 if (excluded_files->data[0] == '/') {
290 if (fnmatch(excluded_files->data, file,
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000291 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
292 return 1;
293 } else {
294 const char *p;
295
296 for (p = file; p[0] != '\0'; p++) {
297 if ((p == file || p[-1] == '/') && p[0] != '/' &&
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000298 fnmatch(excluded_files->data, p,
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000299 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
300 return 1;
301 }
302 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000303 excluded_files = excluded_files->link;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000304 }
305
306 return 0;
307}
"Vladimir N. Oleynik"a62b0e72005-12-06 12:20:57 +0000308# else
309#define exclude_file(excluded_files, file) 0
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000310# endif
Erik Andersen3364d782000-03-28 00:58:14 +0000311
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000312static int writeFileToTarball(const char *fileName, struct stat *statbuf,
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000313 void *userData, int depth)
Erik Andersen3364d782000-03-28 00:58:14 +0000314{
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000315 struct TarBallInfo *tbInfo = (struct TarBallInfo *) userData;
Matt Kraaie80a2632000-12-19 20:45:49 +0000316 const char *header_name;
Rob Landleye5695532006-01-09 03:07:44 +0000317 int inputFileFd = -1;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000318
Eric Andersen3d957c82000-12-07 00:34:58 +0000319 /*
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000320 * Check to see if we are dealing with a hard link.
321 * If so -
322 * Treat the first occurance of a given dev/inode as a file while
323 * treating any additional occurances as hard links. This is done
324 * by adding the file information to the HardLinkInfo linked list.
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000325 */
Eric Andersen3d957c82000-12-07 00:34:58 +0000326 tbInfo->hlInfo = NULL;
327 if (statbuf->st_nlink > 1) {
Glenn L McGrathf66de642002-11-25 23:57:27 +0000328 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf);
Eric Andersen3d957c82000-12-07 00:34:58 +0000329 if (tbInfo->hlInfo == NULL)
Glenn L McGrathf66de642002-11-25 23:57:27 +0000330 addHardLinkInfo(&tbInfo->hlInfoHead, statbuf, fileName);
Eric Andersen3d957c82000-12-07 00:34:58 +0000331 }
332
Erik Andersen68a9ea42000-04-04 18:39:50 +0000333 /* It is against the rules to archive a socket */
334 if (S_ISSOCK(statbuf->st_mode)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000335 bb_error_msg("%s: socket ignored", fileName);
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000336 return TRUE;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000337 }
338
339 /* It is a bad idea to store the archive we are in the process of creating,
340 * so check the device and inode to be sure that this particular file isn't
341 * the new tarball */
342 if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000343 tbInfo->statBuf.st_ino == statbuf->st_ino) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000344 bb_error_msg("%s: file is the archive; skipping", fileName);
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000345 return TRUE;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000346 }
347
Matt Kraaie80a2632000-12-19 20:45:49 +0000348 header_name = fileName;
349 while (header_name[0] == '/') {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000350 static int alreadyWarned = FALSE;
351
352 if (alreadyWarned == FALSE) {
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000353 bb_error_msg("removing leading '/' from member names");
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000354 alreadyWarned = TRUE;
Matt Kraaia1f97752000-12-19 06:24:08 +0000355 }
Matt Kraaie80a2632000-12-19 20:45:49 +0000356 header_name++;
Matt Kraaia1f97752000-12-19 06:24:08 +0000357 }
358
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000359 if (strlen(fileName) >= NAME_SIZE) {
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000360 bb_error_msg("names longer than "NAME_SIZE_STR" chars not supported");
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000361 return TRUE;
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000362 }
363
Matt Kraaie80a2632000-12-19 20:45:49 +0000364 if (header_name[0] == '\0')
Matt Kraaia1f97752000-12-19 06:24:08 +0000365 return TRUE;
366
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000367 if (exclude_file(tbInfo->excludeList, header_name))
Matt Kraaibe7499c2001-01-03 17:22:10 +0000368 return SKIP;
Matt Kraaia1f97752000-12-19 06:24:08 +0000369
Rob Landleye5695532006-01-09 03:07:44 +0000370 /* Is this a regular file? */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000371 if (tbInfo->hlInfo == NULL && S_ISREG(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000372 /* open the file we want to archive, and make sure all is well */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000373 inputFileFd = open(fileName, O_RDONLY);
374 if (inputFileFd < 0) {
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000375 bb_perror_msg("%s: cannot open", fileName);
376 return FALSE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000377 }
Rob Landleye5695532006-01-09 03:07:44 +0000378 }
379
380 /* Add an entry to the tarball */
381 if (writeTarHeader(tbInfo, header_name, fileName, statbuf) == FALSE) {
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000382 return FALSE;
Rob Landleye5695532006-01-09 03:07:44 +0000383 }
384
385 /* If it was a regular file, write out the body */
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000386 if (inputFileFd >= 0) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000387 off_t readSize = 0;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000388
Erik Andersen5661fe02000-04-05 01:00:52 +0000389 /* write the file to the archive */
Denis Vlasenko4fbb5842006-11-24 14:55:23 +0000390 readSize = bb_copyfd_size(inputFileFd, tbInfo->tarFd, statbuf->st_size);
391 if (readSize != statbuf->st_size) {
392 /* Deadly. We record size into header first, */
393 /* and then write out file. If file shrinks in between, */
394 /* tar will be corrupted. So bail out. */
395 /* NB: GNU tar 1.16 warns and pads with zeroes */
396 /* or even seeks back and updates header */
Denis Vlasenkob8a8e602006-11-24 14:59:45 +0000397 bb_error_msg_and_die("short read from %s, aborting", fileName);
Denis Vlasenko4fbb5842006-11-24 14:55:23 +0000398 }
399 /* Check that file did not grow in between? */
400 /* if (safe_read(inputFileFd,1) == 1) warn but continue? */
Rob Landleye5695532006-01-09 03:07:44 +0000401 close(inputFileFd);
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000402
Erik Andersen5661fe02000-04-05 01:00:52 +0000403 /* Pad the file up to the tar block size */
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000404 /* (a few tricks here in the name of code size) */
405 readSize = (-(int)readSize) & (TAR_BLOCK_SIZE-1);
Rob Landley1bfca7b2006-09-10 03:20:37 +0000406 bzero(bb_common_bufsiz1, readSize);
407 xwrite(tbInfo->tarFd, bb_common_bufsiz1, readSize);
Erik Andersen5661fe02000-04-05 01:00:52 +0000408 }
Erik Andersen68a9ea42000-04-04 18:39:50 +0000409
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000410 return TRUE;
Erik Andersen6acaa402000-03-26 14:03:20 +0000411}
412
Rob Landley88621d72006-08-29 19:41:06 +0000413static int writeTarFile(const int tar_fd, const int verboseFlag,
Glenn L McGrath303e9892004-01-25 05:48:28 +0000414 const unsigned long dereferenceFlag, const llist_t *include,
415 const llist_t *exclude, const int gzip)
Erik Andersen6acaa402000-03-26 14:03:20 +0000416{
Robert Grieblf2f26e72002-07-23 22:05:47 +0000417 pid_t gzipPid = 0;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000418 int errorFlag = FALSE;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000419 struct TarBallInfo tbInfo;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000420
Eric Andersen3d957c82000-12-07 00:34:58 +0000421 tbInfo.hlInfoHead = NULL;
Erik Andersen3364d782000-03-28 00:58:14 +0000422
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000423 fchmod(tar_fd, 0644);
424 tbInfo.tarFd = tar_fd;
425 tbInfo.verboseFlag = verboseFlag;
Robert Grieblf2f26e72002-07-23 22:05:47 +0000426
Erik Andersen68a9ea42000-04-04 18:39:50 +0000427 /* Store the stat info for the tarball's file, so
428 * can avoid including the tarball into itself.... */
429 if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000430 bb_perror_msg_and_die("cannot stat tar file");
Erik Andersen6acaa402000-03-26 14:03:20 +0000431
Rob Landleycc8885f2005-08-30 03:40:03 +0000432 if ((ENABLE_FEATURE_TAR_GZIP || ENABLE_FEATURE_TAR_BZIP2) && gzip) {
433 int gzipDataPipe[2] = { -1, -1 };
434 int gzipStatusPipe[2] = { -1, -1 };
435 volatile int vfork_exec_errno = 0;
436 char *zip_exec = (gzip == 1) ? "gzip" : "bzip2";
437
438
Rob Landley60fe7bf2005-10-16 03:54:49 +0000439 if (pipe(gzipDataPipe) < 0 || pipe(gzipStatusPipe) < 0)
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000440 bb_perror_msg_and_die("pipe");
Robert Grieblf2f26e72002-07-23 22:05:47 +0000441
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000442 signal(SIGPIPE, SIG_IGN); /* we only want EPIPE on errors */
Robert Grieblf2f26e72002-07-23 22:05:47 +0000443
Glenn L McGrathf66de642002-11-25 23:57:27 +0000444# if __GNUC__
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000445 /* Avoid vfork clobbering */
446 (void) &include;
447 (void) &errorFlag;
448 (void) &zip_exec;
Glenn L McGrathf66de642002-11-25 23:57:27 +0000449# endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000450
Glenn L McGrathf66de642002-11-25 23:57:27 +0000451 gzipPid = vfork();
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000452
453 if (gzipPid == 0) {
454 dup2(gzipDataPipe[0], 0);
455 close(gzipDataPipe[1]);
456
Denis Vlasenkob8a8e602006-11-24 14:59:45 +0000457 dup2(tbInfo.tarFd, 1);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000458
459 close(gzipStatusPipe[0]);
Bernhard Reutner-Fischer126da9e2005-12-12 11:20:39 +0000460 fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC); /* close on exec shows success */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000461
"Vladimir N. Oleynik"a62b0e72005-12-06 12:20:57 +0000462 execlp(zip_exec, zip_exec, "-f", NULL);
Glenn L McGrathf66de642002-11-25 23:57:27 +0000463 vfork_exec_errno = errno;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000464
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000465 close(gzipStatusPipe[1]);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000466 exit(-1);
467 } else if (gzipPid > 0) {
468 close(gzipDataPipe[0]);
469 close(gzipStatusPipe[1]);
470
471 while (1) {
Robert Grieblf2f26e72002-07-23 22:05:47 +0000472 char buf;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000473
Rob Landley53437472006-07-16 08:14:35 +0000474 int n = full_read(gzipStatusPipe[0], &buf, 1);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000475
Glenn L McGrathf66de642002-11-25 23:57:27 +0000476 if (n == 0 && vfork_exec_errno != 0) {
477 errno = vfork_exec_errno;
Denis Vlasenkoea620772006-10-14 02:23:43 +0000478 bb_perror_msg_and_die("cannot exec %s", zip_exec);
Glenn L McGrathf66de642002-11-25 23:57:27 +0000479 } else if ((n < 0) && (errno == EAGAIN || errno == EINTR))
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000480 continue; /* try it again */
481 break;
Robert Grieblf2f26e72002-07-23 22:05:47 +0000482 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000483 close(gzipStatusPipe[0]);
484
485 tbInfo.tarFd = gzipDataPipe[1];
Rob Landley60fe7bf2005-10-16 03:54:49 +0000486 } else bb_perror_msg_and_die("vfork gzip");
Robert Grieblf2f26e72002-07-23 22:05:47 +0000487 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000488
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000489 tbInfo.excludeList = exclude;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000490
Erik Andersen6acaa402000-03-26 14:03:20 +0000491 /* Read the directory/files and iterate over them one at a time */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000492 while (include) {
Rob Landley60fe7bf2005-10-16 03:54:49 +0000493 if (!recursive_action(include->data, TRUE, dereferenceFlag,
Denis Vlasenko8c35d652006-10-27 23:42:25 +0000494 FALSE, writeFileToTarball, writeFileToTarball, &tbInfo, 0))
Rob Landley60fe7bf2005-10-16 03:54:49 +0000495 {
Erik Andersen68a9ea42000-04-04 18:39:50 +0000496 errorFlag = TRUE;
Erik Andersen3364d782000-03-28 00:58:14 +0000497 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000498 include = include->link;
Erik Andersen6acaa402000-03-26 14:03:20 +0000499 }
Erik Andersen5661fe02000-04-05 01:00:52 +0000500 /* Write two empty blocks to the end of the archive */
Rob Landley1bfca7b2006-09-10 03:20:37 +0000501 bzero(bb_common_bufsiz1, 2*TAR_BLOCK_SIZE);
502 xwrite(tbInfo.tarFd, bb_common_bufsiz1, 2*TAR_BLOCK_SIZE);
Erik Andersen0817d132000-04-09 15:17:40 +0000503
504 /* To be pedantically correct, we would check if the tarball
Eric Andersen3c5ee9a2000-11-14 22:15:48 +0000505 * is smaller than 20 tar blocks, and pad it if it was smaller,
Erik Andersen0817d132000-04-09 15:17:40 +0000506 * but that isn't necessary for GNU tar interoperability, and
507 * so is considered a waste of space */
508
Rob Landley1a781032005-12-16 21:33:10 +0000509 /* Close so the child process (if any) will exit */
510 close(tbInfo.tarFd);
511
Erik Andersen68a9ea42000-04-04 18:39:50 +0000512 /* Hang up the tools, close up shop, head home */
Rob Landley1a781032005-12-16 21:33:10 +0000513 if (ENABLE_FEATURE_CLEAN_UP)
Rob Landley60fe7bf2005-10-16 03:54:49 +0000514 freeHardLinkInfo(&tbInfo.hlInfoHead);
Rob Landley60fe7bf2005-10-16 03:54:49 +0000515
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000516 if (errorFlag)
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000517 bb_error_msg("error exit delayed from previous errors");
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000518
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000519 if (gzipPid && waitpid(gzipPid, NULL, 0) == -1)
520 bb_error_msg("waitpid failed");
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000521
Robert Grieblf2f26e72002-07-23 22:05:47 +0000522 return !errorFlag;
Erik Andersen6acaa402000-03-26 14:03:20 +0000523}
Rob Landley60fe7bf2005-10-16 03:54:49 +0000524#else
525int writeTarFile(const int tar_fd, const int verboseFlag,
526 const unsigned long dereferenceFlag, const llist_t *include,
527 const llist_t *exclude, const int gzip);
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000528#endif /* tar_create */
Erik Andersen6acaa402000-03-26 14:03:20 +0000529
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000530#if ENABLE_FEATURE_TAR_FROM
Eric Andersen27cb6842003-06-26 09:07:59 +0000531static llist_t *append_file_list_to_list(llist_t *list)
Glenn L McGrathd642a672001-10-13 06:54:45 +0000532{
Eric Andersen27cb6842003-06-26 09:07:59 +0000533 FILE *src_stream;
534 llist_t *cur = list;
535 llist_t *tmp;
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000536 char *line;
Eric Andersen27cb6842003-06-26 09:07:59 +0000537 llist_t *newlist = NULL;
538
Rob Landley60fe7bf2005-10-16 03:54:49 +0000539 while (cur) {
Rob Landley86b4d642006-08-03 17:58:17 +0000540 src_stream = xfopen(cur->data, "r");
Eric Andersen27cb6842003-06-26 09:07:59 +0000541 tmp = cur;
542 cur = cur->link;
543 free(tmp);
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000544 while ((line = xmalloc_getline(src_stream)) != NULL) {
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000545 /* kill trailing '/' unless the string is just "/" */
546 char *cp = last_char_is(line, '/');
547 if (cp > line)
548 *cp = '\0';
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000549 llist_add_to(&newlist, line);
Denis Vlasenko314908d2006-09-03 14:04:33 +0000550 }
Rob Landley60fe7bf2005-10-16 03:54:49 +0000551 fclose(src_stream);
Eric Andersen27cb6842003-06-26 09:07:59 +0000552 }
553 return newlist;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000554}
Rob Landley60fe7bf2005-10-16 03:54:49 +0000555#else
556#define append_file_list_to_list(x) 0
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000557#endif
Erik Andersen6acaa402000-03-26 14:03:20 +0000558
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000559#if ENABLE_FEATURE_TAR_COMPRESS
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000560static char get_header_tar_Z(archive_handle_t *archive_handle)
561{
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000562 /* Can't lseek over pipes */
Denis Vlasenko13858992006-10-08 12:49:22 +0000563 archive_handle->seek = seek_by_read;
Eric Andersen27cb6842003-06-26 09:07:59 +0000564
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000565 /* do the decompression, and cleanup */
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000566 if (xread_char(archive_handle->src_fd) != 0x1f
567 || xread_char(archive_handle->src_fd) != 0x9d
568 ) {
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000569 bb_error_msg_and_die("invalid magic");
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000570 }
571
572 archive_handle->src_fd = open_transformer(archive_handle->src_fd, uncompress);
573 archive_handle->offset = 0;
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000574 while (get_header_tar(archive_handle) == EXIT_SUCCESS)
575 /* nothing */;
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000576
577 /* Can only do one file at a time */
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000578 return EXIT_FAILURE;
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000579}
Rob Landley60fe7bf2005-10-16 03:54:49 +0000580#else
581#define get_header_tar_Z 0
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000582#endif
583
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000584enum {
585 OPTBIT_KEEP_OLD = 7,
586 USE_FEATURE_TAR_CREATE( OPTBIT_CREATE ,)
587 USE_FEATURE_TAR_CREATE( OPTBIT_DEREFERENCE ,)
588 USE_FEATURE_TAR_BZIP2( OPTBIT_BZIP2 ,)
589 USE_FEATURE_TAR_LZMA( OPTBIT_LZMA ,)
590 USE_FEATURE_TAR_FROM( OPTBIT_INCLUDE_FROM,)
591 USE_FEATURE_TAR_FROM( OPTBIT_EXCLUDE_FROM,)
592 USE_FEATURE_TAR_GZIP( OPTBIT_GZIP ,)
593 USE_FEATURE_TAR_COMPRESS(OPTBIT_COMPRESS ,)
594 OPTBIT_NOPRESERVE_OWN,
595 OPTBIT_NOPRESERVE_PERM,
596 OPT_TEST = 1 << 0, // t
597 OPT_EXTRACT = 1 << 1, // x
598 OPT_BASEDIR = 1 << 2, // C
599 OPT_TARNAME = 1 << 3, // f
600 OPT_2STDOUT = 1 << 4, // O
601 OPT_P = 1 << 5, // p
602 OPT_VERBOSE = 1 << 6, // v
603 OPT_KEEP_OLD = 1 << 7, // k
604 OPT_CREATE = USE_FEATURE_TAR_CREATE( (1<<OPTBIT_CREATE )) + 0, // c
605 OPT_DEREFERENCE = USE_FEATURE_TAR_CREATE( (1<<OPTBIT_DEREFERENCE )) + 0, // h
606 OPT_BZIP2 = USE_FEATURE_TAR_BZIP2( (1<<OPTBIT_BZIP2 )) + 0, // j
607 OPT_LZMA = USE_FEATURE_TAR_LZMA( (1<<OPTBIT_LZMA )) + 0, // a
608 OPT_INCLUDE_FROM = USE_FEATURE_TAR_FROM( (1<<OPTBIT_INCLUDE_FROM)) + 0, // T
609 OPT_EXCLUDE_FROM = USE_FEATURE_TAR_FROM( (1<<OPTBIT_EXCLUDE_FROM)) + 0, // X
610 OPT_GZIP = USE_FEATURE_TAR_GZIP( (1<<OPTBIT_GZIP )) + 0, // z
611 OPT_COMPRESS = USE_FEATURE_TAR_COMPRESS((1<<OPTBIT_COMPRESS )) + 0, // Z
612 OPT_NOPRESERVE_OWN = 1 << OPTBIT_NOPRESERVE_OWN , // no-same-owner
613 OPT_NOPRESERVE_PERM = 1 << OPTBIT_NOPRESERVE_PERM, // no-same-permissions
614};
615#if ENABLE_FEATURE_TAR_LONG_OPTIONS
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000616static const struct option tar_long_options[] = {
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000617 { "list", 0, NULL, 't' },
618 { "extract", 0, NULL, 'x' },
619 { "directory", 1, NULL, 'C' },
620 { "file", 1, NULL, 'f' },
621 { "to-stdout", 0, NULL, 'O' },
622 { "same-permissions", 0, NULL, 'p' },
623 { "verbose", 0, NULL, 'v' },
624 { "keep-old", 0, NULL, 'k' },
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000625# if ENABLE_FEATURE_TAR_CREATE
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000626 { "create", 0, NULL, 'c' },
627 { "dereference", 0, NULL, 'h' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000628# endif
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000629# if ENABLE_FEATURE_TAR_BZIP2
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000630 { "bzip2", 0, NULL, 'j' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000631# endif
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000632# if ENABLE_FEATURE_TAR_LZMA
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000633 { "lzma", 0, NULL, 'a' },
Rob Landleyc1d69902006-01-20 18:28:50 +0000634# endif
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000635# if ENABLE_FEATURE_TAR_FROM
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000636 { "files-from", 1, NULL, 'T' },
637 { "exclude-from", 1, NULL, 'X' },
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000638 { "exclude", 1, NULL, 0xfd },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000639# endif
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000640# if ENABLE_FEATURE_TAR_GZIP
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000641 { "gzip", 0, NULL, 'z' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000642# endif
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000643# if ENABLE_FEATURE_TAR_COMPRESS
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000644 { "compress", 0, NULL, 'Z' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000645# endif
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000646 { "no-same-owner", 0, NULL, 0xfe },
647 { "no-same-permissions",0, NULL, 0xff },
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000648 { 0, 0, 0, 0 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000649};
Rob Landley60fe7bf2005-10-16 03:54:49 +0000650#else
651#define tar_long_options 0
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000652#endif
Glenn L McGrathec87d372002-11-27 07:52:22 +0000653
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000654int tar_main(int argc, char **argv)
655{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000656 char (*get_header_ptr)(archive_handle_t *) = get_header_tar;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000657 archive_handle_t *tar_handle;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000658 char *base_dir = NULL;
Glenn L McGrathf66de642002-11-25 23:57:27 +0000659 const char *tar_filename = "-";
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000660 unsigned opt;
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000661 int verboseFlag = 0;
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000662 llist_t *excludes = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000663
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000664 /* Initialise default values */
665 tar_handle = init_handle();
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000666 tar_handle->flags = ARCHIVE_CREATE_LEADING_DIRS
667 | ARCHIVE_PRESERVE_DATE
668 | ARCHIVE_EXTRACT_UNCONDITIONAL;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000669
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000670 /* Prepend '-' to the first argument if required */
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000671 opt_complementary = "--:" // first arg is options
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000672 "tt:vv:" // count -t,-v
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000673 "?:" // bail out with usage instead of error return
674 "X::T::" // cumulative lists
675 "\xfd::" // cumulative lists for --exclude
676 USE_FEATURE_TAR_CREATE("c:") "t:x:" // at least one of these is reqd
677 USE_FEATURE_TAR_CREATE("c--tx:t--cx:x--ct") // mutually exclusive
678 SKIP_FEATURE_TAR_CREATE("t--x:x--t"); // mutually exclusive
Rob Landley60fe7bf2005-10-16 03:54:49 +0000679 if (ENABLE_FEATURE_TAR_LONG_OPTIONS)
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000680 applet_long_options = tar_long_options;
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000681 opt = getopt32(argc, argv,
682 "txC:f:Opvk"
683 USE_FEATURE_TAR_CREATE( "ch" )
684 USE_FEATURE_TAR_BZIP2( "j" )
685 USE_FEATURE_TAR_LZMA( "a" )
686 USE_FEATURE_TAR_FROM( "T:X:")
687 USE_FEATURE_TAR_GZIP( "z" )
688 USE_FEATURE_TAR_COMPRESS("Z" )
689 ,
690 &base_dir, // -C dir
691 &tar_filename, // -f filename
692 USE_FEATURE_TAR_FROM(&(tar_handle->accept),) // T
693 USE_FEATURE_TAR_FROM(&(tar_handle->reject),) // X
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000694 USE_FEATURE_TAR_FROM(&excludes ,) // --exclude
695 &verboseFlag, // combined count for -t and -v
696 &verboseFlag // combined count for -t and -v
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000697 );
Rob Landley60fe7bf2005-10-16 03:54:49 +0000698
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000699 if (verboseFlag) tar_handle->action_header = header_verbose_list;
700 if (verboseFlag == 1) tar_handle->action_header = header_list;
701
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000702 if ((opt & OPT_EXTRACT) && tar_handle->action_data != data_extract_to_stdout)
Rob Landley60fe7bf2005-10-16 03:54:49 +0000703 tar_handle->action_data = data_extract_all;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000704
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000705 if (opt & OPT_2STDOUT)
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000706 tar_handle->action_data = data_extract_to_stdout;
Rob Landley60fe7bf2005-10-16 03:54:49 +0000707
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000708 if (opt & OPT_KEEP_OLD)
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000709 tar_handle->flags &= ~ARCHIVE_EXTRACT_UNCONDITIONAL;
Glenn L McGratheba86e22003-11-14 12:53:42 +0000710
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000711 if (opt & OPT_NOPRESERVE_OWN)
Rob Landleyf3d6c942005-10-27 22:49:08 +0000712 tar_handle->flags |= ARCHIVE_NOPRESERVE_OWN;
713
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000714 if (opt & OPT_NOPRESERVE_PERM)
Rob Landleyf3d6c942005-10-27 22:49:08 +0000715 tar_handle->flags |= ARCHIVE_NOPRESERVE_PERM;
Rob Landley60fe7bf2005-10-16 03:54:49 +0000716
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000717 if (opt & OPT_GZIP)
Glenn L McGratheba86e22003-11-14 12:53:42 +0000718 get_header_ptr = get_header_tar_gz;
Rob Landley60fe7bf2005-10-16 03:54:49 +0000719
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000720 if (opt & OPT_BZIP2)
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000721 get_header_ptr = get_header_tar_bz2;
Rob Landley60fe7bf2005-10-16 03:54:49 +0000722
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000723 if (opt & OPT_LZMA)
Rob Landleyc1d69902006-01-20 18:28:50 +0000724 get_header_ptr = get_header_tar_lzma;
725
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000726 if (opt & OPT_COMPRESS)
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000727 get_header_ptr = get_header_tar_Z;
Rob Landley60fe7bf2005-10-16 03:54:49 +0000728
729 if (ENABLE_FEATURE_TAR_FROM) {
730 tar_handle->reject = append_file_list_to_list(tar_handle->reject);
731 /* Append excludes to reject */
732 while (excludes) {
733 llist_t *temp = excludes->link;
734 excludes->link = tar_handle->reject;
735 tar_handle->reject = excludes;
736 excludes = temp;
737 }
738 tar_handle->accept = append_file_list_to_list(tar_handle->accept);
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000739 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000740
Glenn L McGrath29833302002-10-06 23:25:23 +0000741 /* Check if we are reading from stdin */
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000742 if (argv[optind] && *argv[optind] == '-') {
Glenn L McGrath29833302002-10-06 23:25:23 +0000743 /* Default is to read from stdin, so just skip to next arg */
Glenn L McGrath8132e932002-09-28 02:06:39 +0000744 optind++;
745 }
746
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000747 /* Setup an array of filenames to work with */
Eric Andersenaff114c2004-04-14 17:51:38 +0000748 /* TODO: This is the same as in ar, separate function ? */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000749 while (optind < argc) {
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000750 /* kill trailing '/' unless the string is just "/" */
751 char *cp = last_char_is(argv[optind], '/');
752 if (cp > argv[optind])
753 *cp = '\0';
754 llist_add_to(&tar_handle->accept, argv[optind]);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000755 optind++;
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000756 }
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000757 tar_handle->accept = rev_llist(tar_handle->accept);
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000758
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000759 if (tar_handle->accept || tar_handle->reject)
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000760 tar_handle->filter = filter_accept_reject_list;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000761
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000762 /* Open the tar file */
763 {
764 FILE *tar_stream;
765 int flags;
766
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000767 if (opt & OPT_CREATE) {
Glenn L McGrathba496512003-11-20 09:06:10 +0000768 /* Make sure there is at least one file to tar up. */
Rob Landley60fe7bf2005-10-16 03:54:49 +0000769 if (tar_handle->accept == NULL)
770 bb_error_msg_and_die("empty archive");
771
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000772 tar_stream = stdout;
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000773 /* Mimicking GNU tar 1.15.1: */
774 flags = O_WRONLY|O_CREAT|O_TRUNC;
775 /* was doing unlink; open(O_WRONLY|O_CREAT|O_EXCL); why? */
Rob Landley60fe7bf2005-10-16 03:54:49 +0000776 } else {
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000777 tar_stream = stdin;
778 flags = O_RDONLY;
779 }
780
Denis Vlasenkob8a8e602006-11-24 14:59:45 +0000781 if (tar_filename[0] == '-' && !tar_filename[1]) {
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000782 tar_handle->src_fd = fileno(tar_stream);
Denis Vlasenko13858992006-10-08 12:49:22 +0000783 tar_handle->seek = seek_by_read;
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000784 } else {
Denis Vlasenko0c45bb232006-09-09 12:49:03 +0000785 tar_handle->src_fd = xopen3(tar_filename, flags, 0666);
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000786 }
787 }
788
Bernhard Reutner-Fischerd9cf7ac2006-04-12 18:39:58 +0000789 if (base_dir)
Rob Landley86b4d642006-08-03 17:58:17 +0000790 xchdir(base_dir);
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000791
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000792 /* create an archive */
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000793 if (opt & OPT_CREATE) {
Rob Landleycc8885f2005-08-30 03:40:03 +0000794 int zipMode = 0;
Rob Landley60fe7bf2005-10-16 03:54:49 +0000795 if (ENABLE_FEATURE_TAR_GZIP && get_header_ptr == get_header_tar_gz)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000796 zipMode = 1;
Rob Landley60fe7bf2005-10-16 03:54:49 +0000797 if (ENABLE_FEATURE_TAR_BZIP2 && get_header_ptr == get_header_tar_bz2)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000798 zipMode = 2;
Denis Vlasenkod031ffa2006-11-24 21:54:44 +0000799 writeTarFile(tar_handle->src_fd, verboseFlag, opt & OPT_DEREFERENCE,
Bernhard Reutner-Fischer18260d52006-04-18 14:17:49 +0000800 tar_handle->accept,
Denis Vlasenko3feb2fc2006-11-24 21:55:55 +0000801 tar_handle->reject, zipMode);
Denis Vlasenkob8a8e602006-11-24 14:59:45 +0000802 /* NB: writeTarFile() closes tar_handle->src_fd */
803 return EXIT_SUCCESS;
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000804 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000805
Denis Vlasenkob8a8e602006-11-24 14:59:45 +0000806 while (get_header_ptr(tar_handle) == EXIT_SUCCESS)
807 /* nothing */;
808
809 /* Check that every file that should have been extracted was */
810 while (tar_handle->accept) {
811 if (!find_list_entry(tar_handle->reject, tar_handle->accept->data)
812 && !find_list_entry(tar_handle->passed, tar_handle->accept->data)
813 ) {
814 bb_error_msg_and_die("%s: not found in archive",
815 tar_handle->accept->data);
816 }
817 tar_handle->accept = tar_handle->accept->link;
818 }
819 if (ENABLE_FEATURE_CLEAN_UP /* && tar_handle->src_fd != STDIN_FILENO */)
Glenn L McGrath8132e932002-09-28 02:06:39 +0000820 close(tar_handle->src_fd);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000821
Denis Vlasenko376ce1e2006-11-24 14:51:01 +0000822 return EXIT_SUCCESS;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000823}