4
0

tar.c 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160
  1. /* A tar (tape archiver) program.
  2. Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000,
  3. 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
  4. Written by John Gilmore, starting 1985-08-25.
  5. This program is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU General Public License as published by the
  7. Free Software Foundation; either version 2, or (at your option) any later
  8. version.
  9. This program is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
  12. Public License for more details.
  13. You should have received a copy of the GNU General Public License along
  14. with this program; if not, write to the Free Software Foundation, Inc.,
  15. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
  16. #include <system.h>
  17. #include <fnmatch.h>
  18. #include <argp.h>
  19. #include <signal.h>
  20. #if ! defined SIGCHLD && defined SIGCLD
  21. # define SIGCHLD SIGCLD
  22. #endif
  23. /* The following causes "common.h" to produce definitions of all the global
  24. variables, rather than just "extern" declarations of them. GNU tar does
  25. depend on the system loader to preset all GLOBAL variables to neutral (or
  26. zero) values; explicit initialization is usually not done. */
  27. #define GLOBAL
  28. #include "common.h"
  29. #include <argmatch.h>
  30. #include <getdate.h>
  31. #include <localedir.h>
  32. #include <rmt.h>
  33. #include <prepargs.h>
  34. #include <quotearg.h>
  35. #include <xstrtol.h>
  36. #include <stdopen.h>
  37. /* Local declarations. */
  38. #ifndef DEFAULT_ARCHIVE_FORMAT
  39. # define DEFAULT_ARCHIVE_FORMAT GNU_FORMAT
  40. #endif
  41. #ifndef DEFAULT_ARCHIVE
  42. # define DEFAULT_ARCHIVE "tar.out"
  43. #endif
  44. #ifndef DEFAULT_BLOCKING
  45. # define DEFAULT_BLOCKING 20
  46. #endif
  47. /* Miscellaneous. */
  48. /* Name of option using stdin. */
  49. static const char *stdin_used_by;
  50. /* Doesn't return if stdin already requested. */
  51. void
  52. request_stdin (const char *option)
  53. {
  54. if (stdin_used_by)
  55. USAGE_ERROR ((0, 0, _("Options `-%s' and `-%s' both want standard input"),
  56. stdin_used_by, option));
  57. stdin_used_by = option;
  58. }
  59. extern int rpmatch (char const *response);
  60. /* Returns true if and only if the user typed an affirmative response. */
  61. int
  62. confirm (const char *message_action, const char *message_name)
  63. {
  64. static FILE *confirm_file;
  65. static int confirm_file_EOF;
  66. bool status = false;
  67. if (!confirm_file)
  68. {
  69. if (archive == 0 || stdin_used_by)
  70. {
  71. confirm_file = fopen (TTY_NAME, "r");
  72. if (! confirm_file)
  73. open_fatal (TTY_NAME);
  74. }
  75. else
  76. {
  77. request_stdin ("-w");
  78. confirm_file = stdin;
  79. }
  80. }
  81. fprintf (stdlis, "%s %s?", message_action, quote (message_name));
  82. fflush (stdlis);
  83. if (!confirm_file_EOF)
  84. {
  85. char *response = NULL;
  86. size_t response_size = 0;
  87. if (getline (&response, &response_size, confirm_file) < 0)
  88. confirm_file_EOF = 1;
  89. else
  90. status = rpmatch (response) > 0;
  91. free (response);
  92. }
  93. if (confirm_file_EOF)
  94. {
  95. fputc ('\n', stdlis);
  96. fflush (stdlis);
  97. }
  98. return status;
  99. }
  100. static struct fmttab {
  101. char const *name;
  102. enum archive_format fmt;
  103. } const fmttab[] = {
  104. { "v7", V7_FORMAT },
  105. { "oldgnu", OLDGNU_FORMAT },
  106. { "ustar", USTAR_FORMAT },
  107. { "posix", POSIX_FORMAT },
  108. #if 0 /* not fully supported yet */
  109. { "star", STAR_FORMAT },
  110. #endif
  111. { "gnu", GNU_FORMAT },
  112. { "pax", POSIX_FORMAT }, /* An alias for posix */
  113. { NULL, 0 }
  114. };
  115. static void
  116. set_archive_format (char const *name)
  117. {
  118. struct fmttab const *p;
  119. for (p = fmttab; strcmp (p->name, name) != 0; )
  120. if (! (++p)->name)
  121. USAGE_ERROR ((0, 0, _("%s: Invalid archive format"),
  122. quotearg_colon (name)));
  123. archive_format = p->fmt;
  124. }
  125. const char *
  126. archive_format_string (enum archive_format fmt)
  127. {
  128. struct fmttab const *p;
  129. for (p = fmttab; p->name; p++)
  130. if (p->fmt == fmt)
  131. return p->name;
  132. return "unknown?";
  133. }
  134. #define FORMAT_MASK(n) (1<<(n))
  135. static void
  136. assert_format(unsigned fmt_mask)
  137. {
  138. if ((FORMAT_MASK (archive_format) & fmt_mask) == 0)
  139. USAGE_ERROR ((0, 0,
  140. _("GNU features wanted on incompatible archive format")));
  141. }
  142. const char *
  143. subcommand_string (enum subcommand c)
  144. {
  145. switch (c)
  146. {
  147. case UNKNOWN_SUBCOMMAND:
  148. return "unknown?";
  149. case APPEND_SUBCOMMAND:
  150. return "-r";
  151. case CAT_SUBCOMMAND:
  152. return "-A";
  153. case CREATE_SUBCOMMAND:
  154. return "-c";
  155. case DELETE_SUBCOMMAND:
  156. return "-D";
  157. case DIFF_SUBCOMMAND:
  158. return "-d";
  159. case EXTRACT_SUBCOMMAND:
  160. return "-x";
  161. case LIST_SUBCOMMAND:
  162. return "-t";
  163. case UPDATE_SUBCOMMAND:
  164. return "-u";
  165. default:
  166. abort ();
  167. }
  168. }
  169. void
  170. tar_list_quoting_styles (FILE *fp, char *prefix)
  171. {
  172. int i;
  173. for (i = 0; quoting_style_args[i]; i++)
  174. fprintf (fp, "%s%s\n", prefix, quoting_style_args[i]);
  175. }
  176. void
  177. tar_set_quoting_style (char *arg)
  178. {
  179. int i;
  180. for (i = 0; quoting_style_args[i]; i++)
  181. if (strcmp (arg, quoting_style_args[i]) == 0)
  182. {
  183. set_quoting_style (NULL, i);
  184. return;
  185. }
  186. FATAL_ERROR ((0, 0,
  187. _("Unknown quoting style `%s'. Try `%s --quoting-style=help' to get a list."), arg));
  188. }
  189. /* Options. */
  190. enum
  191. {
  192. ANCHORED_OPTION = CHAR_MAX + 1,
  193. ATIME_PRESERVE_OPTION,
  194. BACKUP_OPTION,
  195. CHECKPOINT_OPTION,
  196. CHECK_LINKS_OPTION,
  197. DELAY_DIRECTORY_RESTORE_OPTION,
  198. DELETE_OPTION,
  199. EXCLUDE_CACHES_OPTION,
  200. EXCLUDE_OPTION,
  201. FORCE_LOCAL_OPTION,
  202. GROUP_OPTION,
  203. HANG_OPTION,
  204. IGNORE_CASE_OPTION,
  205. IGNORE_COMMAND_ERROR_OPTION,
  206. IGNORE_FAILED_READ_OPTION,
  207. INDEX_FILE_OPTION,
  208. KEEP_NEWER_FILES_OPTION,
  209. LICENSE_OPTION,
  210. MODE_OPTION,
  211. NEWER_MTIME_OPTION,
  212. NO_ANCHORED_OPTION,
  213. NO_DELAY_DIRECTORY_RESTORE_OPTION,
  214. NO_IGNORE_CASE_OPTION,
  215. NO_IGNORE_COMMAND_ERROR_OPTION,
  216. NO_OVERWRITE_DIR_OPTION,
  217. NO_QUOTE_CHARS_OPTION,
  218. NO_RECURSION_OPTION,
  219. NO_SAME_OWNER_OPTION,
  220. NO_SAME_PERMISSIONS_OPTION,
  221. NO_UNQUOTE_OPTION,
  222. NO_WILDCARDS_MATCH_SLASH_OPTION,
  223. NO_WILDCARDS_OPTION,
  224. NULL_OPTION,
  225. NUMERIC_OWNER_OPTION,
  226. OCCURRENCE_OPTION,
  227. OLD_ARCHIVE_OPTION,
  228. ONE_FILE_SYSTEM_OPTION,
  229. OVERWRITE_OPTION,
  230. OWNER_OPTION,
  231. PAX_OPTION,
  232. POSIX_OPTION,
  233. PRESERVE_OPTION,
  234. QUOTE_CHARS_OPTION,
  235. QUOTING_STYLE_OPTION,
  236. RECORD_SIZE_OPTION,
  237. RECURSION_OPTION,
  238. RECURSIVE_UNLINK_OPTION,
  239. REMOVE_FILES_OPTION,
  240. RESTRICT_OPTION,
  241. RMT_COMMAND_OPTION,
  242. RSH_COMMAND_OPTION,
  243. SAME_OWNER_OPTION,
  244. SHOW_DEFAULTS_OPTION,
  245. SHOW_OMITTED_DIRS_OPTION,
  246. SHOW_STORED_NAMES_OPTION,
  247. STRIP_COMPONENTS_OPTION,
  248. SUFFIX_OPTION,
  249. TEST_LABEL_OPTION,
  250. TOTALS_OPTION,
  251. TO_COMMAND_OPTION,
  252. UNQUOTE_OPTION,
  253. USAGE_OPTION,
  254. USE_COMPRESS_PROGRAM_OPTION,
  255. UTC_OPTION,
  256. VERSION_OPTION,
  257. VOLNO_FILE_OPTION,
  258. WILDCARDS_MATCH_SLASH_OPTION,
  259. WILDCARDS_OPTION
  260. };
  261. const char *argp_program_version = "tar (" PACKAGE_NAME ") " VERSION;
  262. const char *argp_program_bug_address = "<" PACKAGE_BUGREPORT ">";
  263. static char doc[] = N_("GNU `tar' saves many files together into a single tape or disk archive, and can restore individual files from the archive.\n\
  264. \n\
  265. Examples:\n\
  266. tar -cf archive.tar foo bar # Create archive.tar from files foo and bar.\n\
  267. tar -tvf archive.tar # List all files in archive.tar verbosely.\n\
  268. tar -xf archive.tar # Extract all files from archive.tar.\n\
  269. \vThe backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
  270. The version control may be set with --backup or VERSION_CONTROL, values are:\n\n\
  271. none, off never make backups\n\
  272. t, numbered make numbered backups\n\
  273. nil, existing numbered if numbered backups exist, simple otherwise\n\
  274. never, simple always make simple backups\n");
  275. /* NOTE:
  276. Available option letters are DEIJQY and aeqy. Consider the following
  277. assignments:
  278. [For Solaris tar compatibility =/= Is it important at all?]
  279. e exit immediately with a nonzero exit status if unexpected errors occur
  280. E use extended headers (--format=posix)
  281. [q alias for --occurrence=1 =/= this would better be used for quiet?]
  282. [I same as T =/= will harm star compatibility]
  283. y per-file gzip compression
  284. Y per-block gzip compression */
  285. static struct argp_option options[] = {
  286. #define GRID 10
  287. {NULL, 0, NULL, 0,
  288. N_("Main operation mode:"), GRID },
  289. {"list", 't', 0, 0,
  290. N_("list the contents of an archive"), GRID+1 },
  291. {"extract", 'x', 0, 0,
  292. N_("extract files from an archive"), GRID+1 },
  293. {"get", 0, 0, OPTION_ALIAS, NULL, GRID+1 },
  294. {"create", 'c', 0, 0,
  295. N_("create a new archive"), GRID+1 },
  296. {"diff", 'd', 0, 0,
  297. N_("find differences between archive and file system"), GRID+1 },
  298. {"compare", 0, 0, OPTION_ALIAS, NULL, GRID+1 },
  299. {"append", 'r', 0, 0,
  300. N_("append files to the end of an archive"), GRID+1 },
  301. {"update", 'u', 0, 0,
  302. N_("only append files newer than copy in archive"), GRID+1 },
  303. {"catenate", 'A', 0, 0,
  304. N_("append tar files to an archive"), GRID+1 },
  305. {"concatenate", 0, 0, OPTION_ALIAS, NULL, GRID+1 },
  306. {"delete", DELETE_OPTION, 0, 0,
  307. N_("delete from the archive (not on mag tapes!)"), GRID+1 },
  308. {"test-label", TEST_LABEL_OPTION, NULL, 0,
  309. N_("Test archive volume label and exit"), GRID+1 },
  310. #undef GRID
  311. #define GRID 20
  312. {NULL, 0, NULL, 0,
  313. N_("Operation modifiers:"), GRID },
  314. {"sparse", 'S', 0, 0,
  315. N_("handle sparse files efficiently"), GRID+1 },
  316. {"incremental", 'G', 0, 0,
  317. N_("handle old GNU-format incremental backup"), GRID+1 },
  318. {"listed-incremental", 'g', N_("FILE"), 0,
  319. N_("handle new GNU-format incremental backup"), GRID+1 },
  320. {"ignore-failed-read", IGNORE_FAILED_READ_OPTION, 0, 0,
  321. N_("do not exit with nonzero on unreadable files"), GRID+1 },
  322. {"occurrence", OCCURRENCE_OPTION, N_("NUMBER"), OPTION_ARG_OPTIONAL,
  323. N_("process only the NUMBERth occurrence of each file in the archive. This option is valid only in conjunction with one of the subcommands --delete, --diff, --extract or --list and when a list of files is given either on the command line or via -T option. NUMBER defaults to 1."), GRID+1 },
  324. {"seek", 'n', NULL, 0,
  325. N_("archive is seekable"), GRID+1 },
  326. #undef GRID
  327. #define GRID 30
  328. {NULL, 0, NULL, 0,
  329. N_("Overwrite control:\n"), GRID+1 },
  330. {"verify", 'W', 0, 0,
  331. N_("attempt to verify the archive after writing it"), GRID+1 },
  332. {"remove-files", REMOVE_FILES_OPTION, 0, 0,
  333. N_("remove files after adding them to the archive"), GRID+1 },
  334. {"keep-old-files", 'k', 0, 0,
  335. N_("don't replace existing files when extracting"), GRID+1 },
  336. {"keep-newer-files", KEEP_NEWER_FILES_OPTION, 0, 0,
  337. N_("don't replace existing files that are newer than their archive copies"), GRID+1 },
  338. {"overwrite", OVERWRITE_OPTION, 0, 0,
  339. N_("overwrite existing files when extracting"), GRID+1 },
  340. {"unlink-first", 'U', 0, 0,
  341. N_("remove each file prior to extracting over it"), GRID+1 },
  342. {"recursive-unlink", RECURSIVE_UNLINK_OPTION, 0, 0,
  343. N_("empty hierarchies prior to extracting directory"), GRID+1 },
  344. {"no-overwrite-dir", NO_OVERWRITE_DIR_OPTION, 0, 0,
  345. N_("preserve metadata of existing directories"), GRID+1 },
  346. #undef GRID
  347. #define GRID 40
  348. {NULL, 0, NULL, 0,
  349. N_("Select output stream:"), GRID },
  350. {"to-stdout", 'O', 0, 0,
  351. N_("extract files to standard output"), GRID+1 },
  352. {"to-command", TO_COMMAND_OPTION, N_("COMMAND"), 0,
  353. N_("pipe extracted files to another program"), GRID+1 },
  354. {"ignore-command-error", IGNORE_COMMAND_ERROR_OPTION, 0, 0,
  355. N_("ignore exit codes of children"), GRID+1 },
  356. {"no-ignore-command-error", NO_IGNORE_COMMAND_ERROR_OPTION, 0, 0,
  357. N_("treat non-zero exit codes of children as error"), GRID+1 },
  358. #undef GRID
  359. #define GRID 50
  360. {NULL, 0, NULL, 0,
  361. N_("Handling of file attributes:"), GRID },
  362. {"owner", OWNER_OPTION, N_("NAME"), 0,
  363. N_("force NAME as owner for added files"), GRID+1 },
  364. {"group", GROUP_OPTION, N_("NAME"), 0,
  365. N_("force NAME as group for added files"), GRID+1 },
  366. {"mode", MODE_OPTION, N_("CHANGES"), 0,
  367. N_("force (symbolic) mode CHANGES for added files"), GRID+1 },
  368. {"atime-preserve", ATIME_PRESERVE_OPTION,
  369. N_("METHOD"), OPTION_ARG_OPTIONAL,
  370. N_("preserve access times on dumped files, either by restoring the times"
  371. " after reading (METHOD='replace'; default) or by not setting the times"
  372. " in the first place (METHOD='system')"), GRID+1 },
  373. {"touch", 'm', 0, 0,
  374. N_("don't extract file modified time"), GRID+1 },
  375. {"same-owner", SAME_OWNER_OPTION, 0, 0,
  376. N_("try extracting files with the same ownership"), GRID+1 },
  377. {"no-same-owner", NO_SAME_OWNER_OPTION, 0, 0,
  378. N_("extract files as yourself"), GRID+1 },
  379. {"numeric-owner", NUMERIC_OWNER_OPTION, 0, 0,
  380. N_("always use numbers for user/group names"), GRID+1 },
  381. {"preserve-permissions", 'p', 0, 0,
  382. N_("extract information about file permissions (default for superuser)"),
  383. GRID+1 },
  384. {"same-permissions", 0, 0, OPTION_ALIAS, NULL, GRID+1 },
  385. {"no-same-permissions", NO_SAME_PERMISSIONS_OPTION, 0, 0,
  386. N_("apply the user's umask when extracting permissions from the archive (default for ordinary users)"), GRID+1 },
  387. {"preserve-order", 's', 0, 0,
  388. N_("sort names to extract to match archive"), GRID+1 },
  389. {"same-order", 0, 0, OPTION_ALIAS, NULL, GRID+1 },
  390. {"preserve", PRESERVE_OPTION, 0, 0,
  391. N_("same as both -p and -s"), GRID+1 },
  392. {"delay-directory-restore", DELAY_DIRECTORY_RESTORE_OPTION, 0, 0,
  393. N_("Delay setting modification times and permissions of extracted directories until the end of extraction."), GRID+1 },
  394. {"no-delay-directory-restore", NO_DELAY_DIRECTORY_RESTORE_OPTION, 0, 0,
  395. N_("Cancel the effect of --delay-directory-restore option."), GRID+1 },
  396. #undef GRID
  397. #define GRID 60
  398. {NULL, 0, NULL, 0,
  399. N_("Device selection and switching:\n"), GRID+1 },
  400. {"file", 'f', N_("ARCHIVE"), 0,
  401. N_("use archive file or device ARCHIVE"), GRID+1 },
  402. {"force-local", FORCE_LOCAL_OPTION, 0, 0,
  403. N_("archive file is local even if it has a colon"), GRID+1 },
  404. {"rmt-command", RMT_COMMAND_OPTION, N_("COMMAND"), 0,
  405. N_("use given rmt COMMAND instead of rmt"), GRID+1 },
  406. {"rsh-command", RSH_COMMAND_OPTION, N_("COMMAND"), 0,
  407. N_("use remote COMMAND instead of rsh"), GRID+1 },
  408. #ifdef DEVICE_PREFIX
  409. {"-[0-7][lmh]", 0, NULL, OPTION_DOC, /* It is OK, since `name' will never be
  410. translated */
  411. N_("specify drive and density"), GRID+1 },
  412. #endif
  413. {NULL, '0', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  414. {NULL, '1', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  415. {NULL, '2', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  416. {NULL, '3', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  417. {NULL, '4', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  418. {NULL, '5', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  419. {NULL, '6', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  420. {NULL, '7', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  421. {NULL, '8', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  422. {NULL, '9', NULL, OPTION_HIDDEN, NULL, GRID+1 },
  423. {"multi-volume", 'M', 0, 0,
  424. N_("create/list/extract multi-volume archive"), GRID+1 },
  425. {"tape-length", 'L', N_("NUMBER"), 0,
  426. N_("change tape after writing NUMBER x 1024 bytes"), GRID+1 },
  427. {"info-script", 'F', N_("NAME"), 0,
  428. N_("run script at end of each tape (implies -M)"), GRID+1 },
  429. {"new-volume-script", 0, 0, OPTION_ALIAS, NULL, GRID+1 },
  430. {"volno-file", VOLNO_FILE_OPTION, N_("FILE"), 0,
  431. N_("use/update the volume number in FILE"), GRID+1 },
  432. #undef GRID
  433. #define GRID 70
  434. {NULL, 0, NULL, 0,
  435. N_("Device blocking:"), GRID+1 },
  436. {"blocking-factor", 'b', N_("BLOCKS"), 0,
  437. N_("BLOCKS x 512 bytes per record"), GRID+1 },
  438. {"record-size", RECORD_SIZE_OPTION, N_("NUMBER"), 0,
  439. N_("NUMBER of bytes per record, multiple of 512"), GRID+1 },
  440. {"ignore-zeros", 'i', 0, 0,
  441. N_("ignore zeroed blocks in archive (means EOF)"), GRID+1 },
  442. {"read-full-records", 'B', 0, 0,
  443. N_("reblock as we read (for 4.2BSD pipes)"), GRID+1 },
  444. #undef GRID
  445. #define GRID 80
  446. {NULL, 0, NULL, 0,
  447. N_("Archive format selection:"), GRID },
  448. {"format", 'H', N_("FORMAT"), 0,
  449. N_("create archive of the given format."), GRID+1 },
  450. {NULL, 0, NULL, 0, N_("FORMAT is one of the following:"), GRID+2 },
  451. {" v7", 0, NULL, OPTION_DOC|OPTION_NO_TRANS, N_("old V7 tar format"),
  452. GRID+3 },
  453. {" oldgnu", 0, NULL, OPTION_DOC|OPTION_NO_TRANS,
  454. N_("GNU format as per tar <= 1.12"), GRID+3 },
  455. {" gnu", 0, NULL, OPTION_DOC|OPTION_NO_TRANS,
  456. N_("GNU tar 1.13.x format"), GRID+3 },
  457. {" ustar", 0, NULL, OPTION_DOC|OPTION_NO_TRANS,
  458. N_("POSIX 1003.1-1988 (ustar) format"), GRID+3 },
  459. {" pax", 0, NULL, OPTION_DOC|OPTION_NO_TRANS,
  460. N_("POSIX 1003.1-2001 (pax) format"), GRID+3 },
  461. {" posix", 0, NULL, OPTION_DOC|OPTION_NO_TRANS, N_("same as pax"), GRID+3 },
  462. {"old-archive", OLD_ARCHIVE_OPTION, 0, 0, /* FIXME */
  463. N_("same as --format=v7"), GRID+8 },
  464. {"portability", 0, 0, OPTION_ALIAS, NULL, GRID+8 },
  465. {"posix", POSIX_OPTION, 0, 0,
  466. N_("same as --format=posix"), GRID+8 },
  467. {"pax-option", PAX_OPTION, N_("keyword[[:]=value][,keyword[[:]=value], ...]"), 0,
  468. N_("control pax keywords"), GRID+8 },
  469. {"label", 'V', N_("TEXT"), 0,
  470. N_("create archive with volume name TEXT. At list/extract time, use TEXT as a globbing pattern for volume name"), GRID+8 },
  471. {"bzip2", 'j', 0, 0,
  472. N_("filter the archive through bzip2"), GRID+8 },
  473. {"gzip", 'z', 0, 0,
  474. N_("filter the archive through gzip"), GRID+8 },
  475. {"gunzip", 0, 0, OPTION_ALIAS, NULL, GRID+8 },
  476. {"ungzip", 0, 0, OPTION_ALIAS, NULL, GRID+8 },
  477. {"compress", 'Z', 0, 0,
  478. N_("filter the archive through compress"), GRID+8 },
  479. {"uncompress", 0, 0, OPTION_ALIAS, NULL, GRID+8 },
  480. {"use-compress-program", USE_COMPRESS_PROGRAM_OPTION, N_("PROG"), 0,
  481. N_("filter through PROG (must accept -d)"), GRID+8 },
  482. #undef GRID
  483. #define GRID 90
  484. {NULL, 0, NULL, 0,
  485. N_("Local file selection:"), GRID },
  486. {"add-file", ARGP_KEY_ARG, N_("FILE"), 0,
  487. N_("add given FILE to the archive (useful if its name starts with a dash)"), GRID+1 },
  488. {"directory", 'C', N_("DIR"), 0,
  489. N_("change to directory DIR"), GRID+1 },
  490. {"files-from", 'T', N_("FILE"), 0,
  491. N_("get names to extract or create from FILE"), GRID+1 },
  492. {"null", NULL_OPTION, 0, 0,
  493. N_("-T reads null-terminated names, disable -C"), GRID+1 },
  494. {"unquote", UNQUOTE_OPTION, 0, 0,
  495. N_("unquote filenames read with -T (default)"), GRID+1 },
  496. {"no-unquote", NO_UNQUOTE_OPTION, 0, 0,
  497. N_("do not unquote filenames read with -T"), GRID+1 },
  498. {"exclude", EXCLUDE_OPTION, N_("PATTERN"), 0,
  499. N_("exclude files, given as a PATTERN"), GRID+1 },
  500. {"exclude-from", 'X', N_("FILE"), 0,
  501. N_("exclude patterns listed in FILE"), GRID+1 },
  502. {"exclude-caches", EXCLUDE_CACHES_OPTION, 0, 0,
  503. N_("exclude directories containing a cache tag"), GRID+1 },
  504. {"ignore-case", IGNORE_CASE_OPTION, 0, 0,
  505. N_("exclusion ignores case"), GRID+1 },
  506. {"anchored", ANCHORED_OPTION, 0, 0,
  507. N_("exclude patterns match file name start"), GRID+1 },
  508. {"no-anchored", NO_ANCHORED_OPTION, 0, 0,
  509. N_("exclude patterns match after any `/' (default)"), GRID+1 },
  510. {"no-ignore-case", NO_IGNORE_CASE_OPTION, 0, 0,
  511. N_("exclusion is case sensitive (default)"), GRID+1 },
  512. {"no-wildcards", NO_WILDCARDS_OPTION, 0, 0,
  513. N_("exclude patterns are plain strings"), GRID+1 },
  514. {"no-wildcards-match-slash", NO_WILDCARDS_MATCH_SLASH_OPTION, 0, 0,
  515. N_("exclude pattern wildcards do not match `/'"), GRID+1 },
  516. {"no-recursion", NO_RECURSION_OPTION, 0, 0,
  517. N_("avoid descending automatically in directories"), GRID+1 },
  518. {"one-file-system", ONE_FILE_SYSTEM_OPTION, 0, 0,
  519. N_("stay in local file system when creating archive"), GRID+1 },
  520. {NULL, 'l', 0, OPTION_HIDDEN, "", GRID+1 },
  521. {"recursion", RECURSION_OPTION, 0, 0,
  522. N_("recurse into directories (default)"), GRID+1 },
  523. {"absolute-names", 'P', 0, 0,
  524. N_("don't strip leading `/'s from file names"), GRID+1 },
  525. {"dereference", 'h', 0, 0,
  526. N_("follow symlinks; archive and dump the files they point to"), GRID+1 },
  527. {"starting-file", 'K', N_("MEMBER-NAME"), 0,
  528. N_("begin at member MEMBER-NAME in the archive"), GRID+1 },
  529. {"strip-components", STRIP_COMPONENTS_OPTION, N_("NUMBER"), 0,
  530. N_("strip NUMBER leading components from file names"), GRID+1 },
  531. {"newer", 'N', N_("DATE-OR-FILE"), 0,
  532. N_("only store files newer than DATE-OR-FILE"), GRID+1 },
  533. {"newer-mtime", NEWER_MTIME_OPTION, N_("DATE"), 0,
  534. N_("compare date and time when data changed only"), GRID+1 },
  535. {"after-date", 'N', N_("DATE"), 0,
  536. N_("same as -N"), GRID+1 },
  537. {"backup", BACKUP_OPTION, N_("CONTROL"), OPTION_ARG_OPTIONAL,
  538. N_("backup before removal, choose version CONTROL"), GRID+1 },
  539. {"suffix", SUFFIX_OPTION, N_("STRING"), 0,
  540. N_("backup before removal, override usual suffix ('~' unless overridden by environment variable SIMPLE_BACKUP_SUFFIX)"), GRID+1 },
  541. {"wildcards", WILDCARDS_OPTION, 0, 0,
  542. N_("exclude patterns use wildcards (default)"), GRID+1 },
  543. {"wildcards-match-slash", WILDCARDS_MATCH_SLASH_OPTION, 0, 0,
  544. N_("exclude pattern wildcards match `/' (default)"), GRID+1 },
  545. #undef GRID
  546. #define GRID 100
  547. {NULL, 0, NULL, 0,
  548. N_("Informative output:"), GRID },
  549. {"verbose", 'v', 0, 0,
  550. N_("verbosely list files processed"), GRID+1 },
  551. {"checkpoint", CHECKPOINT_OPTION, 0, 0,
  552. N_("display progress messages every 10th record"), GRID+1 },
  553. {"check-links", CHECK_LINKS_OPTION, 0, 0,
  554. N_("print a message if not all links are dumped"), GRID+1 },
  555. {"totals", TOTALS_OPTION, 0, 0,
  556. N_("print total bytes written while creating archive"), GRID+1 },
  557. {"utc", UTC_OPTION, 0, 0,
  558. N_("print file modification dates in UTC"), GRID+1 },
  559. {"index-file", INDEX_FILE_OPTION, N_("FILE"), 0,
  560. N_("send verbose output to FILE"), GRID+1 },
  561. {"block-number", 'R', 0, 0,
  562. N_("show block number within archive with each message"), GRID+1 },
  563. {"interactive", 'w', 0, 0,
  564. N_("ask for confirmation for every action"), GRID+1 },
  565. {"confirmation", 0, 0, OPTION_ALIAS, NULL, GRID+1 },
  566. {"show-defaults", SHOW_DEFAULTS_OPTION, 0, 0,
  567. N_("Show tar defaults"), GRID+1 },
  568. {"show-omitted-dirs", SHOW_OMITTED_DIRS_OPTION, 0, 0,
  569. N_("When listing or extracting, list each directory that does not match search criteria"), GRID+1 },
  570. {"show-stored-names", SHOW_STORED_NAMES_OPTION, 0, 0,
  571. N_("When creating archive in verbose mode, list member names as stored in the archive"),
  572. GRID+1 },
  573. {"quoting-style", QUOTING_STYLE_OPTION, N_("STYLE"), 0,
  574. N_("Set name quoting style. See below for valid STYLE values."), GRID+1 },
  575. {"quote-chars", QUOTE_CHARS_OPTION, N_("STRING"), 0,
  576. N_("Additionally quote characters from STRING"), GRID+1 },
  577. {"no-quote-chars", NO_QUOTE_CHARS_OPTION, N_("STRING"), 0,
  578. N_("Disable quoting for characters from STRING"), GRID+1 },
  579. #undef GRID
  580. #define GRID 110
  581. {NULL, 0, NULL, 0,
  582. N_("Compatibility options:"), GRID },
  583. {NULL, 'o', 0, 0,
  584. N_("when creating, same as --old-archive. When extracting, same as --no-same-owner"), GRID+1 },
  585. #undef GRID
  586. #define GRID 120
  587. {NULL, 0, NULL, 0,
  588. N_("Other options:"), GRID },
  589. {"restrict", RESTRICT_OPTION, 0, 0,
  590. N_("Restrict use of some potentially harmful options"), -1 },
  591. {"help", '?', 0, 0, N_("Give this help list"), -1},
  592. {"usage", USAGE_OPTION, 0, 0, N_("Give a short usage message"), -1},
  593. {"license", LICENSE_OPTION, 0, 0, N_("Print license and exit"), -1},
  594. {"version", VERSION_OPTION, 0, 0, N_("Print program version"), -1},
  595. /* FIXME -V (--label) conflicts with the default short option for
  596. --version */
  597. {"HANG", HANG_OPTION, "SECS", OPTION_ARG_OPTIONAL | OPTION_HIDDEN,
  598. N_("Hang for SECS seconds (default 3600)"), 0},
  599. #undef GRID
  600. {0, 0, 0, 0, 0, 0}
  601. };
  602. static char const *const atime_preserve_args[] =
  603. {
  604. "replace", "system", NULL
  605. };
  606. static enum atime_preserve const atime_preserve_types[] =
  607. {
  608. replace_atime_preserve, system_atime_preserve
  609. };
  610. ARGMATCH_VERIFY (atime_preserve_args, atime_preserve_types);
  611. struct tar_args {
  612. char const *textual_date_option;
  613. int exclude_options;
  614. bool o_option;
  615. int pax_option;
  616. char const *backup_suffix_string;
  617. char const *version_control_string;
  618. int input_files;
  619. };
  620. static void
  621. show_default_settings (FILE *stream)
  622. {
  623. fprintf (stream,
  624. "--format=%s -f%s -b%d --quoting-style=%s --rmt-command=%s",
  625. archive_format_string (DEFAULT_ARCHIVE_FORMAT),
  626. DEFAULT_ARCHIVE, DEFAULT_BLOCKING,
  627. quoting_style_args[DEFAULT_QUOTING_STYLE],
  628. DEFAULT_RMT_COMMAND);
  629. #ifdef REMOTE_SHELL
  630. fprintf (stream, " --rsh-command=%s", REMOTE_SHELL);
  631. #endif
  632. fprintf (stream, "\n");
  633. }
  634. static void
  635. set_subcommand_option (enum subcommand subcommand)
  636. {
  637. if (subcommand_option != UNKNOWN_SUBCOMMAND
  638. && subcommand_option != subcommand)
  639. USAGE_ERROR ((0, 0,
  640. _("You may not specify more than one `-Acdtrux' option")));
  641. subcommand_option = subcommand;
  642. }
  643. static void
  644. set_use_compress_program_option (const char *string)
  645. {
  646. if (use_compress_program_option
  647. && strcmp (use_compress_program_option, string) != 0)
  648. USAGE_ERROR ((0, 0, _("Conflicting compression options")));
  649. use_compress_program_option = string;
  650. }
  651. void
  652. license ()
  653. {
  654. printf ("tar (%s) %s\n%s\n", PACKAGE_NAME, PACKAGE_VERSION,
  655. "Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1999, \n\
  656. 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.\n");
  657. puts (_("Based on the work of John Gilmore and Jay Fenlason. See AUTHORS\n\
  658. for complete list of authors.\n"));
  659. printf (_(" GNU tar is free software; you can redistribute it and/or modify\n"
  660. " it under the terms of the GNU General Public License as published by\n"
  661. " the Free Software Foundation; either version 2 of the License, or\n"
  662. " (at your option) any later version.\n"
  663. "\n"
  664. " GNU tar is distributed in the hope that it will be useful,\n"
  665. " but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  666. " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  667. " GNU General Public License for more details.\n"
  668. "\n"
  669. " You should have received a copy of the GNU General Public License\n"
  670. " along with GNU tar; if not, write to the Free Software Foundation,\n"
  671. " Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n"));
  672. exit (0);
  673. }
  674. static volatile int _argp_hang;
  675. enum read_file_list_state /* Result of reading file name from the list file */
  676. {
  677. file_list_success, /* OK, name read successfully */
  678. file_list_end, /* End of list file */
  679. file_list_zero /* Zero separator encountered where it should not */
  680. };
  681. /* Read from FP a sequence of characters up to FILENAME_TERMINATOR and put them
  682. into STK.
  683. */
  684. static enum read_file_list_state
  685. read_name_from_file (FILE *fp, struct obstack *stk)
  686. {
  687. int c;
  688. size_t counter = 0;
  689. for (c = getc (fp); c != EOF && c != filename_terminator; c = getc (fp))
  690. {
  691. if (c == 0)
  692. {
  693. /* We have read a zero separator. The file possibly is
  694. zero-separated */
  695. /* FATAL_ERROR((0, 0, N_("file name contains null character"))); */
  696. return file_list_zero;
  697. }
  698. obstack_1grow (stk, c);
  699. counter++;
  700. }
  701. obstack_1grow (stk, 0);
  702. return (counter == 0 && c == EOF) ? file_list_end : file_list_success;
  703. }
  704. static bool files_from_option; /* When set, tar will not refuse to create
  705. empty archives */
  706. static struct obstack argv_stk; /* Storage for additional command line options
  707. read using -T option */
  708. /* Prevent recursive inclusion of the same file */
  709. struct file_id_list
  710. {
  711. struct file_id_list *next;
  712. ino_t ino;
  713. dev_t dev;
  714. };
  715. static struct file_id_list *file_id_list;
  716. static void
  717. add_file_id (const char *filename)
  718. {
  719. struct file_id_list *p;
  720. struct stat st;
  721. if (stat (filename, &st))
  722. stat_fatal (filename);
  723. for (p = file_id_list; p; p = p->next)
  724. if (p->ino == st.st_ino && p->dev == st.st_dev)
  725. {
  726. FATAL_ERROR ((0, 0, _("%s: file list already read"),
  727. quotearg_colon (filename)));
  728. }
  729. p = xmalloc (sizeof *p);
  730. p->next = file_id_list;
  731. p->ino = st.st_ino;
  732. p->dev = st.st_dev;
  733. file_id_list = p;
  734. }
  735. /* Default density numbers for [0-9][lmh] device specifications */
  736. #ifndef LOW_DENSITY_NUM
  737. # define LOW_DENSITY_NUM 0
  738. #endif
  739. #ifndef MID_DENSITY_NUM
  740. # define MID_DENSITY_NUM 8
  741. #endif
  742. #ifndef HIGH_DENSITY_NUM
  743. # define HIGH_DENSITY_NUM 16
  744. #endif
  745. static void
  746. update_argv (const char *filename, struct argp_state *state)
  747. {
  748. FILE *fp;
  749. size_t count = 0, i;
  750. char *start, *p;
  751. char **new_argv;
  752. size_t new_argc;
  753. bool is_stdin = false;
  754. enum read_file_list_state read_state;
  755. if (!strcmp (filename, "-"))
  756. {
  757. is_stdin = true;
  758. request_stdin ("-T");
  759. fp = stdin;
  760. }
  761. else
  762. {
  763. add_file_id (filename);
  764. if ((fp = fopen (filename, "r")) == NULL)
  765. open_fatal (filename);
  766. }
  767. while ((read_state = read_name_from_file (fp, &argv_stk)) == file_list_success)
  768. count++;
  769. if (read_state == file_list_zero)
  770. {
  771. size_t size;
  772. WARN ((0, 0, N_("%s: file name read contains nul character"),
  773. quotearg_colon (filename)));
  774. /* Prepare new stack contents */
  775. size = obstack_object_size (&argv_stk);
  776. p = obstack_finish (&argv_stk);
  777. for (; size > 0; size--, p++)
  778. if (*p)
  779. obstack_1grow (&argv_stk, *p);
  780. else
  781. obstack_1grow (&argv_stk, '\n');
  782. obstack_1grow (&argv_stk, 0);
  783. count = 1;
  784. /* Read rest of files using new filename terminator */
  785. filename_terminator = 0;
  786. while (read_name_from_file (fp, &argv_stk) == file_list_success)
  787. count++;
  788. }
  789. if (!is_stdin)
  790. fclose (fp);
  791. if (count == 0)
  792. return;
  793. start = obstack_finish (&argv_stk);
  794. if (filename_terminator == 0)
  795. for (p = start; *p; p += strlen (p) + 1)
  796. if (p[0] == '-')
  797. count++;
  798. new_argc = state->argc + count;
  799. new_argv = xmalloc (sizeof (state->argv[0]) * (new_argc + 1));
  800. memcpy (new_argv, state->argv, sizeof (state->argv[0]) * (state->argc + 1));
  801. state->argv = new_argv;
  802. memmove (&state->argv[state->next + count], &state->argv[state->next],
  803. (state->argc - state->next + 1) * sizeof (state->argv[0]));
  804. state->argc = new_argc;
  805. for (i = state->next, p = start; *p; p += strlen (p) + 1, i++)
  806. {
  807. if (filename_terminator == 0 && p[0] == '-')
  808. state->argv[i++] = "--add-file";
  809. state->argv[i] = p;
  810. }
  811. }
  812. static error_t
  813. parse_opt (int key, char *arg, struct argp_state *state)
  814. {
  815. struct tar_args *args = state->input;
  816. switch (key)
  817. {
  818. case ARGP_KEY_ARG:
  819. /* File name or non-parsed option, because of ARGP_IN_ORDER */
  820. name_add (arg);
  821. args->input_files++;
  822. break;
  823. case 'A':
  824. set_subcommand_option (CAT_SUBCOMMAND);
  825. break;
  826. case 'b':
  827. {
  828. uintmax_t u;
  829. if (! (xstrtoumax (arg, 0, 10, &u, "") == LONGINT_OK
  830. && u == (blocking_factor = u)
  831. && 0 < blocking_factor
  832. && u == (record_size = u * BLOCKSIZE) / BLOCKSIZE))
  833. USAGE_ERROR ((0, 0, "%s: %s", quotearg_colon (arg),
  834. _("Invalid blocking factor")));
  835. }
  836. break;
  837. case 'B':
  838. /* Try to reblock input records. For reading 4.2BSD pipes. */
  839. /* It would surely make sense to exchange -B and -R, but it seems
  840. that -B has been used for a long while in Sun tar and most
  841. BSD-derived systems. This is a consequence of the block/record
  842. terminology confusion. */
  843. read_full_records_option = true;
  844. break;
  845. case 'c':
  846. set_subcommand_option (CREATE_SUBCOMMAND);
  847. break;
  848. case 'C':
  849. name_add ("-C");
  850. name_add (arg);
  851. break;
  852. case 'd':
  853. set_subcommand_option (DIFF_SUBCOMMAND);
  854. break;
  855. case 'f':
  856. if (archive_names == allocated_archive_names)
  857. {
  858. allocated_archive_names *= 2;
  859. archive_name_array =
  860. xrealloc (archive_name_array,
  861. sizeof (const char *) * allocated_archive_names);
  862. }
  863. archive_name_array[archive_names++] = arg;
  864. break;
  865. case 'F':
  866. /* Since -F is only useful with -M, make it implied. Run this
  867. script at the end of each tape. */
  868. info_script_option = arg;
  869. multi_volume_option = true;
  870. break;
  871. case 'g':
  872. listed_incremental_option = arg;
  873. after_date_option = true;
  874. /* Fall through. */
  875. case 'G':
  876. /* We are making an incremental dump (FIXME: are we?); save
  877. directories at the beginning of the archive, and include in each
  878. directory its contents. */
  879. incremental_option = true;
  880. break;
  881. case 'h':
  882. /* Follow symbolic links. */
  883. dereference_option = true;
  884. break;
  885. case 'i':
  886. /* Ignore zero blocks (eofs). This can't be the default,
  887. because Unix tar writes two blocks of zeros, then pads out
  888. the record with garbage. */
  889. ignore_zeros_option = true;
  890. break;
  891. case 'I':
  892. USAGE_ERROR ((0, 0,
  893. _("Warning: the -I option is not supported;"
  894. " perhaps you meant -j or -T?")));
  895. break;
  896. case 'j':
  897. set_use_compress_program_option ("bzip2");
  898. break;
  899. case 'k':
  900. /* Don't replace existing files. */
  901. old_files_option = KEEP_OLD_FILES;
  902. break;
  903. case 'K':
  904. starting_file_option = true;
  905. addname (arg, 0);
  906. break;
  907. case 'l':
  908. /* Historically equivalent to --one-file-system. This usage is
  909. incompatible with UNIX98 and POSIX specs and therefore is
  910. deprecated. The semantics of -l option will be changed in
  911. future versions. See TODO.
  912. */
  913. WARN ((0, 0,
  914. _("Semantics of -l option will change in the future releases.")));
  915. WARN ((0, 0,
  916. _("Please use --one-file-system option instead.")));
  917. /* FALL THROUGH */
  918. case ONE_FILE_SYSTEM_OPTION:
  919. /* When dumping directories, don't dump files/subdirectories
  920. that are on other filesystems. */
  921. one_file_system_option = true;
  922. break;
  923. case 'L':
  924. {
  925. uintmax_t u;
  926. if (xstrtoumax (arg, 0, 10, &u, "") != LONGINT_OK)
  927. USAGE_ERROR ((0, 0, "%s: %s", quotearg_colon (arg),
  928. _("Invalid tape length")));
  929. tape_length_option = 1024 * (tarlong) u;
  930. multi_volume_option = true;
  931. }
  932. break;
  933. case 'm':
  934. touch_option = true;
  935. break;
  936. case 'M':
  937. /* Make multivolume archive: when we can't write any more into
  938. the archive, re-open it, and continue writing. */
  939. multi_volume_option = true;
  940. break;
  941. case 'n':
  942. seekable_archive = true;
  943. break;
  944. case 'N':
  945. after_date_option = true;
  946. /* Fall through. */
  947. case NEWER_MTIME_OPTION:
  948. if (NEWER_OPTION_INITIALIZED (newer_mtime_option))
  949. USAGE_ERROR ((0, 0, _("More than one threshold date")));
  950. if (FILE_SYSTEM_PREFIX_LEN (arg) != 0
  951. || ISSLASH (*arg)
  952. || *arg == '.')
  953. {
  954. struct stat st;
  955. if (deref_stat (dereference_option, arg, &st) != 0)
  956. {
  957. stat_error (arg);
  958. USAGE_ERROR ((0, 0, _("Date sample file not found")));
  959. }
  960. newer_mtime_option = get_stat_mtime (&st);
  961. }
  962. else
  963. {
  964. if (! get_date (&newer_mtime_option, arg, NULL))
  965. {
  966. WARN ((0, 0, _("Substituting %s for unknown date format %s"),
  967. tartime (newer_mtime_option, false), quote (arg)));
  968. newer_mtime_option.tv_nsec = 0;
  969. }
  970. else
  971. args->textual_date_option = arg;
  972. }
  973. break;
  974. case 'o':
  975. args->o_option = true;
  976. break;
  977. case 'O':
  978. to_stdout_option = true;
  979. break;
  980. case 'p':
  981. same_permissions_option = true;
  982. break;
  983. case 'P':
  984. absolute_names_option = true;
  985. break;
  986. case 'r':
  987. set_subcommand_option (APPEND_SUBCOMMAND);
  988. break;
  989. case 'R':
  990. /* Print block numbers for debugging bad tar archives. */
  991. /* It would surely make sense to exchange -B and -R, but it seems
  992. that -B has been used for a long while in Sun tar ans most
  993. BSD-derived systems. This is a consequence of the block/record
  994. terminology confusion. */
  995. block_number_option = true;
  996. break;
  997. case 's':
  998. /* Names to extr are sorted. */
  999. same_order_option = true;
  1000. break;
  1001. case 'S':
  1002. sparse_option = true;
  1003. break;
  1004. case 't':
  1005. set_subcommand_option (LIST_SUBCOMMAND);
  1006. verbose_option++;
  1007. break;
  1008. case TEST_LABEL_OPTION:
  1009. set_subcommand_option (LIST_SUBCOMMAND);
  1010. test_label_option = true;
  1011. break;
  1012. case 'T':
  1013. update_argv (arg, state);
  1014. /* Indicate we've been given -T option. This is for backward
  1015. compatibility only, so that `tar cfT archive /dev/null will
  1016. succeed */
  1017. files_from_option = true;
  1018. break;
  1019. case 'u':
  1020. set_subcommand_option (UPDATE_SUBCOMMAND);
  1021. break;
  1022. case 'U':
  1023. old_files_option = UNLINK_FIRST_OLD_FILES;
  1024. break;
  1025. case UTC_OPTION:
  1026. utc_option = true;
  1027. break;
  1028. case 'v':
  1029. verbose_option++;
  1030. break;
  1031. case 'V':
  1032. volume_label_option = arg;
  1033. break;
  1034. case 'w':
  1035. interactive_option = true;
  1036. break;
  1037. case 'W':
  1038. verify_option = true;
  1039. break;
  1040. case 'x':
  1041. set_subcommand_option (EXTRACT_SUBCOMMAND);
  1042. break;
  1043. case 'X':
  1044. if (add_exclude_file (add_exclude, excluded, arg,
  1045. args->exclude_options | recursion_option, '\n')
  1046. != 0)
  1047. {
  1048. int e = errno;
  1049. FATAL_ERROR ((0, e, "%s", quotearg_colon (arg)));
  1050. }
  1051. break;
  1052. case 'z':
  1053. set_use_compress_program_option ("gzip");
  1054. break;
  1055. case 'Z':
  1056. set_use_compress_program_option ("compress");
  1057. break;
  1058. case ANCHORED_OPTION:
  1059. args->exclude_options |= EXCLUDE_ANCHORED;
  1060. break;
  1061. case ATIME_PRESERVE_OPTION:
  1062. atime_preserve_option =
  1063. (arg
  1064. ? XARGMATCH ("--atime-preserve", arg,
  1065. atime_preserve_args, atime_preserve_types)
  1066. : replace_atime_preserve);
  1067. if (! O_NOATIME && atime_preserve_option == system_atime_preserve)
  1068. FATAL_ERROR ((0, 0,
  1069. _("--atime-preserve='system' is not supported"
  1070. " on this platform")));
  1071. break;
  1072. case CHECKPOINT_OPTION:
  1073. checkpoint_option = true;
  1074. break;
  1075. case BACKUP_OPTION:
  1076. backup_option = true;
  1077. if (arg)
  1078. args->version_control_string = arg;
  1079. break;
  1080. case DELAY_DIRECTORY_RESTORE_OPTION:
  1081. delay_directory_restore_option = true;
  1082. break;
  1083. case NO_DELAY_DIRECTORY_RESTORE_OPTION:
  1084. delay_directory_restore_option = false;
  1085. break;
  1086. case DELETE_OPTION:
  1087. set_subcommand_option (DELETE_SUBCOMMAND);
  1088. break;
  1089. case EXCLUDE_OPTION:
  1090. add_exclude (excluded, arg, args->exclude_options | recursion_option);
  1091. break;
  1092. case EXCLUDE_CACHES_OPTION:
  1093. exclude_caches_option = true;
  1094. break;
  1095. case FORCE_LOCAL_OPTION:
  1096. force_local_option = true;
  1097. break;
  1098. case 'H':
  1099. set_archive_format (arg);
  1100. break;
  1101. case INDEX_FILE_OPTION:
  1102. index_file_name = arg;
  1103. break;
  1104. case IGNORE_CASE_OPTION:
  1105. args->exclude_options |= FNM_CASEFOLD;
  1106. break;
  1107. case IGNORE_COMMAND_ERROR_OPTION:
  1108. ignore_command_error_option = true;
  1109. break;
  1110. case IGNORE_FAILED_READ_OPTION:
  1111. ignore_failed_read_option = true;
  1112. break;
  1113. case KEEP_NEWER_FILES_OPTION:
  1114. old_files_option = KEEP_NEWER_FILES;
  1115. break;
  1116. case GROUP_OPTION:
  1117. if (! (strlen (arg) < GNAME_FIELD_SIZE
  1118. && gname_to_gid (arg, &group_option)))
  1119. {
  1120. uintmax_t g;
  1121. if (xstrtoumax (arg, 0, 10, &g, "") == LONGINT_OK
  1122. && g == (gid_t) g)
  1123. group_option = g;
  1124. else
  1125. FATAL_ERROR ((0, 0, "%s: %s", quotearg_colon (arg),
  1126. _("%s: Invalid group")));
  1127. }
  1128. break;
  1129. case MODE_OPTION:
  1130. mode_option = mode_compile (arg);
  1131. if (!mode_option)
  1132. FATAL_ERROR ((0, 0, _("Invalid mode given on option")));
  1133. initial_umask = umask (0);
  1134. umask (initial_umask);
  1135. break;
  1136. case NO_ANCHORED_OPTION:
  1137. args->exclude_options &= ~ EXCLUDE_ANCHORED;
  1138. break;
  1139. case NO_IGNORE_CASE_OPTION:
  1140. args->exclude_options &= ~ FNM_CASEFOLD;
  1141. break;
  1142. case NO_IGNORE_COMMAND_ERROR_OPTION:
  1143. ignore_command_error_option = false;
  1144. break;
  1145. case NO_OVERWRITE_DIR_OPTION:
  1146. old_files_option = NO_OVERWRITE_DIR_OLD_FILES;
  1147. break;
  1148. case NO_QUOTE_CHARS_OPTION:
  1149. for (;*arg; arg++)
  1150. set_char_quoting (NULL, *arg, 0);
  1151. break;
  1152. case NO_WILDCARDS_OPTION:
  1153. args->exclude_options &= ~ EXCLUDE_WILDCARDS;
  1154. break;
  1155. case NO_WILDCARDS_MATCH_SLASH_OPTION:
  1156. args->exclude_options |= FNM_FILE_NAME;
  1157. break;
  1158. case NULL_OPTION:
  1159. filename_terminator = '\0';
  1160. break;
  1161. case NUMERIC_OWNER_OPTION:
  1162. numeric_owner_option = true;
  1163. break;
  1164. case OCCURRENCE_OPTION:
  1165. if (!arg)
  1166. occurrence_option = 1;
  1167. else
  1168. {
  1169. uintmax_t u;
  1170. if (xstrtoumax (arg, 0, 10, &u, "") == LONGINT_OK)
  1171. occurrence_option = u;
  1172. else
  1173. FATAL_ERROR ((0, 0, "%s: %s", quotearg_colon (arg),
  1174. _("Invalid number")));
  1175. }
  1176. break;
  1177. case OVERWRITE_OPTION:
  1178. old_files_option = OVERWRITE_OLD_FILES;
  1179. break;
  1180. case OWNER_OPTION:
  1181. if (! (strlen (arg) < UNAME_FIELD_SIZE
  1182. && uname_to_uid (arg, &owner_option)))
  1183. {
  1184. uintmax_t u;
  1185. if (xstrtoumax (arg, 0, 10, &u, "") == LONGINT_OK
  1186. && u == (uid_t) u)
  1187. owner_option = u;
  1188. else
  1189. FATAL_ERROR ((0, 0, "%s: %s", quotearg_colon (arg),
  1190. _("Invalid owner")));
  1191. }
  1192. break;
  1193. case QUOTE_CHARS_OPTION:
  1194. for (;*arg; arg++)
  1195. set_char_quoting (NULL, *arg, 1);
  1196. break;
  1197. case QUOTING_STYLE_OPTION:
  1198. tar_set_quoting_style (arg);
  1199. break;
  1200. case PAX_OPTION:
  1201. args->pax_option++;
  1202. xheader_set_option (arg);
  1203. break;
  1204. case POSIX_OPTION:
  1205. set_archive_format ("posix");
  1206. break;
  1207. case PRESERVE_OPTION:
  1208. same_permissions_option = true;
  1209. same_order_option = true;
  1210. break;
  1211. case RECORD_SIZE_OPTION:
  1212. {
  1213. uintmax_t u;
  1214. if (! (xstrtoumax (arg, 0, 10, &u, "") == LONGINT_OK
  1215. && u == (size_t) u))
  1216. USAGE_ERROR ((0, 0, "%s: %s", quotearg_colon (arg),
  1217. _("Invalid record size")));
  1218. record_size = u;
  1219. if (record_size % BLOCKSIZE != 0)
  1220. USAGE_ERROR ((0, 0, _("Record size must be a multiple of %d."),
  1221. BLOCKSIZE));
  1222. blocking_factor = record_size / BLOCKSIZE;
  1223. }
  1224. break;
  1225. case RECURSIVE_UNLINK_OPTION:
  1226. recursive_unlink_option = true;
  1227. break;
  1228. case REMOVE_FILES_OPTION:
  1229. remove_files_option = true;
  1230. break;
  1231. case RESTRICT_OPTION:
  1232. restrict_option = true;
  1233. break;
  1234. case RMT_COMMAND_OPTION:
  1235. rmt_command = arg;
  1236. break;
  1237. case RSH_COMMAND_OPTION:
  1238. rsh_command_option = arg;
  1239. break;
  1240. case SHOW_DEFAULTS_OPTION:
  1241. show_default_settings (stdout);
  1242. exit(0);
  1243. case STRIP_COMPONENTS_OPTION:
  1244. {
  1245. uintmax_t u;
  1246. if (! (xstrtoumax (arg, 0, 10, &u, "") == LONGINT_OK
  1247. && u == (size_t) u))
  1248. USAGE_ERROR ((0, 0, "%s: %s", quotearg_colon (arg),
  1249. _("Invalid number of elements")));
  1250. strip_name_components = u;
  1251. }
  1252. break;
  1253. case SHOW_OMITTED_DIRS_OPTION:
  1254. show_omitted_dirs_option = true;
  1255. break;
  1256. case SHOW_STORED_NAMES_OPTION:
  1257. show_stored_names_option = true;
  1258. break;
  1259. case SUFFIX_OPTION:
  1260. backup_option = true;
  1261. args->backup_suffix_string = arg;
  1262. break;
  1263. case TO_COMMAND_OPTION:
  1264. if (to_command_option)
  1265. USAGE_ERROR ((0, 0, _("Only one --to-command option allowed")));
  1266. to_command_option = arg;
  1267. break;
  1268. case TOTALS_OPTION:
  1269. totals_option = true;
  1270. break;
  1271. case USE_COMPRESS_PROGRAM_OPTION:
  1272. set_use_compress_program_option (arg);
  1273. break;
  1274. case VOLNO_FILE_OPTION:
  1275. volno_file_option = arg;
  1276. break;
  1277. case WILDCARDS_OPTION:
  1278. args->exclude_options |= EXCLUDE_WILDCARDS;
  1279. break;
  1280. case WILDCARDS_MATCH_SLASH_OPTION:
  1281. args->exclude_options &= ~ FNM_FILE_NAME;
  1282. break;
  1283. case CHECK_LINKS_OPTION:
  1284. check_links_option = 1;
  1285. break;
  1286. case NO_RECURSION_OPTION:
  1287. recursion_option = 0;
  1288. break;
  1289. case NO_SAME_OWNER_OPTION:
  1290. same_owner_option = -1;
  1291. break;
  1292. case NO_SAME_PERMISSIONS_OPTION:
  1293. same_permissions_option = -1;
  1294. break;
  1295. case RECURSION_OPTION:
  1296. recursion_option = FNM_LEADING_DIR;
  1297. break;
  1298. case SAME_OWNER_OPTION:
  1299. same_owner_option = 1;
  1300. break;
  1301. case UNQUOTE_OPTION:
  1302. unquote_option = true;
  1303. break;
  1304. case NO_UNQUOTE_OPTION:
  1305. unquote_option = false;
  1306. break;
  1307. case '0':
  1308. case '1':
  1309. case '2':
  1310. case '3':
  1311. case '4':
  1312. case '5':
  1313. case '6':
  1314. case '7':
  1315. #ifdef DEVICE_PREFIX
  1316. {
  1317. int device = key - '0';
  1318. int density;
  1319. static char buf[sizeof DEVICE_PREFIX + 10];
  1320. char *cursor;
  1321. if (arg[1])
  1322. argp_error (state, _("Malformed density argument: %s"), quote (arg));
  1323. strcpy (buf, DEVICE_PREFIX);
  1324. cursor = buf + strlen (buf);
  1325. #ifdef DENSITY_LETTER
  1326. sprintf (cursor, "%d%c", device, arg[0]);
  1327. #else /* not DENSITY_LETTER */
  1328. switch (arg[0])
  1329. {
  1330. case 'l':
  1331. device += LOW_DENSITY_NUM;
  1332. break;
  1333. case 'm':
  1334. device += MID_DENSITY_NUM;
  1335. break;
  1336. case 'h':
  1337. device += HIGH_DENSITY_NUM;
  1338. break;
  1339. default:
  1340. argp_error (state, _("Unknown density: `%c'"), arg[0]);
  1341. }
  1342. sprintf (cursor, "%d", device);
  1343. #endif /* not DENSITY_LETTER */
  1344. if (archive_names == allocated_archive_names)
  1345. {
  1346. allocated_archive_names *= 2;
  1347. archive_name_array =
  1348. xrealloc (archive_name_array,
  1349. sizeof (const char *) * allocated_archive_names);
  1350. }
  1351. archive_name_array[archive_names++] = xstrdup (buf);
  1352. }
  1353. break;
  1354. #else /* not DEVICE_PREFIX */
  1355. argp_error (state,
  1356. _("Options `-[0-7][lmh]' not supported by *this* tar"));
  1357. #endif /* not DEVICE_PREFIX */
  1358. case '?':
  1359. state->flags |= ARGP_NO_EXIT;
  1360. argp_state_help (state, state->out_stream,
  1361. ARGP_HELP_STD_HELP & ~ARGP_HELP_BUG_ADDR);
  1362. fprintf (state->out_stream, "\n%s\n\n",
  1363. _("Valid arguments for --quoting-style options are:"));
  1364. tar_list_quoting_styles (state->out_stream, " ");
  1365. fprintf (state->out_stream, _("\n*This* tar defaults to:\n"));
  1366. show_default_settings (state->out_stream);
  1367. fprintf (state->out_stream, "\n");
  1368. fprintf (state->out_stream, _("Report bugs to %s.\n"),
  1369. argp_program_bug_address);
  1370. exit (0);
  1371. case USAGE_OPTION:
  1372. argp_state_help (state, state->out_stream,
  1373. ARGP_HELP_USAGE | ARGP_HELP_EXIT_OK);
  1374. break;
  1375. case VERSION_OPTION:
  1376. fprintf (state->out_stream, "%s\n", argp_program_version);
  1377. exit (0);
  1378. case LICENSE_OPTION:
  1379. license ();
  1380. break;
  1381. case HANG_OPTION:
  1382. _argp_hang = atoi (arg ? arg : "3600");
  1383. while (_argp_hang-- > 0)
  1384. sleep (1);
  1385. break;
  1386. default:
  1387. return ARGP_ERR_UNKNOWN;
  1388. }
  1389. return 0;
  1390. }
  1391. static struct argp argp = {
  1392. options,
  1393. parse_opt,
  1394. N_("[FILE]..."),
  1395. doc,
  1396. NULL,
  1397. NULL,
  1398. NULL
  1399. };
  1400. void
  1401. usage (int status)
  1402. {
  1403. argp_help (&argp, stderr, ARGP_HELP_SEE, (char*) program_name);
  1404. exit (status);
  1405. }
  1406. /* Parse the options for tar. */
  1407. static struct argp_option *
  1408. find_argp_option (struct argp_option *options, int letter)
  1409. {
  1410. for (;
  1411. !(options->name == NULL
  1412. && options->key == 0
  1413. && options->arg == 0
  1414. && options->flags == 0
  1415. && options->doc == NULL); options++)
  1416. if (options->key == letter)
  1417. return options;
  1418. return NULL;
  1419. }
  1420. static void
  1421. decode_options (int argc, char **argv)
  1422. {
  1423. int index;
  1424. struct tar_args args;
  1425. /* Set some default option values. */
  1426. args.textual_date_option = NULL;
  1427. args.exclude_options = EXCLUDE_WILDCARDS;
  1428. args.o_option = 0;
  1429. args.pax_option = 0;
  1430. args.backup_suffix_string = getenv ("SIMPLE_BACKUP_SUFFIX");
  1431. args.version_control_string = 0;
  1432. args.input_files = 0;
  1433. subcommand_option = UNKNOWN_SUBCOMMAND;
  1434. archive_format = DEFAULT_FORMAT;
  1435. blocking_factor = DEFAULT_BLOCKING;
  1436. record_size = DEFAULT_BLOCKING * BLOCKSIZE;
  1437. excluded = new_exclude ();
  1438. newer_mtime_option.tv_sec = TYPE_MINIMUM (time_t);
  1439. newer_mtime_option.tv_nsec = -1;
  1440. recursion_option = FNM_LEADING_DIR;
  1441. unquote_option = true;
  1442. owner_option = -1;
  1443. group_option = -1;
  1444. /* Convert old-style tar call by exploding option element and rearranging
  1445. options accordingly. */
  1446. if (argc > 1 && argv[1][0] != '-')
  1447. {
  1448. int new_argc; /* argc value for rearranged arguments */
  1449. char **new_argv; /* argv value for rearranged arguments */
  1450. char *const *in; /* cursor into original argv */
  1451. char **out; /* cursor into rearranged argv */
  1452. const char *letter; /* cursor into old option letters */
  1453. char buffer[3]; /* constructed option buffer */
  1454. /* Initialize a constructed option. */
  1455. buffer[0] = '-';
  1456. buffer[2] = '\0';
  1457. /* Allocate a new argument array, and copy program name in it. */
  1458. new_argc = argc - 1 + strlen (argv[1]);
  1459. new_argv = xmalloc ((new_argc + 1) * sizeof (char *));
  1460. in = argv;
  1461. out = new_argv;
  1462. *out++ = *in++;
  1463. /* Copy each old letter option as a separate option, and have the
  1464. corresponding argument moved next to it. */
  1465. for (letter = *in++; *letter; letter++)
  1466. {
  1467. struct argp_option *opt;
  1468. buffer[1] = *letter;
  1469. *out++ = xstrdup (buffer);
  1470. opt = find_argp_option (options, *letter);
  1471. if (opt && opt->arg)
  1472. {
  1473. if (in < argv + argc)
  1474. *out++ = *in++;
  1475. else
  1476. USAGE_ERROR ((0, 0, _("Old option `%c' requires an argument."),
  1477. *letter));
  1478. }
  1479. }
  1480. /* Copy all remaining options. */
  1481. while (in < argv + argc)
  1482. *out++ = *in++;
  1483. *out = 0;
  1484. /* Replace the old option list by the new one. */
  1485. argc = new_argc;
  1486. argv = new_argv;
  1487. }
  1488. /* Parse all options and non-options as they appear. */
  1489. prepend_default_options (getenv ("TAR_OPTIONS"), &argc, &argv);
  1490. if (argp_parse (&argp, argc, argv, ARGP_IN_ORDER|ARGP_NO_HELP,
  1491. &index, &args))
  1492. exit (1);
  1493. /* Special handling for 'o' option:
  1494. GNU tar used to say "output old format".
  1495. UNIX98 tar says don't chown files after extracting (we use
  1496. "--no-same-owner" for this).
  1497. The old GNU tar semantics is retained when used with --create
  1498. option, otherwise UNIX98 semantics is assumed */
  1499. if (args.o_option)
  1500. {
  1501. if (subcommand_option == CREATE_SUBCOMMAND)
  1502. {
  1503. /* GNU Tar <= 1.13 compatibility */
  1504. set_archive_format ("v7");
  1505. }
  1506. else
  1507. {
  1508. /* UNIX98 compatibility */
  1509. same_owner_option = -1;
  1510. }
  1511. }
  1512. /* Handle operands after any "--" argument. */
  1513. for (; index < argc; index++)
  1514. {
  1515. name_add (argv[index]);
  1516. args.input_files++;
  1517. }
  1518. /* Derive option values and check option consistency. */
  1519. if (archive_format == DEFAULT_FORMAT)
  1520. {
  1521. if (args.pax_option)
  1522. archive_format = POSIX_FORMAT;
  1523. else
  1524. archive_format = DEFAULT_ARCHIVE_FORMAT;
  1525. }
  1526. if ((volume_label_option && subcommand_option == CREATE_SUBCOMMAND)
  1527. || incremental_option
  1528. || multi_volume_option
  1529. || sparse_option)
  1530. assert_format (FORMAT_MASK (OLDGNU_FORMAT)
  1531. | FORMAT_MASK (GNU_FORMAT)
  1532. | FORMAT_MASK (POSIX_FORMAT));
  1533. if (multi_volume_option
  1534. && archive_format == POSIX_FORMAT
  1535. && subcommand_option == CREATE_SUBCOMMAND
  1536. && !tape_length_option)
  1537. USAGE_ERROR ((0, 0,
  1538. _("creating multi-volume archives in posix format requires using --tape-length (-L) option")));
  1539. if (occurrence_option)
  1540. {
  1541. if (!args.input_files)
  1542. USAGE_ERROR ((0, 0,
  1543. _("--occurrence is meaningless without a file list")));
  1544. if (subcommand_option != DELETE_SUBCOMMAND
  1545. && subcommand_option != DIFF_SUBCOMMAND
  1546. && subcommand_option != EXTRACT_SUBCOMMAND
  1547. && subcommand_option != LIST_SUBCOMMAND)
  1548. USAGE_ERROR ((0, 0,
  1549. _("--occurrence cannot be used in the requested operation mode")));
  1550. }
  1551. if (seekable_archive && subcommand_option == DELETE_SUBCOMMAND)
  1552. {
  1553. /* The current code in delete.c is based on the assumption that
  1554. skip_member() reads all data from the archive. So, we should
  1555. make sure it won't use seeks. On the other hand, the same code
  1556. depends on the ability to backspace a record in the archive,
  1557. so setting seekable_archive to false is technically incorrect.
  1558. However, it is tested only in skip_member(), so it's not a
  1559. problem. */
  1560. seekable_archive = false;
  1561. }
  1562. if (archive_names == 0)
  1563. {
  1564. /* If no archive file name given, try TAPE from the environment, or
  1565. else, DEFAULT_ARCHIVE from the configuration process. */
  1566. archive_names = 1;
  1567. archive_name_array[0] = getenv ("TAPE");
  1568. if (! archive_name_array[0])
  1569. archive_name_array[0] = DEFAULT_ARCHIVE;
  1570. }
  1571. /* Allow multiple archives only with `-M'. */
  1572. if (archive_names > 1 && !multi_volume_option)
  1573. USAGE_ERROR ((0, 0,
  1574. _("Multiple archive files require `-M' option")));
  1575. if (listed_incremental_option
  1576. && NEWER_OPTION_INITIALIZED (newer_mtime_option))
  1577. USAGE_ERROR ((0, 0,
  1578. _("Cannot combine --listed-incremental with --newer")));
  1579. if (volume_label_option)
  1580. {
  1581. if (archive_format == GNU_FORMAT || archive_format == OLDGNU_FORMAT)
  1582. {
  1583. size_t volume_label_max_len =
  1584. (sizeof current_header->header.name
  1585. - 1 /* for trailing '\0' */
  1586. - (multi_volume_option
  1587. ? (sizeof " Volume "
  1588. - 1 /* for null at end of " Volume " */
  1589. + INT_STRLEN_BOUND (int) /* for volume number */
  1590. - 1 /* for sign, as 0 <= volno */)
  1591. : 0));
  1592. if (volume_label_max_len < strlen (volume_label_option))
  1593. USAGE_ERROR ((0, 0,
  1594. ngettext ("%s: Volume label is too long (limit is %lu byte)",
  1595. "%s: Volume label is too long (limit is %lu bytes)",
  1596. volume_label_max_len),
  1597. quotearg_colon (volume_label_option),
  1598. (unsigned long) volume_label_max_len));
  1599. }
  1600. /* else FIXME
  1601. Label length in PAX format is limited by the volume size. */
  1602. }
  1603. if (verify_option)
  1604. {
  1605. if (multi_volume_option)
  1606. USAGE_ERROR ((0, 0, _("Cannot verify multi-volume archives")));
  1607. if (use_compress_program_option)
  1608. USAGE_ERROR ((0, 0, _("Cannot verify compressed archives")));
  1609. }
  1610. if (use_compress_program_option)
  1611. {
  1612. if (multi_volume_option)
  1613. USAGE_ERROR ((0, 0, _("Cannot use multi-volume compressed archives")));
  1614. if (subcommand_option == UPDATE_SUBCOMMAND
  1615. || subcommand_option == APPEND_SUBCOMMAND
  1616. || subcommand_option == DELETE_SUBCOMMAND)
  1617. USAGE_ERROR ((0, 0, _("Cannot update compressed archives")));
  1618. if (subcommand_option == CAT_SUBCOMMAND)
  1619. USAGE_ERROR ((0, 0, _("Cannot concatenate compressed archives")));
  1620. }
  1621. /* It is no harm to use --pax-option on non-pax archives in archive
  1622. reading mode. It may even be useful, since it allows to override
  1623. file attributes from tar headers. Therefore I allow such usage.
  1624. --gray */
  1625. if (args.pax_option
  1626. && archive_format != POSIX_FORMAT
  1627. && (subcommand_option != EXTRACT_SUBCOMMAND
  1628. || subcommand_option != DIFF_SUBCOMMAND
  1629. || subcommand_option != LIST_SUBCOMMAND))
  1630. USAGE_ERROR ((0, 0, _("--pax-option can be used only on POSIX archives")));
  1631. /* If ready to unlink hierarchies, so we are for simpler files. */
  1632. if (recursive_unlink_option)
  1633. old_files_option = UNLINK_FIRST_OLD_FILES;
  1634. if (test_label_option)
  1635. {
  1636. /* --test-label is silent if the user has specified the label name to
  1637. compare against. */
  1638. if (args.input_files == 0)
  1639. verbose_option++;
  1640. }
  1641. else if (utc_option)
  1642. verbose_option = 2;
  1643. /* Forbid using -c with no input files whatsoever. Check that `-f -',
  1644. explicit or implied, is used correctly. */
  1645. switch (subcommand_option)
  1646. {
  1647. case CREATE_SUBCOMMAND:
  1648. if (args.input_files == 0 && !files_from_option)
  1649. USAGE_ERROR ((0, 0,
  1650. _("Cowardly refusing to create an empty archive")));
  1651. break;
  1652. case EXTRACT_SUBCOMMAND:
  1653. case LIST_SUBCOMMAND:
  1654. case DIFF_SUBCOMMAND:
  1655. for (archive_name_cursor = archive_name_array;
  1656. archive_name_cursor < archive_name_array + archive_names;
  1657. archive_name_cursor++)
  1658. if (!strcmp (*archive_name_cursor, "-"))
  1659. request_stdin ("-f");
  1660. break;
  1661. case CAT_SUBCOMMAND:
  1662. case UPDATE_SUBCOMMAND:
  1663. case APPEND_SUBCOMMAND:
  1664. for (archive_name_cursor = archive_name_array;
  1665. archive_name_cursor < archive_name_array + archive_names;
  1666. archive_name_cursor++)
  1667. if (!strcmp (*archive_name_cursor, "-"))
  1668. USAGE_ERROR ((0, 0,
  1669. _("Options `-Aru' are incompatible with `-f -'")));
  1670. default:
  1671. break;
  1672. }
  1673. archive_name_cursor = archive_name_array;
  1674. /* Prepare for generating backup names. */
  1675. if (args.backup_suffix_string)
  1676. simple_backup_suffix = xstrdup (args.backup_suffix_string);
  1677. if (backup_option)
  1678. {
  1679. backup_type = xget_version ("--backup", args.version_control_string);
  1680. /* No backup is needed either if explicitely disabled or if
  1681. the extracted files are not being written to disk. */
  1682. if (backup_type == no_backups || EXTRACT_OVER_PIPE)
  1683. backup_option = false;
  1684. }
  1685. if (verbose_option && args.textual_date_option)
  1686. {
  1687. char const *treated_as = tartime (newer_mtime_option, true);
  1688. if (strcmp (args.textual_date_option, treated_as) != 0)
  1689. WARN ((0, 0, _("Treating date `%s' as %s"),
  1690. args.textual_date_option, treated_as));
  1691. }
  1692. }
  1693. /* Tar proper. */
  1694. /* Main routine for tar. */
  1695. int
  1696. main (int argc, char **argv)
  1697. {
  1698. set_start_time ();
  1699. program_name = argv[0];
  1700. setlocale (LC_ALL, "");
  1701. bindtextdomain (PACKAGE, LOCALEDIR);
  1702. textdomain (PACKAGE);
  1703. exit_status = TAREXIT_SUCCESS;
  1704. filename_terminator = '\n';
  1705. set_quoting_style (0, DEFAULT_QUOTING_STYLE);
  1706. /* Make sure we have first three descriptors available */
  1707. stdopen ();
  1708. /* Pre-allocate a few structures. */
  1709. allocated_archive_names = 10;
  1710. archive_name_array =
  1711. xmalloc (sizeof (const char *) * allocated_archive_names);
  1712. archive_names = 0;
  1713. obstack_init (&argv_stk);
  1714. #ifdef SIGCHLD
  1715. /* System V fork+wait does not work if SIGCHLD is ignored. */
  1716. signal (SIGCHLD, SIG_DFL);
  1717. #endif
  1718. init_names ();
  1719. /* Decode options. */
  1720. decode_options (argc, argv);
  1721. name_init ();
  1722. /* Main command execution. */
  1723. if (volno_file_option)
  1724. init_volume_number ();
  1725. switch (subcommand_option)
  1726. {
  1727. case UNKNOWN_SUBCOMMAND:
  1728. USAGE_ERROR ((0, 0,
  1729. _("You must specify one of the `-Acdtrux' options")));
  1730. case CAT_SUBCOMMAND:
  1731. case UPDATE_SUBCOMMAND:
  1732. case APPEND_SUBCOMMAND:
  1733. update_archive ();
  1734. break;
  1735. case DELETE_SUBCOMMAND:
  1736. delete_archive_members ();
  1737. break;
  1738. case CREATE_SUBCOMMAND:
  1739. create_archive ();
  1740. if (totals_option)
  1741. print_total_written ();
  1742. break;
  1743. case EXTRACT_SUBCOMMAND:
  1744. extr_init ();
  1745. read_and (extract_archive);
  1746. /* FIXME: should extract_finish () even if an ordinary signal is
  1747. received. */
  1748. extract_finish ();
  1749. break;
  1750. case LIST_SUBCOMMAND:
  1751. read_and (list_archive);
  1752. break;
  1753. case DIFF_SUBCOMMAND:
  1754. diff_init ();
  1755. read_and (diff_archive);
  1756. break;
  1757. }
  1758. if (check_links_option)
  1759. check_links ();
  1760. if (volno_file_option)
  1761. closeout_volume_number ();
  1762. /* Dispose of allocated memory, and return. */
  1763. free (archive_name_array);
  1764. name_term ();
  1765. if (stdlis != stderr && (ferror (stdlis) || fclose (stdlis) != 0))
  1766. FATAL_ERROR ((0, 0, _("Error in writing to standard output")));
  1767. if (exit_status == TAREXIT_FAILURE)
  1768. error (0, 0, _("Error exit delayed from previous errors"));
  1769. if (ferror (stderr) || fclose (stderr) != 0)
  1770. exit_status = TAREXIT_FAILURE;
  1771. return exit_status;
  1772. }
  1773. void
  1774. tar_stat_init (struct tar_stat_info *st)
  1775. {
  1776. memset (st, 0, sizeof (*st));
  1777. }
  1778. void
  1779. tar_stat_destroy (struct tar_stat_info *st)
  1780. {
  1781. free (st->orig_file_name);
  1782. free (st->file_name);
  1783. free (st->link_name);
  1784. free (st->uname);
  1785. free (st->gname);
  1786. free (st->sparse_map);
  1787. free (st->dumpdir);
  1788. memset (st, 0, sizeof (*st));
  1789. }
  1790. /* Format mask for all available formats that support nanosecond
  1791. timestamp resolution. */
  1792. #define NS_PRECISION_FORMAT_MASK FORMAT_MASK (POSIX_FORMAT)
  1793. /* Same as timespec_cmp, but ignore nanoseconds if current archive
  1794. format does not provide sufficient resolution. */
  1795. int
  1796. tar_timespec_cmp (struct timespec a, struct timespec b)
  1797. {
  1798. if (!(FORMAT_MASK (current_format) & NS_PRECISION_FORMAT_MASK))
  1799. a.tv_nsec = b.tv_nsec = 0;
  1800. return timespec_cmp (a, b);
  1801. }