blob: 0cb638a7f1eea8982a4d1ebebc4ce9effae6e440 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002/*
Erik Andersen68a9ea42000-04-04 18:39:50 +00003 * Mini tar implementation for busybox
Erik Andersen6acaa402000-03-26 14:03:20 +00004 *
Erik Andersen61677fe2000-04-13 01:18:56 +00005 * Note, that as of BusyBox-0.43, tar has been completely rewritten from the
6 * ground up. It still has remnents of the old code lying about, but it is
Eric Andersen77d92682001-05-23 20:32:09 +00007 * very different now (i.e., cleaner, less global variables, etc.)
Eric Andersenc4996011999-10-20 22:08:37 +00008 *
Eric Andersen8ec10a92001-01-27 09:33:39 +00009 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Erik Andersen1ad302a2000-03-24 00:54:46 +000010 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersen96bcfd31999-11-12 01:30:18 +000011 *
Erik Andersen6acaa402000-03-26 14:03:20 +000012 * Based in part in the tar implementation in sash
13 * Copyright (c) 1999 by David I. Bell
14 * Permission is granted to use, distribute, or modify this source,
15 * provided that this copyright notice remains intact.
16 * Permission to distribute sash derived code under the GPL has been granted.
17 *
Erik Andersen68a9ea42000-04-04 18:39:50 +000018 * Based in part on the tar implementation from busybox-0.28
Erik Andersen6acaa402000-03-26 14:03:20 +000019 * Copyright (C) 1995 Bruce Perens
20 * This is free software under the GNU General Public License.
21 *
Eric Andersenc4996011999-10-20 22:08:37 +000022 * This program is free software; you can redistribute it and/or modify
23 * it under the terms of the GNU General Public License as published by
24 * the Free Software Foundation; either version 2 of the License, or
25 * (at your option) any later version.
26 *
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
30 * General Public License for more details.
31 *
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
35 *
Eric Andersencc8ed391999-10-05 16:24:54 +000036 */
37
38
Eric Andersencc8ed391999-10-05 16:24:54 +000039#include <stdio.h>
40#include <dirent.h>
41#include <errno.h>
42#include <fcntl.h>
43#include <signal.h>
44#include <time.h>
Erik Andersen7dc16072000-01-04 01:10:25 +000045#include <utime.h>
Eric Andersen96bcfd31999-11-12 01:30:18 +000046#include <sys/types.h>
Eric Andersen08b10341999-11-19 02:38:58 +000047#include <sys/sysmacros.h>
Matt Kraai43c8c382000-09-04 16:51:55 +000048#include <getopt.h>
Matt Kraaibe7499c2001-01-03 17:22:10 +000049#include <fnmatch.h>
Eric Andersened3ef502001-01-27 08:24:39 +000050#include <string.h>
51#include <stdlib.h>
52#include <unistd.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000053#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000054
Erik Andersen298854f2000-03-23 01:09:18 +000055/* Tar file constants */
Erik Andersen1ad302a2000-03-24 00:54:46 +000056#ifndef MAJOR
57#define MAJOR(dev) (((dev)>>8)&0xff)
58#define MINOR(dev) ((dev)&0xff)
59#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000060
Mark Whitley59ab0252001-01-23 22:30:04 +000061enum { NAME_SIZE = 100 }; /* because gcc won't let me use 'static const int' */
Eric Andersencc8ed391999-10-05 16:24:54 +000062
Erik Andersen298854f2000-03-23 01:09:18 +000063/* POSIX tar Header Block, from POSIX 1003.1-1990 */
64struct TarHeader
65{
66 /* byte offset */
Eric Andersen1b1cfde2000-09-24 00:54:37 +000067 char name[NAME_SIZE]; /* 0-99 */
Erik Andersen0817d132000-04-09 15:17:40 +000068 char mode[8]; /* 100-107 */
69 char uid[8]; /* 108-115 */
70 char gid[8]; /* 116-123 */
71 char size[12]; /* 124-135 */
72 char mtime[12]; /* 136-147 */
73 char chksum[8]; /* 148-155 */
74 char typeflag; /* 156-156 */
Eric Andersen1b1cfde2000-09-24 00:54:37 +000075 char linkname[NAME_SIZE]; /* 157-256 */
Erik Andersen0817d132000-04-09 15:17:40 +000076 char magic[6]; /* 257-262 */
77 char version[2]; /* 263-264 */
78 char uname[32]; /* 265-296 */
79 char gname[32]; /* 297-328 */
80 char devmajor[8]; /* 329-336 */
81 char devminor[8]; /* 337-344 */
82 char prefix[155]; /* 345-499 */
83 char padding[12]; /* 500-512 (pad to exactly the TAR_BLOCK_SIZE) */
Erik Andersen298854f2000-03-23 01:09:18 +000084};
85typedef struct TarHeader TarHeader;
Eric Andersencc8ed391999-10-05 16:24:54 +000086
Eric Andersencc8ed391999-10-05 16:24:54 +000087
Erik Andersen298854f2000-03-23 01:09:18 +000088/* A few useful constants */
89#define TAR_MAGIC "ustar" /* ustar and a null */
Erik Andersen0817d132000-04-09 15:17:40 +000090#define TAR_VERSION " " /* Be compatable with GNU tar format */
Mark Whitley59ab0252001-01-23 22:30:04 +000091static const int TAR_MAGIC_LEN = 6;
92static const int TAR_VERSION_LEN = 2;
93static const int TAR_BLOCK_SIZE = 512;
Erik Andersen298854f2000-03-23 01:09:18 +000094
95/* A nice enum with all the possible tar file content types */
96enum TarFileType
97{
98 REGTYPE = '0', /* regular file */
99 REGTYPE0 = '\0', /* regular file (ancient bug compat)*/
100 LNKTYPE = '1', /* hard link */
101 SYMTYPE = '2', /* symbolic link */
102 CHRTYPE = '3', /* character special */
103 BLKTYPE = '4', /* block special */
104 DIRTYPE = '5', /* directory */
105 FIFOTYPE = '6', /* FIFO special */
106 CONTTYPE = '7', /* reserved */
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000107 GNULONGLINK = 'K', /* GNU long (>100 chars) link name */
108 GNULONGNAME = 'L', /* GNU long (>100 chars) file name */
Erik Andersen298854f2000-03-23 01:09:18 +0000109};
110typedef enum TarFileType TarFileType;
111
112/* This struct ignores magic, non-numeric user name,
113 * non-numeric group name, and the checksum, since
114 * these are all ignored by BusyBox tar. */
115struct TarInfo
116{
117 int tarFd; /* An open file descriptor for reading from the tarball */
118 char * name; /* File name */
119 mode_t mode; /* Unix mode, including device bits. */
120 uid_t uid; /* Numeric UID */
121 gid_t gid; /* Numeric GID */
122 size_t size; /* Size of file */
123 time_t mtime; /* Last-modified time */
Eric Andersen77d92682001-05-23 20:32:09 +0000124 enum TarFileType type; /* Regular, directory, link, etc. */
Erik Andersen298854f2000-03-23 01:09:18 +0000125 char * linkname; /* Name for symbolic and hard links */
Erik Andersen1ad302a2000-03-24 00:54:46 +0000126 long devmajor; /* Major number for special device */
127 long devminor; /* Minor number for special device */
Erik Andersen298854f2000-03-23 01:09:18 +0000128};
129typedef struct TarInfo TarInfo;
130
Erik Andersene454fb62000-03-23 04:27:58 +0000131/* Local procedures to restore files from a tar file. */
Glenn L McGrath2975a342001-04-11 16:49:07 +0000132static int readTarFile(int tarFd, int extractFlag, int listFlag,
Matt Kraaib92223b2000-09-04 08:25:42 +0000133 int tostdoutFlag, int verboseFlag, char** extractList,
134 char** excludeList);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000135
Erik Andersen05100cd2000-01-16 01:30:52 +0000136#ifdef BB_FEATURE_TAR_CREATE
Erik Andersen6acaa402000-03-26 14:03:20 +0000137/* Local procedures to save files into a tar file. */
Matt Kraaid8ad76c2000-11-08 02:35:47 +0000138static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
139 char** excludeList);
Erik Andersen05100cd2000-01-16 01:30:52 +0000140#endif
141
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000142#if defined BB_FEATURE_TAR_EXCLUDE
Eric Andersen3e6ff902001-03-09 21:24:12 +0000143static struct option longopts[] = {
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000144 { "exclude", 1, NULL, 'e' },
145 { NULL, 0, NULL, 0 }
146};
147#endif
148
Erik Andersene49d5ec2000-02-08 19:58:47 +0000149extern int tar_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000150{
Erik Andersenecd51242000-04-08 03:08:21 +0000151 char** excludeList=NULL;
Matt Kraaic119ab92000-11-30 04:44:54 +0000152 char** extractList=NULL;
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000153 const char *tarName="-";
Erik Andersen0817d132000-04-09 15:17:40 +0000154#if defined BB_FEATURE_TAR_EXCLUDE
Erik Andersenecd51242000-04-08 03:08:21 +0000155 int excludeListSize=0;
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000156 FILE *fileList;
157 char file[256];
Erik Andersen0817d132000-04-09 15:17:40 +0000158#endif
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000159#if defined BB_FEATURE_TAR_GZIP
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000160 FILE *comp_file = NULL;
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000161 int unzipFlag = FALSE;
162#endif
Erik Andersen298854f2000-03-23 01:09:18 +0000163 int listFlag = FALSE;
164 int extractFlag = FALSE;
165 int createFlag = FALSE;
166 int verboseFlag = FALSE;
167 int tostdoutFlag = FALSE;
Eric Andersen02f3b2e2000-12-01 19:04:52 +0000168 int status = FALSE;
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000169 int opt;
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000170 pid_t pid;
Eric Andersencc8ed391999-10-05 16:24:54 +0000171
Erik Andersenecd51242000-04-08 03:08:21 +0000172 if (argc <= 1)
Eric Andersen67991cf2001-02-14 21:23:06 +0000173 show_usage();
Eric Andersencc8ed391999-10-05 16:24:54 +0000174
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000175 if (argv[1][0] != '-') {
176 char *tmp = xmalloc(strlen(argv[1]) + 2);
177 tmp[0] = '-';
178 strcpy(tmp + 1, argv[1]);
179 argv[1] = tmp;
180 }
181
182 while (
183#ifndef BB_FEATURE_TAR_EXCLUDE
184 (opt = getopt(argc, argv, "cxtzvOf:"))
185#else
186 (opt = getopt_long(argc, argv, "cxtzvOf:X:", longopts, NULL))
187#endif
188 > 0) {
189 switch (opt) {
190 case 'c':
191 if (extractFlag == TRUE || listFlag == TRUE)
192 goto flagError;
193 createFlag = TRUE;
194 break;
195 case 'x':
196 if (listFlag == TRUE || createFlag == TRUE)
197 goto flagError;
198 extractFlag = TRUE;
199 break;
200 case 't':
201 if (extractFlag == TRUE || createFlag == TRUE)
202 goto flagError;
203 listFlag = TRUE;
204 break;
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000205#ifdef BB_FEATURE_TAR_GZIP
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000206 case 'z':
207 unzipFlag = TRUE;
208 break;
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000209#endif
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000210 case 'v':
211 verboseFlag = TRUE;
212 break;
213 case 'O':
214 tostdoutFlag = TRUE;
215 break;
216 case 'f':
217 if (*tarName != '-')
Matt Kraaidd19c692001-01-31 19:00:21 +0000218 error_msg_and_die( "Only one 'f' option allowed");
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000219 tarName = optarg;
220 break;
Erik Andersen0817d132000-04-09 15:17:40 +0000221#if defined BB_FEATURE_TAR_EXCLUDE
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000222 case 'e':
223 excludeList=xrealloc( excludeList,
224 sizeof(char *) * (excludeListSize+2));
225 excludeList[excludeListSize] = optarg;
226 /* Tack a NULL onto the end of the list */
227 excludeList[++excludeListSize] = NULL;
228 case 'X':
229 fileList = xfopen(optarg, "r");
230 while (fgets(file, sizeof(file), fileList) != NULL) {
231 excludeList = xrealloc(excludeList,
232 sizeof(char *) * (excludeListSize+2));
Matt Kraai05e782d2001-02-01 16:49:30 +0000233 chomp(file);
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000234 excludeList[excludeListSize] = xstrdup(file);
235 /* Tack a NULL onto the end of the list */
236 excludeList[++excludeListSize] = NULL;
237 }
238 fclose(fileList);
239 break;
Erik Andersen0817d132000-04-09 15:17:40 +0000240#endif
Erik Andersenecd51242000-04-08 03:08:21 +0000241 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000242 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000244 }
245
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000246 /*
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247 * Do the correct type of action supplying the rest of the
248 * command line arguments as the list of files to process.
249 */
250 if (createFlag == TRUE) {
Erik Andersende552872000-01-23 01:34:05 +0000251#ifndef BB_FEATURE_TAR_CREATE
Matt Kraaidd19c692001-01-31 19:00:21 +0000252 error_msg_and_die( "This version of tar was not compiled with tar creation support.");
Erik Andersende552872000-01-23 01:34:05 +0000253#else
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000254#ifdef BB_FEATURE_TAR_GZIP
255 if (unzipFlag==TRUE)
Matt Kraaidd19c692001-01-31 19:00:21 +0000256 error_msg_and_die("Creation of compressed not internally support by tar, pipe to busybox gunzip");
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000257#endif
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000258 status = writeTarFile(tarName, verboseFlag, argv + optind, excludeList);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259#endif
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000260 }
261 if (listFlag == TRUE || extractFlag == TRUE) {
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000262 int tarFd;
Matt Kraai3b3f5c32001-01-22 20:49:00 +0000263 if (argv[optind])
264 extractList = argv + optind;
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000265 /* Open the tar file for reading. */
266 if (!strcmp(tarName, "-"))
267 tarFd = fileno(stdin);
268 else
269 tarFd = open(tarName, O_RDONLY);
270 if (tarFd < 0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000271 perror_msg_and_die("Error opening '%s'", tarName);
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000272
273#ifdef BB_FEATURE_TAR_GZIP
274 /* unzip tarFd in a seperate process */
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000275 if (unzipFlag == TRUE) {
276 comp_file = fdopen(tarFd, "r");
Glenn L McGrath8e74bf92001-06-20 07:54:15 +0000277 if ((tarFd = fileno(gz_open(comp_file, &pid))) == EXIT_FAILURE) {
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000278 error_msg_and_die("Couldnt unzip file");
279 }
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000280 }
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000281#endif
282 status = readTarFile(tarFd, extractFlag, listFlag, tostdoutFlag,
Matt Kraai3e856ce2000-12-01 02:55:13 +0000283 verboseFlag, extractList, excludeList);
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000284 close(tarFd);
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000285#ifdef BB_FEATURE_TAR_GZIP
Glenn L McGrathae8ad352001-03-28 23:57:51 +0000286 if (unzipFlag == TRUE) {
287 gz_close(pid);
288 fclose(comp_file);
289 }
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000290#endif
Glenn L McGrathae8ad352001-03-28 23:57:51 +0000291 }
Glenn L McGrath018e9e62001-03-28 07:27:26 +0000292
Matt Kraai3e856ce2000-12-01 02:55:13 +0000293 if (status == TRUE)
294 return EXIT_SUCCESS;
295 else
296 return EXIT_FAILURE;
297
Erik Andersene49d5ec2000-02-08 19:58:47 +0000298 flagError:
Matt Kraaidd19c692001-01-31 19:00:21 +0000299 error_msg_and_die( "Exactly one of 'c', 'x' or 't' must be specified");
Erik Andersen298854f2000-03-23 01:09:18 +0000300}
301
302static void
Erik Andersen6a34b532000-04-07 06:55:38 +0000303fixUpPermissions(TarInfo *header)
304{
305 struct utimbuf t;
Eric Andersen77d92682001-05-23 20:32:09 +0000306 /* Now set permissions etc. for the new file */
Erik Andersen6a34b532000-04-07 06:55:38 +0000307 chown(header->name, header->uid, header->gid);
308 chmod(header->name, header->mode);
309 /* Reset the time */
310 t.actime = time(0);
311 t.modtime = header->mtime;
312 utime(header->name, &t);
313}
314
315static int
Erik Andersen1ad302a2000-03-24 00:54:46 +0000316tarExtractRegularFile(TarInfo *header, int extractFlag, int tostdoutFlag)
Erik Andersen298854f2000-03-23 01:09:18 +0000317{
Erik Andersen1ad302a2000-03-24 00:54:46 +0000318 size_t writeSize;
319 size_t readSize;
320 size_t actualWriteSz;
321 char buffer[BUFSIZ];
322 size_t size = header->size;
323 int outFd=fileno(stdout);
324
325 /* Open the file to be written, if a file is supposed to be written */
326 if (extractFlag==TRUE && tostdoutFlag==FALSE) {
Erik Andersen1ad302a2000-03-24 00:54:46 +0000327 /* Create the path to the file, just in case it isn't there...
328 * This should not screw up path permissions or anything. */
Mark Whitleyf57c9442000-12-07 19:56:48 +0000329 create_path(header->name, 0777);
Eric Andersen0c6a9702000-06-09 20:51:50 +0000330 if ((outFd=open(header->name, O_CREAT|O_TRUNC|O_WRONLY,
331 header->mode & ~S_IFMT)) < 0) {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000332 error_msg(io_error, header->name, strerror(errno));
Eric Andersen0c6a9702000-06-09 20:51:50 +0000333 return( FALSE);
334 }
Erik Andersen1ad302a2000-03-24 00:54:46 +0000335 }
336
337 /* Write out the file, if we are supposed to be doing that */
338 while ( size > 0 ) {
339 actualWriteSz=0;
340 if ( size > sizeof(buffer) )
341 writeSize = readSize = sizeof(buffer);
342 else {
343 int mod = size % 512;
344 if ( mod != 0 )
345 readSize = size + (512 - mod);
346 else
347 readSize = size;
348 writeSize = size;
349 }
Mark Whitleyf57c9442000-12-07 19:56:48 +0000350 if ( (readSize = full_read(header->tarFd, buffer, readSize)) <= 0 ) {
Erik Andersen1ad302a2000-03-24 00:54:46 +0000351 /* Tarball seems to have a problem */
Matt Kraaidd19c692001-01-31 19:00:21 +0000352 error_msg("Unexpected EOF in archive");
Erik Andersen6a34b532000-04-07 06:55:38 +0000353 return( FALSE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000354 }
355 if ( readSize < writeSize )
356 writeSize = readSize;
357
358 /* Write out the file, if we are supposed to be doing that */
359 if (extractFlag==TRUE) {
360
Mark Whitleyf57c9442000-12-07 19:56:48 +0000361 if ((actualWriteSz=full_write(outFd, buffer, writeSize)) != writeSize ) {
Erik Andersen1ad302a2000-03-24 00:54:46 +0000362 /* Output file seems to have a problem */
Mark Whitleyf57c9442000-12-07 19:56:48 +0000363 error_msg(io_error, header->name, strerror(errno));
Erik Andersen6a34b532000-04-07 06:55:38 +0000364 return( FALSE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000365 }
Erik Andersen0817d132000-04-09 15:17:40 +0000366 } else {
367 actualWriteSz=writeSize;
Erik Andersen1ad302a2000-03-24 00:54:46 +0000368 }
369
370 size -= actualWriteSz;
371 }
372
373 /* Now we are done writing the file out, so try
374 * and fix up the permissions and whatnot */
375 if (extractFlag==TRUE && tostdoutFlag==FALSE) {
Erik Andersen1ad302a2000-03-24 00:54:46 +0000376 close(outFd);
Erik Andersen6a34b532000-04-07 06:55:38 +0000377 fixUpPermissions(header);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000378 }
Erik Andersen6a34b532000-04-07 06:55:38 +0000379 return( TRUE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000380}
381
Erik Andersen6a34b532000-04-07 06:55:38 +0000382static int
Erik Andersen1ad302a2000-03-24 00:54:46 +0000383tarExtractDirectory(TarInfo *header, int extractFlag, int tostdoutFlag)
Erik Andersene454fb62000-03-23 04:27:58 +0000384{
Erik Andersen1ad302a2000-03-24 00:54:46 +0000385 if (extractFlag==FALSE || tostdoutFlag==TRUE)
Erik Andersen6a34b532000-04-07 06:55:38 +0000386 return( TRUE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000387
Mark Whitleyf57c9442000-12-07 19:56:48 +0000388 if (create_path(header->name, header->mode) != TRUE) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000389 perror_msg("%s: Cannot mkdir", header->name);
Erik Andersen6a34b532000-04-07 06:55:38 +0000390 return( FALSE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000391 }
392 /* make the final component, just in case it was
Mark Whitleyf57c9442000-12-07 19:56:48 +0000393 * omitted by create_path() (which will skip the
Erik Andersen1ad302a2000-03-24 00:54:46 +0000394 * directory if it doesn't have a terminating '/') */
Eric Andersencb2a3722001-06-04 16:54:39 +0000395 if (mkdir(header->name, header->mode) < 0 && errno != EEXIST) {
Matt Kraai541ffe32001-01-13 21:46:25 +0000396 perror_msg("%s", header->name);
397 return FALSE;
Erik Andersen6acaa402000-03-26 14:03:20 +0000398 }
Matt Kraai541ffe32001-01-13 21:46:25 +0000399
Eric Andersencb2a3722001-06-04 16:54:39 +0000400 fixUpPermissions(header);
Erik Andersen6a34b532000-04-07 06:55:38 +0000401 return( TRUE);
Erik Andersene454fb62000-03-23 04:27:58 +0000402}
403
Erik Andersen6a34b532000-04-07 06:55:38 +0000404static int
Erik Andersen1ad302a2000-03-24 00:54:46 +0000405tarExtractHardLink(TarInfo *header, int extractFlag, int tostdoutFlag)
Erik Andersene454fb62000-03-23 04:27:58 +0000406{
Erik Andersen1ad302a2000-03-24 00:54:46 +0000407 if (extractFlag==FALSE || tostdoutFlag==TRUE)
Erik Andersen6a34b532000-04-07 06:55:38 +0000408 return( TRUE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000409
410 if (link(header->linkname, header->name) < 0) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000411 perror_msg("%s: Cannot create hard link to '%s'", header->name,
412 header->linkname);
Erik Andersen6a34b532000-04-07 06:55:38 +0000413 return( FALSE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000414 }
415
Eric Andersen77d92682001-05-23 20:32:09 +0000416 /* Now set permissions etc. for the new directory */
Erik Andersen1ad302a2000-03-24 00:54:46 +0000417 fixUpPermissions(header);
Erik Andersen6a34b532000-04-07 06:55:38 +0000418 return( TRUE);
Erik Andersene454fb62000-03-23 04:27:58 +0000419}
420
Erik Andersen6a34b532000-04-07 06:55:38 +0000421static int
Erik Andersen1ad302a2000-03-24 00:54:46 +0000422tarExtractSymLink(TarInfo *header, int extractFlag, int tostdoutFlag)
Erik Andersene454fb62000-03-23 04:27:58 +0000423{
Erik Andersen1ad302a2000-03-24 00:54:46 +0000424 if (extractFlag==FALSE || tostdoutFlag==TRUE)
Erik Andersen6a34b532000-04-07 06:55:38 +0000425 return( TRUE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000426
427#ifdef S_ISLNK
428 if (symlink(header->linkname, header->name) < 0) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000429 perror_msg("%s: Cannot create symlink to '%s'", header->name,
430 header->linkname);
Erik Andersen6a34b532000-04-07 06:55:38 +0000431 return( FALSE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000432 }
433 /* Try to change ownership of the symlink.
434 * If libs doesn't support that, don't bother.
435 * Changing the pointed-to-file is the Wrong Thing(tm).
436 */
437#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
438 lchown(header->name, header->uid, header->gid);
439#endif
440
441 /* Do not change permissions or date on symlink,
442 * since it changes the pointed to file instead. duh. */
443#else
Matt Kraaidd19c692001-01-31 19:00:21 +0000444 error_msg("%s: Cannot create symlink to '%s': %s",
Erik Andersen6a34b532000-04-07 06:55:38 +0000445 header->name, header->linkname,
446 "symlinks not supported");
Erik Andersen1ad302a2000-03-24 00:54:46 +0000447#endif
Erik Andersen6a34b532000-04-07 06:55:38 +0000448 return( TRUE);
Erik Andersene454fb62000-03-23 04:27:58 +0000449}
450
Erik Andersen6a34b532000-04-07 06:55:38 +0000451static int
Erik Andersen1ad302a2000-03-24 00:54:46 +0000452tarExtractSpecial(TarInfo *header, int extractFlag, int tostdoutFlag)
Erik Andersene454fb62000-03-23 04:27:58 +0000453{
Erik Andersen1ad302a2000-03-24 00:54:46 +0000454 if (extractFlag==FALSE || tostdoutFlag==TRUE)
Erik Andersen6a34b532000-04-07 06:55:38 +0000455 return( TRUE);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000456
457 if (S_ISCHR(header->mode) || S_ISBLK(header->mode) || S_ISSOCK(header->mode)) {
Erik Andersen6a34b532000-04-07 06:55:38 +0000458 if (mknod(header->name, header->mode, makedev(header->devmajor, header->devminor)) < 0) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000459 perror_msg("%s: Cannot mknod", header->name);
Erik Andersen6a34b532000-04-07 06:55:38 +0000460 return( FALSE);
461 }
Erik Andersen1ad302a2000-03-24 00:54:46 +0000462 } else if (S_ISFIFO(header->mode)) {
Erik Andersen6a34b532000-04-07 06:55:38 +0000463 if (mkfifo(header->name, header->mode) < 0) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000464 perror_msg("%s: Cannot mkfifo", header->name);
Erik Andersen6a34b532000-04-07 06:55:38 +0000465 return( FALSE);
466 }
Erik Andersen1ad302a2000-03-24 00:54:46 +0000467 }
468
Eric Andersen77d92682001-05-23 20:32:09 +0000469 /* Now set permissions etc. for the new directory */
Erik Andersen1ad302a2000-03-24 00:54:46 +0000470 fixUpPermissions(header);
Erik Andersen6a34b532000-04-07 06:55:38 +0000471 return( TRUE);
Erik Andersene454fb62000-03-23 04:27:58 +0000472}
473
Erik Andersen298854f2000-03-23 01:09:18 +0000474/* Parse the tar header and fill in the nice struct with the details */
475static int
Erik Andersen3364d782000-03-28 00:58:14 +0000476readTarHeader(struct TarHeader *rawHeader, struct TarInfo *header)
Erik Andersen298854f2000-03-23 01:09:18 +0000477{
Erik Andersene454fb62000-03-23 04:27:58 +0000478 int i;
Erik Andersen84e09e42000-04-08 20:58:35 +0000479 long chksum, sum=0;
Erik Andersene454fb62000-03-23 04:27:58 +0000480 unsigned char *s = (unsigned char *)rawHeader;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000481
Erik Andersen298854f2000-03-23 01:09:18 +0000482 header->name = rawHeader->name;
Erik Andersen84e09e42000-04-08 20:58:35 +0000483 /* Check for and relativify any absolute paths */
484 if ( *(header->name) == '/' ) {
485 static int alreadyWarned=FALSE;
486
487 while (*(header->name) == '/')
Matt Kraai7f7348b2001-05-22 14:18:03 +0000488 header->name++;
Erik Andersen84e09e42000-04-08 20:58:35 +0000489
490 if (alreadyWarned == FALSE) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000491 error_msg("Removing leading '/' from member names");
Erik Andersen84e09e42000-04-08 20:58:35 +0000492 alreadyWarned = TRUE;
493 }
494 }
495
Glenn L McGrath48081f82001-04-11 05:01:09 +0000496 header->mode = strtol(rawHeader->mode, NULL, 8);
497 header->uid = strtol(rawHeader->uid, NULL, 8);
498 header->gid = strtol(rawHeader->gid, NULL, 8);
499 header->size = strtol(rawHeader->size, NULL, 8);
500 header->mtime = strtol(rawHeader->mtime, NULL, 8);
501 chksum = strtol(rawHeader->chksum, NULL, 8);
Erik Andersen298854f2000-03-23 01:09:18 +0000502 header->type = rawHeader->typeflag;
503 header->linkname = rawHeader->linkname;
Glenn L McGrath48081f82001-04-11 05:01:09 +0000504 header->devmajor = strtol(rawHeader->devmajor, NULL, 8);
505 header->devminor = strtol(rawHeader->devminor, NULL, 8);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000506
Erik Andersen298854f2000-03-23 01:09:18 +0000507 /* Check the checksum */
Erik Andersen84e09e42000-04-08 20:58:35 +0000508 for (i = sizeof(*rawHeader); i-- != 0;) {
Erik Andersen298854f2000-03-23 01:09:18 +0000509 sum += *s++;
Erik Andersen84e09e42000-04-08 20:58:35 +0000510 }
511 /* Remove the effects of the checksum field (replace
512 * with blanks for the purposes of the checksum) */
513 s = rawHeader->chksum;
514 for (i = sizeof(rawHeader->chksum) ; i-- != 0;) {
515 sum -= *s++;
516 }
517 sum += ' ' * sizeof(rawHeader->chksum);
Erik Andersene454fb62000-03-23 04:27:58 +0000518 if (sum == chksum )
Erik Andersen298854f2000-03-23 01:09:18 +0000519 return ( TRUE);
520 return( FALSE);
521}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000522
Eric Andersen3e6ff902001-03-09 21:24:12 +0000523static int exclude_file(char **excluded_files, const char *file)
Matt Kraaibe7499c2001-01-03 17:22:10 +0000524{
525 int i;
526
527 if (excluded_files == NULL)
528 return 0;
529
530 for (i = 0; excluded_files[i] != NULL; i++) {
531 if (excluded_files[i][0] == '/') {
532 if (fnmatch(excluded_files[i], file,
533 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
534 return 1;
535 } else {
536 const char *p;
537
538 for (p = file; p[0] != '\0'; p++) {
539 if ((p == file || p[-1] == '/') && p[0] != '/' &&
540 fnmatch(excluded_files[i], p,
541 FNM_PATHNAME | FNM_LEADING_DIR) == 0)
542 return 1;
543 }
544 }
545 }
546
547 return 0;
548}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000549
Eric Andersen3e6ff902001-03-09 21:24:12 +0000550static int extract_file(char **extract_files, const char *file)
Matt Kraai8f8dab92001-01-22 05:25:19 +0000551{
552 int i;
553
554 if (extract_files == NULL)
555 return 1;
556
557 for (i = 0; extract_files[i] != NULL; i++) {
558 if (fnmatch(extract_files[i], file, FNM_LEADING_DIR) == 0)
559 return 1;
560 }
561
562 return 0;
563}
564
Erik Andersen1ad302a2000-03-24 00:54:46 +0000565/*
566 * Read a tar file and extract or list the specified files within it.
567 * If the list is empty than all files are extracted or listed.
568 */
Glenn L McGrath2975a342001-04-11 16:49:07 +0000569static int readTarFile(int tarFd, int extractFlag, int listFlag,
Matt Kraaib92223b2000-09-04 08:25:42 +0000570 int tostdoutFlag, int verboseFlag, char** extractList,
571 char** excludeList)
Erik Andersen1ad302a2000-03-24 00:54:46 +0000572{
Glenn L McGrath46f44d22000-12-10 01:57:30 +0000573 int status;
Erik Andersen1ad302a2000-03-24 00:54:46 +0000574 int errorFlag=FALSE;
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000575 int skipNextHeaderFlag=FALSE;
Erik Andersen1ad302a2000-03-24 00:54:46 +0000576 TarHeader rawHeader;
577 TarInfo header;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000578
Erik Andersene49d5ec2000-02-08 19:58:47 +0000579 /* Set the umask for this process so it doesn't
Erik Andersen1ad302a2000-03-24 00:54:46 +0000580 * screw up permission setting for us later. */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000581 umask(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000582
Erik Andersen1ad302a2000-03-24 00:54:46 +0000583 /* Read the tar file, and iterate over it one file at a time */
Mark Whitleyf57c9442000-12-07 19:56:48 +0000584 while ( (status = full_read(tarFd, (char*)&rawHeader, TAR_BLOCK_SIZE)) == TAR_BLOCK_SIZE ) {
Erik Andersene2729152000-02-18 21:34:17 +0000585
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000586 /* Try to read the header */
Erik Andersen3364d782000-03-28 00:58:14 +0000587 if ( readTarHeader(&rawHeader, &header) == FALSE ) {
Erik Andersen1ad302a2000-03-24 00:54:46 +0000588 if ( *(header.name) == '\0' ) {
589 goto endgame;
590 } else {
591 errorFlag=TRUE;
Matt Kraaidd19c692001-01-31 19:00:21 +0000592 error_msg("Bad tar header, skipping");
Erik Andersen1ad302a2000-03-24 00:54:46 +0000593 continue;
594 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000595 }
Erik Andersen1ad302a2000-03-24 00:54:46 +0000596 if ( *(header.name) == '\0' )
Matt Kraaie0244b02001-05-01 21:12:31 +0000597 continue;
Erik Andersen0817d132000-04-09 15:17:40 +0000598 header.tarFd = tarFd;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000599
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000600 /* Skip funky extra GNU headers that precede long files */
601 if ( (header.type == GNULONGNAME) || (header.type == GNULONGLINK) ) {
602 skipNextHeaderFlag=TRUE;
Matt Kraaiab8f9e22000-11-18 01:28:57 +0000603 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
604 errorFlag = TRUE;
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000605 continue;
606 }
607 if ( skipNextHeaderFlag == TRUE ) {
608 skipNextHeaderFlag=FALSE;
Mark Whitleyf57c9442000-12-07 19:56:48 +0000609 error_msg(name_longer_than_foo, NAME_SIZE);
Matt Kraaiab8f9e22000-11-18 01:28:57 +0000610 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
611 errorFlag = TRUE;
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000612 continue;
613 }
614
Erik Andersen0817d132000-04-09 15:17:40 +0000615#if defined BB_FEATURE_TAR_EXCLUDE
Matt Kraaibe7499c2001-01-03 17:22:10 +0000616 if (exclude_file(excludeList, header.name)) {
Erik Andersen0817d132000-04-09 15:17:40 +0000617 /* There are not the droids you're looking for, move along */
Matt Kraaibe7499c2001-01-03 17:22:10 +0000618 /* If it is a regular file, pretend to extract it with
619 * the extractFlag set to FALSE, so the junk in the tarball
620 * is properly skipped over */
621 if ( header.type==REGTYPE || header.type==REGTYPE0 ) {
622 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
623 errorFlag = TRUE;
624 }
625 continue;
Erik Andersen0817d132000-04-09 15:17:40 +0000626 }
627#endif
Matt Kraaibe7499c2001-01-03 17:22:10 +0000628
Matt Kraai8f8dab92001-01-22 05:25:19 +0000629 if (!extract_file(extractList, header.name)) {
Matt Kraaib92223b2000-09-04 08:25:42 +0000630 /* There are not the droids you're looking for, move along */
Matt Kraai8f8dab92001-01-22 05:25:19 +0000631 /* If it is a regular file, pretend to extract it with
632 * the extractFlag set to FALSE, so the junk in the tarball
633 * is properly skipped over */
634 if ( header.type==REGTYPE || header.type==REGTYPE0 ) {
635 if (tarExtractRegularFile(&header, FALSE, FALSE) == FALSE)
636 errorFlag = TRUE;
Matt Kraaib92223b2000-09-04 08:25:42 +0000637 }
Matt Kraai8f8dab92001-01-22 05:25:19 +0000638 continue;
Matt Kraaib92223b2000-09-04 08:25:42 +0000639 }
Erik Andersen1ad302a2000-03-24 00:54:46 +0000640
Matt Kraai82cfbad2000-09-15 21:18:43 +0000641 if (listFlag == TRUE) {
Matt Kraai6fc2a7d2000-09-15 22:23:41 +0000642 /* Special treatment if the list (-t) flag is on */
643 if (verboseFlag == TRUE) {
644 int len, len1;
645 char buf[35];
646 struct tm *tm = localtime (&(header.mtime));
647
Mark Whitleyf57c9442000-12-07 19:56:48 +0000648 len=printf("%s ", mode_string(header.mode));
Matt Kraai6fc2a7d2000-09-15 22:23:41 +0000649 my_getpwuid(buf, header.uid);
650 if (! *buf)
651 len+=printf("%d", header.uid);
652 else
653 len+=printf("%s", buf);
Matt Kraai6fc2a7d2000-09-15 22:23:41 +0000654 my_getgrgid(buf, header.gid);
655 if (! *buf)
656 len+=printf("/%-d ", header.gid);
657 else
658 len+=printf("/%-s ", buf);
659
660 if (header.type==CHRTYPE || header.type==BLKTYPE) {
661 len1=snprintf(buf, sizeof(buf), "%ld,%-ld ",
662 header.devmajor, header.devminor);
663 } else {
664 len1=snprintf(buf, sizeof(buf), "%lu ", (long)header.size);
665 }
666 /* Jump through some hoops to make the columns match up */
667 for(;(len+len1)<31;len++)
668 printf(" ");
669 printf(buf);
670
671 /* Use ISO 8610 time format */
672 if (tm) {
673 printf ("%04d-%02d-%02d %02d:%02d:%02d ",
674 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
675 tm->tm_hour, tm->tm_min, tm->tm_sec);
676 }
677 }
Eric Andersenfdd51032000-08-02 18:48:26 +0000678 printf("%s", header.name);
Matt Kraai82cfbad2000-09-15 21:18:43 +0000679 if (verboseFlag == TRUE) {
680 if (header.type==LNKTYPE) /* If this is a link, say so */
681 printf(" link to %s", header.linkname);
682 else if (header.type==SYMTYPE)
683 printf(" -> %s", header.linkname);
684 }
Erik Andersen1ad302a2000-03-24 00:54:46 +0000685 printf("\n");
686 }
687
Matt Kraai6fc2a7d2000-09-15 22:23:41 +0000688 /* List contents if we are supposed to do that */
689 if (verboseFlag == TRUE && extractFlag == TRUE) {
690 /* Now the normal listing */
691 FILE *vbFd = stdout;
692 if (tostdoutFlag == TRUE) // If the archive goes to stdout, verbose to stderr
693 vbFd = stderr;
694 fprintf(vbFd, "%s\n", header.name);
695 }
696
Matt Kraaif4462972000-09-01 02:50:48 +0000697 /* Remove files if we would overwrite them */
Matt Kraaida542f32000-09-01 02:53:01 +0000698 if (extractFlag == TRUE && tostdoutFlag == FALSE)
Matt Kraaif4462972000-09-01 02:50:48 +0000699 unlink(header.name);
Eric Andersencc8ed391999-10-05 16:24:54 +0000700
Erik Andersen1ad302a2000-03-24 00:54:46 +0000701 /* If we got here, we can be certain we have a legitimate
702 * header to work with. So work with it. */
703 switch ( header.type ) {
704 case REGTYPE:
705 case REGTYPE0:
706 /* If the name ends in a '/' then assume it is
707 * supposed to be a directory, and fall through */
Glenn L McGrathaf166e72001-04-29 00:50:33 +0000708 if (!last_char_is(header.name,'/')) {
Erik Andersen6a34b532000-04-07 06:55:38 +0000709 if (tarExtractRegularFile(&header, extractFlag, tostdoutFlag)==FALSE)
710 errorFlag=TRUE;
Erik Andersen1ad302a2000-03-24 00:54:46 +0000711 break;
712 }
713 case DIRTYPE:
Erik Andersen6a34b532000-04-07 06:55:38 +0000714 if (tarExtractDirectory( &header, extractFlag, tostdoutFlag)==FALSE)
715 errorFlag=TRUE;
Erik Andersen1ad302a2000-03-24 00:54:46 +0000716 break;
717 case LNKTYPE:
Erik Andersen6a34b532000-04-07 06:55:38 +0000718 if (tarExtractHardLink( &header, extractFlag, tostdoutFlag)==FALSE)
719 errorFlag=TRUE;
Erik Andersen1ad302a2000-03-24 00:54:46 +0000720 break;
721 case SYMTYPE:
Erik Andersen6a34b532000-04-07 06:55:38 +0000722 if (tarExtractSymLink( &header, extractFlag, tostdoutFlag)==FALSE)
723 errorFlag=TRUE;
Erik Andersen1ad302a2000-03-24 00:54:46 +0000724 break;
725 case CHRTYPE:
726 case BLKTYPE:
727 case FIFOTYPE:
Erik Andersen6a34b532000-04-07 06:55:38 +0000728 if (tarExtractSpecial( &header, extractFlag, tostdoutFlag)==FALSE)
729 errorFlag=TRUE;
Erik Andersen1ad302a2000-03-24 00:54:46 +0000730 break;
Eric Andersen1b1cfde2000-09-24 00:54:37 +0000731#if 0
732 /* Handled earlier */
733 case GNULONGNAME:
734 case GNULONGLINK:
735 skipNextHeaderFlag=TRUE;
736 break;
737#endif
Erik Andersen1ad302a2000-03-24 00:54:46 +0000738 default:
Matt Kraaidd19c692001-01-31 19:00:21 +0000739 error_msg("Unknown file type '%c' in tar file", header.type);
Erik Andersen1ad302a2000-03-24 00:54:46 +0000740 close( tarFd);
741 return( FALSE);
742 }
743 }
744 close(tarFd);
745 if (status > 0) {
746 /* Bummer - we read a partial header */
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000747 perror_msg("Error reading tar file");
Erik Andersen1ad302a2000-03-24 00:54:46 +0000748 return ( FALSE);
749 }
Erik Andersen6a34b532000-04-07 06:55:38 +0000750 else if (errorFlag==TRUE) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000751 error_msg( "Error exit delayed from previous errors");
Erik Andersen6a34b532000-04-07 06:55:38 +0000752 return( FALSE);
753 } else
Erik Andersen1ad302a2000-03-24 00:54:46 +0000754 return( status);
755
756 /* Stuff to do when we are done */
757endgame:
758 close( tarFd);
759 if ( *(header.name) == '\0' ) {
Erik Andersen6a34b532000-04-07 06:55:38 +0000760 if (errorFlag==TRUE)
Matt Kraaidd19c692001-01-31 19:00:21 +0000761 error_msg( "Error exit delayed from previous errors");
Erik Andersen6a34b532000-04-07 06:55:38 +0000762 else
Erik Andersen1ad302a2000-03-24 00:54:46 +0000763 return( TRUE);
764 }
765 return( FALSE);
766}
767
Erik Andersen6acaa402000-03-26 14:03:20 +0000768
769#ifdef BB_FEATURE_TAR_CREATE
770
Eric Andersen3d957c82000-12-07 00:34:58 +0000771/*
772** writeTarFile(), writeFileToTarball(), and writeTarHeader() are
773** the only functions that deal with the HardLinkInfo structure.
774** Even these functions use the xxxHardLinkInfo() functions.
775*/
776typedef struct HardLinkInfo HardLinkInfo;
777struct HardLinkInfo
778{
779 HardLinkInfo *next; /* Next entry in list */
780 dev_t dev; /* Device number */
781 ino_t ino; /* Inode number */
782 short linkCount; /* (Hard) Link Count */
783 char name[1]; /* Start of filename (must be last) */
784};
785
Erik Andersen68a9ea42000-04-04 18:39:50 +0000786/* Some info to be carried along when creating a new tarball */
787struct TarBallInfo
788{
789 char* fileName; /* File name of the tarball */
790 int tarFd; /* Open-for-write file descriptor
791 for the tarball */
792 struct stat statBuf; /* Stat info for the tarball, letting
793 us know the inode and device that the
794 tarball lives, so we can avoid trying
795 to include the tarball into itself */
796 int verboseFlag; /* Whether to print extra stuff or not */
Erik Andersenecd51242000-04-08 03:08:21 +0000797 char** excludeList; /* List of files to not include */
Eric Andersen3d957c82000-12-07 00:34:58 +0000798 HardLinkInfo *hlInfoHead; /* Hard Link Tracking Information */
799 HardLinkInfo *hlInfo; /* Hard Link Info for the current file */
Erik Andersen68a9ea42000-04-04 18:39:50 +0000800};
801typedef struct TarBallInfo TarBallInfo;
802
803
Eric Andersen3d957c82000-12-07 00:34:58 +0000804/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
805static void
806addHardLinkInfo (HardLinkInfo **hlInfoHeadPtr, dev_t dev, ino_t ino,
807 short linkCount, const char *name)
808{
809 /* Note: hlInfoHeadPtr can never be NULL! */
810 HardLinkInfo *hlInfo;
811
812 hlInfo = (HardLinkInfo *)xmalloc(sizeof(HardLinkInfo)+strlen(name)+1);
813 if (hlInfo) {
814 hlInfo->next = *hlInfoHeadPtr;
815 *hlInfoHeadPtr = hlInfo;
816 hlInfo->dev = dev;
817 hlInfo->ino = ino;
818 hlInfo->linkCount = linkCount;
819 strcpy(hlInfo->name, name);
820 }
821 return;
822}
823
824static void
825freeHardLinkInfo (HardLinkInfo **hlInfoHeadPtr)
826{
827 HardLinkInfo *hlInfo = NULL;
828 HardLinkInfo *hlInfoNext = NULL;
829
830 if (hlInfoHeadPtr) {
831 hlInfo = *hlInfoHeadPtr;
832 while (hlInfo) {
833 hlInfoNext = hlInfo->next;
834 free(hlInfo);
835 hlInfo = hlInfoNext;
836 }
837 *hlInfoHeadPtr = NULL;
838 }
839 return;
840}
841
842/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
843static HardLinkInfo *
844findHardLinkInfo (HardLinkInfo *hlInfo, dev_t dev, ino_t ino)
845{
846 while(hlInfo) {
847 if ((ino == hlInfo->ino) && (dev == hlInfo->dev))
848 break;
849 hlInfo = hlInfo->next;
850 }
851 return(hlInfo);
852}
853
Erik Andersen6acaa402000-03-26 14:03:20 +0000854/* Put an octal string into the specified buffer.
855 * The number is zero and space padded and possibly null padded.
856 * Returns TRUE if successful. */
857static int putOctal (char *cp, int len, long value)
858{
859 int tempLength;
Erik Andersen6acaa402000-03-26 14:03:20 +0000860 char tempBuffer[32];
Erik Andersen5661fe02000-04-05 01:00:52 +0000861 char *tempString = tempBuffer;
Erik Andersen6acaa402000-03-26 14:03:20 +0000862
863 /* Create a string of the specified length with an initial space,
864 * leading zeroes and the octal number, and a trailing null. */
Erik Andersen5661fe02000-04-05 01:00:52 +0000865 sprintf (tempString, "%0*lo", len - 1, value);
Erik Andersen6acaa402000-03-26 14:03:20 +0000866
867 /* If the string is too large, suppress the leading space. */
Erik Andersen5661fe02000-04-05 01:00:52 +0000868 tempLength = strlen (tempString) + 1;
Erik Andersen6acaa402000-03-26 14:03:20 +0000869 if (tempLength > len) {
870 tempLength--;
871 tempString++;
872 }
873
874 /* If the string is still too large, suppress the trailing null. */
875 if (tempLength > len)
876 tempLength--;
877
878 /* If the string is still too large, fail. */
879 if (tempLength > len)
880 return FALSE;
881
882 /* Copy the string to the field. */
883 memcpy (cp, tempString, len);
884
885 return TRUE;
886}
887
Erik Andersen68a9ea42000-04-04 18:39:50 +0000888/* Write out a tar header for the specified file/directory/whatever */
Erik Andersen3364d782000-03-28 00:58:14 +0000889static int
Matt Kraaie80a2632000-12-19 20:45:49 +0000890writeTarHeader(struct TarBallInfo *tbInfo, const char *header_name,
891 const char *real_name, struct stat *statbuf)
Erik Andersen6acaa402000-03-26 14:03:20 +0000892{
Erik Andersen5661fe02000-04-05 01:00:52 +0000893 long chksum=0;
894 struct TarHeader header;
895 const unsigned char *cp = (const unsigned char *) &header;
896 ssize_t size = sizeof(struct TarHeader);
Eric Andersenfdd51032000-08-02 18:48:26 +0000897
Erik Andersen5661fe02000-04-05 01:00:52 +0000898 memset( &header, 0, size);
Erik Andersen3364d782000-03-28 00:58:14 +0000899
Matt Kraaie80a2632000-12-19 20:45:49 +0000900 strncpy(header.name, header_name, sizeof(header.name));
Erik Andersenecd51242000-04-08 03:08:21 +0000901
Erik Andersen5661fe02000-04-05 01:00:52 +0000902 putOctal(header.mode, sizeof(header.mode), statbuf->st_mode);
903 putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
904 putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
905 putOctal(header.size, sizeof(header.size), 0); /* Regular file size is handled later */
906 putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
907 strncpy(header.magic, TAR_MAGIC TAR_VERSION,
908 TAR_MAGIC_LEN + TAR_VERSION_LEN );
Erik Andersen68a9ea42000-04-04 18:39:50 +0000909
Erik Andersen84e09e42000-04-08 20:58:35 +0000910 /* Enter the user and group names (default to root if it fails) */
Erik Andersen5661fe02000-04-05 01:00:52 +0000911 my_getpwuid(header.uname, statbuf->st_uid);
Erik Andersen5661fe02000-04-05 01:00:52 +0000912 if (! *header.uname)
Erik Andersen84e09e42000-04-08 20:58:35 +0000913 strcpy(header.uname, "root");
Erik Andersen5661fe02000-04-05 01:00:52 +0000914 my_getgrgid(header.gname, statbuf->st_gid);
915 if (! *header.uname)
Erik Andersen84e09e42000-04-08 20:58:35 +0000916 strcpy(header.uname, "root");
Erik Andersen5661fe02000-04-05 01:00:52 +0000917
Eric Andersen3d957c82000-12-07 00:34:58 +0000918 if (tbInfo->hlInfo) {
919 /* This is a hard link */
920 header.typeflag = LNKTYPE;
921 strncpy(header.linkname, tbInfo->hlInfo->name, sizeof(header.linkname));
922 } else if (S_ISLNK(statbuf->st_mode)) {
Mark Whitley8a633262001-04-30 18:17:00 +0000923 char *lpath = xreadlink(real_name);
Eric Andersen28355a32001-05-07 17:48:28 +0000924 if (!lpath) /* Already printed err msg inside xreadlink() */
925 return ( FALSE);
Erik Andersen5661fe02000-04-05 01:00:52 +0000926 header.typeflag = SYMTYPE;
Mark Whitley8a633262001-04-30 18:17:00 +0000927 strncpy(header.linkname, lpath, sizeof(header.linkname));
928 free(lpath);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000929 } else if (S_ISDIR(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000930 header.typeflag = DIRTYPE;
931 strncat(header.name, "/", sizeof(header.name));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000932 } else if (S_ISCHR(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000933 header.typeflag = CHRTYPE;
934 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
935 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000936 } else if (S_ISBLK(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000937 header.typeflag = BLKTYPE;
938 putOctal(header.devmajor, sizeof(header.devmajor), MAJOR(statbuf->st_rdev));
939 putOctal(header.devminor, sizeof(header.devminor), MINOR(statbuf->st_rdev));
Erik Andersen68a9ea42000-04-04 18:39:50 +0000940 } else if (S_ISFIFO(statbuf->st_mode)) {
Erik Andersen5661fe02000-04-05 01:00:52 +0000941 header.typeflag = FIFOTYPE;
942 } else if (S_ISREG(statbuf->st_mode)) {
943 header.typeflag = REGTYPE;
944 putOctal(header.size, sizeof(header.size), statbuf->st_size);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000945 } else {
Matt Kraaidd19c692001-01-31 19:00:21 +0000946 error_msg("%s: Unknown file type", real_name);
Erik Andersen68a9ea42000-04-04 18:39:50 +0000947 return ( FALSE);
948 }
Erik Andersen68a9ea42000-04-04 18:39:50 +0000949
Eric Andersen77d92682001-05-23 20:32:09 +0000950 /* Calculate and store the checksum (i.e., the sum of all of the bytes of
Erik Andersen5661fe02000-04-05 01:00:52 +0000951 * the header). The checksum field must be filled with blanks for the
952 * calculation. The checksum field is formatted differently from the
953 * other fields: it has [6] digits, a null, then a space -- rather than
954 * digits, followed by a null like the other fields... */
955 memset(header.chksum, ' ', sizeof(header.chksum));
956 cp = (const unsigned char *) &header;
957 while (size-- > 0)
958 chksum += *cp++;
959 putOctal(header.chksum, 7, chksum);
960
961 /* Now write the header out to disk */
Mark Whitleyf57c9442000-12-07 19:56:48 +0000962 if ((size=full_write(tbInfo->tarFd, (char*)&header, sizeof(struct TarHeader))) < 0) {
Matt Kraaie80a2632000-12-19 20:45:49 +0000963 error_msg(io_error, real_name, strerror(errno));
Erik Andersen5661fe02000-04-05 01:00:52 +0000964 return ( FALSE);
965 }
966 /* Pad the header up to the tar block size */
967 for (; size<TAR_BLOCK_SIZE; size++) {
968 write(tbInfo->tarFd, "\0", 1);
969 }
970 /* Now do the verbose thing (or not) */
Eric Andersenfdd51032000-08-02 18:48:26 +0000971 if (tbInfo->verboseFlag==TRUE) {
972 FILE *vbFd = stdout;
973 if (tbInfo->tarFd == fileno(stdout)) // If the archive goes to stdout, verbose to stderr
974 vbFd = stderr;
975 fprintf(vbFd, "%s\n", header.name);
976 }
Erik Andersen3364d782000-03-28 00:58:14 +0000977
978 return ( TRUE);
979}
980
981
Erik Andersen68a9ea42000-04-04 18:39:50 +0000982static int writeFileToTarball(const char *fileName, struct stat *statbuf, void* userData)
Erik Andersen3364d782000-03-28 00:58:14 +0000983{
Erik Andersen68a9ea42000-04-04 18:39:50 +0000984 struct TarBallInfo *tbInfo = (struct TarBallInfo *)userData;
Matt Kraaie80a2632000-12-19 20:45:49 +0000985 const char *header_name;
Erik Andersen68a9ea42000-04-04 18:39:50 +0000986
Eric Andersen3d957c82000-12-07 00:34:58 +0000987 /*
988 ** Check to see if we are dealing with a hard link.
989 ** If so -
990 ** Treat the first occurance of a given dev/inode as a file while
991 ** treating any additional occurances as hard links. This is done
992 ** by adding the file information to the HardLinkInfo linked list.
993 */
994 tbInfo->hlInfo = NULL;
995 if (statbuf->st_nlink > 1) {
996 tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf->st_dev,
997 statbuf->st_ino);
998 if (tbInfo->hlInfo == NULL)
999 addHardLinkInfo (&tbInfo->hlInfoHead, statbuf->st_dev,
1000 statbuf->st_ino, statbuf->st_nlink, fileName);
1001 }
1002
Erik Andersen68a9ea42000-04-04 18:39:50 +00001003 /* It is against the rules to archive a socket */
1004 if (S_ISSOCK(statbuf->st_mode)) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001005 error_msg("%s: socket ignored", fileName);
Erik Andersen68a9ea42000-04-04 18:39:50 +00001006 return( TRUE);
1007 }
1008
1009 /* It is a bad idea to store the archive we are in the process of creating,
1010 * so check the device and inode to be sure that this particular file isn't
1011 * the new tarball */
1012 if (tbInfo->statBuf.st_dev == statbuf->st_dev &&
1013 tbInfo->statBuf.st_ino == statbuf->st_ino) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001014 error_msg("%s: file is the archive; skipping", fileName);
Erik Andersen68a9ea42000-04-04 18:39:50 +00001015 return( TRUE);
1016 }
1017
Matt Kraaie80a2632000-12-19 20:45:49 +00001018 header_name = fileName;
1019 while (header_name[0] == '/') {
Matt Kraaia1f97752000-12-19 06:24:08 +00001020 static int alreadyWarned=FALSE;
1021 if (alreadyWarned==FALSE) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001022 error_msg("Removing leading '/' from member names");
Matt Kraaia1f97752000-12-19 06:24:08 +00001023 alreadyWarned=TRUE;
1024 }
Matt Kraaie80a2632000-12-19 20:45:49 +00001025 header_name++;
Matt Kraaia1f97752000-12-19 06:24:08 +00001026 }
1027
Eric Andersen1b1cfde2000-09-24 00:54:37 +00001028 if (strlen(fileName) >= NAME_SIZE) {
Mark Whitleyf57c9442000-12-07 19:56:48 +00001029 error_msg(name_longer_than_foo, NAME_SIZE);
Eric Andersen1b1cfde2000-09-24 00:54:37 +00001030 return ( TRUE);
1031 }
1032
Matt Kraaie80a2632000-12-19 20:45:49 +00001033 if (header_name[0] == '\0')
Matt Kraaia1f97752000-12-19 06:24:08 +00001034 return TRUE;
1035
1036#if defined BB_FEATURE_TAR_EXCLUDE
Matt Kraaibe7499c2001-01-03 17:22:10 +00001037 if (exclude_file(tbInfo->excludeList, header_name)) {
1038 return SKIP;
Matt Kraaia1f97752000-12-19 06:24:08 +00001039 }
1040#endif
1041
Matt Kraaie80a2632000-12-19 20:45:49 +00001042 if (writeTarHeader(tbInfo, header_name, fileName, statbuf)==FALSE) {
Erik Andersen5661fe02000-04-05 01:00:52 +00001043 return( FALSE);
Erik Andersen68a9ea42000-04-04 18:39:50 +00001044 }
Erik Andersen5661fe02000-04-05 01:00:52 +00001045
1046 /* Now, if the file is a regular file, copy it out to the tarball */
Eric Andersen3d957c82000-12-07 00:34:58 +00001047 if ((tbInfo->hlInfo == NULL)
1048 && (S_ISREG(statbuf->st_mode))) {
Erik Andersen5661fe02000-04-05 01:00:52 +00001049 int inputFileFd;
1050 char buffer[BUFSIZ];
1051 ssize_t size=0, readSize=0;
1052
1053 /* open the file we want to archive, and make sure all is well */
1054 if ((inputFileFd = open(fileName, O_RDONLY)) < 0) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001055 error_msg("%s: Cannot open: %s", fileName, strerror(errno));
Erik Andersen5661fe02000-04-05 01:00:52 +00001056 return( FALSE);
1057 }
1058
1059 /* write the file to the archive */
Mark Whitleyf57c9442000-12-07 19:56:48 +00001060 while ( (size = full_read(inputFileFd, buffer, sizeof(buffer))) > 0 ) {
1061 if (full_write(tbInfo->tarFd, buffer, size) != size ) {
Erik Andersen5661fe02000-04-05 01:00:52 +00001062 /* Output file seems to have a problem */
Mark Whitleyf57c9442000-12-07 19:56:48 +00001063 error_msg(io_error, fileName, strerror(errno));
Erik Andersen5661fe02000-04-05 01:00:52 +00001064 return( FALSE);
1065 }
1066 readSize+=size;
1067 }
1068 if (size == -1) {
Mark Whitleyf57c9442000-12-07 19:56:48 +00001069 error_msg(io_error, fileName, strerror(errno));
Erik Andersen5661fe02000-04-05 01:00:52 +00001070 return( FALSE);
1071 }
1072 /* Pad the file up to the tar block size */
1073 for (; (readSize%TAR_BLOCK_SIZE) != 0; readSize++) {
1074 write(tbInfo->tarFd, "\0", 1);
1075 }
1076 close( inputFileFd);
1077 }
Erik Andersen68a9ea42000-04-04 18:39:50 +00001078
1079 return( TRUE);
Erik Andersen6acaa402000-03-26 14:03:20 +00001080}
1081
Matt Kraaid8ad76c2000-11-08 02:35:47 +00001082static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
1083 char** excludeList)
Erik Andersen6acaa402000-03-26 14:03:20 +00001084{
Erik Andersen3364d782000-03-28 00:58:14 +00001085 int tarFd=-1;
Erik Andersen68a9ea42000-04-04 18:39:50 +00001086 int errorFlag=FALSE;
Erik Andersen5661fe02000-04-05 01:00:52 +00001087 ssize_t size;
Erik Andersen68a9ea42000-04-04 18:39:50 +00001088 struct TarBallInfo tbInfo;
1089 tbInfo.verboseFlag = verboseFlag;
Eric Andersen3d957c82000-12-07 00:34:58 +00001090 tbInfo.hlInfoHead = NULL;
Erik Andersen3364d782000-03-28 00:58:14 +00001091
1092 /* Make sure there is at least one file to tar up. */
Matt Kraaid8ad76c2000-11-08 02:35:47 +00001093 if (*argv == NULL)
Matt Kraaidd19c692001-01-31 19:00:21 +00001094 error_msg_and_die("Cowardly refusing to create an empty archive");
Erik Andersen6acaa402000-03-26 14:03:20 +00001095
1096 /* Open the tar file for writing. */
Matt Kraaid8ad76c2000-11-08 02:35:47 +00001097 if (!strcmp(tarName, "-"))
Erik Andersen68a9ea42000-04-04 18:39:50 +00001098 tbInfo.tarFd = fileno(stdout);
Erik Andersen6acaa402000-03-26 14:03:20 +00001099 else
Erik Andersen68a9ea42000-04-04 18:39:50 +00001100 tbInfo.tarFd = open (tarName, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1101 if (tbInfo.tarFd < 0) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +00001102 perror_msg( "Error opening '%s'", tarName);
Eric Andersen3d957c82000-12-07 00:34:58 +00001103 freeHardLinkInfo(&tbInfo.hlInfoHead);
Erik Andersen6acaa402000-03-26 14:03:20 +00001104 return ( FALSE);
1105 }
Erik Andersenecd51242000-04-08 03:08:21 +00001106 tbInfo.excludeList=excludeList;
Erik Andersen68a9ea42000-04-04 18:39:50 +00001107 /* Store the stat info for the tarball's file, so
1108 * can avoid including the tarball into itself.... */
1109 if (fstat(tbInfo.tarFd, &tbInfo.statBuf) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +00001110 error_msg_and_die(io_error, tarName, strerror(errno));
Erik Andersen6acaa402000-03-26 14:03:20 +00001111
1112 /* Set the umask for this process so it doesn't
1113 * screw up permission setting for us later. */
1114 umask(0);
1115
1116 /* Read the directory/files and iterate over them one at a time */
Matt Kraaid8ad76c2000-11-08 02:35:47 +00001117 while (*argv != NULL) {
Mark Whitleyf57c9442000-12-07 19:56:48 +00001118 if (recursive_action(*argv++, TRUE, FALSE, FALSE,
Erik Andersen68a9ea42000-04-04 18:39:50 +00001119 writeFileToTarball, writeFileToTarball,
1120 (void*) &tbInfo) == FALSE) {
1121 errorFlag = TRUE;
Erik Andersen3364d782000-03-28 00:58:14 +00001122 }
Erik Andersen6acaa402000-03-26 14:03:20 +00001123 }
Erik Andersen5661fe02000-04-05 01:00:52 +00001124 /* Write two empty blocks to the end of the archive */
1125 for (size=0; size<(2*TAR_BLOCK_SIZE); size++) {
1126 write(tbInfo.tarFd, "\0", 1);
1127 }
Erik Andersen0817d132000-04-09 15:17:40 +00001128
1129 /* To be pedantically correct, we would check if the tarball
Eric Andersen3c5ee9a2000-11-14 22:15:48 +00001130 * is smaller than 20 tar blocks, and pad it if it was smaller,
Erik Andersen0817d132000-04-09 15:17:40 +00001131 * but that isn't necessary for GNU tar interoperability, and
1132 * so is considered a waste of space */
1133
Erik Andersen68a9ea42000-04-04 18:39:50 +00001134 /* Hang up the tools, close up shop, head home */
Erik Andersen6acaa402000-03-26 14:03:20 +00001135 close(tarFd);
Erik Andersen68a9ea42000-04-04 18:39:50 +00001136 if (errorFlag == TRUE) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001137 error_msg("Error exit delayed from previous errors");
Eric Andersen3d957c82000-12-07 00:34:58 +00001138 freeHardLinkInfo(&tbInfo.hlInfoHead);
Erik Andersen68a9ea42000-04-04 18:39:50 +00001139 return(FALSE);
1140 }
Eric Andersen3d957c82000-12-07 00:34:58 +00001141 freeHardLinkInfo(&tbInfo.hlInfoHead);
Erik Andersen6acaa402000-03-26 14:03:20 +00001142 return( TRUE);
1143}
1144
1145
1146#endif
1147