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