tar.c 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini tar implementation for busybox
  4. *
  5. * Modified to use common extraction code used by ar, cpio, dpkg-deb, dpkg
  6. * by Glenn McGrath
  7. *
  8. * Note, that as of BusyBox-0.43, tar has been completely rewritten from the
  9. * ground up. It still has remnants of the old code lying about, but it is
  10. * very different now (i.e., cleaner, less global variables, etc.)
  11. *
  12. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  13. *
  14. * 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 GPL has been granted.
  19. *
  20. * Based in part on the tar implementation from busybox-0.28
  21. * Copyright (C) 1995 Bruce Perens
  22. *
  23. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  24. */
  25. //config:config TAR
  26. //config: bool "tar (40 kb)"
  27. //config: default y
  28. //config: help
  29. //config: tar is an archiving program. It's commonly used with gzip to
  30. //config: create compressed archives. It's probably the most widely used
  31. //config: UNIX archive program.
  32. //config:
  33. //config:config FEATURE_TAR_LONG_OPTIONS
  34. //config: bool "Enable long options"
  35. //config: default y
  36. //config: depends on TAR && LONG_OPTS
  37. //config:
  38. //config:config FEATURE_TAR_CREATE
  39. //config: bool "Enable -c (archive creation)"
  40. //config: default y
  41. //config: depends on TAR
  42. //config:
  43. //config:config FEATURE_TAR_AUTODETECT
  44. //config: bool "Autodetect compressed tarballs"
  45. //config: default y
  46. //config: depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ)
  47. //config: help
  48. //config: With this option tar can automatically detect compressed
  49. //config: tarballs. Currently it works only on files (not pipes etc).
  50. //config:
  51. //config:config FEATURE_TAR_FROM
  52. //config: bool "Enable -X (exclude from) and -T (include from) options"
  53. //config: default y
  54. //config: depends on TAR
  55. //config: help
  56. //config: If you enable this option you'll be able to specify
  57. //config: a list of files to include or exclude from an archive.
  58. //config:
  59. //config:config FEATURE_TAR_OLDGNU_COMPATIBILITY
  60. //config: bool "Support old tar header format"
  61. //config: default y
  62. //config: depends on TAR || DPKG
  63. //config: help
  64. //config: This option is required to unpack archives created in
  65. //config: the old GNU format; help to kill this old format by
  66. //config: repacking your ancient archives with the new format.
  67. //config:
  68. //config:config FEATURE_TAR_OLDSUN_COMPATIBILITY
  69. //config: bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  70. //config: default y
  71. //config: depends on TAR || DPKG
  72. //config: help
  73. //config: This option is required to unpack archives created by some old
  74. //config: version of Sun's tar (it was calculating checksum using signed
  75. //config: arithmetic). It is said to be fixed in newer Sun tar, but "old"
  76. //config: tarballs still exist.
  77. //config:
  78. //config:config FEATURE_TAR_GNU_EXTENSIONS
  79. //config: bool "Support GNU tar extensions (long filenames)"
  80. //config: default y
  81. //config: depends on TAR || DPKG
  82. //config:
  83. //config:config FEATURE_TAR_TO_COMMAND
  84. //config: bool "Support writing to an external program (--to-command)"
  85. //config: default y
  86. //config: depends on TAR && FEATURE_TAR_LONG_OPTIONS
  87. //config: help
  88. //config: If you enable this option you'll be able to instruct tar to send
  89. //config: the contents of each extracted file to the standard input of an
  90. //config: external program.
  91. //config:
  92. //config:config FEATURE_TAR_UNAME_GNAME
  93. //config: bool "Enable use of user and group names"
  94. //config: default y
  95. //config: depends on TAR
  96. //config: help
  97. //config: Enable use of user and group names in tar. This affects contents
  98. //config: listings (-t) and preserving permissions when unpacking (-p).
  99. //config: +200 bytes.
  100. //config:
  101. //config:config FEATURE_TAR_NOPRESERVE_TIME
  102. //config: bool "Enable -m (do not preserve time) GNU option"
  103. //config: default y
  104. //config: depends on TAR
  105. //config:
  106. //config:config FEATURE_TAR_SELINUX
  107. //config: bool "Support extracting SELinux labels"
  108. //config: default n
  109. //config: depends on TAR && SELINUX
  110. //config: help
  111. //config: With this option busybox supports restoring SELinux labels
  112. //config: when extracting files from tar archives.
  113. //applet:IF_TAR(APPLET(tar, BB_DIR_BIN, BB_SUID_DROP))
  114. //kbuild:lib-$(CONFIG_TAR) += tar.o
  115. #include <fnmatch.h>
  116. #include "libbb.h"
  117. #include "common_bufsiz.h"
  118. #include "bb_archive.h"
  119. /* FIXME: Stop using this non-standard feature */
  120. #ifndef FNM_LEADING_DIR
  121. # define FNM_LEADING_DIR 0
  122. #endif
  123. #if 0
  124. # define DBG(fmt, ...) bb_error_msg("%s: " fmt, __func__, ## __VA_ARGS__)
  125. #else
  126. # define DBG(...) ((void)0)
  127. #endif
  128. #define DBG_OPTION_PARSING 0
  129. #define block_buf bb_common_bufsiz1
  130. #define INIT_G() do { setup_common_bufsiz(); } while (0)
  131. #if ENABLE_FEATURE_TAR_CREATE
  132. /*
  133. ** writeTarFile(), writeFileToTarball(), and writeTarHeader() are
  134. ** the only functions that deal with the HardLinkInfo structure.
  135. ** Even these functions use the xxxHardLinkInfo() functions.
  136. */
  137. typedef struct HardLinkInfo {
  138. struct HardLinkInfo *next; /* Next entry in list */
  139. dev_t dev; /* Device number */
  140. ino_t ino; /* Inode number */
  141. // short linkCount; /* (Hard) Link Count */
  142. char name[1]; /* Start of filename (must be last) */
  143. } HardLinkInfo;
  144. /* Some info to be carried along when creating a new tarball */
  145. typedef struct TarBallInfo {
  146. int tarFd; /* Open-for-write file descriptor
  147. * for the tarball */
  148. int verboseFlag; /* Whether to print extra stuff or not */
  149. # if ENABLE_FEATURE_TAR_FROM
  150. const llist_t *excludeList; /* List of files to not include */
  151. # endif
  152. HardLinkInfo *hlInfoHead; /* Hard Link Tracking Information */
  153. HardLinkInfo *hlInfo; /* Hard Link Info for the current file */
  154. //TODO: save only st_dev + st_ino
  155. struct stat tarFileStatBuf; /* Stat info for the tarball, letting
  156. * us know the inode and device that the
  157. * tarball lives, so we can avoid trying
  158. * to include the tarball into itself */
  159. } TarBallInfo;
  160. /* A nice enum with all the possible tar file content types */
  161. enum {
  162. REGTYPE = '0', /* regular file */
  163. REGTYPE0 = '\0', /* regular file (ancient bug compat) */
  164. LNKTYPE = '1', /* hard link */
  165. SYMTYPE = '2', /* symbolic link */
  166. CHRTYPE = '3', /* character special */
  167. BLKTYPE = '4', /* block special */
  168. DIRTYPE = '5', /* directory */
  169. FIFOTYPE = '6', /* FIFO special */
  170. CONTTYPE = '7', /* reserved */
  171. GNULONGLINK = 'K', /* GNU long (>100 chars) link name */
  172. GNULONGNAME = 'L', /* GNU long (>100 chars) file name */
  173. };
  174. /* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */
  175. static void addHardLinkInfo(HardLinkInfo **hlInfoHeadPtr,
  176. struct stat *statbuf,
  177. const char *fileName)
  178. {
  179. /* Note: hlInfoHeadPtr can never be NULL! */
  180. HardLinkInfo *hlInfo;
  181. hlInfo = xmalloc(sizeof(HardLinkInfo) + strlen(fileName));
  182. hlInfo->next = *hlInfoHeadPtr;
  183. *hlInfoHeadPtr = hlInfo;
  184. hlInfo->dev = statbuf->st_dev;
  185. hlInfo->ino = statbuf->st_ino;
  186. // hlInfo->linkCount = statbuf->st_nlink;
  187. strcpy(hlInfo->name, fileName);
  188. }
  189. static void freeHardLinkInfo(HardLinkInfo **hlInfoHeadPtr)
  190. {
  191. HardLinkInfo *hlInfo;
  192. HardLinkInfo *hlInfoNext;
  193. if (hlInfoHeadPtr) {
  194. hlInfo = *hlInfoHeadPtr;
  195. while (hlInfo) {
  196. hlInfoNext = hlInfo->next;
  197. free(hlInfo);
  198. hlInfo = hlInfoNext;
  199. }
  200. *hlInfoHeadPtr = NULL;
  201. }
  202. }
  203. /* Might be faster (and bigger) if the dev/ino were stored in numeric order ;) */
  204. static HardLinkInfo *findHardLinkInfo(HardLinkInfo *hlInfo, struct stat *statbuf)
  205. {
  206. while (hlInfo) {
  207. if (statbuf->st_ino == hlInfo->ino
  208. && statbuf->st_dev == hlInfo->dev
  209. ) {
  210. DBG("found hardlink:'%s'", hlInfo->name);
  211. break;
  212. }
  213. hlInfo = hlInfo->next;
  214. }
  215. return hlInfo;
  216. }
  217. /* Put an octal string into the specified buffer.
  218. * The number is zero padded and possibly null terminated.
  219. * Stores low-order bits only if whole value does not fit. */
  220. static void putOctal(char *cp, int len, off_t value)
  221. {
  222. char tempBuffer[sizeof(off_t)*3 + 1];
  223. char *tempString = tempBuffer;
  224. int width;
  225. width = sprintf(tempBuffer, "%0*"OFF_FMT"o", len, value);
  226. tempString += (width - len);
  227. /* If string has leading zeroes, we can drop one */
  228. /* and field will have trailing '\0' */
  229. /* (increases chances of compat with other tars) */
  230. if (tempString[0] == '0')
  231. tempString++;
  232. /* Copy the string to the field */
  233. memcpy(cp, tempString, len);
  234. }
  235. #define PUT_OCTAL(a, b) putOctal((a), sizeof(a), (b))
  236. static void chksum_and_xwrite(int fd, struct tar_header_t* hp)
  237. {
  238. /* POSIX says that checksum is done on unsigned bytes
  239. * (Sun and HP-UX gets it wrong... more details in
  240. * GNU tar source) */
  241. const unsigned char *cp;
  242. int chksum, size;
  243. strcpy(hp->magic, "ustar ");
  244. /* Calculate and store the checksum (i.e., the sum of all of the bytes of
  245. * the header). The checksum field must be filled with blanks for the
  246. * calculation. The checksum field is formatted differently from the
  247. * other fields: it has 6 digits, a null, then a space -- rather than
  248. * digits, followed by a null like the other fields... */
  249. memset(hp->chksum, ' ', sizeof(hp->chksum));
  250. cp = (const unsigned char *) hp;
  251. chksum = 0;
  252. size = sizeof(*hp);
  253. do { chksum += *cp++; } while (--size);
  254. putOctal(hp->chksum, sizeof(hp->chksum)-1, chksum);
  255. /* Now write the header out to disk */
  256. xwrite(fd, hp, sizeof(*hp));
  257. }
  258. # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
  259. static void writeLongname(int fd, int type, const char *name, int dir)
  260. {
  261. static const struct {
  262. char mode[8]; /* 100-107 */
  263. char uid[8]; /* 108-115 */
  264. char gid[8]; /* 116-123 */
  265. char size[12]; /* 124-135 */
  266. char mtime[12]; /* 136-147 */
  267. } prefilled = {
  268. "0000000",
  269. "0000000",
  270. "0000000",
  271. "00000000000",
  272. "00000000000",
  273. };
  274. struct tar_header_t header;
  275. int size;
  276. dir = !!dir; /* normalize: 0/1 */
  277. size = strlen(name) + 1 + dir; /* GNU tar uses strlen+1 */
  278. /* + dir: account for possible '/' */
  279. memset(&header, 0, sizeof(header));
  280. strcpy(header.name, "././@LongLink");
  281. memcpy(header.mode, prefilled.mode, sizeof(prefilled));
  282. PUT_OCTAL(header.size, size);
  283. header.typeflag = type;
  284. chksum_and_xwrite(fd, &header);
  285. /* Write filename[/] and pad the block. */
  286. /* dir=0: writes 'name<NUL>', pads */
  287. /* dir=1: writes 'name', writes '/<NUL>', pads */
  288. dir *= 2;
  289. xwrite(fd, name, size - dir);
  290. xwrite(fd, "/", dir);
  291. size = (-size) & (TAR_BLOCK_SIZE-1);
  292. memset(&header, 0, size);
  293. xwrite(fd, &header, size);
  294. }
  295. # endif
  296. /* Write out a tar header for the specified file/directory/whatever */
  297. static int writeTarHeader(struct TarBallInfo *tbInfo,
  298. const char *header_name, const char *fileName, struct stat *statbuf)
  299. {
  300. struct tar_header_t header;
  301. memset(&header, 0, sizeof(header));
  302. strncpy(header.name, header_name, sizeof(header.name));
  303. /* POSIX says to mask mode with 07777. */
  304. PUT_OCTAL(header.mode, statbuf->st_mode & 07777);
  305. PUT_OCTAL(header.uid, statbuf->st_uid);
  306. PUT_OCTAL(header.gid, statbuf->st_gid);
  307. memset(header.size, '0', sizeof(header.size)-1); /* Regular file size is handled later */
  308. /* users report that files with negative st_mtime cause trouble, so: */
  309. PUT_OCTAL(header.mtime, statbuf->st_mtime >= 0 ? statbuf->st_mtime : 0);
  310. /* Enter the user and group names */
  311. safe_strncpy(header.uname, get_cached_username(statbuf->st_uid), sizeof(header.uname));
  312. safe_strncpy(header.gname, get_cached_groupname(statbuf->st_gid), sizeof(header.gname));
  313. if (tbInfo->hlInfo) {
  314. /* This is a hard link */
  315. header.typeflag = LNKTYPE;
  316. strncpy(header.linkname, tbInfo->hlInfo->name,
  317. sizeof(header.linkname));
  318. # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
  319. /* Write out long linkname if needed */
  320. if (header.linkname[sizeof(header.linkname)-1])
  321. writeLongname(tbInfo->tarFd, GNULONGLINK,
  322. tbInfo->hlInfo->name, 0);
  323. # endif
  324. } else if (S_ISLNK(statbuf->st_mode)) {
  325. char *lpath = xmalloc_readlink_or_warn(fileName);
  326. if (!lpath)
  327. return FALSE;
  328. header.typeflag = SYMTYPE;
  329. strncpy(header.linkname, lpath, sizeof(header.linkname));
  330. # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
  331. /* Write out long linkname if needed */
  332. if (header.linkname[sizeof(header.linkname)-1])
  333. writeLongname(tbInfo->tarFd, GNULONGLINK, lpath, 0);
  334. # else
  335. /* If it is larger than 100 bytes, bail out */
  336. if (header.linkname[sizeof(header.linkname)-1]) {
  337. free(lpath);
  338. bb_error_msg("names longer than "NAME_SIZE_STR" chars not supported");
  339. return FALSE;
  340. }
  341. # endif
  342. free(lpath);
  343. } else if (S_ISDIR(statbuf->st_mode)) {
  344. header.typeflag = DIRTYPE;
  345. /* Append '/' only if there is a space for it */
  346. if (!header.name[sizeof(header.name)-1])
  347. header.name[strlen(header.name)] = '/';
  348. } else if (S_ISCHR(statbuf->st_mode)) {
  349. header.typeflag = CHRTYPE;
  350. PUT_OCTAL(header.devmajor, major(statbuf->st_rdev));
  351. PUT_OCTAL(header.devminor, minor(statbuf->st_rdev));
  352. } else if (S_ISBLK(statbuf->st_mode)) {
  353. header.typeflag = BLKTYPE;
  354. PUT_OCTAL(header.devmajor, major(statbuf->st_rdev));
  355. PUT_OCTAL(header.devminor, minor(statbuf->st_rdev));
  356. } else if (S_ISFIFO(statbuf->st_mode)) {
  357. header.typeflag = FIFOTYPE;
  358. } else if (S_ISREG(statbuf->st_mode)) {
  359. /* header.size field is 12 bytes long */
  360. /* Does octal-encoded size fit? */
  361. uoff_t filesize = statbuf->st_size;
  362. if (sizeof(filesize) <= 4
  363. || filesize <= (uoff_t)0777777777777LL
  364. ) {
  365. PUT_OCTAL(header.size, filesize);
  366. }
  367. /* Does base256-encoded size fit?
  368. * It always does unless off_t is wider than 64 bits.
  369. */
  370. else if (ENABLE_FEATURE_TAR_GNU_EXTENSIONS
  371. # if ULLONG_MAX > 0xffffffffffffffffLL /* 2^64-1 */
  372. && (filesize <= 0x3fffffffffffffffffffffffLL)
  373. # endif
  374. ) {
  375. /* GNU tar uses "base-256 encoding" for very large numbers.
  376. * Encoding is binary, with highest bit always set as a marker
  377. * and sign in next-highest bit:
  378. * 80 00 .. 00 - zero
  379. * bf ff .. ff - largest positive number
  380. * ff ff .. ff - minus 1
  381. * c0 00 .. 00 - smallest negative number
  382. */
  383. char *p8 = header.size + sizeof(header.size);
  384. do {
  385. *--p8 = (uint8_t)filesize;
  386. filesize >>= 8;
  387. } while (p8 != header.size);
  388. *p8 |= 0x80;
  389. } else {
  390. bb_error_msg_and_die("can't store file '%s' "
  391. "of size %"OFF_FMT"u, aborting",
  392. fileName, statbuf->st_size);
  393. }
  394. header.typeflag = REGTYPE;
  395. } else {
  396. bb_error_msg("%s: unknown file type", fileName);
  397. return FALSE;
  398. }
  399. # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
  400. /* Write out long name if needed */
  401. /* (we, like GNU tar, output long linkname *before* long name) */
  402. if (header.name[sizeof(header.name)-1])
  403. writeLongname(tbInfo->tarFd, GNULONGNAME,
  404. header_name, S_ISDIR(statbuf->st_mode));
  405. # endif
  406. /* Now write the header out to disk */
  407. chksum_and_xwrite(tbInfo->tarFd, &header);
  408. /* Now do the verbose thing (or not) */
  409. if (tbInfo->verboseFlag) {
  410. FILE *vbFd = stdout;
  411. /* If archive goes to stdout, verbose goes to stderr */
  412. if (tbInfo->tarFd == STDOUT_FILENO)
  413. vbFd = stderr;
  414. /* GNU "tar cvvf" prints "extended" listing a-la "ls -l" */
  415. /* We don't have such excesses here: for us "v" == "vv" */
  416. /* '/' is probably a GNUism */
  417. fprintf(vbFd, "%s%s\n", header_name,
  418. S_ISDIR(statbuf->st_mode) ? "/" : "");
  419. }
  420. return TRUE;
  421. }
  422. # if ENABLE_FEATURE_TAR_FROM
  423. static int exclude_file(const llist_t *excluded_files, const char *file)
  424. {
  425. while (excluded_files) {
  426. if (excluded_files->data[0] == '/') {
  427. if (fnmatch(excluded_files->data, file,
  428. FNM_PATHNAME | FNM_LEADING_DIR) == 0)
  429. return 1;
  430. } else {
  431. const char *p;
  432. for (p = file; p[0] != '\0'; p++) {
  433. if ((p == file || p[-1] == '/')
  434. && p[0] != '/'
  435. && fnmatch(excluded_files->data, p,
  436. FNM_PATHNAME | FNM_LEADING_DIR) == 0
  437. ) {
  438. return 1;
  439. }
  440. }
  441. }
  442. excluded_files = excluded_files->link;
  443. }
  444. return 0;
  445. }
  446. # else
  447. # define exclude_file(excluded_files, file) 0
  448. # endif
  449. static int FAST_FUNC writeFileToTarball(const char *fileName, struct stat *statbuf,
  450. void *userData, int depth UNUSED_PARAM)
  451. {
  452. struct TarBallInfo *tbInfo = (struct TarBallInfo *) userData;
  453. const char *header_name;
  454. int inputFileFd = -1;
  455. DBG("writeFileToTarball('%s')", fileName);
  456. /* Strip leading '/' and such (must be before memorizing hardlink's name) */
  457. header_name = strip_unsafe_prefix(fileName);
  458. if (header_name[0] == '\0')
  459. return TRUE;
  460. /* It is against the rules to archive a socket */
  461. if (S_ISSOCK(statbuf->st_mode)) {
  462. bb_error_msg("%s: socket ignored", fileName);
  463. return TRUE;
  464. }
  465. /*
  466. * Check to see if we are dealing with a hard link.
  467. * If so -
  468. * Treat the first occurrence of a given dev/inode as a file while
  469. * treating any additional occurrences as hard links. This is done
  470. * by adding the file information to the HardLinkInfo linked list.
  471. */
  472. tbInfo->hlInfo = NULL;
  473. if (!S_ISDIR(statbuf->st_mode) && statbuf->st_nlink > 1) {
  474. DBG("'%s': st_nlink > 1", header_name);
  475. tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf);
  476. if (tbInfo->hlInfo == NULL) {
  477. DBG("'%s': addHardLinkInfo", header_name);
  478. addHardLinkInfo(&tbInfo->hlInfoHead, statbuf, header_name);
  479. }
  480. }
  481. /* It is a bad idea to store the archive we are in the process of creating,
  482. * so check the device and inode to be sure that this particular file isn't
  483. * the new tarball */
  484. if (tbInfo->tarFileStatBuf.st_dev == statbuf->st_dev
  485. && tbInfo->tarFileStatBuf.st_ino == statbuf->st_ino
  486. ) {
  487. bb_error_msg("%s: file is the archive; skipping", fileName);
  488. return TRUE;
  489. }
  490. if (exclude_file(tbInfo->excludeList, header_name))
  491. return SKIP;
  492. # if !ENABLE_FEATURE_TAR_GNU_EXTENSIONS
  493. if (strlen(header_name) >= NAME_SIZE) {
  494. bb_error_msg("names longer than "NAME_SIZE_STR" chars not supported");
  495. return TRUE;
  496. }
  497. # endif
  498. /* Is this a regular file? */
  499. if (tbInfo->hlInfo == NULL && S_ISREG(statbuf->st_mode)) {
  500. /* open the file we want to archive, and make sure all is well */
  501. inputFileFd = open_or_warn(fileName, O_RDONLY);
  502. if (inputFileFd < 0) {
  503. return FALSE;
  504. }
  505. }
  506. /* Add an entry to the tarball */
  507. if (writeTarHeader(tbInfo, header_name, fileName, statbuf) == FALSE) {
  508. return FALSE;
  509. }
  510. /* If it was a regular file, write out the body */
  511. if (inputFileFd >= 0) {
  512. size_t readSize;
  513. /* Write the file to the archive. */
  514. /* We record size into header first, */
  515. /* and then write out file. If file shrinks in between, */
  516. /* tar will be corrupted. So we don't allow for that. */
  517. /* NB: GNU tar 1.16 warns and pads with zeroes */
  518. /* or even seeks back and updates header */
  519. bb_copyfd_exact_size(inputFileFd, tbInfo->tarFd, statbuf->st_size);
  520. ////off_t readSize;
  521. ////readSize = bb_copyfd_size(inputFileFd, tbInfo->tarFd, statbuf->st_size);
  522. ////if (readSize != statbuf->st_size && readSize >= 0) {
  523. //// bb_error_msg_and_die("short read from %s, aborting", fileName);
  524. ////}
  525. /* Check that file did not grow in between? */
  526. /* if (safe_read(inputFileFd, 1) == 1) warn but continue? */
  527. close(inputFileFd);
  528. /* Pad the file up to the tar block size */
  529. /* (a few tricks here in the name of code size) */
  530. readSize = (-(int)statbuf->st_size) & (TAR_BLOCK_SIZE-1);
  531. memset(block_buf, 0, readSize);
  532. xwrite(tbInfo->tarFd, block_buf, readSize);
  533. }
  534. return TRUE;
  535. }
  536. # if SEAMLESS_COMPRESSION
  537. /* Don't inline: vfork scares gcc and pessimizes code */
  538. static void NOINLINE vfork_compressor(int tar_fd, const char *gzip)
  539. {
  540. // On Linux, vfork never unpauses parent early, although standard
  541. // allows for that. Do we want to waste bytes checking for it?
  542. # define WAIT_FOR_CHILD 0
  543. volatile int vfork_exec_errno = 0;
  544. struct fd_pair data;
  545. # if WAIT_FOR_CHILD
  546. struct fd_pair status;
  547. xpiped_pair(status);
  548. # endif
  549. xpiped_pair(data);
  550. signal(SIGPIPE, SIG_IGN); /* we only want EPIPE on errors */
  551. if (xvfork() == 0) {
  552. /* child */
  553. int tfd;
  554. /* NB: close _first_, then move fds! */
  555. close(data.wr);
  556. # if WAIT_FOR_CHILD
  557. close(status.rd);
  558. /* status.wr will close only on exec -
  559. * parent waits for this close to happen */
  560. fcntl(status.wr, F_SETFD, FD_CLOEXEC);
  561. # endif
  562. /* copy it: parent's tar_fd variable must not change */
  563. tfd = tar_fd;
  564. if (tfd == 0) {
  565. /* Output tar fd may be zero.
  566. * xmove_fd(data.rd, 0) would destroy it.
  567. * Reproducer:
  568. * exec 0>&-
  569. * exec 1>&-
  570. * tar czf Z.tar.gz FILE
  571. * Swapping move_fd's order wouldn't work:
  572. * data.rd is 1 and _it_ would be destroyed.
  573. */
  574. tfd = dup(tfd);
  575. }
  576. xmove_fd(data.rd, 0);
  577. xmove_fd(tfd, 1);
  578. /* exec gzip/bzip2 program/applet */
  579. BB_EXECLP(gzip, gzip, "-f", (char *)0);
  580. vfork_exec_errno = errno;
  581. _exit(EXIT_FAILURE);
  582. }
  583. /* parent */
  584. xmove_fd(data.wr, tar_fd);
  585. close(data.rd);
  586. # if WAIT_FOR_CHILD
  587. close(status.wr);
  588. while (1) {
  589. /* Wait until child execs (or fails to) */
  590. char buf;
  591. int n = full_read(status.rd, &buf, 1);
  592. if (n < 0 /* && errno == EAGAIN */)
  593. continue; /* try it again */
  594. }
  595. close(status.rd);
  596. # endif
  597. if (vfork_exec_errno) {
  598. errno = vfork_exec_errno;
  599. bb_perror_msg_and_die("can't execute '%s'", gzip);
  600. }
  601. }
  602. # endif /* SEAMLESS_COMPRESSION */
  603. # if !SEAMLESS_COMPRESSION
  604. /* Do not pass gzip flag to writeTarFile() */
  605. #define writeTarFile(tbInfo, recurseFlags, filelist, gzip) \
  606. writeTarFile(tbInfo, recurseFlags, filelist)
  607. # endif
  608. /* gcc 4.2.1 inlines it, making code bigger */
  609. static NOINLINE int writeTarFile(
  610. struct TarBallInfo *tbInfo,
  611. int recurseFlags,
  612. const llist_t *filelist,
  613. const char *gzip)
  614. {
  615. int errorFlag = FALSE;
  616. /*tbInfo->hlInfoHead = NULL; - already is */
  617. /* Store the stat info for the tarball's file, so
  618. * can avoid including the tarball into itself.... */
  619. xfstat(tbInfo->tarFd, &tbInfo->tarFileStatBuf, "can't stat tar file");
  620. # if SEAMLESS_COMPRESSION
  621. if (gzip)
  622. vfork_compressor(tbInfo->tarFd, gzip);
  623. # endif
  624. /* Read the directory/files and iterate over them one at a time */
  625. while (filelist) {
  626. if (!recursive_action(filelist->data, recurseFlags,
  627. writeFileToTarball, writeFileToTarball, tbInfo, 0)
  628. ) {
  629. errorFlag = TRUE;
  630. }
  631. filelist = filelist->link;
  632. }
  633. /* Write two empty blocks to the end of the archive */
  634. memset(block_buf, 0, 2*TAR_BLOCK_SIZE);
  635. xwrite(tbInfo->tarFd, block_buf, 2*TAR_BLOCK_SIZE);
  636. /* To be pedantically correct, we would check if the tarball
  637. * is smaller than 20 tar blocks, and pad it if it was smaller,
  638. * but that isn't necessary for GNU tar interoperability, and
  639. * so is considered a waste of space */
  640. /* Close so the child process (if any) will exit */
  641. close(tbInfo->tarFd);
  642. /* Hang up the tools, close up shop, head home */
  643. if (ENABLE_FEATURE_CLEAN_UP)
  644. freeHardLinkInfo(&tbInfo->hlInfoHead);
  645. if (errorFlag)
  646. bb_error_msg("error exit delayed from previous errors");
  647. # if SEAMLESS_COMPRESSION
  648. if (gzip) {
  649. int status;
  650. if (safe_waitpid(-1, &status, 0) == -1)
  651. bb_perror_msg("waitpid");
  652. else if (!WIFEXITED(status) || WEXITSTATUS(status))
  653. /* gzip was killed or has exited with nonzero! */
  654. errorFlag = TRUE;
  655. }
  656. # endif
  657. return errorFlag;
  658. }
  659. #endif /* FEATURE_TAR_CREATE */
  660. #if ENABLE_FEATURE_TAR_FROM
  661. static llist_t *append_file_list_to_list(llist_t *list)
  662. {
  663. llist_t *newlist = NULL;
  664. while (list) {
  665. FILE *src_stream;
  666. char *line;
  667. src_stream = xfopen_stdin(llist_pop(&list));
  668. while ((line = xmalloc_fgetline(src_stream)) != NULL) {
  669. /* kill trailing '/' unless the string is just "/" */
  670. char *cp = last_char_is(line, '/');
  671. if (cp > line)
  672. *cp = '\0';
  673. llist_add_to_end(&newlist, line);
  674. }
  675. fclose(src_stream);
  676. }
  677. return newlist;
  678. }
  679. #endif
  680. //usage:#define tar_trivial_usage
  681. //usage: IF_FEATURE_TAR_CREATE("c|") "x|t [-"
  682. //usage: IF_FEATURE_SEAMLESS_Z("Z")
  683. //usage: IF_FEATURE_SEAMLESS_GZ("z")
  684. //usage: IF_FEATURE_SEAMLESS_XZ("J")
  685. //usage: IF_FEATURE_SEAMLESS_BZ2("j")
  686. //usage: IF_FEATURE_SEAMLESS_LZMA("a")
  687. //usage: IF_FEATURE_TAR_CREATE("h")
  688. //usage: IF_FEATURE_TAR_NOPRESERVE_TIME("m")
  689. //usage: "vokO] "
  690. //usage: "[-f TARFILE] [-C DIR] "
  691. //usage: IF_FEATURE_TAR_FROM("[-T FILE] [-X FILE] "IF_FEATURE_TAR_LONG_OPTIONS("[--exclude PATTERN]... "))
  692. //usage: "[FILE]..."
  693. //usage:#define tar_full_usage "\n\n"
  694. //usage: IF_FEATURE_TAR_CREATE("Create, extract, ")
  695. //usage: IF_NOT_FEATURE_TAR_CREATE("Extract ")
  696. //usage: "or list files from a tar file"
  697. //usage: "\n"
  698. //usage: IF_FEATURE_TAR_CREATE(
  699. //usage: "\n c Create"
  700. //usage: )
  701. //usage: "\n x Extract"
  702. //usage: "\n t List"
  703. //usage: "\n -f FILE Name of TARFILE ('-' for stdin/out)"
  704. //usage: "\n -C DIR Change to DIR before operation"
  705. //usage: "\n -v Verbose"
  706. //usage: "\n -O Extract to stdout"
  707. //usage: IF_FEATURE_TAR_NOPRESERVE_TIME(
  708. //usage: "\n -m Don't restore mtime"
  709. //usage: )
  710. //usage: "\n -o Don't restore user:group"
  711. ///////:-p - accepted but ignored, restores mode (aliases in GNU tar: --preserve-permissions, --same-permissions)
  712. //usage: "\n -k Don't replace existing files"
  713. //usage: IF_FEATURE_SEAMLESS_Z(
  714. //usage: "\n -Z (De)compress using compress"
  715. //usage: )
  716. //usage: IF_FEATURE_SEAMLESS_GZ(
  717. //usage: "\n -z (De)compress using gzip"
  718. //usage: )
  719. //usage: IF_FEATURE_SEAMLESS_XZ(
  720. //usage: "\n -J (De)compress using xz"
  721. //usage: )
  722. //usage: IF_FEATURE_SEAMLESS_BZ2(
  723. //usage: "\n -j (De)compress using bzip2"
  724. //usage: )
  725. //usage: IF_FEATURE_SEAMLESS_LZMA(
  726. //usage: "\n -a (De)compress using lzma"
  727. //usage: )
  728. //usage: IF_FEATURE_TAR_CREATE(
  729. //usage: "\n -h Follow symlinks"
  730. //usage: )
  731. //usage: IF_FEATURE_TAR_FROM(
  732. //usage: "\n -T FILE File with names to include"
  733. //usage: "\n -X FILE File with glob patterns to exclude"
  734. //usage: IF_FEATURE_TAR_LONG_OPTIONS(
  735. //usage: "\n --exclude PATTERN Glob pattern to exclude"
  736. //usage: )
  737. //usage: )
  738. //usage:
  739. //usage:#define tar_example_usage
  740. //usage: "$ zcat /tmp/tarball.tar.gz | tar -xf -\n"
  741. //usage: "$ tar -cf /tmp/tarball.tar /usr/local\n"
  742. // Supported but aren't in --help:
  743. // no-recursion
  744. // numeric-owner
  745. // no-same-permissions
  746. // overwrite
  747. //IF_FEATURE_TAR_TO_COMMAND(
  748. // to-command
  749. //)
  750. enum {
  751. OPTBIT_KEEP_OLD = 8,
  752. IF_FEATURE_TAR_CREATE( OPTBIT_CREATE ,)
  753. IF_FEATURE_TAR_CREATE( OPTBIT_DEREFERENCE ,)
  754. IF_FEATURE_SEAMLESS_BZ2( OPTBIT_BZIP2 ,)
  755. IF_FEATURE_SEAMLESS_LZMA(OPTBIT_LZMA ,)
  756. IF_FEATURE_TAR_FROM( OPTBIT_INCLUDE_FROM,)
  757. IF_FEATURE_TAR_FROM( OPTBIT_EXCLUDE_FROM,)
  758. IF_FEATURE_SEAMLESS_GZ( OPTBIT_GZIP ,)
  759. IF_FEATURE_SEAMLESS_XZ( OPTBIT_XZ ,) // 16th bit
  760. IF_FEATURE_SEAMLESS_Z( OPTBIT_COMPRESS ,)
  761. IF_FEATURE_TAR_NOPRESERVE_TIME(OPTBIT_NOPRESERVE_TIME,)
  762. #if ENABLE_FEATURE_TAR_LONG_OPTIONS
  763. OPTBIT_STRIP_COMPONENTS,
  764. OPTBIT_NORECURSION,
  765. IF_FEATURE_TAR_TO_COMMAND(OPTBIT_2COMMAND ,)
  766. OPTBIT_NUMERIC_OWNER,
  767. OPTBIT_NOPRESERVE_PERM,
  768. OPTBIT_OVERWRITE,
  769. #endif
  770. OPT_TEST = 1 << 0, // t
  771. OPT_EXTRACT = 1 << 1, // x
  772. OPT_BASEDIR = 1 << 2, // C
  773. OPT_TARNAME = 1 << 3, // f
  774. OPT_2STDOUT = 1 << 4, // O
  775. OPT_NOPRESERVE_OWNER = 1 << 5, // o == no-same-owner
  776. OPT_P = 1 << 6, // p
  777. OPT_VERBOSE = 1 << 7, // v
  778. OPT_KEEP_OLD = 1 << 8, // k
  779. OPT_CREATE = IF_FEATURE_TAR_CREATE( (1 << OPTBIT_CREATE )) + 0, // c
  780. OPT_DEREFERENCE = IF_FEATURE_TAR_CREATE( (1 << OPTBIT_DEREFERENCE )) + 0, // h
  781. OPT_BZIP2 = IF_FEATURE_SEAMLESS_BZ2( (1 << OPTBIT_BZIP2 )) + 0, // j
  782. OPT_LZMA = IF_FEATURE_SEAMLESS_LZMA((1 << OPTBIT_LZMA )) + 0, // a
  783. OPT_INCLUDE_FROM = IF_FEATURE_TAR_FROM( (1 << OPTBIT_INCLUDE_FROM)) + 0, // T
  784. OPT_EXCLUDE_FROM = IF_FEATURE_TAR_FROM( (1 << OPTBIT_EXCLUDE_FROM)) + 0, // X
  785. OPT_GZIP = IF_FEATURE_SEAMLESS_GZ( (1 << OPTBIT_GZIP )) + 0, // z
  786. OPT_XZ = IF_FEATURE_SEAMLESS_XZ( (1 << OPTBIT_XZ )) + 0, // J
  787. OPT_COMPRESS = IF_FEATURE_SEAMLESS_Z( (1 << OPTBIT_COMPRESS )) + 0, // Z
  788. OPT_NOPRESERVE_TIME = IF_FEATURE_TAR_NOPRESERVE_TIME((1 << OPTBIT_NOPRESERVE_TIME)) + 0, // m
  789. OPT_STRIP_COMPONENTS = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_STRIP_COMPONENTS)) + 0, // strip-components
  790. OPT_NORECURSION = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NORECURSION )) + 0, // no-recursion
  791. OPT_2COMMAND = IF_FEATURE_TAR_TO_COMMAND( (1 << OPTBIT_2COMMAND )) + 0, // to-command
  792. OPT_NUMERIC_OWNER = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NUMERIC_OWNER )) + 0, // numeric-owner
  793. OPT_NOPRESERVE_PERM = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NOPRESERVE_PERM)) + 0, // no-same-permissions
  794. OPT_OVERWRITE = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_OVERWRITE )) + 0, // overwrite
  795. OPT_ANY_COMPRESS = (OPT_BZIP2 | OPT_LZMA | OPT_GZIP | OPT_XZ | OPT_COMPRESS),
  796. };
  797. #if ENABLE_FEATURE_TAR_LONG_OPTIONS
  798. static const char tar_longopts[] ALIGN1 =
  799. "list\0" No_argument "t"
  800. "extract\0" No_argument "x"
  801. "directory\0" Required_argument "C"
  802. "file\0" Required_argument "f"
  803. "to-stdout\0" No_argument "O"
  804. /* do not restore owner */
  805. /* Note: GNU tar handles 'o' as no-same-owner only on extract,
  806. * on create, 'o' is --old-archive. We do not support --old-archive. */
  807. "no-same-owner\0" No_argument "o"
  808. "same-permissions\0" No_argument "p"
  809. "verbose\0" No_argument "v"
  810. "keep-old\0" No_argument "k"
  811. # if ENABLE_FEATURE_TAR_CREATE
  812. "create\0" No_argument "c"
  813. "dereference\0" No_argument "h"
  814. # endif
  815. # if ENABLE_FEATURE_SEAMLESS_BZ2
  816. "bzip2\0" No_argument "j"
  817. # endif
  818. # if ENABLE_FEATURE_SEAMLESS_LZMA
  819. "lzma\0" No_argument "a"
  820. # endif
  821. # if ENABLE_FEATURE_TAR_FROM
  822. "files-from\0" Required_argument "T"
  823. "exclude-from\0" Required_argument "X"
  824. # endif
  825. # if ENABLE_FEATURE_SEAMLESS_GZ
  826. "gzip\0" No_argument "z"
  827. # endif
  828. # if ENABLE_FEATURE_SEAMLESS_XZ
  829. "xz\0" No_argument "J"
  830. # endif
  831. # if ENABLE_FEATURE_SEAMLESS_Z
  832. "compress\0" No_argument "Z"
  833. # endif
  834. # if ENABLE_FEATURE_TAR_NOPRESERVE_TIME
  835. "touch\0" No_argument "m"
  836. # endif
  837. "strip-components\0" Required_argument "\xf9"
  838. "no-recursion\0" No_argument "\xfa"
  839. # if ENABLE_FEATURE_TAR_TO_COMMAND
  840. "to-command\0" Required_argument "\xfb"
  841. # endif
  842. /* use numeric uid/gid from tar header, not textual */
  843. "numeric-owner\0" No_argument "\xfc"
  844. /* do not restore mode */
  845. "no-same-permissions\0" No_argument "\xfd"
  846. /* on unpack, open with O_TRUNC and !O_EXCL */
  847. "overwrite\0" No_argument "\xfe"
  848. /* --exclude takes next bit position in option mask, */
  849. /* therefore we have to put it _after_ --no-same-permissions */
  850. # if ENABLE_FEATURE_TAR_FROM
  851. "exclude\0" Required_argument "\xff"
  852. # endif
  853. ;
  854. # define GETOPT32 getopt32long
  855. # define LONGOPTS ,tar_longopts
  856. #else
  857. # define GETOPT32 getopt32
  858. # define LONGOPTS
  859. #endif
  860. int tar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  861. int tar_main(int argc UNUSED_PARAM, char **argv)
  862. {
  863. archive_handle_t *tar_handle;
  864. char *base_dir = NULL;
  865. const char *tar_filename = "-";
  866. unsigned opt;
  867. int verboseFlag = 0;
  868. #if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
  869. llist_t *excludes = NULL;
  870. #endif
  871. INIT_G();
  872. /* Initialise default values */
  873. tar_handle = init_handle();
  874. tar_handle->ah_flags = ARCHIVE_CREATE_LEADING_DIRS
  875. | ARCHIVE_RESTORE_DATE
  876. | ARCHIVE_UNLINK_OLD;
  877. /* Apparently only root's tar preserves perms (see bug 3844) */
  878. if (getuid() != 0)
  879. tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_PERM;
  880. #if ENABLE_DESKTOP
  881. /* Lie to buildroot when it starts asking stupid questions. */
  882. if (argv[1] && strcmp(argv[1], "--version") == 0) {
  883. // Output of 'tar --version' examples:
  884. // tar (GNU tar) 1.15.1
  885. // tar (GNU tar) 1.25
  886. // bsdtar 2.8.3 - libarchive 2.8.3
  887. puts("tar (busybox) " BB_VER);
  888. return 0;
  889. }
  890. #endif
  891. if (argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') {
  892. /* Compat:
  893. * 1st argument without dash handles options with parameters
  894. * differently from dashed one: it takes *next argv[i]*
  895. * as parameter even if there are more chars in 1st argument:
  896. * "tar fx TARFILE" - "x" is not taken as f's param
  897. * but is interpreted as -x option
  898. * "tar -xf TARFILE" - dashed equivalent of the above
  899. * "tar -fx ..." - "x" is taken as f's param
  900. * getopt32 wouldn't handle 1st command correctly.
  901. * Unfortunately, people do use such commands.
  902. * We massage argv[1] to work around it by moving 'f'
  903. * to the end of the string.
  904. * More contrived "tar fCx TARFILE DIR" still fails,
  905. * but such commands are much less likely to be used.
  906. */
  907. char *f = strchr(argv[1], 'f');
  908. if (f) {
  909. while (f[1] != '\0') {
  910. *f = f[1];
  911. f++;
  912. }
  913. *f = 'f';
  914. }
  915. /* Prepend '-' to the first argument */
  916. argv[1] = xasprintf("-%s", argv[1]);
  917. }
  918. opt = GETOPT32(argv, "^"
  919. "txC:f:Oopvk"
  920. IF_FEATURE_TAR_CREATE( "ch" )
  921. IF_FEATURE_SEAMLESS_BZ2( "j" )
  922. IF_FEATURE_SEAMLESS_LZMA("a" )
  923. IF_FEATURE_TAR_FROM( "T:*X:*")
  924. IF_FEATURE_SEAMLESS_GZ( "z" )
  925. IF_FEATURE_SEAMLESS_XZ( "J" )
  926. IF_FEATURE_SEAMLESS_Z( "Z" )
  927. IF_FEATURE_TAR_NOPRESERVE_TIME("m")
  928. IF_FEATURE_TAR_LONG_OPTIONS("\xf9:") // --strip-components
  929. "\0"
  930. "tt:vv:" // count -t,-v
  931. #if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
  932. "\xff::" // --exclude=PATTERN is a list
  933. #endif
  934. IF_FEATURE_TAR_CREATE("c:") "t:x:" // at least one of these is reqd
  935. IF_FEATURE_TAR_CREATE("c--tx:t--cx:x--ct") // mutually exclusive
  936. IF_NOT_FEATURE_TAR_CREATE("t--x:x--t") // mutually exclusive
  937. #if ENABLE_FEATURE_TAR_LONG_OPTIONS
  938. ":\xf9+" // --strip-components=NUM
  939. #endif
  940. LONGOPTS
  941. , &base_dir // -C dir
  942. , &tar_filename // -f filename
  943. IF_FEATURE_TAR_FROM(, &(tar_handle->accept)) // T
  944. IF_FEATURE_TAR_FROM(, &(tar_handle->reject)) // X
  945. #if ENABLE_FEATURE_TAR_LONG_OPTIONS
  946. , &tar_handle->tar__strip_components // --strip-components
  947. #endif
  948. IF_FEATURE_TAR_TO_COMMAND(, &(tar_handle->tar__to_command)) // --to-command
  949. #if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
  950. , &excludes // --exclude
  951. #endif
  952. , &verboseFlag // combined count for -t and -v
  953. , &verboseFlag // combined count for -t and -v
  954. );
  955. #if DBG_OPTION_PARSING
  956. bb_error_msg("opt: 0x%08x", opt);
  957. # define showopt(o) bb_error_msg("opt & %s(%x): %x", #o, o, opt & o);
  958. showopt(OPT_TEST );
  959. showopt(OPT_EXTRACT );
  960. showopt(OPT_BASEDIR );
  961. showopt(OPT_TARNAME );
  962. showopt(OPT_2STDOUT );
  963. showopt(OPT_NOPRESERVE_OWNER);
  964. showopt(OPT_P );
  965. showopt(OPT_VERBOSE );
  966. showopt(OPT_KEEP_OLD );
  967. showopt(OPT_CREATE );
  968. showopt(OPT_DEREFERENCE );
  969. showopt(OPT_BZIP2 );
  970. showopt(OPT_LZMA );
  971. showopt(OPT_INCLUDE_FROM );
  972. showopt(OPT_EXCLUDE_FROM );
  973. showopt(OPT_GZIP );
  974. showopt(OPT_XZ );
  975. showopt(OPT_COMPRESS );
  976. showopt(OPT_NOPRESERVE_TIME );
  977. showopt(OPT_STRIP_COMPONENTS);
  978. showopt(OPT_NORECURSION );
  979. showopt(OPT_2COMMAND );
  980. showopt(OPT_NUMERIC_OWNER );
  981. showopt(OPT_NOPRESERVE_PERM );
  982. showopt(OPT_OVERWRITE );
  983. showopt(OPT_ANY_COMPRESS );
  984. bb_error_msg("base_dir:'%s'", base_dir);
  985. bb_error_msg("tar_filename:'%s'", tar_filename);
  986. bb_error_msg("verboseFlag:%d", verboseFlag);
  987. bb_error_msg("tar_handle->tar__to_command:'%s'", tar_handle->tar__to_command);
  988. bb_error_msg("tar_handle->tar__strip_components:%u", tar_handle->tar__strip_components);
  989. return 0;
  990. # undef showopt
  991. #endif
  992. argv += optind;
  993. if (verboseFlag)
  994. tar_handle->action_header = header_verbose_list;
  995. if (verboseFlag == 1)
  996. tar_handle->action_header = header_list;
  997. if (opt & OPT_EXTRACT)
  998. tar_handle->action_data = data_extract_all;
  999. if (opt & OPT_2STDOUT)
  1000. tar_handle->action_data = data_extract_to_stdout;
  1001. if (opt & OPT_2COMMAND) {
  1002. putenv((char*)"TAR_FILETYPE=f");
  1003. signal(SIGPIPE, SIG_IGN);
  1004. tar_handle->action_data = data_extract_to_command;
  1005. IF_FEATURE_TAR_TO_COMMAND(tar_handle->tar__to_command_shell = xstrdup(get_shell_name());)
  1006. }
  1007. if (opt & OPT_KEEP_OLD)
  1008. tar_handle->ah_flags &= ~ARCHIVE_UNLINK_OLD;
  1009. if (opt & OPT_NUMERIC_OWNER)
  1010. tar_handle->ah_flags |= ARCHIVE_NUMERIC_OWNER;
  1011. if (opt & OPT_NOPRESERVE_OWNER)
  1012. tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_OWNER;
  1013. if (opt & OPT_NOPRESERVE_PERM)
  1014. tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_PERM;
  1015. if (opt & OPT_OVERWRITE) {
  1016. tar_handle->ah_flags &= ~ARCHIVE_UNLINK_OLD;
  1017. tar_handle->ah_flags |= ARCHIVE_O_TRUNC;
  1018. }
  1019. if (opt & OPT_NOPRESERVE_TIME)
  1020. tar_handle->ah_flags &= ~ARCHIVE_RESTORE_DATE;
  1021. #if ENABLE_FEATURE_TAR_FROM
  1022. tar_handle->reject = append_file_list_to_list(tar_handle->reject);
  1023. # if ENABLE_FEATURE_TAR_LONG_OPTIONS
  1024. /* Append excludes to reject */
  1025. while (excludes) {
  1026. llist_t *next = excludes->link;
  1027. excludes->link = tar_handle->reject;
  1028. tar_handle->reject = excludes;
  1029. excludes = next;
  1030. }
  1031. # endif
  1032. tar_handle->accept = append_file_list_to_list(tar_handle->accept);
  1033. #endif
  1034. /* Setup an array of filenames to work with */
  1035. /* TODO: This is the same as in ar, make a separate function? */
  1036. while (*argv) {
  1037. /* kill trailing '/' unless the string is just "/" */
  1038. char *cp = last_char_is(*argv, '/');
  1039. if (cp > *argv)
  1040. *cp = '\0';
  1041. llist_add_to_end(&tar_handle->accept, *argv);
  1042. argv++;
  1043. }
  1044. if (tar_handle->accept || tar_handle->reject)
  1045. tar_handle->filter = filter_accept_reject_list;
  1046. /* Open the tar file */
  1047. {
  1048. int tar_fd = STDIN_FILENO;
  1049. int flags = O_RDONLY;
  1050. if (opt & OPT_CREATE) {
  1051. /* Make sure there is at least one file to tar up */
  1052. if (tar_handle->accept == NULL)
  1053. bb_error_msg_and_die("empty archive");
  1054. tar_fd = STDOUT_FILENO;
  1055. /* Mimicking GNU tar 1.15.1: */
  1056. flags = O_WRONLY | O_CREAT | O_TRUNC;
  1057. }
  1058. if (LONE_DASH(tar_filename)) {
  1059. tar_handle->src_fd = tar_fd;
  1060. tar_handle->seek = seek_by_read;
  1061. } else
  1062. if (ENABLE_FEATURE_TAR_AUTODETECT
  1063. && flags == O_RDONLY
  1064. && !(opt & OPT_ANY_COMPRESS)
  1065. ) {
  1066. tar_handle->src_fd = open_zipped(tar_filename, /*fail_if_not_compressed:*/ 0);
  1067. if (tar_handle->src_fd < 0)
  1068. bb_perror_msg_and_die("can't open '%s'", tar_filename);
  1069. } else {
  1070. tar_handle->src_fd = xopen(tar_filename, flags);
  1071. }
  1072. }
  1073. if (base_dir)
  1074. xchdir(base_dir);
  1075. #if ENABLE_FEATURE_TAR_CREATE
  1076. /* Create an archive */
  1077. if (opt & OPT_CREATE) {
  1078. struct TarBallInfo *tbInfo;
  1079. # if SEAMLESS_COMPRESSION
  1080. const char *zipMode = NULL;
  1081. if (opt & OPT_COMPRESS)
  1082. zipMode = "compress";
  1083. if (opt & OPT_GZIP)
  1084. zipMode = "gzip";
  1085. if (opt & OPT_BZIP2)
  1086. zipMode = "bzip2";
  1087. if (opt & OPT_LZMA)
  1088. zipMode = "lzma";
  1089. if (opt & OPT_XZ)
  1090. zipMode = "xz";
  1091. # endif
  1092. tbInfo = xzalloc(sizeof(*tbInfo));
  1093. tbInfo->tarFd = tar_handle->src_fd;
  1094. tbInfo->verboseFlag = verboseFlag;
  1095. # if ENABLE_FEATURE_TAR_FROM
  1096. tbInfo->excludeList = tar_handle->reject;
  1097. # endif
  1098. /* NB: writeTarFile() closes tar_handle->src_fd */
  1099. return writeTarFile(tbInfo,
  1100. (opt & OPT_DEREFERENCE ? ACTION_FOLLOWLINKS : 0)
  1101. | (opt & OPT_NORECURSION ? 0 : ACTION_RECURSE),
  1102. tar_handle->accept,
  1103. zipMode);
  1104. }
  1105. #endif
  1106. if (opt & OPT_ANY_COMPRESS) {
  1107. USE_FOR_MMU(IF_DESKTOP(long long) int FAST_FUNC (*xformer)(transformer_state_t *xstate);)
  1108. USE_FOR_NOMMU(const char *xformer_prog;)
  1109. if (opt & OPT_COMPRESS) {
  1110. USE_FOR_MMU(IF_FEATURE_SEAMLESS_Z(xformer = unpack_Z_stream;))
  1111. USE_FOR_NOMMU(xformer_prog = "uncompress";)
  1112. }
  1113. if (opt & OPT_GZIP) {
  1114. USE_FOR_MMU(IF_FEATURE_SEAMLESS_GZ(xformer = unpack_gz_stream;))
  1115. USE_FOR_NOMMU(xformer_prog = "gunzip";)
  1116. }
  1117. if (opt & OPT_BZIP2) {
  1118. USE_FOR_MMU(IF_FEATURE_SEAMLESS_BZ2(xformer = unpack_bz2_stream;))
  1119. USE_FOR_NOMMU(xformer_prog = "bunzip2";)
  1120. }
  1121. if (opt & OPT_LZMA) {
  1122. USE_FOR_MMU(IF_FEATURE_SEAMLESS_LZMA(xformer = unpack_lzma_stream;))
  1123. USE_FOR_NOMMU(xformer_prog = "unlzma";)
  1124. }
  1125. if (opt & OPT_XZ) {
  1126. USE_FOR_MMU(IF_FEATURE_SEAMLESS_XZ(xformer = unpack_xz_stream;))
  1127. USE_FOR_NOMMU(xformer_prog = "unxz";)
  1128. }
  1129. fork_transformer_with_sig(tar_handle->src_fd, xformer, xformer_prog);
  1130. /* Can't lseek over pipes */
  1131. tar_handle->seek = seek_by_read;
  1132. /*tar_handle->offset = 0; - already is */
  1133. }
  1134. /* Zero processed headers (== empty file) is not a valid tarball.
  1135. * We (ab)use bb_got_signal as exitcode here,
  1136. * because check_errors_in_children() uses _it_ as error indicator.
  1137. */
  1138. bb_got_signal = EXIT_FAILURE;
  1139. while (get_header_tar(tar_handle) == EXIT_SUCCESS)
  1140. bb_got_signal = EXIT_SUCCESS; /* saw at least one header, good */
  1141. create_links_from_list(tar_handle->link_placeholders);
  1142. /* Check that every file that should have been extracted was */
  1143. while (tar_handle->accept) {
  1144. if (!find_list_entry(tar_handle->reject, tar_handle->accept->data)
  1145. && !find_list_entry(tar_handle->passed, tar_handle->accept->data)
  1146. ) {
  1147. bb_error_msg_and_die("%s: not found in archive",
  1148. tar_handle->accept->data);
  1149. }
  1150. tar_handle->accept = tar_handle->accept->link;
  1151. }
  1152. if (ENABLE_FEATURE_CLEAN_UP /* && tar_handle->src_fd != STDIN_FILENO */)
  1153. close(tar_handle->src_fd);
  1154. if (SEAMLESS_COMPRESSION || OPT_COMPRESS) {
  1155. /* Set bb_got_signal to 1 if a child died with !0 exitcode */
  1156. check_errors_in_children(0);
  1157. }
  1158. return bb_got_signal;
  1159. }