tar.c 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266
  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. pid_t gzipPid;
  541. // On Linux, vfork never unpauses parent early, although standard
  542. // allows for that. Do we want to waste bytes checking for it?
  543. # define WAIT_FOR_CHILD 0
  544. volatile int vfork_exec_errno = 0;
  545. struct fd_pair gzipDataPipe;
  546. # if WAIT_FOR_CHILD
  547. struct fd_pair gzipStatusPipe;
  548. xpiped_pair(gzipStatusPipe);
  549. # endif
  550. xpiped_pair(gzipDataPipe);
  551. signal(SIGPIPE, SIG_IGN); /* we only want EPIPE on errors */
  552. gzipPid = xvfork();
  553. if (gzipPid == 0) {
  554. /* child */
  555. /* NB: close _first_, then move fds! */
  556. close(gzipDataPipe.wr);
  557. # if WAIT_FOR_CHILD
  558. close(gzipStatusPipe.rd);
  559. /* gzipStatusPipe.wr will close only on exec -
  560. * parent waits for this close to happen */
  561. fcntl(gzipStatusPipe.wr, F_SETFD, FD_CLOEXEC);
  562. # endif
  563. xmove_fd(gzipDataPipe.rd, 0);
  564. xmove_fd(tar_fd, 1);
  565. /* exec gzip/bzip2 program/applet */
  566. BB_EXECLP(gzip, gzip, "-f", (char *)0);
  567. vfork_exec_errno = errno;
  568. _exit(EXIT_FAILURE);
  569. }
  570. /* parent */
  571. xmove_fd(gzipDataPipe.wr, tar_fd);
  572. close(gzipDataPipe.rd);
  573. # if WAIT_FOR_CHILD
  574. close(gzipStatusPipe.wr);
  575. while (1) {
  576. char buf;
  577. int n;
  578. /* Wait until child execs (or fails to) */
  579. n = full_read(gzipStatusPipe.rd, &buf, 1);
  580. if (n < 0 /* && errno == EAGAIN */)
  581. continue; /* try it again */
  582. }
  583. close(gzipStatusPipe.rd);
  584. # endif
  585. if (vfork_exec_errno) {
  586. errno = vfork_exec_errno;
  587. bb_perror_msg_and_die("can't execute '%s'", gzip);
  588. }
  589. }
  590. # endif /* SEAMLESS_COMPRESSION */
  591. # if !SEAMLESS_COMPRESSION
  592. /* Do not pass gzip flag to writeTarFile() */
  593. #define writeTarFile(tbInfo, recurseFlags, filelist, gzip) \
  594. writeTarFile(tbInfo, recurseFlags, filelist)
  595. # endif
  596. /* gcc 4.2.1 inlines it, making code bigger */
  597. static NOINLINE int writeTarFile(
  598. struct TarBallInfo *tbInfo,
  599. int recurseFlags,
  600. const llist_t *filelist,
  601. const char *gzip)
  602. {
  603. int errorFlag = FALSE;
  604. /*tbInfo->hlInfoHead = NULL; - already is */
  605. /* Store the stat info for the tarball's file, so
  606. * can avoid including the tarball into itself.... */
  607. xfstat(tbInfo->tarFd, &tbInfo->tarFileStatBuf, "can't stat tar file");
  608. # if SEAMLESS_COMPRESSION
  609. if (gzip)
  610. vfork_compressor(tbInfo->tarFd, gzip);
  611. # endif
  612. /* Read the directory/files and iterate over them one at a time */
  613. while (filelist) {
  614. if (!recursive_action(filelist->data, recurseFlags,
  615. writeFileToTarball, writeFileToTarball, tbInfo, 0)
  616. ) {
  617. errorFlag = TRUE;
  618. }
  619. filelist = filelist->link;
  620. }
  621. /* Write two empty blocks to the end of the archive */
  622. memset(block_buf, 0, 2*TAR_BLOCK_SIZE);
  623. xwrite(tbInfo->tarFd, block_buf, 2*TAR_BLOCK_SIZE);
  624. /* To be pedantically correct, we would check if the tarball
  625. * is smaller than 20 tar blocks, and pad it if it was smaller,
  626. * but that isn't necessary for GNU tar interoperability, and
  627. * so is considered a waste of space */
  628. /* Close so the child process (if any) will exit */
  629. close(tbInfo->tarFd);
  630. /* Hang up the tools, close up shop, head home */
  631. if (ENABLE_FEATURE_CLEAN_UP)
  632. freeHardLinkInfo(&tbInfo->hlInfoHead);
  633. if (errorFlag)
  634. bb_error_msg("error exit delayed from previous errors");
  635. # if SEAMLESS_COMPRESSION
  636. if (gzip) {
  637. int status;
  638. if (safe_waitpid(-1, &status, 0) == -1)
  639. bb_perror_msg("waitpid");
  640. else if (!WIFEXITED(status) || WEXITSTATUS(status))
  641. /* gzip was killed or has exited with nonzero! */
  642. errorFlag = TRUE;
  643. }
  644. # endif
  645. return errorFlag;
  646. }
  647. #else /* !FEATURE_TAR_CREATE */
  648. # define writeTarFile(...) 0
  649. #endif
  650. #if ENABLE_FEATURE_TAR_FROM
  651. static llist_t *append_file_list_to_list(llist_t *list)
  652. {
  653. llist_t *newlist = NULL;
  654. while (list) {
  655. FILE *src_stream;
  656. char *line;
  657. src_stream = xfopen_stdin(llist_pop(&list));
  658. while ((line = xmalloc_fgetline(src_stream)) != NULL) {
  659. /* kill trailing '/' unless the string is just "/" */
  660. char *cp = last_char_is(line, '/');
  661. if (cp > line)
  662. *cp = '\0';
  663. llist_add_to_end(&newlist, line);
  664. }
  665. fclose(src_stream);
  666. }
  667. return newlist;
  668. }
  669. #endif
  670. //usage:#define tar_trivial_usage
  671. //usage: IF_FEATURE_TAR_CREATE("c|") "x|t [-"
  672. //usage: IF_FEATURE_SEAMLESS_Z("Z")
  673. //usage: IF_FEATURE_SEAMLESS_GZ("z")
  674. //usage: IF_FEATURE_SEAMLESS_XZ("J")
  675. //usage: IF_FEATURE_SEAMLESS_BZ2("j")
  676. //usage: IF_FEATURE_SEAMLESS_LZMA("a")
  677. //usage: IF_FEATURE_TAR_CREATE("h")
  678. //usage: IF_FEATURE_TAR_NOPRESERVE_TIME("m")
  679. //usage: "vO] "
  680. //usage: "[-f TARFILE] [-C DIR] "
  681. //usage: IF_FEATURE_TAR_FROM("[-T FILE] [-X FILE] "IF_FEATURE_TAR_LONG_OPTIONS("[--exclude PATTERN]... "))
  682. //usage: "[FILE]..."
  683. //usage:#define tar_full_usage "\n\n"
  684. //usage: IF_FEATURE_TAR_CREATE("Create, extract, ")
  685. //usage: IF_NOT_FEATURE_TAR_CREATE("Extract ")
  686. //usage: "or list files from a tar file\n"
  687. //usage: "\nOperation:"
  688. //usage: IF_FEATURE_TAR_CREATE(
  689. //usage: "\n c Create"
  690. //usage: )
  691. //usage: "\n x Extract"
  692. //usage: "\n t List"
  693. //usage: "\n -f FILE Name of TARFILE ('-' for stdin/out)"
  694. //usage: "\n -C DIR Change to DIR before operation"
  695. //usage: "\n -v Verbose"
  696. //usage: IF_FEATURE_SEAMLESS_Z(
  697. //usage: "\n -Z (De)compress using compress"
  698. //usage: )
  699. //usage: IF_FEATURE_SEAMLESS_GZ(
  700. //usage: "\n -z (De)compress using gzip"
  701. //usage: )
  702. //usage: IF_FEATURE_SEAMLESS_XZ(
  703. //usage: "\n -J (De)compress using xz"
  704. //usage: )
  705. //usage: IF_FEATURE_SEAMLESS_BZ2(
  706. //usage: "\n -j (De)compress using bzip2"
  707. //usage: )
  708. //usage: IF_FEATURE_SEAMLESS_LZMA(
  709. //usage: "\n -a (De)compress using lzma"
  710. //usage: )
  711. //usage: "\n -O Extract to stdout"
  712. //usage: IF_FEATURE_TAR_CREATE(
  713. //usage: "\n -h Follow symlinks"
  714. //usage: )
  715. //usage: IF_FEATURE_TAR_NOPRESERVE_TIME(
  716. //usage: "\n -m Don't restore mtime"
  717. //usage: )
  718. //usage: IF_FEATURE_TAR_FROM(
  719. //usage: "\n -T FILE File with names to include"
  720. //usage: "\n -X FILE File with glob patterns to exclude"
  721. //usage: IF_FEATURE_TAR_LONG_OPTIONS(
  722. //usage: "\n --exclude PATTERN Glob pattern to exclude"
  723. //usage: )
  724. //usage: )
  725. //usage:
  726. //usage:#define tar_example_usage
  727. //usage: "$ zcat /tmp/tarball.tar.gz | tar -xf -\n"
  728. //usage: "$ tar -cf /tmp/tarball.tar /usr/local\n"
  729. // Supported but aren't in --help:
  730. // o no-same-owner
  731. // p same-permissions
  732. // k keep-old
  733. // no-recursion
  734. // numeric-owner
  735. // no-same-permissions
  736. // overwrite
  737. //IF_FEATURE_TAR_TO_COMMAND(
  738. // to-command
  739. //)
  740. enum {
  741. OPTBIT_KEEP_OLD = 8,
  742. IF_FEATURE_TAR_CREATE( OPTBIT_CREATE ,)
  743. IF_FEATURE_TAR_CREATE( OPTBIT_DEREFERENCE ,)
  744. IF_FEATURE_SEAMLESS_BZ2( OPTBIT_BZIP2 ,)
  745. IF_FEATURE_SEAMLESS_LZMA(OPTBIT_LZMA ,)
  746. IF_FEATURE_TAR_FROM( OPTBIT_INCLUDE_FROM,)
  747. IF_FEATURE_TAR_FROM( OPTBIT_EXCLUDE_FROM,)
  748. IF_FEATURE_SEAMLESS_GZ( OPTBIT_GZIP ,)
  749. IF_FEATURE_SEAMLESS_XZ( OPTBIT_XZ ,) // 16th bit
  750. IF_FEATURE_SEAMLESS_Z( OPTBIT_COMPRESS ,)
  751. IF_FEATURE_TAR_NOPRESERVE_TIME(OPTBIT_NOPRESERVE_TIME,)
  752. #if ENABLE_FEATURE_TAR_LONG_OPTIONS
  753. OPTBIT_STRIP_COMPONENTS,
  754. OPTBIT_NORECURSION,
  755. IF_FEATURE_TAR_TO_COMMAND(OPTBIT_2COMMAND ,)
  756. OPTBIT_NUMERIC_OWNER,
  757. OPTBIT_NOPRESERVE_PERM,
  758. OPTBIT_OVERWRITE,
  759. #endif
  760. OPT_TEST = 1 << 0, // t
  761. OPT_EXTRACT = 1 << 1, // x
  762. OPT_BASEDIR = 1 << 2, // C
  763. OPT_TARNAME = 1 << 3, // f
  764. OPT_2STDOUT = 1 << 4, // O
  765. OPT_NOPRESERVE_OWNER = 1 << 5, // o == no-same-owner
  766. OPT_P = 1 << 6, // p
  767. OPT_VERBOSE = 1 << 7, // v
  768. OPT_KEEP_OLD = 1 << 8, // k
  769. OPT_CREATE = IF_FEATURE_TAR_CREATE( (1 << OPTBIT_CREATE )) + 0, // c
  770. OPT_DEREFERENCE = IF_FEATURE_TAR_CREATE( (1 << OPTBIT_DEREFERENCE )) + 0, // h
  771. OPT_BZIP2 = IF_FEATURE_SEAMLESS_BZ2( (1 << OPTBIT_BZIP2 )) + 0, // j
  772. OPT_LZMA = IF_FEATURE_SEAMLESS_LZMA((1 << OPTBIT_LZMA )) + 0, // a
  773. OPT_INCLUDE_FROM = IF_FEATURE_TAR_FROM( (1 << OPTBIT_INCLUDE_FROM)) + 0, // T
  774. OPT_EXCLUDE_FROM = IF_FEATURE_TAR_FROM( (1 << OPTBIT_EXCLUDE_FROM)) + 0, // X
  775. OPT_GZIP = IF_FEATURE_SEAMLESS_GZ( (1 << OPTBIT_GZIP )) + 0, // z
  776. OPT_XZ = IF_FEATURE_SEAMLESS_XZ( (1 << OPTBIT_XZ )) + 0, // J
  777. OPT_COMPRESS = IF_FEATURE_SEAMLESS_Z( (1 << OPTBIT_COMPRESS )) + 0, // Z
  778. OPT_NOPRESERVE_TIME = IF_FEATURE_TAR_NOPRESERVE_TIME((1 << OPTBIT_NOPRESERVE_TIME)) + 0, // m
  779. OPT_STRIP_COMPONENTS = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_STRIP_COMPONENTS)) + 0, // strip-components
  780. OPT_NORECURSION = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NORECURSION )) + 0, // no-recursion
  781. OPT_2COMMAND = IF_FEATURE_TAR_TO_COMMAND( (1 << OPTBIT_2COMMAND )) + 0, // to-command
  782. OPT_NUMERIC_OWNER = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NUMERIC_OWNER )) + 0, // numeric-owner
  783. OPT_NOPRESERVE_PERM = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NOPRESERVE_PERM)) + 0, // no-same-permissions
  784. OPT_OVERWRITE = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_OVERWRITE )) + 0, // overwrite
  785. OPT_ANY_COMPRESS = (OPT_BZIP2 | OPT_LZMA | OPT_GZIP | OPT_XZ | OPT_COMPRESS),
  786. };
  787. #if ENABLE_FEATURE_TAR_LONG_OPTIONS
  788. static const char tar_longopts[] ALIGN1 =
  789. "list\0" No_argument "t"
  790. "extract\0" No_argument "x"
  791. "directory\0" Required_argument "C"
  792. "file\0" Required_argument "f"
  793. "to-stdout\0" No_argument "O"
  794. /* do not restore owner */
  795. /* Note: GNU tar handles 'o' as no-same-owner only on extract,
  796. * on create, 'o' is --old-archive. We do not support --old-archive. */
  797. "no-same-owner\0" No_argument "o"
  798. "same-permissions\0" No_argument "p"
  799. "verbose\0" No_argument "v"
  800. "keep-old\0" No_argument "k"
  801. # if ENABLE_FEATURE_TAR_CREATE
  802. "create\0" No_argument "c"
  803. "dereference\0" No_argument "h"
  804. # endif
  805. # if ENABLE_FEATURE_SEAMLESS_BZ2
  806. "bzip2\0" No_argument "j"
  807. # endif
  808. # if ENABLE_FEATURE_SEAMLESS_LZMA
  809. "lzma\0" No_argument "a"
  810. # endif
  811. # if ENABLE_FEATURE_TAR_FROM
  812. "files-from\0" Required_argument "T"
  813. "exclude-from\0" Required_argument "X"
  814. # endif
  815. # if ENABLE_FEATURE_SEAMLESS_GZ
  816. "gzip\0" No_argument "z"
  817. # endif
  818. # if ENABLE_FEATURE_SEAMLESS_XZ
  819. "xz\0" No_argument "J"
  820. # endif
  821. # if ENABLE_FEATURE_SEAMLESS_Z
  822. "compress\0" No_argument "Z"
  823. # endif
  824. # if ENABLE_FEATURE_TAR_NOPRESERVE_TIME
  825. "touch\0" No_argument "m"
  826. # endif
  827. "strip-components\0" Required_argument "\xf9"
  828. "no-recursion\0" No_argument "\xfa"
  829. # if ENABLE_FEATURE_TAR_TO_COMMAND
  830. "to-command\0" Required_argument "\xfb"
  831. # endif
  832. /* use numeric uid/gid from tar header, not textual */
  833. "numeric-owner\0" No_argument "\xfc"
  834. /* do not restore mode */
  835. "no-same-permissions\0" No_argument "\xfd"
  836. /* on unpack, open with O_TRUNC and !O_EXCL */
  837. "overwrite\0" No_argument "\xfe"
  838. /* --exclude takes next bit position in option mask, */
  839. /* therefore we have to put it _after_ --no-same-permissions */
  840. # if ENABLE_FEATURE_TAR_FROM
  841. "exclude\0" Required_argument "\xff"
  842. # endif
  843. ;
  844. # define GETOPT32 getopt32long
  845. # define LONGOPTS ,tar_longopts
  846. #else
  847. # define GETOPT32 getopt32
  848. # define LONGOPTS
  849. #endif
  850. int tar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  851. int tar_main(int argc UNUSED_PARAM, char **argv)
  852. {
  853. archive_handle_t *tar_handle;
  854. char *base_dir = NULL;
  855. const char *tar_filename = "-";
  856. unsigned opt;
  857. int verboseFlag = 0;
  858. #if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
  859. llist_t *excludes = NULL;
  860. #endif
  861. INIT_G();
  862. /* Initialise default values */
  863. tar_handle = init_handle();
  864. tar_handle->ah_flags = ARCHIVE_CREATE_LEADING_DIRS
  865. | ARCHIVE_RESTORE_DATE
  866. | ARCHIVE_UNLINK_OLD;
  867. /* Apparently only root's tar preserves perms (see bug 3844) */
  868. if (getuid() != 0)
  869. tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_PERM;
  870. #if ENABLE_DESKTOP
  871. /* Lie to buildroot when it starts asking stupid questions. */
  872. if (argv[1] && strcmp(argv[1], "--version") == 0) {
  873. // Output of 'tar --version' examples:
  874. // tar (GNU tar) 1.15.1
  875. // tar (GNU tar) 1.25
  876. // bsdtar 2.8.3 - libarchive 2.8.3
  877. puts("tar (busybox) " BB_VER);
  878. return 0;
  879. }
  880. #endif
  881. if (argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') {
  882. /* Compat:
  883. * 1st argument without dash handles options with parameters
  884. * differently from dashed one: it takes *next argv[i]*
  885. * as parameter even if there are more chars in 1st argument:
  886. * "tar fx TARFILE" - "x" is not taken as f's param
  887. * but is interpreted as -x option
  888. * "tar -xf TARFILE" - dashed equivalent of the above
  889. * "tar -fx ..." - "x" is taken as f's param
  890. * getopt32 wouldn't handle 1st command correctly.
  891. * Unfortunately, people do use such commands.
  892. * We massage argv[1] to work around it by moving 'f'
  893. * to the end of the string.
  894. * More contrived "tar fCx TARFILE DIR" still fails,
  895. * but such commands are much less likely to be used.
  896. */
  897. char *f = strchr(argv[1], 'f');
  898. if (f) {
  899. while (f[1] != '\0') {
  900. *f = f[1];
  901. f++;
  902. }
  903. *f = 'f';
  904. }
  905. /* Prepend '-' to the first argument */
  906. argv[1] = xasprintf("-%s", argv[1]);
  907. }
  908. opt = GETOPT32(argv, "^"
  909. "txC:f:Oopvk"
  910. IF_FEATURE_TAR_CREATE( "ch" )
  911. IF_FEATURE_SEAMLESS_BZ2( "j" )
  912. IF_FEATURE_SEAMLESS_LZMA("a" )
  913. IF_FEATURE_TAR_FROM( "T:*X:*")
  914. IF_FEATURE_SEAMLESS_GZ( "z" )
  915. IF_FEATURE_SEAMLESS_XZ( "J" )
  916. IF_FEATURE_SEAMLESS_Z( "Z" )
  917. IF_FEATURE_TAR_NOPRESERVE_TIME("m")
  918. IF_FEATURE_TAR_LONG_OPTIONS("\xf9:") // --strip-components
  919. "\0"
  920. "tt:vv:" // count -t,-v
  921. #if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
  922. "\xff::" // --exclude=PATTERN is a list
  923. #endif
  924. IF_FEATURE_TAR_CREATE("c:") "t:x:" // at least one of these is reqd
  925. IF_FEATURE_TAR_CREATE("c--tx:t--cx:x--ct") // mutually exclusive
  926. IF_NOT_FEATURE_TAR_CREATE("t--x:x--t") // mutually exclusive
  927. #if ENABLE_FEATURE_TAR_LONG_OPTIONS
  928. ":\xf9+" // --strip-components=NUM
  929. #endif
  930. LONGOPTS
  931. , &base_dir // -C dir
  932. , &tar_filename // -f filename
  933. IF_FEATURE_TAR_FROM(, &(tar_handle->accept)) // T
  934. IF_FEATURE_TAR_FROM(, &(tar_handle->reject)) // X
  935. #if ENABLE_FEATURE_TAR_LONG_OPTIONS
  936. , &tar_handle->tar__strip_components // --strip-components
  937. #endif
  938. IF_FEATURE_TAR_TO_COMMAND(, &(tar_handle->tar__to_command)) // --to-command
  939. #if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
  940. , &excludes // --exclude
  941. #endif
  942. , &verboseFlag // combined count for -t and -v
  943. , &verboseFlag // combined count for -t and -v
  944. );
  945. #if DBG_OPTION_PARSING
  946. bb_error_msg("opt: 0x%08x", opt);
  947. # define showopt(o) bb_error_msg("opt & %s(%x): %x", #o, o, opt & o);
  948. showopt(OPT_TEST );
  949. showopt(OPT_EXTRACT );
  950. showopt(OPT_BASEDIR );
  951. showopt(OPT_TARNAME );
  952. showopt(OPT_2STDOUT );
  953. showopt(OPT_NOPRESERVE_OWNER);
  954. showopt(OPT_P );
  955. showopt(OPT_VERBOSE );
  956. showopt(OPT_KEEP_OLD );
  957. showopt(OPT_CREATE );
  958. showopt(OPT_DEREFERENCE );
  959. showopt(OPT_BZIP2 );
  960. showopt(OPT_LZMA );
  961. showopt(OPT_INCLUDE_FROM );
  962. showopt(OPT_EXCLUDE_FROM );
  963. showopt(OPT_GZIP );
  964. showopt(OPT_XZ );
  965. showopt(OPT_COMPRESS );
  966. showopt(OPT_NOPRESERVE_TIME );
  967. showopt(OPT_STRIP_COMPONENTS);
  968. showopt(OPT_NORECURSION );
  969. showopt(OPT_2COMMAND );
  970. showopt(OPT_NUMERIC_OWNER );
  971. showopt(OPT_NOPRESERVE_PERM );
  972. showopt(OPT_OVERWRITE );
  973. showopt(OPT_ANY_COMPRESS );
  974. bb_error_msg("base_dir:'%s'", base_dir);
  975. bb_error_msg("tar_filename:'%s'", tar_filename);
  976. bb_error_msg("verboseFlag:%d", verboseFlag);
  977. bb_error_msg("tar_handle->tar__to_command:'%s'", tar_handle->tar__to_command);
  978. bb_error_msg("tar_handle->tar__strip_components:%u", tar_handle->tar__strip_components);
  979. return 0;
  980. # undef showopt
  981. #endif
  982. argv += optind;
  983. if (verboseFlag)
  984. tar_handle->action_header = header_verbose_list;
  985. if (verboseFlag == 1)
  986. tar_handle->action_header = header_list;
  987. if (opt & OPT_EXTRACT)
  988. tar_handle->action_data = data_extract_all;
  989. if (opt & OPT_2STDOUT)
  990. tar_handle->action_data = data_extract_to_stdout;
  991. if (opt & OPT_2COMMAND) {
  992. putenv((char*)"TAR_FILETYPE=f");
  993. signal(SIGPIPE, SIG_IGN);
  994. tar_handle->action_data = data_extract_to_command;
  995. IF_FEATURE_TAR_TO_COMMAND(tar_handle->tar__to_command_shell = xstrdup(get_shell_name());)
  996. }
  997. if (opt & OPT_KEEP_OLD)
  998. tar_handle->ah_flags &= ~ARCHIVE_UNLINK_OLD;
  999. if (opt & OPT_NUMERIC_OWNER)
  1000. tar_handle->ah_flags |= ARCHIVE_NUMERIC_OWNER;
  1001. if (opt & OPT_NOPRESERVE_OWNER)
  1002. tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_OWNER;
  1003. if (opt & OPT_NOPRESERVE_PERM)
  1004. tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_PERM;
  1005. if (opt & OPT_OVERWRITE) {
  1006. tar_handle->ah_flags &= ~ARCHIVE_UNLINK_OLD;
  1007. tar_handle->ah_flags |= ARCHIVE_O_TRUNC;
  1008. }
  1009. if (opt & OPT_NOPRESERVE_TIME)
  1010. tar_handle->ah_flags &= ~ARCHIVE_RESTORE_DATE;
  1011. #if ENABLE_FEATURE_TAR_FROM
  1012. tar_handle->reject = append_file_list_to_list(tar_handle->reject);
  1013. # if ENABLE_FEATURE_TAR_LONG_OPTIONS
  1014. /* Append excludes to reject */
  1015. while (excludes) {
  1016. llist_t *next = excludes->link;
  1017. excludes->link = tar_handle->reject;
  1018. tar_handle->reject = excludes;
  1019. excludes = next;
  1020. }
  1021. # endif
  1022. tar_handle->accept = append_file_list_to_list(tar_handle->accept);
  1023. #endif
  1024. /* Setup an array of filenames to work with */
  1025. /* TODO: This is the same as in ar, make a separate function? */
  1026. while (*argv) {
  1027. /* kill trailing '/' unless the string is just "/" */
  1028. char *cp = last_char_is(*argv, '/');
  1029. if (cp > *argv)
  1030. *cp = '\0';
  1031. llist_add_to_end(&tar_handle->accept, *argv);
  1032. argv++;
  1033. }
  1034. if (tar_handle->accept || tar_handle->reject)
  1035. tar_handle->filter = filter_accept_reject_list;
  1036. /* Open the tar file */
  1037. {
  1038. int tar_fd = STDIN_FILENO;
  1039. int flags = O_RDONLY;
  1040. if (opt & OPT_CREATE) {
  1041. /* Make sure there is at least one file to tar up */
  1042. if (tar_handle->accept == NULL)
  1043. bb_error_msg_and_die("empty archive");
  1044. tar_fd = STDOUT_FILENO;
  1045. /* Mimicking GNU tar 1.15.1: */
  1046. flags = O_WRONLY | O_CREAT | O_TRUNC;
  1047. }
  1048. if (LONE_DASH(tar_filename)) {
  1049. tar_handle->src_fd = tar_fd;
  1050. tar_handle->seek = seek_by_read;
  1051. } else {
  1052. if (ENABLE_FEATURE_TAR_AUTODETECT
  1053. && flags == O_RDONLY
  1054. && !(opt & OPT_ANY_COMPRESS)
  1055. ) {
  1056. tar_handle->src_fd = open_zipped(tar_filename, /*fail_if_not_compressed:*/ 0);
  1057. if (tar_handle->src_fd < 0)
  1058. bb_perror_msg_and_die("can't open '%s'", tar_filename);
  1059. } else {
  1060. tar_handle->src_fd = xopen(tar_filename, flags);
  1061. }
  1062. }
  1063. }
  1064. if (base_dir)
  1065. xchdir(base_dir);
  1066. #if ENABLE_FEATURE_TAR_CREATE
  1067. /* Create an archive */
  1068. if (opt & OPT_CREATE) {
  1069. struct TarBallInfo *tbInfo;
  1070. # if SEAMLESS_COMPRESSION
  1071. const char *zipMode = NULL;
  1072. if (opt & OPT_COMPRESS)
  1073. zipMode = "compress";
  1074. if (opt & OPT_GZIP)
  1075. zipMode = "gzip";
  1076. if (opt & OPT_BZIP2)
  1077. zipMode = "bzip2";
  1078. if (opt & OPT_LZMA)
  1079. zipMode = "lzma";
  1080. if (opt & OPT_XZ)
  1081. zipMode = "xz";
  1082. # endif
  1083. tbInfo = xzalloc(sizeof(*tbInfo));
  1084. tbInfo->tarFd = tar_handle->src_fd;
  1085. tbInfo->verboseFlag = verboseFlag;
  1086. # if ENABLE_FEATURE_TAR_FROM
  1087. tbInfo->excludeList = tar_handle->reject;
  1088. # endif
  1089. /* NB: writeTarFile() closes tar_handle->src_fd */
  1090. return writeTarFile(tbInfo,
  1091. (opt & OPT_DEREFERENCE ? ACTION_FOLLOWLINKS : 0)
  1092. | (opt & OPT_NORECURSION ? 0 : ACTION_RECURSE),
  1093. tar_handle->accept,
  1094. zipMode);
  1095. }
  1096. #endif
  1097. if (opt & OPT_ANY_COMPRESS) {
  1098. USE_FOR_MMU(IF_DESKTOP(long long) int FAST_FUNC (*xformer)(transformer_state_t *xstate);)
  1099. USE_FOR_NOMMU(const char *xformer_prog;)
  1100. if (opt & OPT_COMPRESS) {
  1101. USE_FOR_MMU(IF_FEATURE_SEAMLESS_Z(xformer = unpack_Z_stream;))
  1102. USE_FOR_NOMMU(xformer_prog = "uncompress";)
  1103. }
  1104. if (opt & OPT_GZIP) {
  1105. USE_FOR_MMU(IF_FEATURE_SEAMLESS_GZ(xformer = unpack_gz_stream;))
  1106. USE_FOR_NOMMU(xformer_prog = "gunzip";)
  1107. }
  1108. if (opt & OPT_BZIP2) {
  1109. USE_FOR_MMU(IF_FEATURE_SEAMLESS_BZ2(xformer = unpack_bz2_stream;))
  1110. USE_FOR_NOMMU(xformer_prog = "bunzip2";)
  1111. }
  1112. if (opt & OPT_LZMA) {
  1113. USE_FOR_MMU(IF_FEATURE_SEAMLESS_LZMA(xformer = unpack_lzma_stream;))
  1114. USE_FOR_NOMMU(xformer_prog = "unlzma";)
  1115. }
  1116. if (opt & OPT_XZ) {
  1117. USE_FOR_MMU(IF_FEATURE_SEAMLESS_XZ(xformer = unpack_xz_stream;))
  1118. USE_FOR_NOMMU(xformer_prog = "unxz";)
  1119. }
  1120. fork_transformer_with_sig(tar_handle->src_fd, xformer, xformer_prog);
  1121. /* Can't lseek over pipes */
  1122. tar_handle->seek = seek_by_read;
  1123. /*tar_handle->offset = 0; - already is */
  1124. }
  1125. /* Zero processed headers (== empty file) is not a valid tarball.
  1126. * We (ab)use bb_got_signal as exitcode here,
  1127. * because check_errors_in_children() uses _it_ as error indicator.
  1128. */
  1129. bb_got_signal = EXIT_FAILURE;
  1130. while (get_header_tar(tar_handle) == EXIT_SUCCESS)
  1131. bb_got_signal = EXIT_SUCCESS; /* saw at least one header, good */
  1132. /* Check that every file that should have been extracted was */
  1133. while (tar_handle->accept) {
  1134. if (!find_list_entry(tar_handle->reject, tar_handle->accept->data)
  1135. && !find_list_entry(tar_handle->passed, tar_handle->accept->data)
  1136. ) {
  1137. bb_error_msg_and_die("%s: not found in archive",
  1138. tar_handle->accept->data);
  1139. }
  1140. tar_handle->accept = tar_handle->accept->link;
  1141. }
  1142. if (ENABLE_FEATURE_CLEAN_UP /* && tar_handle->src_fd != STDIN_FILENO */)
  1143. close(tar_handle->src_fd);
  1144. if (SEAMLESS_COMPRESSION || OPT_COMPRESS) {
  1145. /* Set bb_got_signal to 1 if a child died with !0 exitcode */
  1146. check_errors_in_children(0);
  1147. }
  1148. return bb_got_signal;
  1149. }