1 /* A tar (tape archiver) program.
3 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000,
4 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
6 Written by John Gilmore, starting 1985-08-25.
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 3, or (at your option) any later
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.
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. */
26 #include <argp-namefrob.h>
27 #include <argp-fmtstream.h>
28 #include <argp-version-etc.h>
31 #if ! defined SIGCHLD && defined SIGCLD
32 # define SIGCHLD SIGCLD
35 /* The following causes "common.h" to produce definitions of all the global
36 variables, rather than just "extern" declarations of them. GNU tar does
37 depend on the system loader to preset all GLOBAL variables to neutral (or
38 zero) values; explicit initialization is usually not done. */
44 #include <configmake.h>
48 #include <rmt-command.h>
51 #include <version-etc.h>
56 /* Local declarations. */
58 #ifndef DEFAULT_ARCHIVE_FORMAT
59 # define DEFAULT_ARCHIVE_FORMAT GNU_FORMAT
62 #ifndef DEFAULT_ARCHIVE
63 # define DEFAULT_ARCHIVE "tar.out"
66 #ifndef DEFAULT_BLOCKING
67 # define DEFAULT_BLOCKING 20
73 /* Name of option using stdin. */
74 static const char *stdin_used_by
;
76 /* Doesn't return if stdin already requested. */
78 request_stdin (const char *option
)
81 USAGE_ERROR ((0, 0, _("Options `-%s' and `-%s' both want standard input"),
82 stdin_used_by
, option
));
84 stdin_used_by
= option
;
87 extern int rpmatch (char const *response
);
89 /* Returns true if and only if the user typed an affirmative response. */
91 confirm (const char *message_action
, const char *message_name
)
93 static FILE *confirm_file
;
94 static int confirm_file_EOF
;
99 if (archive
== 0 || stdin_used_by
)
101 confirm_file
= fopen (TTY_NAME
, "r");
103 open_fatal (TTY_NAME
);
107 request_stdin ("-w");
108 confirm_file
= stdin
;
112 fprintf (stdlis
, "%s %s?", message_action
, quote (message_name
));
115 if (!confirm_file_EOF
)
117 char *response
= NULL
;
118 size_t response_size
= 0;
119 if (getline (&response
, &response_size
, confirm_file
) < 0)
120 confirm_file_EOF
= 1;
122 status
= rpmatch (response
) > 0;
126 if (confirm_file_EOF
)
128 fputc ('\n', stdlis
);
135 static struct fmttab
{
137 enum archive_format fmt
;
140 { "oldgnu", OLDGNU_FORMAT
},
141 { "ustar", USTAR_FORMAT
},
142 { "posix", POSIX_FORMAT
},
143 #if 0 /* not fully supported yet */
144 { "star", STAR_FORMAT
},
146 { "gnu", GNU_FORMAT
},
147 { "pax", POSIX_FORMAT
}, /* An alias for posix */
152 set_archive_format (char const *name
)
154 struct fmttab
const *p
;
156 for (p
= fmttab
; strcmp (p
->name
, name
) != 0; )
158 USAGE_ERROR ((0, 0, _("%s: Invalid archive format"),
159 quotearg_colon (name
)));
161 archive_format
= p
->fmt
;
165 archive_format_string (enum archive_format fmt
)
167 struct fmttab
const *p
;
169 for (p
= fmttab
; p
->name
; p
++)
175 #define FORMAT_MASK(n) (1<<(n))
178 assert_format(unsigned fmt_mask
)
180 if ((FORMAT_MASK (archive_format
) & fmt_mask
) == 0)
182 _("GNU features wanted on incompatible archive format")));
186 subcommand_string (enum subcommand c
)
190 case UNKNOWN_SUBCOMMAND
:
193 case APPEND_SUBCOMMAND
:
199 case CREATE_SUBCOMMAND
:
202 case DELETE_SUBCOMMAND
:
205 case DIFF_SUBCOMMAND
:
208 case EXTRACT_SUBCOMMAND
:
211 case LIST_SUBCOMMAND
:
214 case UPDATE_SUBCOMMAND
:
223 tar_list_quoting_styles (struct obstack
*stk
, char *prefix
)
226 size_t prefixlen
= strlen (prefix
);
228 for (i
= 0; quoting_style_args
[i
]; i
++)
230 obstack_grow (stk
, prefix
, prefixlen
);
231 obstack_grow (stk
, quoting_style_args
[i
],
232 strlen (quoting_style_args
[i
]));
233 obstack_1grow (stk
, '\n');
238 tar_set_quoting_style (char *arg
)
242 for (i
= 0; quoting_style_args
[i
]; i
++)
243 if (strcmp (arg
, quoting_style_args
[i
]) == 0)
245 set_quoting_style (NULL
, i
);
249 _("Unknown quoting style `%s'. Try `%s --quoting-style=help' to get a list."), arg
, program_invocation_short_name
));
257 ANCHORED_OPTION
= CHAR_MAX
+ 1,
258 ATIME_PRESERVE_OPTION
,
262 CHECKPOINT_ACTION_OPTION
,
263 DELAY_DIRECTORY_RESTORE_OPTION
,
264 HARD_DEREFERENCE_OPTION
,
266 EXCLUDE_BACKUPS_OPTION
,
267 EXCLUDE_CACHES_OPTION
,
268 EXCLUDE_CACHES_UNDER_OPTION
,
269 EXCLUDE_CACHES_ALL_OPTION
,
272 EXCLUDE_TAG_UNDER_OPTION
,
273 EXCLUDE_TAG_ALL_OPTION
,
278 IGNORE_COMMAND_ERROR_OPTION
,
279 IGNORE_FAILED_READ_OPTION
,
281 KEEP_NEWER_FILES_OPTION
,
289 NO_AUTO_COMPRESS_OPTION
,
290 NO_CHECK_DEVICE_OPTION
,
291 NO_DELAY_DIRECTORY_RESTORE_OPTION
,
292 NO_IGNORE_CASE_OPTION
,
293 NO_IGNORE_COMMAND_ERROR_OPTION
,
295 NO_OVERWRITE_DIR_OPTION
,
296 NO_QUOTE_CHARS_OPTION
,
298 NO_SAME_OWNER_OPTION
,
299 NO_SAME_PERMISSIONS_OPTION
,
302 NO_WILDCARDS_MATCH_SLASH_OPTION
,
305 NUMERIC_OWNER_OPTION
,
308 ONE_FILE_SYSTEM_OPTION
,
309 OVERWRITE_DIR_OPTION
,
316 QUOTING_STYLE_OPTION
,
319 RECURSIVE_UNLINK_OPTION
,
325 SHOW_DEFAULTS_OPTION
,
326 SHOW_OMITTED_DIRS_OPTION
,
327 SHOW_TRANSFORMED_NAMES_OPTION
,
328 SPARSE_VERSION_OPTION
,
329 STRIP_COMPONENTS_OPTION
,
339 WILDCARDS_MATCH_SLASH_OPTION
,
343 const char *argp_program_version
= "tar (" PACKAGE_NAME
") " VERSION
;
344 const char *argp_program_bug_address
= "<" PACKAGE_BUGREPORT
">";
345 static char const doc
[] = N_("\
346 GNU `tar' saves many files together into a single tape or disk archive, \
347 and can restore individual files from the archive.\n\
350 tar -cf archive.tar foo bar # Create archive.tar from files foo and bar.\n\
351 tar -tvf archive.tar # List all files in archive.tar verbosely.\n\
352 tar -xf archive.tar # Extract all files from archive.tar.\n")
354 N_("The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
355 The version control may be set with --backup or VERSION_CONTROL, values are:\n\n\
356 none, off never make backups\n\
357 t, numbered make numbered backups\n\
358 nil, existing numbered if numbered backups exist, simple otherwise\n\
359 never, simple always make simple backups\n");
364 Available option letters are DEQY and eqy. Consider the following
367 [For Solaris tar compatibility =/= Is it important at all?]
368 e exit immediately with a nonzero exit status if unexpected errors occur
369 E use extended headers (--format=posix)
371 [q alias for --occurrence=1 =/= this would better be used for quiet?]
373 y per-file gzip compression
374 Y per-block gzip compression.
376 Additionally, the 'n' letter is assigned for option --seek, which
377 is probably not needed and should be marked as deprecated, so that
378 -n may become available in the future.
381 static struct argp_option options
[] = {
384 N_("Main operation mode:"), GRID
},
387 N_("list the contents of an archive"), GRID
+1 },
388 {"extract", 'x', 0, 0,
389 N_("extract files from an archive"), GRID
+1 },
390 {"get", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
391 {"create", 'c', 0, 0,
392 N_("create a new archive"), GRID
+1 },
394 N_("find differences between archive and file system"), GRID
+1 },
395 {"compare", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
396 {"append", 'r', 0, 0,
397 N_("append files to the end of an archive"), GRID
+1 },
398 {"update", 'u', 0, 0,
399 N_("only append files newer than copy in archive"), GRID
+1 },
400 {"catenate", 'A', 0, 0,
401 N_("append tar files to an archive"), GRID
+1 },
402 {"concatenate", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
403 {"delete", DELETE_OPTION
, 0, 0,
404 N_("delete from the archive (not on mag tapes!)"), GRID
+1 },
405 {"test-label", TEST_LABEL_OPTION
, NULL
, 0,
406 N_("test the archive volume label and exit"), GRID
+1 },
411 N_("Operation modifiers:"), GRID
},
413 {"sparse", 'S', 0, 0,
414 N_("handle sparse files efficiently"), GRID
+1 },
415 {"sparse-version", SPARSE_VERSION_OPTION
, N_("MAJOR[.MINOR]"), 0,
416 N_("set version of the sparse format to use (implies --sparse)"), GRID
+1},
417 {"incremental", 'G', 0, 0,
418 N_("handle old GNU-format incremental backup"), GRID
+1 },
419 {"listed-incremental", 'g', N_("FILE"), 0,
420 N_("handle new GNU-format incremental backup"), GRID
+1 },
421 {"level", LEVEL_OPTION
, N_("NUMBER"), 0,
422 N_("dump level for created listed-incremental archive"), GRID
+1 },
423 {"ignore-failed-read", IGNORE_FAILED_READ_OPTION
, 0, 0,
424 N_("do not exit with nonzero on unreadable files"), GRID
+1 },
425 {"occurrence", OCCURRENCE_OPTION
, N_("NUMBER"), OPTION_ARG_OPTIONAL
,
426 N_("process only the NUMBERth occurrence of each file in the archive;"
427 " this option is valid only in conjunction with one of the subcommands"
428 " --delete, --diff, --extract or --list and when a list of files"
429 " is given either on the command line or via the -T option;"
430 " NUMBER defaults to 1"), GRID
+1 },
431 {"seek", 'n', NULL
, 0,
432 N_("archive is seekable"), GRID
+1 },
433 {"no-seek", NO_SEEK_OPTION
, NULL
, 0,
434 N_("archive is not seekable"), GRID
+1 },
435 {"no-check-device", NO_CHECK_DEVICE_OPTION
, NULL
, 0,
436 N_("do not check device numbers when creating incremental archives"),
438 {"check-device", CHECK_DEVICE_OPTION
, NULL
, 0,
439 N_("check device numbers when creating incremental archives (default)"),
445 N_("Overwrite control:"), GRID
},
447 {"verify", 'W', 0, 0,
448 N_("attempt to verify the archive after writing it"), GRID
+1 },
449 {"remove-files", REMOVE_FILES_OPTION
, 0, 0,
450 N_("remove files after adding them to the archive"), GRID
+1 },
451 {"keep-old-files", 'k', 0, 0,
452 N_("don't replace existing files when extracting"), GRID
+1 },
453 {"keep-newer-files", KEEP_NEWER_FILES_OPTION
, 0, 0,
454 N_("don't replace existing files that are newer than their archive copies"), GRID
+1 },
455 {"overwrite", OVERWRITE_OPTION
, 0, 0,
456 N_("overwrite existing files when extracting"), GRID
+1 },
457 {"unlink-first", 'U', 0, 0,
458 N_("remove each file prior to extracting over it"), GRID
+1 },
459 {"recursive-unlink", RECURSIVE_UNLINK_OPTION
, 0, 0,
460 N_("empty hierarchies prior to extracting directory"), GRID
+1 },
461 {"no-overwrite-dir", NO_OVERWRITE_DIR_OPTION
, 0, 0,
462 N_("preserve metadata of existing directories"), GRID
+1 },
463 {"overwrite-dir", OVERWRITE_DIR_OPTION
, 0, 0,
464 N_("overwrite metadata of existing directories when extracting (default)"),
470 N_("Select output stream:"), GRID
},
472 {"to-stdout", 'O', 0, 0,
473 N_("extract files to standard output"), GRID
+1 },
474 {"to-command", TO_COMMAND_OPTION
, N_("COMMAND"), 0,
475 N_("pipe extracted files to another program"), GRID
+1 },
476 {"ignore-command-error", IGNORE_COMMAND_ERROR_OPTION
, 0, 0,
477 N_("ignore exit codes of children"), GRID
+1 },
478 {"no-ignore-command-error", NO_IGNORE_COMMAND_ERROR_OPTION
, 0, 0,
479 N_("treat non-zero exit codes of children as error"), GRID
+1 },
484 N_("Handling of file attributes:"), GRID
},
486 {"owner", OWNER_OPTION
, N_("NAME"), 0,
487 N_("force NAME as owner for added files"), GRID
+1 },
488 {"group", GROUP_OPTION
, N_("NAME"), 0,
489 N_("force NAME as group for added files"), GRID
+1 },
490 {"mtime", MTIME_OPTION
, N_("DATE-OR-FILE"), 0,
491 N_("set mtime for added files from DATE-OR-FILE"), GRID
+1 },
492 {"mode", MODE_OPTION
, N_("CHANGES"), 0,
493 N_("force (symbolic) mode CHANGES for added files"), GRID
+1 },
494 {"atime-preserve", ATIME_PRESERVE_OPTION
,
495 N_("METHOD"), OPTION_ARG_OPTIONAL
,
496 N_("preserve access times on dumped files, either by restoring the times"
497 " after reading (METHOD='replace'; default) or by not setting the times"
498 " in the first place (METHOD='system')"), GRID
+1 },
500 N_("don't extract file modified time"), GRID
+1 },
501 {"same-owner", SAME_OWNER_OPTION
, 0, 0,
502 N_("try extracting files with the same ownership as exists in the archive (default for superuser)"), GRID
+1 },
503 {"no-same-owner", NO_SAME_OWNER_OPTION
, 0, 0,
504 N_("extract files as yourself (default for ordinary users)"), GRID
+1 },
505 {"numeric-owner", NUMERIC_OWNER_OPTION
, 0, 0,
506 N_("always use numbers for user/group names"), GRID
+1 },
507 {"preserve-permissions", 'p', 0, 0,
508 N_("extract information about file permissions (default for superuser)"),
510 {"same-permissions", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
511 {"no-same-permissions", NO_SAME_PERMISSIONS_OPTION
, 0, 0,
512 N_("apply the user's umask when extracting permissions from the archive (default for ordinary users)"), GRID
+1 },
513 {"preserve-order", 's', 0, 0,
514 N_("sort names to extract to match archive"), GRID
+1 },
515 {"same-order", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
516 {"preserve", PRESERVE_OPTION
, 0, 0,
517 N_("same as both -p and -s"), GRID
+1 },
518 {"delay-directory-restore", DELAY_DIRECTORY_RESTORE_OPTION
, 0, 0,
519 N_("delay setting modification times and permissions of extracted"
520 " directories until the end of extraction"), GRID
+1 },
521 {"no-delay-directory-restore", NO_DELAY_DIRECTORY_RESTORE_OPTION
, 0, 0,
522 N_("cancel the effect of --delay-directory-restore option"), GRID
+1 },
527 N_("Device selection and switching:"), GRID
},
529 {"file", 'f', N_("ARCHIVE"), 0,
530 N_("use archive file or device ARCHIVE"), GRID
+1 },
531 {"force-local", FORCE_LOCAL_OPTION
, 0, 0,
532 N_("archive file is local even if it has a colon"), GRID
+1 },
533 {"rmt-command", RMT_COMMAND_OPTION
, N_("COMMAND"), 0,
534 N_("use given rmt COMMAND instead of rmt"), GRID
+1 },
535 {"rsh-command", RSH_COMMAND_OPTION
, N_("COMMAND"), 0,
536 N_("use remote COMMAND instead of rsh"), GRID
+1 },
538 {"-[0-7][lmh]", 0, NULL
, OPTION_DOC
, /* It is OK, since `name' will never be
540 N_("specify drive and density"), GRID
+1 },
542 {NULL
, '0', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
543 {NULL
, '1', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
544 {NULL
, '2', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
545 {NULL
, '3', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
546 {NULL
, '4', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
547 {NULL
, '5', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
548 {NULL
, '6', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
549 {NULL
, '7', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
550 {NULL
, '8', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
551 {NULL
, '9', NULL
, OPTION_HIDDEN
, NULL
, GRID
+1 },
553 {"multi-volume", 'M', 0, 0,
554 N_("create/list/extract multi-volume archive"), GRID
+1 },
555 {"tape-length", 'L', N_("NUMBER"), 0,
556 N_("change tape after writing NUMBER x 1024 bytes"), GRID
+1 },
557 {"info-script", 'F', N_("NAME"), 0,
558 N_("run script at end of each tape (implies -M)"), GRID
+1 },
559 {"new-volume-script", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
560 {"volno-file", VOLNO_FILE_OPTION
, N_("FILE"), 0,
561 N_("use/update the volume number in FILE"), GRID
+1 },
566 N_("Device blocking:"), GRID
},
568 {"blocking-factor", 'b', N_("BLOCKS"), 0,
569 N_("BLOCKS x 512 bytes per record"), GRID
+1 },
570 {"record-size", RECORD_SIZE_OPTION
, N_("NUMBER"), 0,
571 N_("NUMBER of bytes per record, multiple of 512"), GRID
+1 },
572 {"ignore-zeros", 'i', 0, 0,
573 N_("ignore zeroed blocks in archive (means EOF)"), GRID
+1 },
574 {"read-full-records", 'B', 0, 0,
575 N_("reblock as we read (for 4.2BSD pipes)"), GRID
+1 },
580 N_("Archive format selection:"), GRID
},
582 {"format", 'H', N_("FORMAT"), 0,
583 N_("create archive of the given format"), GRID
+1 },
585 {NULL
, 0, NULL
, 0, N_("FORMAT is one of the following:"), GRID
+2 },
586 {" v7", 0, NULL
, OPTION_DOC
|OPTION_NO_TRANS
, N_("old V7 tar format"),
588 {" oldgnu", 0, NULL
, OPTION_DOC
|OPTION_NO_TRANS
,
589 N_("GNU format as per tar <= 1.12"), GRID
+3 },
590 {" gnu", 0, NULL
, OPTION_DOC
|OPTION_NO_TRANS
,
591 N_("GNU tar 1.13.x format"), GRID
+3 },
592 {" ustar", 0, NULL
, OPTION_DOC
|OPTION_NO_TRANS
,
593 N_("POSIX 1003.1-1988 (ustar) format"), GRID
+3 },
594 {" pax", 0, NULL
, OPTION_DOC
|OPTION_NO_TRANS
,
595 N_("POSIX 1003.1-2001 (pax) format"), GRID
+3 },
596 {" posix", 0, NULL
, OPTION_DOC
|OPTION_NO_TRANS
, N_("same as pax"), GRID
+3 },
598 {"old-archive", OLD_ARCHIVE_OPTION
, 0, 0, /* FIXME */
599 N_("same as --format=v7"), GRID
+8 },
600 {"portability", 0, 0, OPTION_ALIAS
, NULL
, GRID
+8 },
601 {"posix", POSIX_OPTION
, 0, 0,
602 N_("same as --format=posix"), GRID
+8 },
603 {"pax-option", PAX_OPTION
, N_("keyword[[:]=value][,keyword[[:]=value]]..."), 0,
604 N_("control pax keywords"), GRID
+8 },
605 {"label", 'V', N_("TEXT"), 0,
606 N_("create archive with volume name TEXT; at list/extract time, use TEXT as a globbing pattern for volume name"), GRID
+8 },
611 N_("Compression options:"), GRID
},
612 {"auto-compress", 'a', 0, 0,
613 N_("use archive suffix to determine the compression program"), GRID
+1 },
614 {"no-auto-compress", NO_AUTO_COMPRESS_OPTION
, 0, 0,
615 N_("do not use archive suffix to determine the compression program"),
617 {"use-compress-program", 'I', N_("PROG"), 0,
618 N_("filter through PROG (must accept -d)"), GRID
+1 },
619 /* Note: docstrings for the options below are generated by tar_help_filter */
620 {"bzip2", 'j', 0, 0, NULL
, GRID
+1 },
621 {"gzip", 'z', 0, 0, NULL
, GRID
+1 },
622 {"gunzip", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
623 {"ungzip", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
624 {"compress", 'Z', 0, 0, NULL
, GRID
+1 },
625 {"uncompress", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
626 {"lzma", LZMA_OPTION
, 0, 0, NULL
, GRID
+1 },
627 {"lzop", LZOP_OPTION
, 0, 0, NULL
, GRID
+1 },
628 {"xz", 'J', 0, 0, NULL
, GRID
+1 },
633 N_("Local file selection:"), GRID
},
635 {"add-file", ARGP_KEY_ARG
, N_("FILE"), 0,
636 N_("add given FILE to the archive (useful if its name starts with a dash)"), GRID
+1 },
637 {"directory", 'C', N_("DIR"), 0,
638 N_("change to directory DIR"), GRID
+1 },
639 {"files-from", 'T', N_("FILE"), 0,
640 N_("get names to extract or create from FILE"), GRID
+1 },
641 {"null", NULL_OPTION
, 0, 0,
642 N_("-T reads null-terminated names, disable -C"), GRID
+1 },
643 {"no-null", NO_NULL_OPTION
, 0, 0,
644 N_("disable the effect of the previous --null option"), GRID
+1 },
645 {"unquote", UNQUOTE_OPTION
, 0, 0,
646 N_("unquote filenames read with -T (default)"), GRID
+1 },
647 {"no-unquote", NO_UNQUOTE_OPTION
, 0, 0,
648 N_("do not unquote filenames read with -T"), GRID
+1 },
649 {"exclude", EXCLUDE_OPTION
, N_("PATTERN"), 0,
650 N_("exclude files, given as a PATTERN"), GRID
+1 },
651 {"exclude-from", 'X', N_("FILE"), 0,
652 N_("exclude patterns listed in FILE"), GRID
+1 },
653 {"exclude-caches", EXCLUDE_CACHES_OPTION
, 0, 0,
654 N_("exclude contents of directories containing CACHEDIR.TAG, "
655 "except for the tag file itself"), GRID
+1 },
656 {"exclude-caches-under", EXCLUDE_CACHES_UNDER_OPTION
, 0, 0,
657 N_("exclude everything under directories containing CACHEDIR.TAG"),
659 {"exclude-caches-all", EXCLUDE_CACHES_ALL_OPTION
, 0, 0,
660 N_("exclude directories containing CACHEDIR.TAG"), GRID
+1 },
661 {"exclude-tag", EXCLUDE_TAG_OPTION
, N_("FILE"), 0,
662 N_("exclude contents of directories containing FILE, except"
663 " for FILE itself"), GRID
+1 },
664 {"exclude-tag-under", EXCLUDE_TAG_UNDER_OPTION
, N_("FILE"), 0,
665 N_("exclude everything under directories containing FILE"), GRID
+1 },
666 {"exclude-tag-all", EXCLUDE_TAG_ALL_OPTION
, N_("FILE"), 0,
667 N_("exclude directories containing FILE"), GRID
+1 },
668 {"exclude-vcs", EXCLUDE_VCS_OPTION
, NULL
, 0,
669 N_("exclude version control system directories"), GRID
+1 },
670 {"exclude-backups", EXCLUDE_BACKUPS_OPTION
, NULL
, 0,
671 N_("exclude backup and lock files"), GRID
+1 },
672 {"no-recursion", NO_RECURSION_OPTION
, 0, 0,
673 N_("avoid descending automatically in directories"), GRID
+1 },
674 {"one-file-system", ONE_FILE_SYSTEM_OPTION
, 0, 0,
675 N_("stay in local file system when creating archive"), GRID
+1 },
676 {"recursion", RECURSION_OPTION
, 0, 0,
677 N_("recurse into directories (default)"), GRID
+1 },
678 {"absolute-names", 'P', 0, 0,
679 N_("don't strip leading `/'s from file names"), GRID
+1 },
680 {"dereference", 'h', 0, 0,
681 N_("follow symlinks; archive and dump the files they point to"), GRID
+1 },
682 {"hard-dereference", HARD_DEREFERENCE_OPTION
, 0, 0,
683 N_("follow hard links; archive and dump the files they refer to"), GRID
+1 },
684 {"starting-file", 'K', N_("MEMBER-NAME"), 0,
685 N_("begin at member MEMBER-NAME in the archive"), GRID
+1 },
686 {"newer", 'N', N_("DATE-OR-FILE"), 0,
687 N_("only store files newer than DATE-OR-FILE"), GRID
+1 },
688 {"after-date", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
689 {"newer-mtime", NEWER_MTIME_OPTION
, N_("DATE"), 0,
690 N_("compare date and time when data changed only"), GRID
+1 },
691 {"backup", BACKUP_OPTION
, N_("CONTROL"), OPTION_ARG_OPTIONAL
,
692 N_("backup before removal, choose version CONTROL"), GRID
+1 },
693 {"suffix", SUFFIX_OPTION
, N_("STRING"), 0,
694 N_("backup before removal, override usual suffix ('~' unless overridden by environment variable SIMPLE_BACKUP_SUFFIX)"), GRID
+1 },
699 N_("File name transformations:"), GRID
},
700 {"strip-components", STRIP_COMPONENTS_OPTION
, N_("NUMBER"), 0,
701 N_("strip NUMBER leading components from file names on extraction"),
703 {"transform", TRANSFORM_OPTION
, N_("EXPRESSION"), 0,
704 N_("use sed replace EXPRESSION to transform file names"), GRID
+1 },
705 {"xform", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
710 N_("File name matching options (affect both exclude and include patterns):"),
712 {"ignore-case", IGNORE_CASE_OPTION
, 0, 0,
713 N_("ignore case"), GRID
+1 },
714 {"anchored", ANCHORED_OPTION
, 0, 0,
715 N_("patterns match file name start"), GRID
+1 },
716 {"no-anchored", NO_ANCHORED_OPTION
, 0, 0,
717 N_("patterns match after any `/' (default for exclusion)"), GRID
+1 },
718 {"no-ignore-case", NO_IGNORE_CASE_OPTION
, 0, 0,
719 N_("case sensitive matching (default)"), GRID
+1 },
720 {"wildcards", WILDCARDS_OPTION
, 0, 0,
721 N_("use wildcards (default for exclusion)"), GRID
+1 },
722 {"no-wildcards", NO_WILDCARDS_OPTION
, 0, 0,
723 N_("verbatim string matching"), GRID
+1 },
724 {"no-wildcards-match-slash", NO_WILDCARDS_MATCH_SLASH_OPTION
, 0, 0,
725 N_("wildcards do not match `/'"), GRID
+1 },
726 {"wildcards-match-slash", WILDCARDS_MATCH_SLASH_OPTION
, 0, 0,
727 N_("wildcards match `/' (default for exclusion)"), GRID
+1 },
732 N_("Informative output:"), GRID
},
734 {"verbose", 'v', 0, 0,
735 N_("verbosely list files processed"), GRID
+1 },
736 {"warning", WARNING_OPTION
, N_("KEYWORD"), 0,
737 N_("warning control"), GRID
+1 },
738 {"checkpoint", CHECKPOINT_OPTION
, N_("NUMBER"), OPTION_ARG_OPTIONAL
,
739 N_("display progress messages every NUMBERth record (default 10)"),
741 {"checkpoint-action", CHECKPOINT_ACTION_OPTION
, N_("ACTION"), 0,
742 N_("execute ACTION on each checkpoint"),
744 {"check-links", 'l', 0, 0,
745 N_("print a message if not all links are dumped"), GRID
+1 },
746 {"totals", TOTALS_OPTION
, N_("SIGNAL"), OPTION_ARG_OPTIONAL
,
747 N_("print total bytes after processing the archive; "
748 "with an argument - print total bytes when this SIGNAL is delivered; "
749 "Allowed signals are: SIGHUP, SIGQUIT, SIGINT, SIGUSR1 and SIGUSR2; "
750 "the names without SIG prefix are also accepted"), GRID
+1 },
751 {"utc", UTC_OPTION
, 0, 0,
752 N_("print file modification dates in UTC"), GRID
+1 },
753 {"index-file", INDEX_FILE_OPTION
, N_("FILE"), 0,
754 N_("send verbose output to FILE"), GRID
+1 },
755 {"block-number", 'R', 0, 0,
756 N_("show block number within archive with each message"), GRID
+1 },
757 {"interactive", 'w', 0, 0,
758 N_("ask for confirmation for every action"), GRID
+1 },
759 {"confirmation", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
760 {"show-defaults", SHOW_DEFAULTS_OPTION
, 0, 0,
761 N_("show tar defaults"), GRID
+1 },
762 {"show-omitted-dirs", SHOW_OMITTED_DIRS_OPTION
, 0, 0,
763 N_("when listing or extracting, list each directory that does not match search criteria"), GRID
+1 },
764 {"show-transformed-names", SHOW_TRANSFORMED_NAMES_OPTION
, 0, 0,
765 N_("show file or archive names after transformation"),
767 {"show-stored-names", 0, 0, OPTION_ALIAS
, NULL
, GRID
+1 },
768 {"quoting-style", QUOTING_STYLE_OPTION
, N_("STYLE"), 0,
769 N_("set name quoting style; see below for valid STYLE values"), GRID
+1 },
770 {"quote-chars", QUOTE_CHARS_OPTION
, N_("STRING"), 0,
771 N_("additionally quote characters from STRING"), GRID
+1 },
772 {"no-quote-chars", NO_QUOTE_CHARS_OPTION
, N_("STRING"), 0,
773 N_("disable quoting for characters from STRING"), GRID
+1 },
778 N_("Compatibility options:"), GRID
},
781 N_("when creating, same as --old-archive; when extracting, same as --no-same-owner"), GRID
+1 },
786 N_("Other options:"), GRID
},
788 {"restrict", RESTRICT_OPTION
, 0, 0,
789 N_("disable use of some potentially harmful options"), -1 },
795 static char const *const atime_preserve_args
[] =
797 "replace", "system", NULL
800 static enum atime_preserve
const atime_preserve_types
[] =
802 replace_atime_preserve
, system_atime_preserve
805 /* Make sure atime_preserve_types has as much entries as atime_preserve_args
806 (minus 1 for NULL guard) */
807 ARGMATCH_VERIFY (atime_preserve_args
, atime_preserve_types
);
809 /* Wildcard matching settings */
812 default_wildcards
, /* For exclusion == enable_wildcards,
813 for inclusion == disable_wildcards */
818 struct tar_args
/* Variables used during option parsing */
820 struct textual_date
*textual_date
; /* Keeps the arguments to --newer-mtime
821 and/or --date option if they are
823 enum wildcards wildcards
; /* Wildcard settings (--wildcards/
825 int matching_flags
; /* exclude_fnmatch options */
826 int include_anchored
; /* Pattern anchoring options used for
828 bool o_option
; /* True if -o option was given */
829 bool pax_option
; /* True if --pax-option was given */
830 char const *backup_suffix_string
; /* --suffix option argument */
831 char const *version_control_string
; /* --backup option argument */
832 bool input_files
; /* True if some input files where given */
833 int compress_autodetect
; /* True if compression autodetection should
834 be attempted when creating archives */
838 #define MAKE_EXCL_OPTIONS(args) \
839 ((((args)->wildcards != disable_wildcards) ? EXCLUDE_WILDCARDS : 0) \
840 | (args)->matching_flags \
843 #define MAKE_INCL_OPTIONS(args) \
844 ((((args)->wildcards == enable_wildcards) ? EXCLUDE_WILDCARDS : 0) \
845 | (args)->include_anchored \
846 | (args)->matching_flags \
849 static char const * const vcs_file_table
[] = {
881 static char const * const backup_file_table
[] = {
889 add_exclude_array (char const * const * fv
)
893 for (i
= 0; fv
[i
]; i
++)
894 add_exclude (excluded
, fv
[i
], 0);
899 format_default_settings (void)
902 "--format=%s -f%s -b%d --quoting-style=%s --rmt-command=%s"
907 archive_format_string (DEFAULT_ARCHIVE_FORMAT
),
908 DEFAULT_ARCHIVE
, DEFAULT_BLOCKING
,
909 quoting_style_args
[DEFAULT_QUOTING_STYLE
],
919 set_subcommand_option (enum subcommand subcommand
)
921 if (subcommand_option
!= UNKNOWN_SUBCOMMAND
922 && subcommand_option
!= subcommand
)
924 _("You may not specify more than one `-Acdtrux' option")));
926 subcommand_option
= subcommand
;
930 set_use_compress_program_option (const char *string
)
932 if (use_compress_program_option
933 && strcmp (use_compress_program_option
, string
) != 0)
934 USAGE_ERROR ((0, 0, _("Conflicting compression options")));
936 use_compress_program_option
= string
;
943 print_total_stats ();
944 #ifndef HAVE_SIGACTION
945 signal (signo
, sigstat
);
950 stat_on_signal (int signo
)
952 #ifdef HAVE_SIGACTION
953 struct sigaction act
;
954 act
.sa_handler
= sigstat
;
955 sigemptyset (&act
.sa_mask
);
957 sigaction (signo
, &act
, NULL
);
959 signal (signo
, sigstat
);
964 set_stat_signal (const char *name
)
971 { "SIGUSR1", SIGUSR1
},
973 { "SIGUSR2", SIGUSR2
},
975 { "SIGHUP", SIGHUP
},
977 { "SIGINT", SIGINT
},
979 { "SIGQUIT", SIGQUIT
},
984 for (p
= sigtab
; p
< sigtab
+ sizeof (sigtab
) / sizeof (sigtab
[0]); p
++)
985 if (strcmp (p
->name
, name
) == 0)
987 stat_on_signal (p
->signo
);
990 FATAL_ERROR ((0, 0, _("Unknown signal name: %s"), name
));
996 struct textual_date
*next
;
1003 get_date_or_file (struct tar_args
*args
, const char *option
,
1004 const char *str
, struct timespec
*ts
)
1006 if (FILE_SYSTEM_PREFIX_LEN (str
) != 0
1011 if (deref_stat (dereference_option
, str
, &st
) != 0)
1014 USAGE_ERROR ((0, 0, _("Date sample file not found")));
1016 *ts
= get_stat_mtime (&st
);
1020 if (! get_date (ts
, str
, NULL
))
1022 WARN ((0, 0, _("Substituting %s for unknown date format %s"),
1023 tartime (*ts
, false), quote (str
)));
1029 struct textual_date
*p
= xmalloc (sizeof (*p
));
1032 p
->date
= xstrdup (str
);
1033 p
->next
= args
->textual_date
;
1034 args
->textual_date
= p
;
1041 report_textual_dates (struct tar_args
*args
)
1043 struct textual_date
*p
;
1044 for (p
= args
->textual_date
; p
; )
1046 struct textual_date
*next
= p
->next
;
1049 char const *treated_as
= tartime (p
->ts
, true);
1050 if (strcmp (p
->date
, treated_as
) != 0)
1051 WARN ((0, 0, _("Option %s: Treating date `%s' as %s"),
1052 p
->option
, p
->date
, treated_as
));
1062 /* Either NL or NUL, as decided by the --null option. */
1063 static char filename_terminator
;
1065 enum read_file_list_state
/* Result of reading file name from the list file */
1067 file_list_success
, /* OK, name read successfully */
1068 file_list_end
, /* End of list file */
1069 file_list_zero
, /* Zero separator encountered where it should not */
1070 file_list_skip
/* Empty (zero-length) entry encountered, skip it */
1073 /* Read from FP a sequence of characters up to TERM and put them
1076 static enum read_file_list_state
1077 read_name_from_file (FILE *fp
, struct obstack
*stk
, int term
)
1082 for (c
= getc (fp
); c
!= EOF
&& c
!= term
; c
= getc (fp
))
1086 /* We have read a zero separator. The file possibly is
1088 return file_list_zero
;
1090 obstack_1grow (stk
, c
);
1094 if (counter
== 0 && c
!= EOF
)
1095 return file_list_skip
;
1097 obstack_1grow (stk
, 0);
1099 return (counter
== 0 && c
== EOF
) ? file_list_end
: file_list_success
;
1103 static bool files_from_option
; /* When set, tar will not refuse to create
1105 static struct obstack argv_stk
; /* Storage for additional command line options
1106 read using -T option */
1108 /* Prevent recursive inclusion of the same file */
1111 struct file_id_list
*next
;
1116 static struct file_id_list
*file_id_list
;
1119 add_file_id (const char *filename
)
1121 struct file_id_list
*p
;
1124 if (stat (filename
, &st
))
1125 stat_fatal (filename
);
1126 for (p
= file_id_list
; p
; p
= p
->next
)
1127 if (p
->ino
== st
.st_ino
&& p
->dev
== st
.st_dev
)
1129 FATAL_ERROR ((0, 0, _("%s: file list already read"),
1130 quotearg_colon (filename
)));
1132 p
= xmalloc (sizeof *p
);
1133 p
->next
= file_id_list
;
1139 /* Default density numbers for [0-9][lmh] device specifications */
1141 #ifndef LOW_DENSITY_NUM
1142 # define LOW_DENSITY_NUM 0
1145 #ifndef MID_DENSITY_NUM
1146 # define MID_DENSITY_NUM 8
1149 #ifndef HIGH_DENSITY_NUM
1150 # define HIGH_DENSITY_NUM 16
1154 update_argv (const char *filename
, struct argp_state
*state
)
1157 size_t count
= 0, i
;
1161 bool is_stdin
= false;
1162 enum read_file_list_state read_state
;
1163 int term
= filename_terminator
;
1165 if (!strcmp (filename
, "-"))
1168 request_stdin ("-T");
1173 add_file_id (filename
);
1174 if ((fp
= fopen (filename
, "r")) == NULL
)
1175 open_fatal (filename
);
1178 while ((read_state
= read_name_from_file (fp
, &argv_stk
, term
))
1183 case file_list_success
:
1187 case file_list_end
: /* won't happen, just to pacify gcc */
1190 case file_list_zero
:
1194 WARNOPT (WARN_FILENAME_WITH_NULS
,
1195 (0, 0, N_("%s: file name read contains nul character"),
1196 quotearg_colon (filename
)));
1198 /* Prepare new stack contents */
1199 size
= obstack_object_size (&argv_stk
);
1200 p
= obstack_finish (&argv_stk
);
1201 for (; size
> 0; size
--, p
++)
1203 obstack_1grow (&argv_stk
, *p
);
1205 obstack_1grow (&argv_stk
, '\n');
1206 obstack_1grow (&argv_stk
, 0);
1208 /* Read rest of files using new filename terminator */
1213 case file_list_skip
:
1224 start
= obstack_finish (&argv_stk
);
1227 for (p
= start
; *p
; p
+= strlen (p
) + 1)
1231 new_argc
= state
->argc
+ count
;
1232 new_argv
= xmalloc (sizeof (state
->argv
[0]) * (new_argc
+ 1));
1233 memcpy (new_argv
, state
->argv
, sizeof (state
->argv
[0]) * (state
->argc
+ 1));
1234 state
->argv
= new_argv
;
1235 memmove (&state
->argv
[state
->next
+ count
], &state
->argv
[state
->next
],
1236 (state
->argc
- state
->next
+ 1) * sizeof (state
->argv
[0]));
1238 state
->argc
= new_argc
;
1240 for (i
= state
->next
, p
= start
; *p
; p
+= strlen (p
) + 1, i
++)
1242 if (term
== 0 && p
[0] == '-')
1243 state
->argv
[i
++] = "--add-file";
1250 tar_help_filter (int key
, const char *text
, void *input
)
1262 s
= xasprintf (_("filter the archive through %s"), BZIP2_PROGRAM
);
1266 s
= xasprintf (_("filter the archive through %s"), GZIP_PROGRAM
);
1270 s
= xasprintf (_("filter the archive through %s"), COMPRESS_PROGRAM
);
1274 s
= xasprintf (_("filter the archive through %s"), LZMA_PROGRAM
);
1278 s
= xasprintf (_("filter the archive through %s"), XZ_PROGRAM
);
1281 case ARGP_KEY_HELP_EXTRA
:
1282 obstack_init (&stk
);
1283 s
= _("Valid arguments for the --quoting-style option are:");
1284 obstack_grow (&stk
, s
, strlen (s
));
1285 obstack_grow (&stk
, "\n\n", 2);
1286 tar_list_quoting_styles (&stk
, " ");
1287 s
= _("\n*This* tar defaults to:\n");
1288 obstack_grow (&stk
, s
, strlen (s
));
1289 s
= format_default_settings ();
1290 obstack_grow (&stk
, s
, strlen (s
));
1291 obstack_1grow (&stk
, '\n');
1292 obstack_1grow (&stk
, 0);
1293 s
= xstrdup (obstack_finish (&stk
));
1294 obstack_free (&stk
, NULL
);
1300 expand_pax_option (struct tar_args
*targs
, const char *arg
)
1305 obstack_init (&stk
);
1308 size_t seglen
= strcspn (arg
, ",");
1309 char *p
= memchr (arg
, '=', seglen
);
1312 size_t len
= p
- arg
+ 1;
1313 obstack_grow (&stk
, arg
, len
);
1315 for (++p
; *p
&& isspace ((unsigned char) *p
); p
++)
1317 if (*p
== '{' && p
[len
-1] == '}')
1320 char *tmp
= xmalloc (len
);
1321 memcpy (tmp
, p
+ 1, len
-2);
1323 if (get_date_or_file (targs
, "--pax-option", tmp
, &ts
) == 0)
1325 char buf
[UINTMAX_STRSIZE_BOUND
], *s
;
1326 s
= umaxtostr (ts
.tv_sec
, buf
);
1327 obstack_grow (&stk
, s
, strlen (s
));
1330 obstack_grow (&stk
, p
, len
);
1334 obstack_grow (&stk
, p
, len
);
1337 obstack_grow (&stk
, arg
, seglen
);
1342 obstack_1grow (&stk
, *arg
);
1346 obstack_1grow (&stk
, 0);
1347 res
= xstrdup (obstack_finish (&stk
));
1348 obstack_free (&stk
, NULL
);
1354 parse_opt (int key
, char *arg
, struct argp_state
*state
)
1356 struct tar_args
*args
= state
->input
;
1361 /* File name or non-parsed option, because of ARGP_IN_ORDER */
1362 name_add_name (arg
, MAKE_INCL_OPTIONS (args
));
1363 args
->input_files
= true;
1367 set_subcommand_option (CAT_SUBCOMMAND
);
1371 args
->compress_autodetect
= true;
1374 case NO_AUTO_COMPRESS_OPTION
:
1375 args
->compress_autodetect
= false;
1381 if (! (xstrtoumax (arg
, 0, 10, &u
, "") == LONGINT_OK
1382 && u
== (blocking_factor
= u
)
1383 && 0 < blocking_factor
1384 && u
== (record_size
= u
* BLOCKSIZE
) / BLOCKSIZE
))
1385 USAGE_ERROR ((0, 0, "%s: %s", quotearg_colon (arg
),
1386 _("Invalid blocking factor")));
1391 /* Try to reblock input records. For reading 4.2BSD pipes. */
1393 /* It would surely make sense to exchange -B and -R, but it seems
1394 that -B has been used for a long while in Sun tar and most
1395 BSD-derived systems. This is a consequence of the block/record
1396 terminology confusion. */
1398 read_full_records_option
= true;
1402 set_subcommand_option (CREATE_SUBCOMMAND
);
1410 set_subcommand_option (DIFF_SUBCOMMAND
);
1414 if (archive_names
== allocated_archive_names
)
1415 archive_name_array
= x2nrealloc (archive_name_array
,
1416 &allocated_archive_names
,
1417 sizeof (archive_name_array
[0]));
1419 archive_name_array
[archive_names
++] = arg
;
1423 /* Since -F is only useful with -M, make it implied. Run this
1424 script at the end of each tape. */
1426 info_script_option
= arg
;
1427 multi_volume_option
= true;
1431 listed_incremental_option
= arg
;
1432 after_date_option
= true;
1436 /* We are making an incremental dump (FIXME: are we?); save
1437 directories at the beginning of the archive, and include in each
1438 directory its contents. */
1440 incremental_option
= true;
1444 /* Follow symbolic links. */
1445 dereference_option
= true;
1448 case HARD_DEREFERENCE_OPTION
:
1449 hard_dereference_option
= true;
1453 /* Ignore zero blocks (eofs). This can't be the default,
1454 because Unix tar writes two blocks of zeros, then pads out
1455 the record with garbage. */
1457 ignore_zeros_option
= true;
1461 set_use_compress_program_option (BZIP2_PROGRAM
);
1465 set_use_compress_program_option (XZ_PROGRAM
);
1469 /* Don't replace existing files. */
1470 old_files_option
= KEEP_OLD_FILES
;
1474 starting_file_option
= true;
1475 addname (arg
, 0, true, NULL
);
1478 case ONE_FILE_SYSTEM_OPTION
:
1479 /* When dumping directories, don't dump files/subdirectories
1480 that are on other filesystems. */
1481 one_file_system_option
= true;
1485 check_links_option
= 1;
1491 if (xstrtoumax (arg
, 0, 10, &u
, "") != LONGINT_OK
)
1492 USAGE_ERROR ((0, 0, "%s: %s", quotearg_colon (arg
),
1493 _("Invalid tape length")));
1494 tape_length_option
= 1024 * (tarlong
) u
;
1495 multi_volume_option
= true;
1502 incremental_level
= strtoul (arg
, &p
, 10);
1504 USAGE_ERROR ((0, 0, _("Invalid incremental level value")));
1509 set_use_compress_program_option (LZMA_PROGRAM
);
1513 set_use_compress_program_option (LZOP_PROGRAM
);
1517 touch_option
= true;
1521 /* Make multivolume archive: when we can't write any more into
1522 the archive, re-open it, and continue writing. */
1524 multi_volume_option
= true;
1528 get_date_or_file (args
, "--mtime", arg
, &mtime_option
);
1529 set_mtime_option
= true;
1536 case NO_SEEK_OPTION
:
1541 after_date_option
= true;
1544 case NEWER_MTIME_OPTION
:
1545 if (NEWER_OPTION_INITIALIZED (newer_mtime_option
))
1546 USAGE_ERROR ((0, 0, _("More than one threshold date")));
1547 get_date_or_file (args
,
1548 key
== NEWER_MTIME_OPTION
? "--newer-mtime"
1549 : "--after-date", arg
, &newer_mtime_option
);
1553 args
->o_option
= true;
1557 to_stdout_option
= true;
1561 same_permissions_option
= true;
1565 absolute_names_option
= true;
1569 set_subcommand_option (APPEND_SUBCOMMAND
);
1573 /* Print block numbers for debugging bad tar archives. */
1575 /* It would surely make sense to exchange -B and -R, but it seems
1576 that -B has been used for a long while in Sun tar and most
1577 BSD-derived systems. This is a consequence of the block/record
1578 terminology confusion. */
1580 block_number_option
= true;
1584 /* Names to extract are sorted. */
1586 same_order_option
= true;
1590 sparse_option
= true;
1593 case SPARSE_VERSION_OPTION
:
1594 sparse_option
= true;
1597 tar_sparse_major
= strtoul (arg
, &p
, 10);
1601 USAGE_ERROR ((0, 0, _("Invalid sparse version value")));
1602 tar_sparse_minor
= strtoul (p
+ 1, &p
, 10);
1604 USAGE_ERROR ((0, 0, _("Invalid sparse version value")));
1610 set_subcommand_option (LIST_SUBCOMMAND
);
1614 case TEST_LABEL_OPTION
:
1615 set_subcommand_option (LIST_SUBCOMMAND
);
1616 test_label_option
= true;
1620 update_argv (arg
, state
);
1621 /* Indicate we've been given -T option. This is for backward
1622 compatibility only, so that `tar cfT archive /dev/null will
1624 files_from_option
= true;
1628 set_subcommand_option (UPDATE_SUBCOMMAND
);
1632 old_files_option
= UNLINK_FIRST_OLD_FILES
;
1641 warning_option
|= WARN_VERBOSE_WARNINGS
;
1645 volume_label_option
= arg
;
1649 interactive_option
= true;
1653 verify_option
= true;
1657 set_subcommand_option (EXTRACT_SUBCOMMAND
);
1661 if (add_exclude_file (add_exclude
, excluded
, arg
,
1662 MAKE_EXCL_OPTIONS (args
), '\n')
1666 FATAL_ERROR ((0, e
, "%s", quotearg_colon (arg
)));
1671 set_use_compress_program_option (GZIP_PROGRAM
);
1675 set_use_compress_program_option (COMPRESS_PROGRAM
);
1678 case ANCHORED_OPTION
:
1679 args
->matching_flags
|= EXCLUDE_ANCHORED
;
1682 case ATIME_PRESERVE_OPTION
:
1683 atime_preserve_option
=
1685 ? XARGMATCH ("--atime-preserve", arg
,
1686 atime_preserve_args
, atime_preserve_types
)
1687 : replace_atime_preserve
);
1688 if (! O_NOATIME
&& atime_preserve_option
== system_atime_preserve
)
1690 _("--atime-preserve='system' is not supported"
1691 " on this platform")));
1694 case CHECK_DEVICE_OPTION
:
1695 check_device_option
= true;
1698 case NO_CHECK_DEVICE_OPTION
:
1699 check_device_option
= false;
1702 case CHECKPOINT_OPTION
:
1709 checkpoint_compile_action (".");
1712 checkpoint_option
= strtoul (arg
, &p
, 0);
1715 _("--checkpoint value is not an integer")));
1718 checkpoint_option
= DEFAULT_CHECKPOINT
;
1721 case CHECKPOINT_ACTION_OPTION
:
1722 checkpoint_compile_action (arg
);
1726 backup_option
= true;
1728 args
->version_control_string
= arg
;
1731 case DELAY_DIRECTORY_RESTORE_OPTION
:
1732 delay_directory_restore_option
= true;
1735 case NO_DELAY_DIRECTORY_RESTORE_OPTION
:
1736 delay_directory_restore_option
= false;
1740 set_subcommand_option (DELETE_SUBCOMMAND
);
1743 case EXCLUDE_BACKUPS_OPTION
:
1744 add_exclude_array (backup_file_table
);
1747 case EXCLUDE_OPTION
:
1748 add_exclude (excluded
, arg
, MAKE_EXCL_OPTIONS (args
));
1751 case EXCLUDE_CACHES_OPTION
:
1752 add_exclusion_tag ("CACHEDIR.TAG", exclusion_tag_contents
,
1756 case EXCLUDE_CACHES_UNDER_OPTION
:
1757 add_exclusion_tag ("CACHEDIR.TAG", exclusion_tag_under
,
1761 case EXCLUDE_CACHES_ALL_OPTION
:
1762 add_exclusion_tag ("CACHEDIR.TAG", exclusion_tag_all
,
1766 case EXCLUDE_TAG_OPTION
:
1767 add_exclusion_tag (arg
, exclusion_tag_contents
, NULL
);
1770 case EXCLUDE_TAG_UNDER_OPTION
:
1771 add_exclusion_tag (arg
, exclusion_tag_under
, NULL
);
1774 case EXCLUDE_TAG_ALL_OPTION
:
1775 add_exclusion_tag (arg
, exclusion_tag_all
, NULL
);
1778 case EXCLUDE_VCS_OPTION
:
1779 add_exclude_array (vcs_file_table
);
1782 case FORCE_LOCAL_OPTION
:
1783 force_local_option
= true;
1787 set_archive_format (arg
);
1790 case INDEX_FILE_OPTION
:
1791 index_file_name
= arg
;
1794 case IGNORE_CASE_OPTION
:
1795 args
->matching_flags
|= FNM_CASEFOLD
;
1798 case IGNORE_COMMAND_ERROR_OPTION
:
1799 ignore_command_error_option
= true;
1802 case IGNORE_FAILED_READ_OPTION
:
1803 ignore_failed_read_option
= true;
1806 case KEEP_NEWER_FILES_OPTION
:
1807 old_files_option
= KEEP_NEWER_FILES
;
1811 if (! (strlen (arg
) < GNAME_FIELD_SIZE
1812 && gname_to_gid (arg
, &group_option
)))
1815 if (xstrtoumax (arg
, 0, 10, &g
, "") == LONGINT_OK
1819 FATAL_ERROR ((0, 0, "%s: %s", quotearg_colon (arg
),
1820 _("Invalid group")));
1825 mode_option
= mode_compile (arg
);
1827 FATAL_ERROR ((0, 0, _("Invalid mode given on option")));
1828 initial_umask
= umask (0);
1829 umask (initial_umask
);
1832 case NO_ANCHORED_OPTION
:
1833 args
->include_anchored
= 0; /* Clear the default for comman line args */
1834 args
->matching_flags
&= ~ EXCLUDE_ANCHORED
;
1837 case NO_IGNORE_CASE_OPTION
:
1838 args
->matching_flags
&= ~ FNM_CASEFOLD
;
1841 case NO_IGNORE_COMMAND_ERROR_OPTION
:
1842 ignore_command_error_option
= false;
1845 case NO_OVERWRITE_DIR_OPTION
:
1846 old_files_option
= NO_OVERWRITE_DIR_OLD_FILES
;
1849 case NO_QUOTE_CHARS_OPTION
:
1851 set_char_quoting (NULL
, *arg
, 0);
1854 case NO_WILDCARDS_OPTION
:
1855 args
->wildcards
= disable_wildcards
;
1858 case NO_WILDCARDS_MATCH_SLASH_OPTION
:
1859 args
->matching_flags
|= FNM_FILE_NAME
;
1863 filename_terminator
= '\0';
1866 case NO_NULL_OPTION
:
1867 filename_terminator
= '\n';
1870 case NUMERIC_OWNER_OPTION
:
1871 numeric_owner_option
= true;
1874 case OCCURRENCE_OPTION
:
1876 occurrence_option
= 1;
1880 if (xstrtoumax (arg
, 0, 10, &u
, "") == LONGINT_OK
)
1881 occurrence_option
= u
;
1883 FATAL_ERROR ((0, 0, "%s: %s", quotearg_colon (arg
),
1884 _("Invalid number")));
1888 case OVERWRITE_DIR_OPTION
:
1889 old_files_option
= DEFAULT_OLD_FILES
;
1892 case OVERWRITE_OPTION
:
1893 old_files_option
= OVERWRITE_OLD_FILES
;
1897 if (! (strlen (arg
) < UNAME_FIELD_SIZE
1898 && uname_to_uid (arg
, &owner_option
)))
1901 if (xstrtoumax (arg
, 0, 10, &u
, "") == LONGINT_OK
1905 FATAL_ERROR ((0, 0, "%s: %s", quotearg_colon (arg
),
1906 _("Invalid owner")));
1910 case QUOTE_CHARS_OPTION
:
1912 set_char_quoting (NULL
, *arg
, 1);
1915 case QUOTING_STYLE_OPTION
:
1916 tar_set_quoting_style (arg
);
1921 char *tmp
= expand_pax_option (args
, arg
);
1922 args
->pax_option
= true;
1923 xheader_set_option (tmp
);
1929 set_archive_format ("posix");
1932 case PRESERVE_OPTION
:
1933 /* FIXME: What it is good for? */
1934 same_permissions_option
= true;
1935 same_order_option
= true;
1936 WARN ((0, 0, _("The --preserve option is deprecated, "
1937 "use --preserve-permissions --preserve-order instead")));
1940 case RECORD_SIZE_OPTION
:
1943 if (! (xstrtoumax (arg
, 0, 10, &u
, "") == LONGINT_OK
1944 && u
== (size_t) u
))
1945 USAGE_ERROR ((0, 0, "%s: %s", quotearg_colon (arg
),
1946 _("Invalid record size")));
1948 if (record_size
% BLOCKSIZE
!= 0)
1949 USAGE_ERROR ((0, 0, _("Record size must be a multiple of %d."),
1951 blocking_factor
= record_size
/ BLOCKSIZE
;
1955 case RECURSIVE_UNLINK_OPTION
:
1956 recursive_unlink_option
= true;
1959 case REMOVE_FILES_OPTION
:
1960 remove_files_option
= true;
1963 case RESTRICT_OPTION
:
1964 restrict_option
= true;
1967 case RMT_COMMAND_OPTION
:
1971 case RSH_COMMAND_OPTION
:
1972 rsh_command_option
= arg
;
1975 case SHOW_DEFAULTS_OPTION
:
1977 char *s
= format_default_settings ();
1984 case STRIP_COMPONENTS_OPTION
:
1987 if (! (xstrtoumax (arg
, 0, 10, &u
, "") == LONGINT_OK
1988 && u
== (size_t) u
))
1989 USAGE_ERROR ((0, 0, "%s: %s", quotearg_colon (arg
),
1990 _("Invalid number of elements")));
1991 strip_name_components
= u
;
1995 case SHOW_OMITTED_DIRS_OPTION
:
1996 show_omitted_dirs_option
= true;
1999 case SHOW_TRANSFORMED_NAMES_OPTION
:
2000 show_transformed_names_option
= true;
2004 backup_option
= true;
2005 args
->backup_suffix_string
= arg
;
2008 case TO_COMMAND_OPTION
:
2009 if (to_command_option
)
2010 USAGE_ERROR ((0, 0, _("Only one --to-command option allowed")));
2011 to_command_option
= arg
;
2016 set_stat_signal (arg
);
2018 totals_option
= true;
2021 case TRANSFORM_OPTION
:
2022 set_transform_expr (arg
);
2026 set_use_compress_program_option (arg
);
2029 case VOLNO_FILE_OPTION
:
2030 volno_file_option
= arg
;
2033 case WILDCARDS_OPTION
:
2034 args
->wildcards
= enable_wildcards
;
2037 case WILDCARDS_MATCH_SLASH_OPTION
:
2038 args
->matching_flags
&= ~ FNM_FILE_NAME
;
2041 case NO_RECURSION_OPTION
:
2042 recursion_option
= 0;
2045 case NO_SAME_OWNER_OPTION
:
2046 same_owner_option
= -1;
2049 case NO_SAME_PERMISSIONS_OPTION
:
2050 same_permissions_option
= -1;
2053 case RECURSION_OPTION
:
2054 recursion_option
= FNM_LEADING_DIR
;
2057 case SAME_OWNER_OPTION
:
2058 same_owner_option
= 1;
2061 case UNQUOTE_OPTION
:
2062 unquote_option
= true;
2065 case NO_UNQUOTE_OPTION
:
2066 unquote_option
= false;
2069 case WARNING_OPTION
:
2070 set_warning_option (arg
);
2082 #ifdef DEVICE_PREFIX
2084 int device
= key
- '0';
2086 static char buf
[sizeof DEVICE_PREFIX
+ 10];
2090 argp_error (state
, _("Malformed density argument: %s"), quote (arg
));
2092 strcpy (buf
, DEVICE_PREFIX
);
2093 cursor
= buf
+ strlen (buf
);
2095 #ifdef DENSITY_LETTER
2097 sprintf (cursor
, "%d%c", device
, arg
[0]);
2099 #else /* not DENSITY_LETTER */
2104 device
+= LOW_DENSITY_NUM
;
2108 device
+= MID_DENSITY_NUM
;
2112 device
+= HIGH_DENSITY_NUM
;
2116 argp_error (state
, _("Unknown density: `%c'"), arg
[0]);
2118 sprintf (cursor
, "%d", device
);
2120 #endif /* not DENSITY_LETTER */
2122 if (archive_names
== allocated_archive_names
)
2123 archive_name_array
= x2nrealloc (archive_name_array
,
2124 &allocated_archive_names
,
2125 sizeof (archive_name_array
[0]));
2126 archive_name_array
[archive_names
++] = xstrdup (buf
);
2130 #else /* not DEVICE_PREFIX */
2133 _("Options `-[0-7][lmh]' not supported by *this* tar"));
2135 #endif /* not DEVICE_PREFIX */
2138 return ARGP_ERR_UNKNOWN
;
2143 static struct argp argp
= {
2156 argp_help (&argp
, stderr
, ARGP_HELP_SEE
, (char*) program_name
);
2161 /* Parse the options for tar. */
2163 static struct argp_option
*
2164 find_argp_option (struct argp_option
*o
, int letter
)
2171 && o
->doc
== NULL
); o
++)
2172 if (o
->key
== letter
)
2177 static const char *tar_authors
[] = {
2184 decode_options (int argc
, char **argv
)
2187 struct tar_args args
;
2189 argp_version_setup ("tar", tar_authors
);
2191 /* Set some default option values. */
2192 args
.textual_date
= NULL
;
2193 args
.wildcards
= default_wildcards
;
2194 args
.matching_flags
= 0;
2195 args
.include_anchored
= EXCLUDE_ANCHORED
;
2196 args
.o_option
= false;
2197 args
.pax_option
= false;
2198 args
.backup_suffix_string
= getenv ("SIMPLE_BACKUP_SUFFIX");
2199 args
.version_control_string
= 0;
2200 args
.input_files
= false;
2201 args
.compress_autodetect
= false;
2203 subcommand_option
= UNKNOWN_SUBCOMMAND
;
2204 archive_format
= DEFAULT_FORMAT
;
2205 blocking_factor
= DEFAULT_BLOCKING
;
2206 record_size
= DEFAULT_BLOCKING
* BLOCKSIZE
;
2207 excluded
= new_exclude ();
2208 newer_mtime_option
.tv_sec
= TYPE_MINIMUM (time_t);
2209 newer_mtime_option
.tv_nsec
= -1;
2210 recursion_option
= FNM_LEADING_DIR
;
2211 unquote_option
= true;
2212 tar_sparse_major
= 1;
2213 tar_sparse_minor
= 0;
2218 check_device_option
= true;
2220 incremental_level
= -1;
2224 /* Convert old-style tar call by exploding option element and rearranging
2225 options accordingly. */
2227 if (argc
> 1 && argv
[1][0] != '-')
2229 int new_argc
; /* argc value for rearranged arguments */
2230 char **new_argv
; /* argv value for rearranged arguments */
2231 char *const *in
; /* cursor into original argv */
2232 char **out
; /* cursor into rearranged argv */
2233 const char *letter
; /* cursor into old option letters */
2234 char buffer
[3]; /* constructed option buffer */
2236 /* Initialize a constructed option. */
2241 /* Allocate a new argument array, and copy program name in it. */
2243 new_argc
= argc
- 1 + strlen (argv
[1]);
2244 new_argv
= xmalloc ((new_argc
+ 1) * sizeof (char *));
2249 /* Copy each old letter option as a separate option, and have the
2250 corresponding argument moved next to it. */
2252 for (letter
= *in
++; *letter
; letter
++)
2254 struct argp_option
*opt
;
2256 buffer
[1] = *letter
;
2257 *out
++ = xstrdup (buffer
);
2258 opt
= find_argp_option (options
, *letter
);
2259 if (opt
&& opt
->arg
)
2261 if (in
< argv
+ argc
)
2264 USAGE_ERROR ((0, 0, _("Old option `%c' requires an argument."),
2269 /* Copy all remaining options. */
2271 while (in
< argv
+ argc
)
2275 /* Replace the old option list by the new one. */
2281 /* Parse all options and non-options as they appear. */
2283 prepend_default_options (getenv ("TAR_OPTIONS"), &argc
, &argv
);
2285 if (argp_parse (&argp
, argc
, argv
, ARGP_IN_ORDER
, &idx
, &args
))
2286 exit (TAREXIT_FAILURE
);
2289 /* Special handling for 'o' option:
2291 GNU tar used to say "output old format".
2292 UNIX98 tar says don't chown files after extracting (we use
2293 "--no-same-owner" for this).
2295 The old GNU tar semantics is retained when used with --create
2296 option, otherwise UNIX98 semantics is assumed */
2300 if (subcommand_option
== CREATE_SUBCOMMAND
)
2302 /* GNU Tar <= 1.13 compatibility */
2303 set_archive_format ("v7");
2307 /* UNIX98 compatibility */
2308 same_owner_option
= -1;
2312 /* Handle operands after any "--" argument. */
2313 for (; idx
< argc
; idx
++)
2315 name_add_name (argv
[idx
], MAKE_INCL_OPTIONS (&args
));
2316 args
.input_files
= true;
2319 /* Warn about implicit use of the wildcards in command line arguments.
2321 warn_regex_usage
= args
.wildcards
== default_wildcards
;
2323 /* Derive option values and check option consistency. */
2325 if (archive_format
== DEFAULT_FORMAT
)
2327 if (args
.pax_option
)
2328 archive_format
= POSIX_FORMAT
;
2330 archive_format
= DEFAULT_ARCHIVE_FORMAT
;
2333 if ((volume_label_option
&& subcommand_option
== CREATE_SUBCOMMAND
)
2334 || incremental_option
2335 || multi_volume_option
2337 assert_format (FORMAT_MASK (OLDGNU_FORMAT
)
2338 | FORMAT_MASK (GNU_FORMAT
)
2339 | FORMAT_MASK (POSIX_FORMAT
));
2341 if (occurrence_option
)
2343 if (!args
.input_files
)
2345 _("--occurrence is meaningless without a file list")));
2346 if (subcommand_option
!= DELETE_SUBCOMMAND
2347 && subcommand_option
!= DIFF_SUBCOMMAND
2348 && subcommand_option
!= EXTRACT_SUBCOMMAND
2349 && subcommand_option
!= LIST_SUBCOMMAND
)
2351 _("--occurrence cannot be used in the requested operation mode")));
2354 if (archive_names
== 0)
2356 /* If no archive file name given, try TAPE from the environment, or
2357 else, DEFAULT_ARCHIVE from the configuration process. */
2360 archive_name_array
[0] = getenv ("TAPE");
2361 if (! archive_name_array
[0])
2362 archive_name_array
[0] = DEFAULT_ARCHIVE
;
2365 /* Allow multiple archives only with `-M'. */
2367 if (archive_names
> 1 && !multi_volume_option
)
2369 _("Multiple archive files require `-M' option")));
2371 if (listed_incremental_option
2372 && NEWER_OPTION_INITIALIZED (newer_mtime_option
))
2374 _("Cannot combine --listed-incremental with --newer")));
2375 if (incremental_level
!= -1 && !listed_incremental_option
)
2377 _("--level is meaningless without --listed-incremental")));
2379 if (volume_label_option
)
2381 if (archive_format
== GNU_FORMAT
|| archive_format
== OLDGNU_FORMAT
)
2383 size_t volume_label_max_len
=
2384 (sizeof current_header
->header
.name
2385 - 1 /* for trailing '\0' */
2386 - (multi_volume_option
2387 ? (sizeof " Volume "
2388 - 1 /* for null at end of " Volume " */
2389 + INT_STRLEN_BOUND (int) /* for volume number */
2390 - 1 /* for sign, as 0 <= volno */)
2392 if (volume_label_max_len
< strlen (volume_label_option
))
2394 ngettext ("%s: Volume label is too long (limit is %lu byte)",
2395 "%s: Volume label is too long (limit is %lu bytes)",
2396 volume_label_max_len
),
2397 quotearg_colon (volume_label_option
),
2398 (unsigned long) volume_label_max_len
));
2401 Label length in PAX format is limited by the volume size. */
2406 if (multi_volume_option
)
2407 USAGE_ERROR ((0, 0, _("Cannot verify multi-volume archives")));
2408 if (use_compress_program_option
)
2409 USAGE_ERROR ((0, 0, _("Cannot verify compressed archives")));
2412 if (use_compress_program_option
)
2414 if (multi_volume_option
)
2415 USAGE_ERROR ((0, 0, _("Cannot use multi-volume compressed archives")));
2416 if (subcommand_option
== UPDATE_SUBCOMMAND
2417 || subcommand_option
== APPEND_SUBCOMMAND
2418 || subcommand_option
== DELETE_SUBCOMMAND
)
2419 USAGE_ERROR ((0, 0, _("Cannot update compressed archives")));
2420 if (subcommand_option
== CAT_SUBCOMMAND
)
2421 USAGE_ERROR ((0, 0, _("Cannot concatenate compressed archives")));
2424 /* It is no harm to use --pax-option on non-pax archives in archive
2425 reading mode. It may even be useful, since it allows to override
2426 file attributes from tar headers. Therefore I allow such usage.
2429 && archive_format
!= POSIX_FORMAT
2430 && (subcommand_option
!= EXTRACT_SUBCOMMAND
2431 || subcommand_option
!= DIFF_SUBCOMMAND
2432 || subcommand_option
!= LIST_SUBCOMMAND
))
2433 USAGE_ERROR ((0, 0, _("--pax-option can be used only on POSIX archives")));
2435 /* If ready to unlink hierarchies, so we are for simpler files. */
2436 if (recursive_unlink_option
)
2437 old_files_option
= UNLINK_FIRST_OLD_FILES
;
2440 if (test_label_option
)
2442 /* --test-label is silent if the user has specified the label name to
2444 if (!args
.input_files
)
2447 else if (utc_option
)
2450 if (tape_length_option
&& tape_length_option
< record_size
)
2451 USAGE_ERROR ((0, 0, _("Volume length cannot be less than record size")));
2453 if (same_order_option
&& listed_incremental_option
)
2454 USAGE_ERROR ((0, 0, _("--preserve-order is not compatible with "
2455 "--listed-incremental")));
2457 /* Forbid using -c with no input files whatsoever. Check that `-f -',
2458 explicit or implied, is used correctly. */
2460 switch (subcommand_option
)
2462 case CREATE_SUBCOMMAND
:
2463 if (!args
.input_files
&& !files_from_option
)
2465 _("Cowardly refusing to create an empty archive")));
2466 if (args
.compress_autodetect
&& archive_names
2467 && strcmp (archive_name_array
[0], "-"))
2468 set_comression_program_by_suffix (archive_name_array
[0],
2469 use_compress_program_option
);
2472 case EXTRACT_SUBCOMMAND
:
2473 case LIST_SUBCOMMAND
:
2474 case DIFF_SUBCOMMAND
:
2475 for (archive_name_cursor
= archive_name_array
;
2476 archive_name_cursor
< archive_name_array
+ archive_names
;
2477 archive_name_cursor
++)
2478 if (!strcmp (*archive_name_cursor
, "-"))
2479 request_stdin ("-f");
2482 case CAT_SUBCOMMAND
:
2483 case UPDATE_SUBCOMMAND
:
2484 case APPEND_SUBCOMMAND
:
2485 for (archive_name_cursor
= archive_name_array
;
2486 archive_name_cursor
< archive_name_array
+ archive_names
;
2487 archive_name_cursor
++)
2488 if (!strcmp (*archive_name_cursor
, "-"))
2490 _("Options `-Aru' are incompatible with `-f -'")));
2496 /* Initialize stdlis */
2497 if (index_file_name
)
2499 stdlis
= fopen (index_file_name
, "w");
2501 open_error (index_file_name
);
2504 stdlis
= to_stdout_option
? stderr
: stdout
;
2506 archive_name_cursor
= archive_name_array
;
2508 /* Prepare for generating backup names. */
2510 if (args
.backup_suffix_string
)
2511 simple_backup_suffix
= xstrdup (args
.backup_suffix_string
);
2515 backup_type
= xget_version ("--backup", args
.version_control_string
);
2516 /* No backup is needed either if explicitely disabled or if
2517 the extracted files are not being written to disk. */
2518 if (backup_type
== no_backups
|| EXTRACT_OVER_PIPE
)
2519 backup_option
= false;
2522 checkpoint_finish_compile ();
2524 report_textual_dates (&args
);
2530 /* Main routine for tar. */
2532 main (int argc
, char **argv
)
2535 set_program_name (argv
[0]);
2537 setlocale (LC_ALL
, "");
2538 bindtextdomain (PACKAGE
, LOCALEDIR
);
2539 textdomain (PACKAGE
);
2541 exit_failure
= TAREXIT_FAILURE
;
2542 exit_status
= TAREXIT_SUCCESS
;
2543 filename_terminator
= '\n';
2544 set_quoting_style (0, DEFAULT_QUOTING_STYLE
);
2546 /* Make sure we have first three descriptors available */
2549 /* Pre-allocate a few structures. */
2551 allocated_archive_names
= 10;
2552 archive_name_array
=
2553 xmalloc (sizeof (const char *) * allocated_archive_names
);
2556 obstack_init (&argv_stk
);
2558 /* Ensure default behavior for some signals */
2559 signal (SIGPIPE
, SIG_DFL
);
2560 /* System V fork+wait does not work if SIGCHLD is ignored. */
2561 signal (SIGCHLD
, SIG_DFL
);
2563 /* Try to disable the ability to unlink a directory. */
2564 priv_set_remove_linkdir ();
2566 /* Decode options. */
2568 decode_options (argc
, argv
);
2572 /* Main command execution. */
2574 if (volno_file_option
)
2575 init_volume_number ();
2577 switch (subcommand_option
)
2579 case UNKNOWN_SUBCOMMAND
:
2581 _("You must specify one of the `-Acdtrux' options")));
2583 case CAT_SUBCOMMAND
:
2584 case UPDATE_SUBCOMMAND
:
2585 case APPEND_SUBCOMMAND
:
2589 case DELETE_SUBCOMMAND
:
2590 delete_archive_members ();
2593 case CREATE_SUBCOMMAND
:
2597 case EXTRACT_SUBCOMMAND
:
2599 read_and (extract_archive
);
2601 /* FIXME: should extract_finish () even if an ordinary signal is
2607 case LIST_SUBCOMMAND
:
2608 read_and (list_archive
);
2611 case DIFF_SUBCOMMAND
:
2613 read_and (diff_archive
);
2618 print_total_stats ();
2620 if (check_links_option
)
2623 if (volno_file_option
)
2624 closeout_volume_number ();
2626 /* Dispose of allocated memory, and return. */
2628 free (archive_name_array
);
2631 if (exit_status
== TAREXIT_FAILURE
)
2632 error (0, 0, _("Exiting with failure status due to previous errors"));
2634 if (stdlis
== stdout
)
2636 else if (ferror (stderr
) || fclose (stderr
) != 0)
2637 set_exit_status (TAREXIT_FAILURE
);
2643 tar_stat_init (struct tar_stat_info
*st
)
2645 memset (st
, 0, sizeof (*st
));
2649 tar_stat_destroy (struct tar_stat_info
*st
)
2651 free (st
->orig_file_name
);
2652 free (st
->file_name
);
2653 free (st
->link_name
);
2656 free (st
->sparse_map
);
2658 xheader_destroy (&st
->xhdr
);
2659 memset (st
, 0, sizeof (*st
));
2662 /* Format mask for all available formats that support nanosecond
2663 timestamp resolution. */
2664 #define NS_PRECISION_FORMAT_MASK FORMAT_MASK (POSIX_FORMAT)
2666 /* Same as timespec_cmp, but ignore nanoseconds if current archive
2667 format does not provide sufficient resolution. */
2669 tar_timespec_cmp (struct timespec a
, struct timespec b
)
2671 if (!(FORMAT_MASK (current_format
) & NS_PRECISION_FORMAT_MASK
))
2672 a
.tv_nsec
= b
.tv_nsec
= 0;
2673 return timespec_cmp (a
, b
);
2676 /* Set tar exit status to VAL, unless it is already indicating
2677 a more serious condition. This relies on the fact that the
2678 values of TAREXIT_ constants are ranged by severity. */
2680 set_exit_status (int val
)
2682 if (val
> exit_status
)