blob: 9d50a101d3b1eae615b251c0a23eab936bf5a44a [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
22 * This is free software under the GNU General Public License.
23 *
Eric Andersenc4996011999-10-20 22:08:37 +000024 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * (at your option) any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
32 * General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
37 *
Eric Andersencc8ed391999-10-05 16:24:54 +000038 */
39
Eric Andersencc8ed391999-10-05 16:24:54 +000040#include <fcntl.h>
Matt Kraai43c8c382000-09-04 16:51:55 +000041#include <getopt.h>
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000042#include <search.h>
43#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000044#include <stdlib.h>
45#include <unistd.h>
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000046#include <fnmatch.h>
47#include <string.h>
48#include <errno.h>
Robert Grieblf2f26e72002-07-23 22:05:47 +000049#include <signal.h>
50#include <sys/wait.h>
51#include <sys/socket.h>
Glenn L McGrathef0eab52001-10-25 14:49:48 +000052#include "unarchive.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000053#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000054
Eric Andersenbdfd0d72001-10-24 05:00:29 +000055#ifdef CONFIG_FEATURE_TAR_CREATE
Eric Andersencc8ed391999-10-05 16:24:54 +000056
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000057/* Tar file constants */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000058# define TAR_MAGIC "ustar" /* ustar and a null */
59# define TAR_VERSION " " /* Be compatable with GNU tar format */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000060
61# ifndef MAJOR
62# define MAJOR(dev) (((dev)>>8)&0xff)
63# define MINOR(dev) ((dev)&0xff)
64# endif
65
66static const int TAR_BLOCK_SIZE = 512;
67static const int TAR_MAGIC_LEN = 6;
68static const int TAR_VERSION_LEN = 2;
Eric Andersencc8ed391999-10-05 16:24:54 +000069
Erik Andersen298854f2000-03-23 01:09:18 +000070/* POSIX tar Header Block, from POSIX 1003.1-1990 */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000071enum { NAME_SIZE = 100 }; /* because gcc won't let me use 'static const int' */
72struct TarHeader { /* byte offset */
73 char name[NAME_SIZE]; /* 0-99 */
74 char mode[8]; /* 100-107 */
75 char uid[8]; /* 108-115 */
76 char gid[8]; /* 116-123 */
77 char size[12]; /* 124-135 */
78 char mtime[12]; /* 136-147 */
79 char chksum[8]; /* 148-155 */
80 char typeflag; /* 156-156 */
81 char linkname[NAME_SIZE]; /* 157-256 */
82 char magic[6]; /* 257-262 */
83 char version[2]; /* 263-264 */
84 char uname[32]; /* 265-296 */
85 char gname[32]; /* 297-328 */
86 char devmajor[8]; /* 329-336 */
87 char devminor[8]; /* 337-344 */
88 char prefix[155]; /* 345-499 */
89 char padding[12]; /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
Erik Andersen298854f2000-03-23 01:09:18 +000090};
91typedef struct TarHeader TarHeader;
Eric Andersencc8ed391999-10-05 16:24:54 +000092
Eric Andersen3d957c82000-12-07 00:34:58 +000093/*
94** writeTarFile(), writeFileToTarball(), and writeTarHeader() are
95** the only functions that deal with the HardLinkInfo structure.
96** Even these functions use the xxxHardLinkInfo() functions.
97*/
98typedef struct HardLinkInfo HardLinkInfo;
Glenn L McGratha0ee8812002-08-22 13:44:08 +000099struct HardLinkInfo {
100 HardLinkInfo *next; /* Next entry in list */
101 dev_t dev; /* Device number */
102 ino_t ino; /* Inode number */
103 short linkCount; /* (Hard) Link Count */
104 char name[1]; /* Start of filename (must be last) */
Eric Andersen3d957c82000-12-07 00:34:58 +0000105};
106
Erik Andersen68a9ea42000-04-04 18:39:50 +0000107/* Some info to be carried along when creating a new tarball */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000108struct TarBallInfo {
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
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000114 tarball lives, so we can avoid trying
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000115 to include the tarball into itself */
116 int verboseFlag; /* Whether to print extra stuff or not */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000117 const llist_t *excludeList; /* List of files to not include */
Glenn L McGratha0ee8812002-08-22 13:44:08 +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 */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000124enum TarFileType {
125 REGTYPE = '0', /* regular file */
126 REGTYPE0 = '\0', /* regular file (ancient bug compat) */
127 LNKTYPE = '1', /* hard link */
128 SYMTYPE = '2', /* symbolic link */
129 CHRTYPE = '3', /* character special */
130 BLKTYPE = '4', /* block special */
131 DIRTYPE = '5', /* directory */
132 FIFOTYPE = '6', /* FIFO special */
133 CONTTYPE = '7', /* reserved */
134 GNULONGLINK = 'K', /* GNU long (>100 chars) link name */
135 GNULONGNAME = 'L', /* GNU long (>100 chars) file name */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000136};
137typedef enum TarFileType TarFileType;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000138
Eric Andersen3d957c82000-12-07 00:34:58 +0000139/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
Glenn L McGrathf66de642002-11-25 23:57:27 +0000140static inline void addHardLinkInfo(HardLinkInfo ** hlInfoHeadPtr,
141 struct stat *statbuf,
142 const char *name)
Eric Andersen3d957c82000-12-07 00:34:58 +0000143{
144 /* Note: hlInfoHeadPtr can never be NULL! */
145 HardLinkInfo *hlInfo;
146
Glenn L McGrathf66de642002-11-25 23:57:27 +0000147 hlInfo = (HardLinkInfo *) xmalloc(sizeof(HardLinkInfo) + strlen(name));
148 hlInfo->next = *hlInfoHeadPtr;
149 *hlInfoHeadPtr = hlInfo;
150 hlInfo->dev = statbuf->st_dev;
151 hlInfo->ino = statbuf->st_ino;
152 hlInfo->linkCount = statbuf->st_nlink;
153 strcpy(hlInfo->name, name);
Eric Andersen3d957c82000-12-07 00:34:58 +0000154}
155
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000156static void freeHardLinkInfo(HardLinkInfo ** hlInfoHeadPtr)
Eric Andersen3d957c82000-12-07 00:34:58 +0000157{
158 HardLinkInfo *hlInfo = NULL;
159 HardLinkInfo *hlInfoNext = NULL;
160
161 if (hlInfoHeadPtr) {
162 hlInfo = *hlInfoHeadPtr;
163 while (hlInfo) {
164 hlInfoNext = hlInfo->next;
165 free(hlInfo);
166 hlInfo = hlInfoNext;
167 }
168 *hlInfoHeadPtr = NULL;
169 }
170 return;
171}
172
173/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
Glenn L McGrathf66de642002-11-25 23:57:27 +0000174static inline HardLinkInfo *findHardLinkInfo(HardLinkInfo * hlInfo, struct stat *statbuf)
Eric Andersen3d957c82000-12-07 00:34:58 +0000175{
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000176 while (hlInfo) {
Glenn L McGrathf66de642002-11-25 23:57:27 +0000177 if ((statbuf->st_ino == hlInfo->ino) && (statbuf->st_dev == hlInfo->dev))
Eric Andersen3d957c82000-12-07 00:34:58 +0000178 break;
179 hlInfo = hlInfo->next;
180 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000181 return (hlInfo);
Eric Andersen3d957c82000-12-07 00:34:58 +0000182}
183
Erik Andersen6acaa402000-03-26 14:03:20 +0000184/* Put an octal string into the specified buffer.
185 * The number is zero and space padded and possibly null padded.
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000186 * Returns TRUE if successful. */
187static int putOctal(char *cp, int len, long value)
Erik Andersen6acaa402000-03-26 14:03:20 +0000188{
189 int tempLength;
Erik Andersen6acaa402000-03-26 14:03:20 +0000190 char tempBuffer[32];
Erik Andersen5661fe02000-04-05 01:00:52 +0000191 char *tempString = tempBuffer;
Erik Andersen6acaa402000-03-26 14:03:20 +0000192
193 /* Create a string of the specified length with an initial space,
194 * leading zeroes and the octal number, and a trailing null. */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000195 sprintf(tempString, "%0*lo", len - 1, value);
Erik Andersen6acaa402000-03-26 14:03:20 +0000196
197 /* If the string is too large, suppress the leading space. */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000198 tempLength = strlen(tempString) + 1;
Erik Andersen6acaa402000-03-26 14:03:20 +0000199 if (tempLength > len) {
200 tempLength--;
201 tempString++;
202 }
203
204 /* If the string is still too large, suppress the trailing null. */
205 if (tempLength > len)
206 tempLength--;
207
208 /* If the string is still too large, fail. */
209 if (tempLength > len)
210 return FALSE;
211
212 /* Copy the string to the field. */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000213 memcpy(cp, tempString, len);
Erik Andersen6acaa402000-03-26 14:03:20 +0000214
215 return TRUE;
216}
217
Erik Andersen68a9ea42000-04-04 18:39:50 +0000218/* Write out a tar header for the specified file/directory/whatever */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000219static inline int writeTarHeader(struct TarBallInfo *tbInfo,
220 const char *header_name,
221 const char *real_name, struct stat *statbuf)
Erik Andersen6acaa402000-03-26 14:03:20 +0000222{
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000223 long chksum = 0;
Erik Andersen5661fe02000-04-05 01:00:52 +0000224 struct TarHeader header;
225 const unsigned char *cp = (const unsigned char *) &header;
226 ssize_t size = sizeof(struct TarHeader);
Erik Andersen3364d782000-03-28 00:58:14 +0000227
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000228 memset(&header, 0, size);
229
230 strncpy(header.name, header_name, sizeof(header.name));
Erik Andersenecd51242000-04-08 03:08:21 +0000231
Erik Andersen5661fe02000-04-05 01:00:52 +0000232 putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
233 putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
234 putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000235 putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */
Erik Andersen5661fe02000-04-05 01:00:52 +0000236 putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000237 strncpy(header.magic, TAR_MAGIC TAR_VERSION,
238 TAR_MAGIC_LEN + TAR_VERSION_LEN);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000239
Erik Andersen84e09e42000-04-08 20:58:35 +0000240 /* Enter the user and group names (default to root if it fails) */
Eric Andersen02e6ba92002-09-30 20:39:56 +0000241 if (my_getpwuid(header.uname, statbuf->st_uid) == NULL)
Erik Andersen84e09e42000-04-08 20:58:35 +0000242 strcpy(header.uname, "root");
Eric Andersen02e6ba92002-09-30 20:39:56 +0000243 if (my_getgrgid(header.gname, statbuf->st_gid) == NULL)
244 strcpy(header.gname, "root");
Erik Andersen5661fe02000-04-05 01:00:52 +0000245
Eric Andersen3d957c82000-12-07 00:34:58 +0000246 if (tbInfo->hlInfo) {
247 /* This is a hard link */
248 header.typeflag = LNKTYPE;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000249 strncpy(header.linkname, tbInfo->hlInfo->name,
250 sizeof(header.linkname));
Eric Andersen3d957c82000-12-07 00:34:58 +0000251 } else if (S_ISLNK(statbuf->st_mode)) {
Mark Whitley8a633262001-04-30 18:17:00 +0000252 char *lpath = xreadlink(real_name);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000253
254 if (!lpath) /* Already printed err msg inside xreadlink() */
255 return (FALSE);
256 header.typeflag = SYMTYPE;
257 strncpy(header.linkname, lpath, sizeof(header.linkname));
Mark Whitley8a633262001-04-30 18:17:00 +0000258 free(lpath);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000259 } else if (S_ISDIR(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000260 header.typeflag = DIRTYPE;
261 strncat(header.name, "/", sizeof(header.name));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000262 } else if (S_ISCHR(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000263 header.typeflag = CHRTYPE;
264 putOctal(header.devmajor, sizeof(header.devmajor),
265 MAJOR(statbuf->st_rdev));
266 putOctal(header.devminor, sizeof(header.devminor),
267 MINOR(statbuf->st_rdev));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000268 } else if (S_ISBLK(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000269 header.typeflag = BLKTYPE;
270 putOctal(header.devmajor, sizeof(header.devmajor),
271 MAJOR(statbuf->st_rdev));
272 putOctal(header.devminor, sizeof(header.devminor),
273 MINOR(statbuf->st_rdev));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000274 } else if (S_ISFIFO(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000275 header.typeflag = FIFOTYPE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000276 } else if (S_ISREG(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000277 header.typeflag = REGTYPE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000278 putOctal(header.size, sizeof(header.size), statbuf->st_size);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000279 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000280 bb_error_msg("%s: Unknown file type", real_name);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000281 return (FALSE);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000282 }
Erik Andersen68a9ea42000-04-04 18:39:50 +0000283
Eric Andersen77d92682001-05-23 20:32:09 +0000284 /* Calculate and store the checksum (i.e., the sum of all of the bytes of
Erik Andersen5661fe02000-04-05 01:00:52 +0000285 * the header). The checksum field must be filled with blanks for the
286 * calculation. The checksum field is formatted differently from the
287 * other fields: it has [6] digits, a null, then a space -- rather than
288 * digits, followed by a null like the other fields... */
289 memset(header.chksum, ' ', sizeof(header.chksum));
290 cp = (const unsigned char *) &header;
291 while (size-- > 0)
292 chksum += *cp++;
293 putOctal(header.chksum, 7, chksum);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000294
Erik Andersen5661fe02000-04-05 01:00:52 +0000295 /* Now write the header out to disk */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000296 if ((size =
Manuel Novoa III cad53642003-03-19 09:13:01 +0000297 bb_full_write(tbInfo->tarFd, (char *) &header,
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000298 sizeof(struct TarHeader))) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000299 bb_error_msg(bb_msg_io_error, real_name);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000300 return (FALSE);
Erik Andersen5661fe02000-04-05 01:00:52 +0000301 }
302 /* Pad the header up to the tar block size */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000303 for (; size < TAR_BLOCK_SIZE; size++) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000304 write(tbInfo->tarFd, "\0", 1);
305 }
306 /* Now do the verbose thing (or not) */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000307
Robert Grieblf2f26e72002-07-23 22:05:47 +0000308 if (tbInfo->verboseFlag) {
Eric Andersenfdd51032000-08-02 18:48:26 +0000309 FILE *vbFd = stdout;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000310
Eric Andersen70060d22004-03-27 10:02:48 +0000311 if (tbInfo->tarFd == STDOUT_FILENO) /* If the archive goes to stdout, verbose to stderr */
Eric Andersenfdd51032000-08-02 18:48:26 +0000312 vbFd = stderr;
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000313
Eric Andersenfdd51032000-08-02 18:48:26 +0000314 fprintf(vbFd, "%s\n", header.name);
315 }
Erik Andersen3364d782000-03-28 00:58:14 +0000316
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000317 return (TRUE);
Erik Andersen3364d782000-03-28 00:58:14 +0000318}
319
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000320# ifdef CONFIG_FEATURE_TAR_FROM
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000321static inline int exclude_file(const llist_t *excluded_files, const char *file)
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000322{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000323 while (excluded_files) {
324 if (excluded_files->data[0] == '/') {
325 if (fnmatch(excluded_files->data, file,
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000326 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
327 return 1;
328 } else {
329 const char *p;
330
331 for (p = file; p[0] != '\0'; p++) {
332 if ((p == file || p[-1] == '/') && p[0] != '/' &&
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000333 fnmatch(excluded_files->data, p,
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000334 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
335 return 1;
336 }
337 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000338 excluded_files = excluded_files->link;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000339 }
340
341 return 0;
342}
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000343# endif
Erik Andersen3364d782000-03-28 00:58:14 +0000344
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000345static int writeFileToTarball(const char *fileName, struct stat *statbuf,
346 void *userData)
Erik Andersen3364d782000-03-28 00:58:14 +0000347{
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000348 struct TarBallInfo *tbInfo = (struct TarBallInfo *) userData;
Matt Kraaie80a2632000-12-19 20:45:49 +0000349 const char *header_name;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000350
Eric Andersen3d957c82000-12-07 00:34:58 +0000351 /*
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000352 ** Check to see if we are dealing with a hard link.
353 ** If so -
354 ** Treat the first occurance of a given dev/inode as a file while
355 ** treating any additional occurances as hard links. This is done
356 ** by adding the file information to the HardLinkInfo linked list.
357 */
Eric Andersen3d957c82000-12-07 00:34:58 +0000358 tbInfo->hlInfo = NULL;
359 if (statbuf->st_nlink > 1) {
Glenn L McGrathf66de642002-11-25 23:57:27 +0000360 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf);
Eric Andersen3d957c82000-12-07 00:34:58 +0000361 if (tbInfo->hlInfo == NULL)
Glenn L McGrathf66de642002-11-25 23:57:27 +0000362 addHardLinkInfo(&tbInfo->hlInfoHead, statbuf, fileName);
Eric Andersen3d957c82000-12-07 00:34:58 +0000363 }
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)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000367 bb_error_msg("%s: socket ignored", fileName);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000368 return (TRUE);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000369 }
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 &&
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000375 tbInfo->statBuf.st_ino == statbuf->st_ino) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000376 bb_error_msg("%s: file is the archive; skipping", fileName);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000377 return (TRUE);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000378 }
379
Matt Kraaie80a2632000-12-19 20:45:49 +0000380 header_name = fileName;
381 while (header_name[0] == '/') {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000382 static int alreadyWarned = FALSE;
383
384 if (alreadyWarned == FALSE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000385 bb_error_msg("Removing leading '/' from member names");
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000386 alreadyWarned = TRUE;
Matt Kraaia1f97752000-12-19 06:24:08 +0000387 }
Matt Kraaie80a2632000-12-19 20:45:49 +0000388 header_name++;
Matt Kraaia1f97752000-12-19 06:24:08 +0000389 }
390
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000391 if (strlen(fileName) >= NAME_SIZE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000392 bb_error_msg(bb_msg_name_longer_than_foo, NAME_SIZE);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000393 return (TRUE);
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000394 }
395
Matt Kraaie80a2632000-12-19 20:45:49 +0000396 if (header_name[0] == '\0')
Matt Kraaia1f97752000-12-19 06:24:08 +0000397 return TRUE;
398
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000399# ifdef CONFIG_FEATURE_TAR_FROM
Matt Kraaibe7499c2001-01-03 17:22:10 +0000400 if (exclude_file(tbInfo->excludeList, header_name)) {
401 return SKIP;
Matt Kraaia1f97752000-12-19 06:24:08 +0000402 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000403# endif /* CONFIG_FEATURE_TAR_FROM */
Matt Kraaia1f97752000-12-19 06:24:08 +0000404
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000405 if (writeTarHeader(tbInfo, header_name, fileName, statbuf) == FALSE) {
406 return (FALSE);
407 }
Erik Andersen5661fe02000-04-05 01:00:52 +0000408
409 /* Now, if the file is a regular file, copy it out to the tarball */
Eric Andersen3d957c82000-12-07 00:34:58 +0000410 if ((tbInfo->hlInfo == NULL)
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000411 && (S_ISREG(statbuf->st_mode))) {
412 int inputFileFd;
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000413 ssize_t readSize = 0;
Erik Andersen5661fe02000-04-05 01:00:52 +0000414
415 /* open the file we want to archive, and make sure all is well */
416 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000417 bb_perror_msg("%s: Cannot open", fileName);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000418 return (FALSE);
Erik Andersen5661fe02000-04-05 01:00:52 +0000419 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000420
Erik Andersen5661fe02000-04-05 01:00:52 +0000421 /* write the file to the archive */
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000422 readSize = bb_copyfd_eof(inputFileFd, tbInfo->tarFd);
423
Erik Andersen5661fe02000-04-05 01:00:52 +0000424 /* Pad the file up to the tar block size */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000425 for (; (readSize % TAR_BLOCK_SIZE) != 0; readSize++) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000426 write(tbInfo->tarFd, "\0", 1);
427 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000428 close(inputFileFd);
Erik Andersen5661fe02000-04-05 01:00:52 +0000429 }
Erik Andersen68a9ea42000-04-04 18:39:50 +0000430
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000431 return (TRUE);
Erik Andersen6acaa402000-03-26 14:03:20 +0000432}
433
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000434static inline int writeTarFile(const int tar_fd, const int verboseFlag,
Glenn L McGrath303e9892004-01-25 05:48:28 +0000435 const unsigned long dereferenceFlag, const llist_t *include,
436 const llist_t *exclude, const int gzip)
Erik Andersen6acaa402000-03-26 14:03:20 +0000437{
Robert Grieblf2f26e72002-07-23 22:05:47 +0000438#ifdef CONFIG_FEATURE_TAR_GZIP
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000439 int gzipDataPipe[2] = { -1, -1 };
440 int gzipStatusPipe[2] = { -1, -1 };
Robert Grieblf2f26e72002-07-23 22:05:47 +0000441 pid_t gzipPid = 0;
Glenn L McGrathf66de642002-11-25 23:57:27 +0000442 volatile int vfork_exec_errno = 0;
Robert Grieblf2f26e72002-07-23 22:05:47 +0000443#endif
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000444
445 int errorFlag = FALSE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000446 ssize_t size;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000447 struct TarBallInfo tbInfo;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000448
Eric Andersen3d957c82000-12-07 00:34:58 +0000449 tbInfo.hlInfoHead = NULL;
Erik Andersen3364d782000-03-28 00:58:14 +0000450
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000451 fchmod(tar_fd, 0644);
452 tbInfo.tarFd = tar_fd;
453 tbInfo.verboseFlag = verboseFlag;
Robert Grieblf2f26e72002-07-23 22:05:47 +0000454
Erik Andersen68a9ea42000-04-04 18:39:50 +0000455 /* Store the stat info for the tarball's file, so
456 * can avoid including the tarball into itself.... */
457 if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000458 bb_perror_msg_and_die("Couldnt stat tar file");
Erik Andersen6acaa402000-03-26 14:03:20 +0000459
Robert Grieblf2f26e72002-07-23 22:05:47 +0000460#ifdef CONFIG_FEATURE_TAR_GZIP
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000461 if (gzip) {
Glenn L McGrathf66de642002-11-25 23:57:27 +0000462 if (pipe(gzipDataPipe) < 0 || pipe(gzipStatusPipe) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000463 bb_perror_msg_and_die("Failed to create gzip pipe");
Glenn L McGrathf66de642002-11-25 23:57:27 +0000464 }
Robert Grieblf2f26e72002-07-23 22:05:47 +0000465
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000466 signal(SIGPIPE, SIG_IGN); /* we only want EPIPE on errors */
Robert Grieblf2f26e72002-07-23 22:05:47 +0000467
Glenn L McGrathf66de642002-11-25 23:57:27 +0000468# if __GNUC__
469 /* Avoid vfork clobbering */
470 (void) &include;
471 (void) &errorFlag;
472# endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000473
Glenn L McGrathf66de642002-11-25 23:57:27 +0000474 gzipPid = vfork();
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000475
476 if (gzipPid == 0) {
477 dup2(gzipDataPipe[0], 0);
478 close(gzipDataPipe[1]);
479
480 if (tbInfo.tarFd != 1);
481 dup2(tbInfo.tarFd, 1);
482
483 close(gzipStatusPipe[0]);
484 fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC); /* close on exec shows sucess */
485
486 execl("/bin/gzip", "gzip", "-f", 0);
Glenn L McGrathf66de642002-11-25 23:57:27 +0000487 vfork_exec_errno = errno;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000488
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000489 close(gzipStatusPipe[1]);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000490 exit(-1);
491 } else if (gzipPid > 0) {
492 close(gzipDataPipe[0]);
493 close(gzipStatusPipe[1]);
494
495 while (1) {
Robert Grieblf2f26e72002-07-23 22:05:47 +0000496 char buf;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000497
Eric Andersene3393512003-07-05 23:10:27 +0000498 int n = bb_full_read(gzipStatusPipe[0], &buf, 1);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000499
Glenn L McGrathf66de642002-11-25 23:57:27 +0000500 if (n == 0 && vfork_exec_errno != 0) {
501 errno = vfork_exec_errno;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000502 bb_perror_msg_and_die("Could not exec gzip process");
Glenn L McGrathf66de642002-11-25 23:57:27 +0000503 } else if ((n < 0) && (errno == EAGAIN || errno == EINTR))
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000504 continue; /* try it again */
505 break;
Robert Grieblf2f26e72002-07-23 22:05:47 +0000506 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000507 close(gzipStatusPipe[0]);
508
509 tbInfo.tarFd = gzipDataPipe[1];
510 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000511 bb_perror_msg_and_die("Failed to vfork gzip process");
Robert Grieblf2f26e72002-07-23 22:05:47 +0000512 }
513 }
514#endif
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000515
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000516 tbInfo.excludeList = exclude;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000517
Erik Andersen6acaa402000-03-26 14:03:20 +0000518 /* Read the directory/files and iterate over them one at a time */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000519 while (include) {
Glenn L McGrath303e9892004-01-25 05:48:28 +0000520 if (!recursive_action(include->data, TRUE, dereferenceFlag, FALSE,
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000521 writeFileToTarball, writeFileToTarball,
522 (void *) &tbInfo)) {
Erik Andersen68a9ea42000-04-04 18:39:50 +0000523 errorFlag = TRUE;
Erik Andersen3364d782000-03-28 00:58:14 +0000524 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000525 include = include->link;
Erik Andersen6acaa402000-03-26 14:03:20 +0000526 }
Erik Andersen5661fe02000-04-05 01:00:52 +0000527 /* Write two empty blocks to the end of the archive */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000528 for (size = 0; size < (2 * TAR_BLOCK_SIZE); size++) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000529 write(tbInfo.tarFd, "\0", 1);
530 }
Erik Andersen0817d132000-04-09 15:17:40 +0000531
532 /* To be pedantically correct, we would check if the tarball
Eric Andersen3c5ee9a2000-11-14 22:15:48 +0000533 * is smaller than 20 tar blocks, and pad it if it was smaller,
Erik Andersen0817d132000-04-09 15:17:40 +0000534 * but that isn't necessary for GNU tar interoperability, and
535 * so is considered a waste of space */
536
Erik Andersen68a9ea42000-04-04 18:39:50 +0000537 /* Hang up the tools, close up shop, head home */
Robert Grieblf2f26e72002-07-23 22:05:47 +0000538 close(tbInfo.tarFd);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000539 if (errorFlag)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000540 bb_error_msg("Error exit delayed from previous errors");
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000541
Eric Andersen3d957c82000-12-07 00:34:58 +0000542 freeHardLinkInfo(&tbInfo.hlInfoHead);
Robert Grieblf2f26e72002-07-23 22:05:47 +0000543
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000544#ifdef CONFIG_FEATURE_TAR_GZIP
545 if (gzip && gzipPid) {
546 if (waitpid(gzipPid, NULL, 0) == -1)
547 printf("Couldnt wait ?");
Robert Grieblf2f26e72002-07-23 22:05:47 +0000548 }
549#endif
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000550
Robert Grieblf2f26e72002-07-23 22:05:47 +0000551 return !errorFlag;
Erik Andersen6acaa402000-03-26 14:03:20 +0000552}
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000553#endif /* tar_create */
Erik Andersen6acaa402000-03-26 14:03:20 +0000554
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000555#ifdef CONFIG_FEATURE_TAR_FROM
Eric Andersen27cb6842003-06-26 09:07:59 +0000556static llist_t *append_file_list_to_list(llist_t *list)
Glenn L McGrathd642a672001-10-13 06:54:45 +0000557{
Eric Andersen27cb6842003-06-26 09:07:59 +0000558 FILE *src_stream;
559 llist_t *cur = list;
560 llist_t *tmp;
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000561 char *line;
Eric Andersen27cb6842003-06-26 09:07:59 +0000562 llist_t *newlist = NULL;
563
564 while(cur) {
565 src_stream = bb_xfopen(cur->data, "r");
566 tmp = cur;
567 cur = cur->link;
568 free(tmp);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000569 while((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
Eric Andersen27cb6842003-06-26 09:07:59 +0000570 newlist = llist_add_to(newlist, line);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000571 }
572 fclose(src_stream);
Eric Andersen27cb6842003-06-26 09:07:59 +0000573 }
574 return newlist;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000575}
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000576#endif
Erik Andersen6acaa402000-03-26 14:03:20 +0000577
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000578#ifdef CONFIG_FEATURE_TAR_COMPRESS
579static char get_header_tar_Z(archive_handle_t *archive_handle)
580{
581 /* Cant lseek over pipe's */
582 archive_handle->seek = seek_by_char;
Eric Andersen27cb6842003-06-26 09:07:59 +0000583
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000584 /* do the decompression, and cleanup */
585 if ((bb_xread_char(archive_handle->src_fd) != 0x1f) || (bb_xread_char(archive_handle->src_fd) != 0x9d)) {
586 bb_error_msg_and_die("Invalid magic");
587 }
588
589 archive_handle->src_fd = open_transformer(archive_handle->src_fd, uncompress);
590 archive_handle->offset = 0;
591 while (get_header_tar(archive_handle) == EXIT_SUCCESS);
592
593 /* Can only do one file at a time */
594 return(EXIT_FAILURE);
595}
596#endif
597
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000598#define CTX_TEST (1 << 0)
599#define CTX_EXTRACT (1 << 1)
600#define TAR_OPT_BASEDIR (1 << 2)
601#define TAR_OPT_TARNAME (1 << 3)
602#define TAR_OPT_2STDOUT (1 << 4)
603#define TAR_OPT_P (1 << 5)
604#define TAR_OPT_VERBOSE (1 << 6)
605#define TAR_OPT_KEEP_OLD (1 << 7)
Glenn L McGratheba86e22003-11-14 12:53:42 +0000606
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000607#ifdef CONFIG_FEATURE_TAR_CREATE
608# define CTX_CREATE (1 << 8)
Glenn L McGrath303e9892004-01-25 05:48:28 +0000609# define TAR_OPT_DEREFERNCE (1 << 9)
610# define TAR_OPT_STR_CREATE "ch"
611# define TAR_OPT_FLAG_CREATE 2
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000612#else
613//# define CTX_CREATE 0
614# define TAR_OPT_STR_CREATE ""
615# define TAR_OPT_FLAG_CREATE 0
616#endif
617
618#ifdef CONFIG_FEATURE_TAR_BZIP2
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000619# define TAR_OPT_BZIP2 (1 << (8 + TAR_OPT_FLAG_CREATE))
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000620# define TAR_OPT_STR_BZIP2 "j"
621# define TAR_OPT_FLAG_BZIP2 1
622#else
623# define TAR_OPT_STR_BZIP2 ""
624# define TAR_OPT_FLAG_BZIP2 0
625#endif
626
627#ifdef CONFIG_FEATURE_TAR_FROM
628# define TAR_OPT_FROM_FILE (1 << (8 + TAR_OPT_FLAG_CREATE + TAR_OPT_FLAG_BZIP2))
629# define TAR_OPT_EXCLUDE_FROM (1 << (8 + TAR_OPT_FLAG_CREATE + TAR_OPT_FLAG_BZIP2 + 1))
630# define TAR_OPT_STR_FROM "T:X:"
631# define TAR_OPT_FLAG_FROM 2
632#else
633# define TAR_OPT_STR_FROM ""
634# define TAR_OPT_FLAG_FROM 0
635#endif
636
637#ifdef CONFIG_FEATURE_TAR_GZIP
638# define TAR_OPT_GZIP (1 << (8 + TAR_OPT_FLAG_CREATE + TAR_OPT_FLAG_BZIP2 + TAR_OPT_FLAG_FROM))
639# define TAR_OPT_STR_GZIP "z"
640# define TAR_OPT_FLAG_GZIP 1
641#else
642# define TAR_OPT_STR_GZIP ""
643# define TAR_OPT_FLAG_GZIP 0
644#endif
645
646#ifdef CONFIG_FEATURE_TAR_COMPRESS
647# define TAR_OPT_UNCOMPRESS (1 << (8 + TAR_OPT_FLAG_CREATE + TAR_OPT_FLAG_BZIP2 + TAR_OPT_FLAG_FROM + TAR_OPT_FLAG_GZIP))
648# define TAR_OPT_STR_COMPRESS "Z"
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000649#else
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000650# define TAR_OPT_STR_COMPRESS ""
651#endif
652
653static const char tar_options[]="txC:f:Opvk" \
654 TAR_OPT_STR_CREATE \
655 TAR_OPT_STR_BZIP2 \
656 TAR_OPT_STR_FROM \
657 TAR_OPT_STR_GZIP \
658 TAR_OPT_STR_COMPRESS;
659
660#ifdef CONFIG_FEATURE_TAR_LONG_OPTIONS
661static const struct option tar_long_options[] = {
662 { "list", 0, NULL, 't' },
663 { "extract", 0, NULL, 'x' },
664 { "directory", 1, NULL, 'C' },
665 { "file", 1, NULL, 'f' },
666 { "to-stdout", 0, NULL, 'O' },
667 { "same-permissions", 0, NULL, 'p' },
668 { "verbose", 0, NULL, 'v' },
669 { "keep-old", 0, NULL, 'k' },
670# ifdef CONFIG_FEATURE_TAR_CREATE
671 { "create", 0, NULL, 'c' },
Glenn L McGrath303e9892004-01-25 05:48:28 +0000672 { "dereference", 0, NULL, 'h' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000673# endif
674# ifdef CONFIG_FEATURE_TAR_BZIP2
675 { "bzip2", 0, NULL, 'j' },
676# endif
677# ifdef CONFIG_FEATURE_TAR_FROM
678 { "from-file", 1, NULL, 'T' },
679 { "exclude-from", 1, NULL, 'X' },
680# endif
681# ifdef CONFIG_FEATURE_TAR_GZIP
682 { "gzip", 0, NULL, 'z' },
683# endif
684# ifdef CONFIG_FEATURE_TAR_COMPRESS
685 { "compress", 0, NULL, 'Z' },
686# endif
687 { 0, 0, 0, 0 }
688};
689#endif
Glenn L McGrathec87d372002-11-27 07:52:22 +0000690
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000691int tar_main(int argc, char **argv)
692{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000693 char (*get_header_ptr)(archive_handle_t *) = get_header_tar;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000694 archive_handle_t *tar_handle;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000695 char *base_dir = NULL;
Glenn L McGrathf66de642002-11-25 23:57:27 +0000696 const char *tar_filename = "-";
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000697 unsigned long opt;
698 unsigned long ctx_flag = 0;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000699
Glenn L McGrathf6bf7a02002-11-08 07:09:42 +0000700 if (argc < 2) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000701 bb_show_usage();
Glenn L McGrathf6bf7a02002-11-08 07:09:42 +0000702 }
703
Glenn L McGrath934805a2002-10-18 23:59:40 +0000704 /* Prepend '-' to the first argument if required */
705 if (argv[1][0] != '-') {
Eric Andersen27cb6842003-06-26 09:07:59 +0000706 char *tmp;
707
708 bb_xasprintf(&tmp, "-%s", argv[1]);
Glenn L McGrath934805a2002-10-18 23:59:40 +0000709 argv[1] = tmp;
710 }
711
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000712 /* Initialise default values */
713 tar_handle = init_handle();
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000714 tar_handle->flags = ARCHIVE_CREATE_LEADING_DIRS | ARCHIVE_PRESERVE_DATE | ARCHIVE_EXTRACT_UNCONDITIONAL;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000715
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000716 bb_opt_complementaly = "c~tx:t~cx:x~ct:X*:T*";
717#ifdef CONFIG_FEATURE_TAR_LONG_OPTIONS
718 bb_applet_long_options = tar_long_options;
719#endif
720
Eric Andersen27cb6842003-06-26 09:07:59 +0000721 opt = bb_getopt_ulflags(argc, argv, tar_options,
Eric Andersen27cb6842003-06-26 09:07:59 +0000722 &base_dir, /* Change to dir <optarg> */
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000723 &tar_filename /* archive filename */
724#ifdef CONFIG_FEATURE_TAR_FROM
725 , NULL,
726 &(tar_handle->reject)
727#endif
728 );
729
Eric Andersen27cb6842003-06-26 09:07:59 +0000730 /* Check one and only one context option was given */
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000731 if(opt & 0x80000000UL) {
Eric Andersen27cb6842003-06-26 09:07:59 +0000732 bb_show_usage();
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000733 }
734#ifdef CONFIG_FEATURE_TAR_CREATE
Eric Andersen27cb6842003-06-26 09:07:59 +0000735 ctx_flag = opt & (CTX_CREATE | CTX_TEST | CTX_EXTRACT);
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000736#else
737 ctx_flag = opt & (CTX_TEST | CTX_EXTRACT);
738#endif
Glenn L McGrathbebc40b2003-11-20 09:53:31 +0000739 if (ctx_flag == 0) {
740 bb_show_usage();
741 }
Eric Andersen27cb6842003-06-26 09:07:59 +0000742 if(ctx_flag & CTX_TEST) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000743 if ((tar_handle->action_header == header_list) ||
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000744 (tar_handle->action_header == header_verbose_list)) {
745 tar_handle->action_header = header_verbose_list;
746 } else {
747 tar_handle->action_header = header_list;
748 }
Eric Andersen27cb6842003-06-26 09:07:59 +0000749 }
750 if(ctx_flag & CTX_EXTRACT) {
751 if (tar_handle->action_data != data_extract_to_stdout)
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000752 tar_handle->action_data = data_extract_all;
753 }
Eric Andersen27cb6842003-06-26 09:07:59 +0000754 if(opt & TAR_OPT_2STDOUT) {
755 /* To stdout */
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000756 tar_handle->action_data = data_extract_to_stdout;
Eric Andersen27cb6842003-06-26 09:07:59 +0000757 }
758 if(opt & TAR_OPT_VERBOSE) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000759 if ((tar_handle->action_header == header_list) ||
760 (tar_handle->action_header == header_verbose_list))
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000761 {
762 tar_handle->action_header = header_verbose_list;
763 } else {
764 tar_handle->action_header = header_list;
765 }
766 }
767 if (opt & TAR_OPT_KEEP_OLD) {
768 tar_handle->flags &= ~ARCHIVE_EXTRACT_UNCONDITIONAL;
Eric Andersen27cb6842003-06-26 09:07:59 +0000769 }
Glenn L McGratheba86e22003-11-14 12:53:42 +0000770
Glenn L McGratheba86e22003-11-14 12:53:42 +0000771#ifdef CONFIG_FEATURE_TAR_GZIP
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000772 if(opt & TAR_OPT_GZIP) {
Glenn L McGratheba86e22003-11-14 12:53:42 +0000773 get_header_ptr = get_header_tar_gz;
Glenn L McGratheba86e22003-11-14 12:53:42 +0000774 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000775#endif
Glenn L McGratheba86e22003-11-14 12:53:42 +0000776#ifdef CONFIG_FEATURE_TAR_BZIP2
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000777 if(opt & TAR_OPT_BZIP2) {
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000778 get_header_ptr = get_header_tar_bz2;
Glenn L McGratheba86e22003-11-14 12:53:42 +0000779 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000780#endif
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000781#ifdef CONFIG_FEATURE_TAR_COMPRESS
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000782 if(opt & TAR_OPT_UNCOMPRESS) {
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000783 get_header_ptr = get_header_tar_Z;
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000784 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000785#endif
786#ifdef CONFIG_FEATURE_TAR_FROM
787 if(opt & TAR_OPT_EXCLUDE_FROM) {
Eric Andersen27cb6842003-06-26 09:07:59 +0000788 tar_handle->reject = append_file_list_to_list(tar_handle->reject);
Glenn L McGratheba86e22003-11-14 12:53:42 +0000789 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000790#endif
791
Glenn L McGrath29833302002-10-06 23:25:23 +0000792 /* Check if we are reading from stdin */
793 if ((argv[optind]) && (*argv[optind] == '-')) {
794 /* Default is to read from stdin, so just skip to next arg */
Glenn L McGrath8132e932002-09-28 02:06:39 +0000795 optind++;
796 }
797
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000798 /* Setup an array of filenames to work with */
Eric Andersenaff114c2004-04-14 17:51:38 +0000799 /* TODO: This is the same as in ar, separate function ? */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000800 while (optind < argc) {
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000801 char *filename_ptr = last_char_is(argv[optind], '/');
Glenn L McGrathe8571222003-11-20 10:47:06 +0000802 if (filename_ptr) {
803 *filename_ptr = '\0';
804 }
Glenn L McGrath66125c82002-12-08 00:54:33 +0000805 tar_handle->accept = llist_add_to(tar_handle->accept, argv[optind]);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000806 optind++;
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000807 }
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000808
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000809 if ((tar_handle->accept) || (tar_handle->reject)) {
810 tar_handle->filter = filter_accept_reject_list;
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000811 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000812
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000813 /* Open the tar file */
814 {
815 FILE *tar_stream;
816 int flags;
817
818#ifdef CONFIG_FEATURE_TAR_CREATE
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000819 if (opt & CTX_CREATE) {
Glenn L McGrathba496512003-11-20 09:06:10 +0000820 /* Make sure there is at least one file to tar up. */
821 if (tar_handle->accept == NULL) {
822 bb_error_msg_and_die("Cowardly refusing to create an empty archive");
823 }
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000824 tar_stream = stdout;
825 flags = O_WRONLY | O_CREAT | O_EXCL;
826 unlink(tar_filename);
827 } else
828#endif
829 {
830 tar_stream = stdin;
831 flags = O_RDONLY;
832 }
833
834 if ((tar_filename[0] == '-') && (tar_filename[1] == '\0')) {
835 tar_handle->src_fd = fileno(tar_stream);
836 tar_handle->seek = seek_by_char;
837 } else {
838 tar_handle->src_fd = bb_xopen(tar_filename, flags);
839 }
840 }
841
842 if ((base_dir) && (chdir(base_dir))) {
843 bb_perror_msg_and_die("Couldnt chdir to %s", base_dir);
844 }
845
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000846#ifdef CONFIG_FEATURE_TAR_CREATE
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000847 /* create an archive */
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000848 if (opt & CTX_CREATE) {
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000849 int verboseFlag = FALSE;
Robert Grieblf2f26e72002-07-23 22:05:47 +0000850 int gzipFlag = FALSE;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000851
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000852# ifdef CONFIG_FEATURE_TAR_GZIP
853 if (get_header_ptr == get_header_tar_gz) {
Robert Grieblf2f26e72002-07-23 22:05:47 +0000854 gzipFlag = TRUE;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000855 }
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000856# endif /* CONFIG_FEATURE_TAR_GZIP */
Eric Andersen3c5a83c2003-07-05 21:56:55 +0000857# ifdef CONFIG_FEATURE_TAR_BZIP2
858 if (get_header_ptr == get_header_tar_bz2) {
859 bb_error_msg_and_die("Creating bzip2 compressed archives is not currently supported.");
860 }
861# endif /* CONFIG_FEATURE_TAR_BZIP2 */
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000862
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000863 if ((tar_handle->action_header == header_list) ||
Eric Andersen3c5a83c2003-07-05 21:56:55 +0000864 (tar_handle->action_header == header_verbose_list)) {
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000865 verboseFlag = TRUE;
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000866 }
Glenn L McGrath303e9892004-01-25 05:48:28 +0000867 writeTarFile(tar_handle->src_fd, verboseFlag, opt & TAR_OPT_DEREFERNCE, tar_handle->accept,
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000868 tar_handle->reject, gzipFlag);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000869 } else
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000870#endif /* CONFIG_FEATURE_TAR_CREATE */
871 {
Glenn L McGrathe3568832002-11-13 00:24:20 +0000872 while (get_header_ptr(tar_handle) == EXIT_SUCCESS);
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000873
874 /* Ckeck that every file that should have been extracted was */
875 while (tar_handle->accept) {
876 if (find_list_entry(tar_handle->reject, tar_handle->accept->data) == NULL) {
877 if (find_list_entry(tar_handle->passed, tar_handle->accept->data) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000878 bb_error_msg_and_die("%s: Not found in archive\n", tar_handle->accept->data);
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000879 }
880 }
881 tar_handle->accept = tar_handle->accept->link;
882 }
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000883 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000884
885#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersen70060d22004-03-27 10:02:48 +0000886 if (tar_handle->src_fd != STDIN_FILENO) {
Glenn L McGrath8132e932002-09-28 02:06:39 +0000887 close(tar_handle->src_fd);
888 }
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000889#endif /* CONFIG_FEATURE_CLEAN_UP */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000890
891 return(EXIT_SUCCESS);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000892}