blob: 4363d355b51de5b60d8239e00df5027439712f88 [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>
Eric Andersen4f807a82004-07-26 09:11:12 +000052#include <sys/sysmacros.h> /* major() and minor() */
Glenn L McGrathef0eab52001-10-25 14:49:48 +000053#include "unarchive.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000054#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000055
Eric Andersenbdfd0d72001-10-24 05:00:29 +000056#ifdef CONFIG_FEATURE_TAR_CREATE
Eric Andersencc8ed391999-10-05 16:24:54 +000057
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000058/* Tar file constants */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000059# define TAR_MAGIC "ustar" /* ustar and a null */
60# define TAR_VERSION " " /* Be compatable with GNU tar format */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +000061
Rob Landley3ee6c242005-10-15 03:06:21 +000062#define TAR_BLOCK_SIZE 512
63#define TAR_MAGIC_LEN 6
64#define TAR_VERSION_LEN 2
Eric Andersencc8ed391999-10-05 16:24:54 +000065
Erik Andersen298854f2000-03-23 01:09:18 +000066/* POSIX tar Header Block, from POSIX 1003.1-1990 */
Rob Landley3ee6c242005-10-15 03:06:21 +000067#define NAME_SIZE 100
Glenn L McGratha0ee8812002-08-22 13:44:08 +000068struct TarHeader { /* byte offset */
69 char name[NAME_SIZE]; /* 0-99 */
70 char mode[8]; /* 100-107 */
71 char uid[8]; /* 108-115 */
72 char gid[8]; /* 116-123 */
73 char size[12]; /* 124-135 */
74 char mtime[12]; /* 136-147 */
75 char chksum[8]; /* 148-155 */
76 char typeflag; /* 156-156 */
77 char linkname[NAME_SIZE]; /* 157-256 */
78 char magic[6]; /* 257-262 */
79 char version[2]; /* 263-264 */
80 char uname[32]; /* 265-296 */
81 char gname[32]; /* 297-328 */
82 char devmajor[8]; /* 329-336 */
83 char devminor[8]; /* 337-344 */
84 char prefix[155]; /* 345-499 */
85 char padding[12]; /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
Erik Andersen298854f2000-03-23 01:09:18 +000086};
87typedef struct TarHeader TarHeader;
Eric Andersencc8ed391999-10-05 16:24:54 +000088
Eric Andersen3d957c82000-12-07 00:34:58 +000089/*
90** writeTarFile(), writeFileToTarball(), and writeTarHeader() are
91** the only functions that deal with the HardLinkInfo structure.
92** Even these functions use the xxxHardLinkInfo() functions.
93*/
94typedef struct HardLinkInfo HardLinkInfo;
Glenn L McGratha0ee8812002-08-22 13:44:08 +000095struct HardLinkInfo {
96 HardLinkInfo *next; /* Next entry in list */
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +000097 dev_t dev; /* Device number */
98 ino_t ino; /* Inode number */
Glenn L McGratha0ee8812002-08-22 13:44:08 +000099 short linkCount; /* (Hard) Link Count */
100 char name[1]; /* Start of filename (must be last) */
Eric Andersen3d957c82000-12-07 00:34:58 +0000101};
102
Erik Andersen68a9ea42000-04-04 18:39:50 +0000103/* Some info to be carried along when creating a new tarball */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000104struct TarBallInfo {
105 char *fileName; /* File name of the tarball */
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000106 int tarFd; /* Open-for-write file descriptor
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000107 for the tarball */
108 struct stat statBuf; /* Stat info for the tarball, letting
109 us know the inode and device that the
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000110 tarball lives, so we can avoid trying
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000111 to include the tarball into itself */
112 int verboseFlag; /* Whether to print extra stuff or not */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000113 const llist_t *excludeList; /* List of files to not include */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000114 HardLinkInfo *hlInfoHead; /* Hard Link Tracking Information */
115 HardLinkInfo *hlInfo; /* Hard Link Info for the current file */
Erik Andersen68a9ea42000-04-04 18:39:50 +0000116};
117typedef struct TarBallInfo TarBallInfo;
118
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000119/* A nice enum with all the possible tar file content types */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000120enum TarFileType {
121 REGTYPE = '0', /* regular file */
122 REGTYPE0 = '\0', /* regular file (ancient bug compat) */
123 LNKTYPE = '1', /* hard link */
124 SYMTYPE = '2', /* symbolic link */
125 CHRTYPE = '3', /* character special */
126 BLKTYPE = '4', /* block special */
127 DIRTYPE = '5', /* directory */
128 FIFOTYPE = '6', /* FIFO special */
129 CONTTYPE = '7', /* reserved */
130 GNULONGLINK = 'K', /* GNU long (>100 chars) link name */
131 GNULONGNAME = 'L', /* GNU long (>100 chars) file name */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000132};
133typedef enum TarFileType TarFileType;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000134
Eric Andersen3d957c82000-12-07 00:34:58 +0000135/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
Glenn L McGrathf66de642002-11-25 23:57:27 +0000136static inline void addHardLinkInfo(HardLinkInfo ** hlInfoHeadPtr,
137 struct stat *statbuf,
138 const char *name)
Eric Andersen3d957c82000-12-07 00:34:58 +0000139{
140 /* Note: hlInfoHeadPtr can never be NULL! */
141 HardLinkInfo *hlInfo;
142
Glenn L McGrathf66de642002-11-25 23:57:27 +0000143 hlInfo = (HardLinkInfo *) xmalloc(sizeof(HardLinkInfo) + strlen(name));
144 hlInfo->next = *hlInfoHeadPtr;
145 *hlInfoHeadPtr = hlInfo;
146 hlInfo->dev = statbuf->st_dev;
147 hlInfo->ino = statbuf->st_ino;
148 hlInfo->linkCount = statbuf->st_nlink;
149 strcpy(hlInfo->name, name);
Eric Andersen3d957c82000-12-07 00:34:58 +0000150}
151
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000152static void freeHardLinkInfo(HardLinkInfo ** hlInfoHeadPtr)
Eric Andersen3d957c82000-12-07 00:34:58 +0000153{
154 HardLinkInfo *hlInfo = NULL;
155 HardLinkInfo *hlInfoNext = NULL;
156
157 if (hlInfoHeadPtr) {
158 hlInfo = *hlInfoHeadPtr;
159 while (hlInfo) {
160 hlInfoNext = hlInfo->next;
161 free(hlInfo);
162 hlInfo = hlInfoNext;
163 }
164 *hlInfoHeadPtr = NULL;
165 }
166 return;
167}
168
169/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
Glenn L McGrathf66de642002-11-25 23:57:27 +0000170static inline HardLinkInfo *findHardLinkInfo(HardLinkInfo * hlInfo, struct stat *statbuf)
Eric Andersen3d957c82000-12-07 00:34:58 +0000171{
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000172 while (hlInfo) {
Glenn L McGrathf66de642002-11-25 23:57:27 +0000173 if ((statbuf->st_ino == hlInfo->ino) && (statbuf->st_dev == hlInfo->dev))
Eric Andersen3d957c82000-12-07 00:34:58 +0000174 break;
175 hlInfo = hlInfo->next;
176 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000177 return (hlInfo);
Eric Andersen3d957c82000-12-07 00:34:58 +0000178}
179
Erik Andersen6acaa402000-03-26 14:03:20 +0000180/* Put an octal string into the specified buffer.
181 * The number is zero and space padded and possibly null padded.
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000182 * Returns TRUE if successful. */
183static int putOctal(char *cp, int len, long value)
Erik Andersen6acaa402000-03-26 14:03:20 +0000184{
185 int tempLength;
Erik Andersen6acaa402000-03-26 14:03:20 +0000186 char tempBuffer[32];
Erik Andersen5661fe02000-04-05 01:00:52 +0000187 char *tempString = tempBuffer;
Erik Andersen6acaa402000-03-26 14:03:20 +0000188
189 /* Create a string of the specified length with an initial space,
190 * leading zeroes and the octal number, and a trailing null. */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000191 sprintf(tempString, "%0*lo", len - 1, value);
Erik Andersen6acaa402000-03-26 14:03:20 +0000192
193 /* If the string is too large, suppress the leading space. */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000194 tempLength = strlen(tempString) + 1;
Erik Andersen6acaa402000-03-26 14:03:20 +0000195 if (tempLength > len) {
196 tempLength--;
197 tempString++;
198 }
199
200 /* If the string is still too large, suppress the trailing null. */
201 if (tempLength > len)
202 tempLength--;
203
204 /* If the string is still too large, fail. */
205 if (tempLength > len)
206 return FALSE;
207
208 /* Copy the string to the field. */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000209 memcpy(cp, tempString, len);
Erik Andersen6acaa402000-03-26 14:03:20 +0000210
211 return TRUE;
212}
213
Erik Andersen68a9ea42000-04-04 18:39:50 +0000214/* Write out a tar header for the specified file/directory/whatever */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000215static inline int writeTarHeader(struct TarBallInfo *tbInfo,
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000216 const char *header_name,
217 const char *real_name,
218 struct stat *statbuf)
Erik Andersen6acaa402000-03-26 14:03:20 +0000219{
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000220 long chksum = 0;
Erik Andersen5661fe02000-04-05 01:00:52 +0000221 struct TarHeader header;
222 const unsigned char *cp = (const unsigned char *) &header;
223 ssize_t size = sizeof(struct TarHeader);
Erik Andersen3364d782000-03-28 00:58:14 +0000224
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000225 memset(&header, 0, size);
226
227 strncpy(header.name, header_name, sizeof(header.name));
Erik Andersenecd51242000-04-08 03:08:21 +0000228
Erik Andersen5661fe02000-04-05 01:00:52 +0000229 putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
230 putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
231 putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000232 putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */
Erik Andersen5661fe02000-04-05 01:00:52 +0000233 putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000234 strncpy(header.magic, TAR_MAGIC TAR_VERSION,
235 TAR_MAGIC_LEN + TAR_VERSION_LEN);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000236
Erik Andersen84e09e42000-04-08 20:58:35 +0000237 /* Enter the user and group names (default to root if it fails) */
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +0000238 if (bb_getpwuid(header.uname, statbuf->st_uid, sizeof(header.uname)) == NULL)
Erik Andersen84e09e42000-04-08 20:58:35 +0000239 strcpy(header.uname, "root");
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +0000240 if (bb_getgrgid(header.gname, statbuf->st_gid, sizeof(header.gname)) == NULL)
Eric Andersen02e6ba92002-09-30 20:39:56 +0000241 strcpy(header.gname, "root");
Erik Andersen5661fe02000-04-05 01:00:52 +0000242
Eric Andersen3d957c82000-12-07 00:34:58 +0000243 if (tbInfo->hlInfo) {
244 /* This is a hard link */
245 header.typeflag = LNKTYPE;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000246 strncpy(header.linkname, tbInfo->hlInfo->name,
247 sizeof(header.linkname));
Eric Andersen3d957c82000-12-07 00:34:58 +0000248 } else if (S_ISLNK(statbuf->st_mode)) {
Mark Whitley8a633262001-04-30 18:17:00 +0000249 char *lpath = xreadlink(real_name);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000250
251 if (!lpath) /* Already printed err msg inside xreadlink() */
252 return (FALSE);
253 header.typeflag = SYMTYPE;
254 strncpy(header.linkname, lpath, sizeof(header.linkname));
Mark Whitley8a633262001-04-30 18:17:00 +0000255 free(lpath);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000256 } else if (S_ISDIR(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000257 header.typeflag = DIRTYPE;
258 strncat(header.name, "/", sizeof(header.name));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000259 } else if (S_ISCHR(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000260 header.typeflag = CHRTYPE;
261 putOctal(header.devmajor, sizeof(header.devmajor),
Eric Andersen4f807a82004-07-26 09:11:12 +0000262 major(statbuf->st_rdev));
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000263 putOctal(header.devminor, sizeof(header.devminor),
Eric Andersen4f807a82004-07-26 09:11:12 +0000264 minor(statbuf->st_rdev));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000265 } else if (S_ISBLK(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000266 header.typeflag = BLKTYPE;
267 putOctal(header.devmajor, sizeof(header.devmajor),
Eric Andersen4f807a82004-07-26 09:11:12 +0000268 major(statbuf->st_rdev));
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000269 putOctal(header.devminor, sizeof(header.devminor),
Eric Andersen4f807a82004-07-26 09:11:12 +0000270 minor(statbuf->st_rdev));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000271 } else if (S_ISFIFO(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000272 header.typeflag = FIFOTYPE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000273 } else if (S_ISREG(statbuf->st_mode)) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000274 header.typeflag = REGTYPE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000275 putOctal(header.size, sizeof(header.size), statbuf->st_size);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000276 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000277 bb_error_msg("%s: Unknown file type", real_name);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000278 return (FALSE);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000279 }
Erik Andersen68a9ea42000-04-04 18:39:50 +0000280
Eric Andersen77d92682001-05-23 20:32:09 +0000281 /* Calculate and store the checksum (i.e., the sum of all of the bytes of
Erik Andersen5661fe02000-04-05 01:00:52 +0000282 * the header). The checksum field must be filled with blanks for the
283 * calculation. The checksum field is formatted differently from the
284 * other fields: it has [6] digits, a null, then a space -- rather than
285 * digits, followed by a null like the other fields... */
286 memset(header.chksum, ' ', sizeof(header.chksum));
287 cp = (const unsigned char *) &header;
288 while (size-- > 0)
289 chksum += *cp++;
290 putOctal(header.chksum, 7, chksum);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000291
Erik Andersen5661fe02000-04-05 01:00:52 +0000292 /* Now write the header out to disk */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000293 if ((size =
Manuel Novoa III cad53642003-03-19 09:13:01 +0000294 bb_full_write(tbInfo->tarFd, (char *) &header,
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000295 sizeof(struct TarHeader))) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000296 bb_error_msg(bb_msg_io_error, real_name);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000297 return (FALSE);
Erik Andersen5661fe02000-04-05 01:00:52 +0000298 }
299 /* Pad the header up to the tar block size */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000300 for (; size < TAR_BLOCK_SIZE; size++) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000301 write(tbInfo->tarFd, "\0", 1);
302 }
303 /* Now do the verbose thing (or not) */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000304
Robert Grieblf2f26e72002-07-23 22:05:47 +0000305 if (tbInfo->verboseFlag) {
Eric Andersenfdd51032000-08-02 18:48:26 +0000306 FILE *vbFd = stdout;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000307
Eric Andersen70060d22004-03-27 10:02:48 +0000308 if (tbInfo->tarFd == STDOUT_FILENO) /* If the archive goes to stdout, verbose to stderr */
Eric Andersenfdd51032000-08-02 18:48:26 +0000309 vbFd = stderr;
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000310
Eric Andersenfdd51032000-08-02 18:48:26 +0000311 fprintf(vbFd, "%s\n", header.name);
312 }
Erik Andersen3364d782000-03-28 00:58:14 +0000313
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000314 return (TRUE);
Erik Andersen3364d782000-03-28 00:58:14 +0000315}
316
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000317# ifdef CONFIG_FEATURE_TAR_FROM
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000318static inline int exclude_file(const llist_t *excluded_files, const char *file)
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000319{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000320 while (excluded_files) {
321 if (excluded_files->data[0] == '/') {
322 if (fnmatch(excluded_files->data, file,
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000323 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
324 return 1;
325 } else {
326 const char *p;
327
328 for (p = file; p[0] != '\0'; p++) {
329 if ((p == file || p[-1] == '/') && p[0] != '/' &&
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000330 fnmatch(excluded_files->data, p,
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000331 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
332 return 1;
333 }
334 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000335 excluded_files = excluded_files->link;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000336 }
337
338 return 0;
339}
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000340# endif
Erik Andersen3364d782000-03-28 00:58:14 +0000341
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000342static int writeFileToTarball(const char *fileName, struct stat *statbuf,
343 void *userData)
Erik Andersen3364d782000-03-28 00:58:14 +0000344{
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000345 struct TarBallInfo *tbInfo = (struct TarBallInfo *) userData;
Matt Kraaie80a2632000-12-19 20:45:49 +0000346 const char *header_name;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000347
Eric Andersen3d957c82000-12-07 00:34:58 +0000348 /*
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000349 ** Check to see if we are dealing with a hard link.
350 ** If so -
351 ** Treat the first occurance of a given dev/inode as a file while
352 ** treating any additional occurances as hard links. This is done
353 ** by adding the file information to the HardLinkInfo linked list.
354 */
Eric Andersen3d957c82000-12-07 00:34:58 +0000355 tbInfo->hlInfo = NULL;
356 if (statbuf->st_nlink > 1) {
Glenn L McGrathf66de642002-11-25 23:57:27 +0000357 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf);
Eric Andersen3d957c82000-12-07 00:34:58 +0000358 if (tbInfo->hlInfo == NULL)
Glenn L McGrathf66de642002-11-25 23:57:27 +0000359 addHardLinkInfo(&tbInfo->hlInfoHead, statbuf, fileName);
Eric Andersen3d957c82000-12-07 00:34:58 +0000360 }
361
Erik Andersen68a9ea42000-04-04 18:39:50 +0000362 /* It is against the rules to archive a socket */
363 if (S_ISSOCK(statbuf->st_mode)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000364 bb_error_msg("%s: socket ignored", fileName);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000365 return (TRUE);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000366 }
367
368 /* It is a bad idea to store the archive we are in the process of creating,
369 * so check the device and inode to be sure that this particular file isn't
370 * the new tarball */
371 if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000372 tbInfo->statBuf.st_ino == statbuf->st_ino) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000373 bb_error_msg("%s: file is the archive; skipping", fileName);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000374 return (TRUE);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000375 }
376
Matt Kraaie80a2632000-12-19 20:45:49 +0000377 header_name = fileName;
378 while (header_name[0] == '/') {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000379 static int alreadyWarned = FALSE;
380
381 if (alreadyWarned == FALSE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000382 bb_error_msg("Removing leading '/' from member names");
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000383 alreadyWarned = TRUE;
Matt Kraaia1f97752000-12-19 06:24:08 +0000384 }
Matt Kraaie80a2632000-12-19 20:45:49 +0000385 header_name++;
Matt Kraaia1f97752000-12-19 06:24:08 +0000386 }
387
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000388 if (strlen(fileName) >= NAME_SIZE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000389 bb_error_msg(bb_msg_name_longer_than_foo, NAME_SIZE);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000390 return (TRUE);
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000391 }
392
Matt Kraaie80a2632000-12-19 20:45:49 +0000393 if (header_name[0] == '\0')
Matt Kraaia1f97752000-12-19 06:24:08 +0000394 return TRUE;
395
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000396# ifdef CONFIG_FEATURE_TAR_FROM
Matt Kraaibe7499c2001-01-03 17:22:10 +0000397 if (exclude_file(tbInfo->excludeList, header_name)) {
398 return SKIP;
Matt Kraaia1f97752000-12-19 06:24:08 +0000399 }
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000400# endif /* CONFIG_FEATURE_TAR_FROM */
Matt Kraaia1f97752000-12-19 06:24:08 +0000401
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000402 if (writeTarHeader(tbInfo, header_name, fileName, statbuf) == FALSE) {
403 return (FALSE);
404 }
Erik Andersen5661fe02000-04-05 01:00:52 +0000405
406 /* Now, if the file is a regular file, copy it out to the tarball */
Eric Andersen3d957c82000-12-07 00:34:58 +0000407 if ((tbInfo->hlInfo == NULL)
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000408 && (S_ISREG(statbuf->st_mode))) {
409 int inputFileFd;
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000410 ssize_t readSize = 0;
Erik Andersen5661fe02000-04-05 01:00:52 +0000411
412 /* open the file we want to archive, and make sure all is well */
413 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000414 bb_perror_msg("%s: Cannot open", fileName);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000415 return (FALSE);
Erik Andersen5661fe02000-04-05 01:00:52 +0000416 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000417
Erik Andersen5661fe02000-04-05 01:00:52 +0000418 /* write the file to the archive */
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000419 readSize = bb_copyfd_eof(inputFileFd, tbInfo->tarFd);
420
Erik Andersen5661fe02000-04-05 01:00:52 +0000421 /* Pad the file up to the tar block size */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000422 for (; (readSize % TAR_BLOCK_SIZE) != 0; readSize++) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000423 write(tbInfo->tarFd, "\0", 1);
424 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000425 close(inputFileFd);
Erik Andersen5661fe02000-04-05 01:00:52 +0000426 }
Erik Andersen68a9ea42000-04-04 18:39:50 +0000427
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000428 return (TRUE);
Erik Andersen6acaa402000-03-26 14:03:20 +0000429}
430
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000431static inline int writeTarFile(const int tar_fd, const int verboseFlag,
Glenn L McGrath303e9892004-01-25 05:48:28 +0000432 const unsigned long dereferenceFlag, const llist_t *include,
433 const llist_t *exclude, const int gzip)
Erik Andersen6acaa402000-03-26 14:03:20 +0000434{
Robert Grieblf2f26e72002-07-23 22:05:47 +0000435 pid_t gzipPid = 0;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000436
437 int errorFlag = FALSE;
Erik Andersen5661fe02000-04-05 01:00:52 +0000438 ssize_t size;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000439 struct TarBallInfo tbInfo;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000440
Eric Andersen3d957c82000-12-07 00:34:58 +0000441 tbInfo.hlInfoHead = NULL;
Erik Andersen3364d782000-03-28 00:58:14 +0000442
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000443 fchmod(tar_fd, 0644);
444 tbInfo.tarFd = tar_fd;
445 tbInfo.verboseFlag = verboseFlag;
Robert Grieblf2f26e72002-07-23 22:05:47 +0000446
Erik Andersen68a9ea42000-04-04 18:39:50 +0000447 /* Store the stat info for the tarball's file, so
448 * can avoid including the tarball into itself.... */
449 if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000450 bb_perror_msg_and_die("Couldnt stat tar file");
Erik Andersen6acaa402000-03-26 14:03:20 +0000451
Rob Landleycc8885f2005-08-30 03:40:03 +0000452 if ((ENABLE_FEATURE_TAR_GZIP || ENABLE_FEATURE_TAR_BZIP2) && gzip) {
453 int gzipDataPipe[2] = { -1, -1 };
454 int gzipStatusPipe[2] = { -1, -1 };
455 volatile int vfork_exec_errno = 0;
456 char *zip_exec = (gzip == 1) ? "gzip" : "bzip2";
457
458
Glenn L McGrathf66de642002-11-25 23:57:27 +0000459 if (pipe(gzipDataPipe) < 0 || pipe(gzipStatusPipe) < 0) {
Rob Landleycc8885f2005-08-30 03:40:03 +0000460 bb_perror_msg_and_die("Failed to create pipe");
Glenn L McGrathf66de642002-11-25 23:57:27 +0000461 }
Robert Grieblf2f26e72002-07-23 22:05:47 +0000462
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000463 signal(SIGPIPE, SIG_IGN); /* we only want EPIPE on errors */
Robert Grieblf2f26e72002-07-23 22:05:47 +0000464
Glenn L McGrathf66de642002-11-25 23:57:27 +0000465# if __GNUC__
466 /* Avoid vfork clobbering */
467 (void) &include;
468 (void) &errorFlag;
469# endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000470
Glenn L McGrathf66de642002-11-25 23:57:27 +0000471 gzipPid = vfork();
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000472
473 if (gzipPid == 0) {
474 dup2(gzipDataPipe[0], 0);
475 close(gzipDataPipe[1]);
476
Eric Andersenaaff79a2004-05-05 10:37:49 +0000477 if (tbInfo.tarFd != 1)
478 dup2(tbInfo.tarFd, 1);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000479
480 close(gzipStatusPipe[0]);
481 fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC); /* close on exec shows sucess */
482
Rob Landleycc8885f2005-08-30 03:40:03 +0000483 execlp(zip_exec, zip_exec, "-f", 0);
Glenn L McGrathf66de642002-11-25 23:57:27 +0000484 vfork_exec_errno = errno;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000485
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000486 close(gzipStatusPipe[1]);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000487 exit(-1);
488 } else if (gzipPid > 0) {
489 close(gzipDataPipe[0]);
490 close(gzipStatusPipe[1]);
491
492 while (1) {
Robert Grieblf2f26e72002-07-23 22:05:47 +0000493 char buf;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000494
Eric Andersene3393512003-07-05 23:10:27 +0000495 int n = bb_full_read(gzipStatusPipe[0], &buf, 1);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000496
Glenn L McGrathf66de642002-11-25 23:57:27 +0000497 if (n == 0 && vfork_exec_errno != 0) {
498 errno = vfork_exec_errno;
Rob Landleycc8885f2005-08-30 03:40:03 +0000499 bb_perror_msg_and_die("Could not exec %s",zip_exec);
Glenn L McGrathf66de642002-11-25 23:57:27 +0000500 } else if ((n < 0) && (errno == EAGAIN || errno == EINTR))
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000501 continue; /* try it again */
502 break;
Robert Grieblf2f26e72002-07-23 22:05:47 +0000503 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000504 close(gzipStatusPipe[0]);
505
506 tbInfo.tarFd = gzipDataPipe[1];
507 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000508 bb_perror_msg_and_die("Failed to vfork gzip process");
Robert Grieblf2f26e72002-07-23 22:05:47 +0000509 }
510 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000511
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000512 tbInfo.excludeList = exclude;
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000513
Erik Andersen6acaa402000-03-26 14:03:20 +0000514 /* Read the directory/files and iterate over them one at a time */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000515 while (include) {
Glenn L McGrath303e9892004-01-25 05:48:28 +0000516 if (!recursive_action(include->data, TRUE, dereferenceFlag, FALSE,
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000517 writeFileToTarball, writeFileToTarball,
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000518 (void *) &tbInfo)) {
Erik Andersen68a9ea42000-04-04 18:39:50 +0000519 errorFlag = TRUE;
Erik Andersen3364d782000-03-28 00:58:14 +0000520 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000521 include = include->link;
Erik Andersen6acaa402000-03-26 14:03:20 +0000522 }
Erik Andersen5661fe02000-04-05 01:00:52 +0000523 /* Write two empty blocks to the end of the archive */
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000524 for (size = 0; size < (2 * TAR_BLOCK_SIZE); size++) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000525 write(tbInfo.tarFd, "\0", 1);
526 }
Erik Andersen0817d132000-04-09 15:17:40 +0000527
528 /* To be pedantically correct, we would check if the tarball
Eric Andersen3c5ee9a2000-11-14 22:15:48 +0000529 * is smaller than 20 tar blocks, and pad it if it was smaller,
Erik Andersen0817d132000-04-09 15:17:40 +0000530 * but that isn't necessary for GNU tar interoperability, and
531 * so is considered a waste of space */
532
Erik Andersen68a9ea42000-04-04 18:39:50 +0000533 /* Hang up the tools, close up shop, head home */
Robert Grieblf2f26e72002-07-23 22:05:47 +0000534 close(tbInfo.tarFd);
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000535 if (errorFlag)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000536 bb_error_msg("Error exit delayed from previous errors");
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000537
Eric Andersen3d957c82000-12-07 00:34:58 +0000538 freeHardLinkInfo(&tbInfo.hlInfoHead);
Robert Grieblf2f26e72002-07-23 22:05:47 +0000539
Rob Landleycc8885f2005-08-30 03:40:03 +0000540 if (gzipPid) {
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000541 if (waitpid(gzipPid, NULL, 0) == -1)
542 printf("Couldnt wait ?");
Robert Grieblf2f26e72002-07-23 22:05:47 +0000543 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000544
Robert Grieblf2f26e72002-07-23 22:05:47 +0000545 return !errorFlag;
Erik Andersen6acaa402000-03-26 14:03:20 +0000546}
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000547#endif /* tar_create */
Erik Andersen6acaa402000-03-26 14:03:20 +0000548
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000549#ifdef CONFIG_FEATURE_TAR_FROM
Eric Andersen27cb6842003-06-26 09:07:59 +0000550static llist_t *append_file_list_to_list(llist_t *list)
Glenn L McGrathd642a672001-10-13 06:54:45 +0000551{
Eric Andersen27cb6842003-06-26 09:07:59 +0000552 FILE *src_stream;
553 llist_t *cur = list;
554 llist_t *tmp;
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000555 char *line;
Eric Andersen27cb6842003-06-26 09:07:59 +0000556 llist_t *newlist = NULL;
557
558 while(cur) {
559 src_stream = bb_xfopen(cur->data, "r");
560 tmp = cur;
561 cur = cur->link;
562 free(tmp);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000563 while((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
Eric Andersen27cb6842003-06-26 09:07:59 +0000564 newlist = llist_add_to(newlist, line);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000565 }
566 fclose(src_stream);
Eric Andersen27cb6842003-06-26 09:07:59 +0000567 }
568 return newlist;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000569}
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000570#endif
Erik Andersen6acaa402000-03-26 14:03:20 +0000571
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000572#ifdef CONFIG_FEATURE_TAR_COMPRESS
573static char get_header_tar_Z(archive_handle_t *archive_handle)
574{
575 /* Cant lseek over pipe's */
576 archive_handle->seek = seek_by_char;
Eric Andersen27cb6842003-06-26 09:07:59 +0000577
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000578 /* do the decompression, and cleanup */
579 if ((bb_xread_char(archive_handle->src_fd) != 0x1f) || (bb_xread_char(archive_handle->src_fd) != 0x9d)) {
580 bb_error_msg_and_die("Invalid magic");
581 }
582
583 archive_handle->src_fd = open_transformer(archive_handle->src_fd, uncompress);
584 archive_handle->offset = 0;
585 while (get_header_tar(archive_handle) == EXIT_SUCCESS);
586
587 /* Can only do one file at a time */
588 return(EXIT_FAILURE);
589}
590#endif
591
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000592#define CTX_TEST (1 << 0)
593#define CTX_EXTRACT (1 << 1)
594#define TAR_OPT_BASEDIR (1 << 2)
595#define TAR_OPT_TARNAME (1 << 3)
596#define TAR_OPT_2STDOUT (1 << 4)
597#define TAR_OPT_P (1 << 5)
598#define TAR_OPT_VERBOSE (1 << 6)
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000599#define TAR_OPT_KEEP_OLD (1 << 7)
Glenn L McGratheba86e22003-11-14 12:53:42 +0000600
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000601#ifdef CONFIG_FEATURE_TAR_CREATE
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000602# define CTX_CREATE (1 << 8)
603# define TAR_OPT_DEREFERNCE (1 << 9)
Glenn L McGrath303e9892004-01-25 05:48:28 +0000604# define TAR_OPT_STR_CREATE "ch"
605# define TAR_OPT_FLAG_CREATE 2
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000606#else
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000607# define CTX_CREATE 0
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000608# define TAR_OPT_STR_CREATE ""
609# define TAR_OPT_FLAG_CREATE 0
610#endif
611
612#ifdef CONFIG_FEATURE_TAR_BZIP2
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000613# define TAR_OPT_BZIP2 (1 << (8 + TAR_OPT_FLAG_CREATE))
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000614# define TAR_OPT_STR_BZIP2 "j"
615# define TAR_OPT_FLAG_BZIP2 1
616#else
617# define TAR_OPT_STR_BZIP2 ""
618# define TAR_OPT_FLAG_BZIP2 0
619#endif
620
621#ifdef CONFIG_FEATURE_TAR_FROM
Glenn L McGratha88ae492004-07-21 09:00:39 +0000622# define TAR_OPT_INCLUDE_FROM (1 << (8 + TAR_OPT_FLAG_CREATE + TAR_OPT_FLAG_BZIP2))
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000623# define TAR_OPT_EXCLUDE_FROM (1 << (8 + TAR_OPT_FLAG_CREATE + TAR_OPT_FLAG_BZIP2 + 1))
624# define TAR_OPT_STR_FROM "T:X:"
625# define TAR_OPT_FLAG_FROM 2
626#else
627# define TAR_OPT_STR_FROM ""
628# define TAR_OPT_FLAG_FROM 0
629#endif
630
631#ifdef CONFIG_FEATURE_TAR_GZIP
632# define TAR_OPT_GZIP (1 << (8 + TAR_OPT_FLAG_CREATE + TAR_OPT_FLAG_BZIP2 + TAR_OPT_FLAG_FROM))
633# define TAR_OPT_STR_GZIP "z"
634# define TAR_OPT_FLAG_GZIP 1
635#else
636# define TAR_OPT_STR_GZIP ""
637# define TAR_OPT_FLAG_GZIP 0
638#endif
639
640#ifdef CONFIG_FEATURE_TAR_COMPRESS
641# define TAR_OPT_UNCOMPRESS (1 << (8 + TAR_OPT_FLAG_CREATE + TAR_OPT_FLAG_BZIP2 + TAR_OPT_FLAG_FROM + TAR_OPT_FLAG_GZIP))
642# define TAR_OPT_STR_COMPRESS "Z"
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000643#else
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000644# define TAR_OPT_STR_COMPRESS ""
645#endif
646
647static const char tar_options[]="txC:f:Opvk" \
648 TAR_OPT_STR_CREATE \
649 TAR_OPT_STR_BZIP2 \
650 TAR_OPT_STR_FROM \
651 TAR_OPT_STR_GZIP \
652 TAR_OPT_STR_COMPRESS;
653
654#ifdef CONFIG_FEATURE_TAR_LONG_OPTIONS
655static const struct option tar_long_options[] = {
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000656 { "list", 0, NULL, 't' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000657 { "extract", 0, NULL, 'x' },
658 { "directory", 1, NULL, 'C' },
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000659 { "file", 1, NULL, 'f' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000660 { "to-stdout", 0, NULL, 'O' },
661 { "same-permissions", 0, NULL, 'p' },
662 { "verbose", 0, NULL, 'v' },
663 { "keep-old", 0, NULL, 'k' },
664# ifdef CONFIG_FEATURE_TAR_CREATE
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000665 { "create", 0, NULL, 'c' },
Glenn L McGrath303e9892004-01-25 05:48:28 +0000666 { "dereference", 0, NULL, 'h' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000667# endif
668# ifdef CONFIG_FEATURE_TAR_BZIP2
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000669 { "bzip2", 0, NULL, 'j' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000670# endif
671# ifdef CONFIG_FEATURE_TAR_FROM
Glenn L McGratha88ae492004-07-21 09:00:39 +0000672 { "files-from", 1, NULL, 'T' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000673 { "exclude-from", 1, NULL, 'X' },
Rob Landley3ee6c242005-10-15 03:06:21 +0000674 { "exclude", 1, NULL, '\n' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000675# endif
676# ifdef CONFIG_FEATURE_TAR_GZIP
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000677 { "gzip", 0, NULL, 'z' },
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000678# endif
679# ifdef CONFIG_FEATURE_TAR_COMPRESS
680 { "compress", 0, NULL, 'Z' },
681# endif
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000682 { 0, 0, 0, 0 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000683};
684#endif
Glenn L McGrathec87d372002-11-27 07:52:22 +0000685
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000686int tar_main(int argc, char **argv)
687{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000688 char (*get_header_ptr)(archive_handle_t *) = get_header_tar;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000689 archive_handle_t *tar_handle;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000690 char *base_dir = NULL;
Glenn L McGrathf66de642002-11-25 23:57:27 +0000691 const char *tar_filename = "-";
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000692 unsigned long opt;
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000693
694#if defined(CONFIG_FEATURE_TAR_FROM)
695 llist_t *excludes = NULL;
696#endif
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000697
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000698 /* Initialise default values */
699 tar_handle = init_handle();
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000700 tar_handle->flags = ARCHIVE_CREATE_LEADING_DIRS | ARCHIVE_PRESERVE_DATE | ARCHIVE_EXTRACT_UNCONDITIONAL;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000701
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000702 /* Prepend '-' to the first argument if required */
"Vladimir N. Oleynik"f5888692005-10-12 08:17:29 +0000703#ifdef CONFIG_FEATURE_TAR_CREATE
Rob Landley3ee6c242005-10-15 03:06:21 +0000704 bb_opt_complementally = "--:-1:X::T::\n::c:t:x:?:c--tx:t--cx:x--ct";
"Vladimir N. Oleynik"f5888692005-10-12 08:17:29 +0000705#else
Rob Landley3ee6c242005-10-15 03:06:21 +0000706 bb_opt_complementally = "--:-1:X::T::\n::t:x:?:t--x:x--t";
"Vladimir N. Oleynik"f5888692005-10-12 08:17:29 +0000707#endif
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000708#ifdef CONFIG_FEATURE_TAR_LONG_OPTIONS
709 bb_applet_long_options = tar_long_options;
710#endif
Eric Andersen27cb6842003-06-26 09:07:59 +0000711 opt = bb_getopt_ulflags(argc, argv, tar_options,
Eric Andersen27cb6842003-06-26 09:07:59 +0000712 &base_dir, /* Change to dir <optarg> */
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000713 &tar_filename /* archive filename */
714#ifdef CONFIG_FEATURE_TAR_FROM
Glenn L McGratha88ae492004-07-21 09:00:39 +0000715 , &(tar_handle->accept),
Rob Landley3ee6c242005-10-15 03:06:21 +0000716 &(tar_handle->reject),
717 &excludes
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000718#endif
719 );
Rob Landley3ee6c242005-10-15 03:06:21 +0000720
721 if(opt & CTX_TEST) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000722 if ((tar_handle->action_header == header_list) ||
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000723 (tar_handle->action_header == header_verbose_list)) {
724 tar_handle->action_header = header_verbose_list;
725 } else {
726 tar_handle->action_header = header_list;
727 }
Eric Andersen27cb6842003-06-26 09:07:59 +0000728 }
Rob Landley3ee6c242005-10-15 03:06:21 +0000729 if(opt & CTX_EXTRACT) {
Eric Andersen27cb6842003-06-26 09:07:59 +0000730 if (tar_handle->action_data != data_extract_to_stdout)
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000731 tar_handle->action_data = data_extract_all;
Rob Landley3ee6c242005-10-15 03:06:21 +0000732 }
Eric Andersen27cb6842003-06-26 09:07:59 +0000733 if(opt & TAR_OPT_2STDOUT) {
734 /* To stdout */
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000735 tar_handle->action_data = data_extract_to_stdout;
Eric Andersen27cb6842003-06-26 09:07:59 +0000736 }
737 if(opt & TAR_OPT_VERBOSE) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000738 if ((tar_handle->action_header == header_list) ||
739 (tar_handle->action_header == header_verbose_list))
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000740 {
Rob Landley3ee6c242005-10-15 03:06:21 +0000741 tar_handle->action_header = header_verbose_list;
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000742 } else {
743 tar_handle->action_header = header_list;
744 }
745 }
746 if (opt & TAR_OPT_KEEP_OLD) {
747 tar_handle->flags &= ~ARCHIVE_EXTRACT_UNCONDITIONAL;
Eric Andersen27cb6842003-06-26 09:07:59 +0000748 }
Glenn L McGratheba86e22003-11-14 12:53:42 +0000749
Glenn L McGratheba86e22003-11-14 12:53:42 +0000750#ifdef CONFIG_FEATURE_TAR_GZIP
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000751 if(opt & TAR_OPT_GZIP) {
Glenn L McGratheba86e22003-11-14 12:53:42 +0000752 get_header_ptr = get_header_tar_gz;
Glenn L McGratheba86e22003-11-14 12:53:42 +0000753 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000754#endif
Glenn L McGratheba86e22003-11-14 12:53:42 +0000755#ifdef CONFIG_FEATURE_TAR_BZIP2
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000756 if(opt & TAR_OPT_BZIP2) {
Glenn L McGrath3b9fc8f2003-11-18 20:23:04 +0000757 get_header_ptr = get_header_tar_bz2;
Glenn L McGratheba86e22003-11-14 12:53:42 +0000758 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000759#endif
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000760#ifdef CONFIG_FEATURE_TAR_COMPRESS
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000761 if(opt & TAR_OPT_UNCOMPRESS) {
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000762 get_header_ptr = get_header_tar_Z;
Glenn L McGrath56f16b42003-11-18 21:37:52 +0000763 }
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000764#endif
765#ifdef CONFIG_FEATURE_TAR_FROM
Rob Landley3ee6c242005-10-15 03:06:21 +0000766 tar_handle->reject = append_file_list_to_list(tar_handle->reject);
767 /* Append excludes to reject */
768 while(excludes) {
769 llist_t *temp = excludes->link;
770 excludes->link = tar_handle->reject;
771 tar_handle->reject = excludes;
772 excludes = temp;
Glenn L McGratheba86e22003-11-14 12:53:42 +0000773 }
Rob Landley3ee6c242005-10-15 03:06:21 +0000774 tar_handle->accept = append_file_list_to_list(tar_handle->accept);
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000775#endif
776
Glenn L McGrath29833302002-10-06 23:25:23 +0000777 /* Check if we are reading from stdin */
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000778 if (argv[optind] && *argv[optind] == '-') {
Glenn L McGrath29833302002-10-06 23:25:23 +0000779 /* Default is to read from stdin, so just skip to next arg */
Glenn L McGrath8132e932002-09-28 02:06:39 +0000780 optind++;
781 }
782
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000783 /* Setup an array of filenames to work with */
Eric Andersenaff114c2004-04-14 17:51:38 +0000784 /* TODO: This is the same as in ar, separate function ? */
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000785 while (optind < argc) {
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000786 char *filename_ptr = last_char_is(argv[optind], '/');
Rob Landley92255d62005-09-01 11:36:21 +0000787 if (filename_ptr > argv[optind]) {
Glenn L McGrathe8571222003-11-20 10:47:06 +0000788 *filename_ptr = '\0';
789 }
Glenn L McGrath66125c82002-12-08 00:54:33 +0000790 tar_handle->accept = llist_add_to(tar_handle->accept, argv[optind]);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000791 optind++;
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000792 }
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000793
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000794 if ((tar_handle->accept) || (tar_handle->reject)) {
795 tar_handle->filter = filter_accept_reject_list;
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000796 }
Glenn L McGratha0ee8812002-08-22 13:44:08 +0000797
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000798 /* Open the tar file */
799 {
800 FILE *tar_stream;
801 int flags;
802
803#ifdef CONFIG_FEATURE_TAR_CREATE
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000804 if (opt & CTX_CREATE) {
Glenn L McGrathba496512003-11-20 09:06:10 +0000805 /* Make sure there is at least one file to tar up. */
806 if (tar_handle->accept == NULL) {
807 bb_error_msg_and_die("Cowardly refusing to create an empty archive");
808 }
Glenn L McGrath91b3d462003-10-02 14:33:23 +0000809 tar_stream = stdout;
810 flags = O_WRONLY | O_CREAT | O_EXCL;
811 unlink(tar_filename);
812 } else
813#endif
814 {
815 tar_stream = stdin;
816 flags = O_RDONLY;
817 }
818
819 if ((tar_filename[0] == '-') && (tar_filename[1] == '\0')) {
820 tar_handle->src_fd = fileno(tar_stream);
821 tar_handle->seek = seek_by_char;
822 } else {
823 tar_handle->src_fd = bb_xopen(tar_filename, flags);
824 }
825 }
826
827 if ((base_dir) && (chdir(base_dir))) {
828 bb_perror_msg_and_die("Couldnt chdir to %s", base_dir);
829 }
830
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000831#ifdef CONFIG_FEATURE_TAR_CREATE
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000832 /* create an archive */
Glenn L McGrathce91c8a2003-12-26 14:01:37 +0000833 if (opt & CTX_CREATE) {
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000834 int verboseFlag = FALSE;
Rob Landleycc8885f2005-08-30 03:40:03 +0000835 int zipMode = 0;
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000836
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000837# ifdef CONFIG_FEATURE_TAR_GZIP
838 if (get_header_ptr == get_header_tar_gz) {
Rob Landleycc8885f2005-08-30 03:40:03 +0000839 zipMode = 1;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000840 }
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000841# endif /* CONFIG_FEATURE_TAR_GZIP */
Eric Andersen3c5a83c2003-07-05 21:56:55 +0000842# ifdef CONFIG_FEATURE_TAR_BZIP2
843 if (get_header_ptr == get_header_tar_bz2) {
Rob Landleycc8885f2005-08-30 03:40:03 +0000844 zipMode = 2;
Eric Andersen3c5a83c2003-07-05 21:56:55 +0000845 }
846# endif /* CONFIG_FEATURE_TAR_BZIP2 */
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000847
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000848 if ((tar_handle->action_header == header_list) ||
Eric Andersen3c5a83c2003-07-05 21:56:55 +0000849 (tar_handle->action_header == header_verbose_list)) {
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000850 verboseFlag = TRUE;
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000851 }
Glenn L McGrath303e9892004-01-25 05:48:28 +0000852 writeTarFile(tar_handle->src_fd, verboseFlag, opt & TAR_OPT_DEREFERNCE, tar_handle->accept,
Rob Landleycc8885f2005-08-30 03:40:03 +0000853 tar_handle->reject, zipMode);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000854 } else
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000855#endif /* CONFIG_FEATURE_TAR_CREATE */
856 {
Glenn L McGrathe3568832002-11-13 00:24:20 +0000857 while (get_header_ptr(tar_handle) == EXIT_SUCCESS);
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000858
859 /* Ckeck that every file that should have been extracted was */
860 while (tar_handle->accept) {
861 if (find_list_entry(tar_handle->reject, tar_handle->accept->data) == NULL) {
"Vladimir N. Oleynik"84e75112005-10-15 06:32:38 +0000862 if (find_list_entry(tar_handle->passed, tar_handle->accept->data) == NULL) {
863 bb_error_msg_and_die("%s: Not found in archive", tar_handle->accept->data);
Glenn L McGrathc5c1a8a2002-10-19 06:19:22 +0000864 }
865 }
866 tar_handle->accept = tar_handle->accept->link;
867 }
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000868 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000869
870#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersen70060d22004-03-27 10:02:48 +0000871 if (tar_handle->src_fd != STDIN_FILENO) {
Glenn L McGrath8132e932002-09-28 02:06:39 +0000872 close(tar_handle->src_fd);
873 }
Glenn L McGrath98f824a2002-10-19 00:46:35 +0000874#endif /* CONFIG_FEATURE_CLEAN_UP */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000875
876 return(EXIT_SUCCESS);
Glenn L McGrath2e772ed2001-10-05 02:58:48 +0000877}