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