1 /* List a tar archive, with support routines for reading a tar archive.
3 Copyright (C) 1988, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000,
4 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
6 Written by John Gilmore, on 1985-08-26.
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
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 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 /* Define to non-zero for forcing old ctime format instead of ISO format. */
30 #define max(a, b) ((a) < (b) ? (b) : (a))
32 union block
*current_header
; /* points to current archive header */
33 enum archive_format current_format
; /* recognized format */
34 union block
*recent_long_name
; /* recent long name header and contents */
35 union block
*recent_long_link
; /* likewise, for long link */
36 size_t recent_long_name_blocks
; /* number of blocks in recent_long_name */
37 size_t recent_long_link_blocks
; /* likewise, for long link */
39 static uintmax_t from_header (const char *, size_t, const char *,
40 uintmax_t, uintmax_t, bool, bool);
42 /* Base 64 digits; see Internet RFC 2045 Table 1. */
43 static char const base_64_digits
[64] =
45 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
46 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
47 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
48 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
49 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'
52 /* Table of base-64 digit values indexed by unsigned chars.
53 The value is 64 for unsigned chars that are not base-64 digits. */
54 static char base64_map
[UCHAR_MAX
+ 1];
60 memset (base64_map
, 64, sizeof base64_map
);
61 for (i
= 0; i
< 64; i
++)
62 base64_map
[(int) base_64_digits
[i
]] = i
;
65 /* Main loop for reading an archive. */
67 read_and (void (*do_something
) (void))
69 enum read_header status
= HEADER_STILL_UNREAD
;
70 enum read_header prev_status
;
75 open_archive (ACCESS_READ
);
79 tar_stat_destroy (¤t_stat_info
);
80 xheader_destroy (&extended_header
);
82 status
= read_header (false);
85 case HEADER_STILL_UNREAD
:
86 case HEADER_SUCCESS_EXTENDED
:
91 /* Valid header. We should decode next field (mode) first.
92 Ensure incoming names are null terminated. */
94 if (! name_match (current_stat_info
.file_name
)
95 || (NEWER_OPTION_INITIALIZED (newer_mtime_option
)
96 /* FIXME: We get mtime now, and again later; this causes
97 duplicate diagnostics if header.mtime is bogus. */
98 && ((current_stat_info
.stat
.st_mtime
99 = TIME_FROM_HEADER (current_header
->header
.mtime
)),
101 /* FIXME: Grab fractional time stamps from
103 current_stat_info
.stat
.st_mtim
.ST_MTIM_NSEC
= 0,
105 OLDER_STAT_TIME (current_stat_info
.stat
, m
)))
106 || excluded_name (current_stat_info
.file_name
))
108 switch (current_header
->header
.typeflag
)
111 case GNUTYPE_MULTIVOL
:
116 if (show_omitted_dirs_option
)
117 WARN ((0, 0, _("%s: Omitting"),
118 quotearg_colon (current_stat_info
.file_name
)));
121 decode_header (current_header
,
122 ¤t_stat_info
, ¤t_format
, 0);
131 case HEADER_ZERO_BLOCK
:
132 if (block_number_option
)
134 char buf
[UINTMAX_STRSIZE_BOUND
];
135 fprintf (stdlis
, _("block %s: ** Block of NULs **\n"),
136 STRINGIFY_BIGINT (current_block_ordinal (), buf
));
139 set_next_block_after (current_header
);
141 if (!ignore_zeros_option
)
143 char buf
[UINTMAX_STRSIZE_BOUND
];
145 status
= read_header (false);
146 if (status
== HEADER_ZERO_BLOCK
)
148 WARN ((0, 0, _("A lone zero block at %s"),
149 STRINGIFY_BIGINT (current_block_ordinal (), buf
)));
152 status
= prev_status
;
155 case HEADER_END_OF_FILE
:
156 if (block_number_option
)
158 char buf
[UINTMAX_STRSIZE_BOUND
];
159 fprintf (stdlis
, _("block %s: ** End of File **\n"),
160 STRINGIFY_BIGINT (current_block_ordinal (), buf
));
165 /* If the previous header was good, tell them that we are
166 skipping bad ones. */
167 set_next_block_after (current_header
);
170 case HEADER_STILL_UNREAD
:
171 ERROR ((0, 0, _("This does not look like a tar archive")));
174 case HEADER_ZERO_BLOCK
:
176 if (block_number_option
)
178 char buf
[UINTMAX_STRSIZE_BOUND
];
179 off_t block_ordinal
= current_block_ordinal ();
180 block_ordinal
-= recent_long_name_blocks
;
181 block_ordinal
-= recent_long_link_blocks
;
182 fprintf (stdlis
, _("block %s: "),
183 STRINGIFY_BIGINT (block_ordinal
, buf
));
185 ERROR ((0, 0, _("Skipping to next header")));
188 case HEADER_END_OF_FILE
:
190 /* We are in the middle of a cascade of errors. */
193 case HEADER_SUCCESS_EXTENDED
:
200 while (!all_names_found (¤t_stat_info
));
203 names_notfound (); /* print names not found */
206 /* Print a header block, based on tar options. */
210 /* Print the header block. */
212 decode_header (current_header
, ¤t_stat_info
, ¤t_format
, 0);
214 print_header (¤t_stat_info
, -1);
216 if (incremental_option
&& current_header
->header
.typeflag
== GNUTYPE_DUMPDIR
)
219 size_t written
, check
;
220 union block
*data_block
;
222 set_next_block_after (current_header
);
223 if (multi_volume_option
)
225 assign_string (&save_name
, current_stat_info
.file_name
);
226 save_totsize
= current_stat_info
.stat
.st_size
;
228 for (size
= current_stat_info
.stat
.st_size
; size
> 0; size
-= written
)
230 if (multi_volume_option
)
231 save_sizeleft
= size
;
232 data_block
= find_next_block ();
235 ERROR ((0, 0, _("Unexpected EOF in archive")));
236 break; /* FIXME: What happens, then? */
238 written
= available_space_after (data_block
);
242 check
= fwrite (data_block
->buffer
, sizeof (char), written
, stdlis
);
243 set_next_block_after ((union block
*)
244 (data_block
->buffer
+ written
- 1));
245 if (check
!= written
)
247 write_error_details (current_stat_info
.file_name
, check
, written
);
248 skip_file (size
- written
);
252 if (multi_volume_option
)
253 assign_string (&save_name
, 0);
254 fputc ('\n', stdlis
);
260 if (multi_volume_option
)
261 assign_string (&save_name
, current_stat_info
.file_name
);
265 if (multi_volume_option
)
266 assign_string (&save_name
, 0);
269 /* Check header checksum */
270 /* The standard BSD tar sources create the checksum by adding up the
271 bytes in the header as type char. I think the type char was unsigned
272 on the PDP-11, but it's signed on the Next and Sun. It looks like the
273 sources to BSD tar were never changed to compute the checksum
274 correctly, so both the Sun and Next add the bytes of the header as
275 signed chars. This doesn't cause a problem until you get a file with
276 a name containing characters with the high bit set. So tar_checksum
277 computes two checksums -- signed and unsigned. */
280 tar_checksum (union block
*header
, bool silent
)
283 int unsigned_sum
= 0; /* the POSIX one :-) */
284 int signed_sum
= 0; /* the Sun one :-( */
286 uintmax_t parsed_sum
;
290 for (i
= sizeof *header
; i
-- != 0;)
292 unsigned_sum
+= (unsigned char) *p
;
293 signed_sum
+= (signed char) (*p
++);
296 if (unsigned_sum
== 0)
297 return HEADER_ZERO_BLOCK
;
299 /* Adjust checksum to count the "chksum" field as blanks. */
301 for (i
= sizeof header
->header
.chksum
; i
-- != 0;)
303 unsigned_sum
-= (unsigned char) header
->header
.chksum
[i
];
304 signed_sum
-= (signed char) (header
->header
.chksum
[i
]);
306 unsigned_sum
+= ' ' * sizeof header
->header
.chksum
;
307 signed_sum
+= ' ' * sizeof header
->header
.chksum
;
309 parsed_sum
= from_header (header
->header
.chksum
,
310 sizeof header
->header
.chksum
, 0,
312 (uintmax_t) TYPE_MAXIMUM (int), true, silent
);
313 if (parsed_sum
== (uintmax_t) -1)
314 return HEADER_FAILURE
;
316 recorded_sum
= parsed_sum
;
318 if (unsigned_sum
!= recorded_sum
&& signed_sum
!= recorded_sum
)
319 return HEADER_FAILURE
;
321 return HEADER_SUCCESS
;
324 /* Read a block that's supposed to be a header block. Return its
325 address in "current_header", and if it is good, the file's size in
326 current_stat_info.stat.st_size.
328 Return 1 for success, 0 if the checksum is bad, EOF on eof, 2 for a
329 block full of zeros (EOF marker).
331 If RAW_EXTENDED_HEADERS is nonzero, do not automagically fold the
332 GNU long name and link headers into later headers.
334 You must always set_next_block_after(current_header) to skip past
335 the header which this routine reads. */
338 read_header (bool raw_extended_headers
)
341 union block
*header_copy
;
343 union block
*data_block
;
344 size_t size
, written
;
345 union block
*next_long_name
= 0;
346 union block
*next_long_link
= 0;
347 size_t next_long_name_blocks
;
348 size_t next_long_link_blocks
;
352 enum read_header status
;
354 header
= find_next_block ();
355 current_header
= header
;
357 return HEADER_END_OF_FILE
;
359 if ((status
= tar_checksum (header
, false)) != HEADER_SUCCESS
)
362 /* Good block. Decode file size and return. */
364 if (header
->header
.typeflag
== LNKTYPE
)
365 current_stat_info
.stat
.st_size
= 0; /* links 0 size on tape */
367 current_stat_info
.stat
.st_size
= OFF_FROM_HEADER (header
->header
.size
);
369 if (header
->header
.typeflag
== GNUTYPE_LONGNAME
370 || header
->header
.typeflag
== GNUTYPE_LONGLINK
371 || header
->header
.typeflag
== XHDTYPE
372 || header
->header
.typeflag
== XGLTYPE
)
374 if (raw_extended_headers
)
375 return HEADER_SUCCESS_EXTENDED
;
376 else if (header
->header
.typeflag
== GNUTYPE_LONGNAME
377 || header
->header
.typeflag
== GNUTYPE_LONGLINK
)
379 size_t name_size
= current_stat_info
.stat
.st_size
;
380 size_t n
= name_size
% BLOCKSIZE
;
381 size
= name_size
+ BLOCKSIZE
;
383 size
+= BLOCKSIZE
- n
;
385 if (name_size
!= current_stat_info
.stat
.st_size
389 header_copy
= xmalloc (size
+ 1);
391 if (header
->header
.typeflag
== GNUTYPE_LONGNAME
)
394 free (next_long_name
);
395 next_long_name
= header_copy
;
396 next_long_name_blocks
= size
/ BLOCKSIZE
;
401 free (next_long_link
);
402 next_long_link
= header_copy
;
403 next_long_link_blocks
= size
/ BLOCKSIZE
;
406 set_next_block_after (header
);
407 *header_copy
= *header
;
408 bp
= header_copy
->buffer
+ BLOCKSIZE
;
410 for (size
-= BLOCKSIZE
; size
> 0; size
-= written
)
412 data_block
= find_next_block ();
415 ERROR ((0, 0, _("Unexpected EOF in archive")));
418 written
= available_space_after (data_block
);
422 memcpy (bp
, data_block
->buffer
, written
);
424 set_next_block_after ((union block
*)
425 (data_block
->buffer
+ written
- 1));
430 else if (header
->header
.typeflag
== XHDTYPE
)
431 xheader_read (header
, OFF_FROM_HEADER (header
->header
.size
));
432 else if (header
->header
.typeflag
== XGLTYPE
)
434 xheader_read (header
, OFF_FROM_HEADER (header
->header
.size
));
435 xheader_decode_global ();
444 struct posix_header
const *h
= ¤t_header
->header
;
445 char namebuf
[sizeof h
->prefix
+ 1 + NAME_FIELD_SIZE
+ 1];
447 if (recent_long_name
)
448 free (recent_long_name
);
452 name
= next_long_name
->buffer
+ BLOCKSIZE
;
453 recent_long_name
= next_long_name
;
454 recent_long_name_blocks
= next_long_name_blocks
;
458 /* Accept file names as specified by POSIX.1-1996
462 if (h
->prefix
[0] && strcmp (h
->magic
, TMAGIC
) == 0)
464 memcpy (np
, h
->prefix
, sizeof h
->prefix
);
465 np
[sizeof h
->prefix
] = '\0';
469 memcpy (np
, h
->name
, sizeof h
->name
);
470 np
[sizeof h
->name
] = '\0';
472 recent_long_name
= 0;
473 recent_long_name_blocks
= 0;
475 assign_string (¤t_stat_info
.orig_file_name
, name
);
476 assign_string (¤t_stat_info
.file_name
, name
);
477 current_stat_info
.had_trailing_slash
= strip_trailing_slashes (current_stat_info
.file_name
);
479 if (recent_long_link
)
480 free (recent_long_link
);
484 name
= next_long_link
->buffer
+ BLOCKSIZE
;
485 recent_long_link
= next_long_link
;
486 recent_long_link_blocks
= next_long_link_blocks
;
490 memcpy (namebuf
, h
->linkname
, sizeof h
->linkname
);
491 namebuf
[sizeof h
->linkname
] = '\0';
493 recent_long_link
= 0;
494 recent_long_link_blocks
= 0;
496 assign_string (¤t_stat_info
.link_name
, name
);
498 return HEADER_SUCCESS
;
503 #define ISOCTAL(c) ((c)>='0'&&(c)<='7')
505 /* Decode things from a file HEADER block into STAT_INFO, also setting
506 *FORMAT_POINTER depending on the header block format. If
507 DO_USER_GROUP, decode the user/group information (this is useful
508 for extraction, but waste time when merely listing).
510 read_header() has already decoded the checksum and length, so we don't.
512 This routine should *not* be called twice for the same block, since
513 the two calls might use different DO_USER_GROUP values and thus
514 might end up with different uid/gid for the two calls. If anybody
515 wants the uid/gid they should decode it first, and other callers
516 should decode it without uid/gid before calling a routine,
517 e.g. print_header, that assumes decoded data. */
519 decode_header (union block
*header
, struct tar_stat_info
*stat_info
,
520 enum archive_format
*format_pointer
, int do_user_group
)
522 enum archive_format format
;
524 if (strcmp (header
->header
.magic
, TMAGIC
) == 0)
526 if (header
->star_header
.prefix
[130] == 0
527 && ISOCTAL (header
->star_header
.atime
[0])
528 && header
->star_header
.atime
[11] == ' '
529 && ISOCTAL (header
->star_header
.ctime
[0])
530 && header
->star_header
.ctime
[11] == ' ')
531 format
= STAR_FORMAT
;
532 else if (extended_header
.size
)
533 format
= POSIX_FORMAT
;
535 format
= USTAR_FORMAT
;
537 else if (strcmp (header
->header
.magic
, OLDGNU_MAGIC
) == 0)
538 format
= OLDGNU_FORMAT
;
541 *format_pointer
= format
;
543 stat_info
->stat
.st_mode
= MODE_FROM_HEADER (header
->header
.mode
);
544 stat_info
->stat
.st_mtime
= TIME_FROM_HEADER (header
->header
.mtime
);
545 assign_string (&stat_info
->uname
,
546 header
->header
.uname
[0] ? header
->header
.uname
: NULL
);
547 assign_string (&stat_info
->gname
,
548 header
->header
.gname
[0] ? header
->header
.gname
: NULL
);
549 stat_info
->devmajor
= MAJOR_FROM_HEADER (header
->header
.devmajor
);
550 stat_info
->devminor
= MINOR_FROM_HEADER (header
->header
.devminor
);
552 stat_info
->stat
.st_atime
= start_time
;
553 stat_info
->stat
.st_ctime
= start_time
;
555 if (format
== OLDGNU_FORMAT
&& incremental_option
)
557 stat_info
->stat
.st_atime
= TIME_FROM_HEADER (header
->oldgnu_header
.atime
);
558 stat_info
->stat
.st_ctime
= TIME_FROM_HEADER (header
->oldgnu_header
.ctime
);
561 if (format
== V7_FORMAT
)
563 stat_info
->stat
.st_uid
= UID_FROM_HEADER (header
->header
.uid
);
564 stat_info
->stat
.st_gid
= GID_FROM_HEADER (header
->header
.gid
);
565 stat_info
->stat
.st_rdev
= 0;
570 if (format
== STAR_FORMAT
)
572 stat_info
->stat
.st_atime
= TIME_FROM_HEADER (header
->star_header
.atime
);
573 stat_info
->stat
.st_ctime
= TIME_FROM_HEADER (header
->star_header
.ctime
);
578 /* FIXME: Decide if this should somewhat depend on -p. */
580 if (numeric_owner_option
581 || !*header
->header
.uname
582 || !uname_to_uid (header
->header
.uname
, &stat_info
->stat
.st_uid
))
583 stat_info
->stat
.st_uid
= UID_FROM_HEADER (header
->header
.uid
);
585 if (numeric_owner_option
586 || !*header
->header
.gname
587 || !gname_to_gid (header
->header
.gname
, &stat_info
->stat
.st_gid
))
588 stat_info
->stat
.st_gid
= GID_FROM_HEADER (header
->header
.gid
);
591 switch (header
->header
.typeflag
)
595 stat_info
->stat
.st_rdev
= makedev (stat_info
->devmajor
,
596 stat_info
->devminor
);
600 stat_info
->stat
.st_rdev
= 0;
604 stat_info
->archive_file_size
= stat_info
->stat
.st_size
;
605 xheader_decode (stat_info
);
607 if (sparse_member_p (stat_info
))
609 sparse_fixup_header (stat_info
);
610 stat_info
->is_sparse
= true;
613 stat_info
->is_sparse
= false;
616 /* Convert buffer at WHERE0 of size DIGS from external format to
617 uintmax_t. DIGS must be positive. If TYPE is nonnull, the data
618 are of type TYPE. The buffer must represent a value in the range
619 -MINUS_MINVAL through MAXVAL. If OCTAL_ONLY, allow only octal
620 numbers instead of the other GNU extensions. Return -1 on error,
621 diagnosing the error if TYPE is nonnull and if !SILENT. */
623 from_header (char const *where0
, size_t digs
, char const *type
,
624 uintmax_t minus_minval
, uintmax_t maxval
,
625 bool octal_only
, bool silent
)
628 char const *where
= where0
;
629 char const *lim
= where
+ digs
;
632 /* Accommodate buggy tar of unknown vintage, which outputs leading
633 NUL if the previous field overflows. */
636 /* Accommodate older tars, which output leading spaces. */
643 /* TRANSLATORS: %s is type of the value (gid_t, uid_t, etc.) */
644 _("Blanks in header where numeric %s value expected"),
648 if (!ISSPACE ((unsigned char) *where
))
654 if (ISODIGIT (*where
))
656 char const *where1
= where
;
657 uintmax_t overflow
= 0;
661 value
+= *where
++ - '0';
662 if (where
== lim
|| ! ISODIGIT (*where
))
664 overflow
|= value
^ (value
<< LG_8
>> LG_8
);
668 /* Parse the output of older, unportable tars, which generate
669 negative values in two's complement octal. If the leading
670 nonzero digit is 1, we can't recover the original value
671 reliably; so do this only if the digit is 2 or more. This
672 catches the common case of 32-bit negative time stamps. */
673 if ((overflow
|| maxval
< value
) && '2' <= *where1
&& type
)
675 /* Compute the negative of the input value, assuming two's
677 int digit
= (*where1
- '0') | 4;
685 if (where
== lim
|| ! ISODIGIT (*where
))
687 digit
= *where
- '0';
688 overflow
|= value
^ (value
<< LG_8
>> LG_8
);
694 if (!overflow
&& value
<= minus_minval
)
698 /* TRANSLATORS: Second %s is a type name (gid_t,uid_t,etc.) */
699 _("Archive octal value %.*s is out of %s range; assuming two's complement"),
700 (int) (where
- where1
), where1
, type
));
709 /* TRANSLATORS: Second %s is a type name (gid_t,uid_t,etc.) */
710 _("Archive octal value %.*s is out of %s range"),
711 (int) (where
- where1
), where1
, type
));
717 /* Suppress the following extensions. */
719 else if (*where
== '-' || *where
== '+')
721 /* Parse base-64 output produced only by tar test versions
722 1.13.6 (1999-08-11) through 1.13.11 (1999-08-23).
723 Support for this will be withdrawn in future releases. */
727 static bool warned_once
;
731 WARN ((0, 0, _("Archive contains obsolescent base-64 headers")));
734 negative
= *where
++ == '-';
736 && (dig
= base64_map
[(unsigned char) *where
]) < 64)
738 if (value
<< LG_64
>> LG_64
!= value
)
740 char *string
= alloca (digs
+ 1);
741 memcpy (string
, where0
, digs
);
745 _("Archive signed base-64 string %s is out of %s range"),
746 quote (string
), type
));
749 value
= (value
<< LG_64
) | dig
;
753 else if (*where
== '\200' /* positive base-256 */
754 || *where
== '\377' /* negative base-256 */)
756 /* Parse base-256 output. A nonnegative number N is
757 represented as (256**DIGS)/2 + N; a negative number -N is
758 represented as (256**DIGS) - N, i.e. as two's complement.
759 The representation guarantees that the leading bit is
760 always on, so that we don't confuse this format with the
761 others (assuming ASCII bytes of 8 bits or more). */
762 int signbit
= *where
& (1 << (LG_256
- 2));
763 uintmax_t topbits
= (((uintmax_t) - signbit
)
764 << (CHAR_BIT
* sizeof (uintmax_t)
765 - LG_256
- (LG_256
- 2)));
766 value
= (*where
++ & ((1 << (LG_256
- 2)) - 1)) - signbit
;
769 value
= (value
<< LG_256
) + (unsigned char) *where
++;
772 if (((value
<< LG_256
>> LG_256
) | topbits
) != value
)
776 _("Archive base-256 value is out of %s range"),
786 if (where
!= lim
&& *where
&& !ISSPACE ((unsigned char) *where
))
790 char buf
[1000]; /* Big enough to represent any header. */
791 static struct quoting_options
*o
;
795 o
= clone_quoting_options (0);
796 set_quoting_style (o
, locale_quoting_style
);
799 while (where0
!= lim
&& ! lim
[-1])
801 quotearg_buffer (buf
, sizeof buf
, where0
, lim
- where
, o
);
804 /* TRANSLATORS: Second %s is a type name (gid_t,uid_t,etc.) */
805 _("Archive contains %.*s where numeric %s value expected"),
806 (int) sizeof buf
, buf
, type
));
812 if (value
<= (negative
? minus_minval
: maxval
))
813 return negative
? -value
: value
;
817 char minval_buf
[UINTMAX_STRSIZE_BOUND
+ 1];
818 char maxval_buf
[UINTMAX_STRSIZE_BOUND
];
819 char value_buf
[UINTMAX_STRSIZE_BOUND
+ 1];
820 char *minval_string
= STRINGIFY_BIGINT (minus_minval
, minval_buf
+ 1);
821 char *value_string
= STRINGIFY_BIGINT (value
, value_buf
+ 1);
823 *--value_string
= '-';
825 *--minval_string
= '-';
826 /* TRANSLATORS: Second %s is type name (gid_t,uid_t,etc.) */
827 ERROR ((0, 0, _("Archive value %s is out of %s range %s..%s"),
829 minval_string
, STRINGIFY_BIGINT (maxval
, maxval_buf
)));
836 gid_from_header (const char *p
, size_t s
)
838 return from_header (p
, s
, "gid_t",
839 - (uintmax_t) TYPE_MINIMUM (gid_t
),
840 (uintmax_t) TYPE_MAXIMUM (gid_t
),
845 major_from_header (const char *p
, size_t s
)
847 return from_header (p
, s
, "major_t",
848 - (uintmax_t) TYPE_MINIMUM (major_t
),
849 (uintmax_t) TYPE_MAXIMUM (major_t
), false, false);
853 minor_from_header (const char *p
, size_t s
)
855 return from_header (p
, s
, "minor_t",
856 - (uintmax_t) TYPE_MINIMUM (minor_t
),
857 (uintmax_t) TYPE_MAXIMUM (minor_t
), false, false);
861 mode_from_header (const char *p
, size_t s
)
863 /* Do not complain about unrecognized mode bits. */
864 unsigned u
= from_header (p
, s
, "mode_t",
865 - (uintmax_t) TYPE_MINIMUM (mode_t
),
866 TYPE_MAXIMUM (uintmax_t), false, false);
867 return ((u
& TSUID
? S_ISUID
: 0)
868 | (u
& TSGID
? S_ISGID
: 0)
869 | (u
& TSVTX
? S_ISVTX
: 0)
870 | (u
& TUREAD
? S_IRUSR
: 0)
871 | (u
& TUWRITE
? S_IWUSR
: 0)
872 | (u
& TUEXEC
? S_IXUSR
: 0)
873 | (u
& TGREAD
? S_IRGRP
: 0)
874 | (u
& TGWRITE
? S_IWGRP
: 0)
875 | (u
& TGEXEC
? S_IXGRP
: 0)
876 | (u
& TOREAD
? S_IROTH
: 0)
877 | (u
& TOWRITE
? S_IWOTH
: 0)
878 | (u
& TOEXEC
? S_IXOTH
: 0));
882 off_from_header (const char *p
, size_t s
)
884 /* Negative offsets are not allowed in tar files, so invoke
885 from_header with minimum value 0, not TYPE_MINIMUM (off_t). */
886 return from_header (p
, s
, "off_t", (uintmax_t) 0,
887 (uintmax_t) TYPE_MAXIMUM (off_t
), false, false);
891 size_from_header (const char *p
, size_t s
)
893 return from_header (p
, s
, "size_t", (uintmax_t) 0,
894 (uintmax_t) TYPE_MAXIMUM (size_t), false, false);
898 time_from_header (const char *p
, size_t s
)
900 return from_header (p
, s
, "time_t",
901 - (uintmax_t) TYPE_MINIMUM (time_t),
902 (uintmax_t) TYPE_MAXIMUM (time_t), false, false);
906 uid_from_header (const char *p
, size_t s
)
908 return from_header (p
, s
, "uid_t",
909 - (uintmax_t) TYPE_MINIMUM (uid_t
),
910 (uintmax_t) TYPE_MAXIMUM (uid_t
), false, false);
914 uintmax_from_header (const char *p
, size_t s
)
916 return from_header (p
, s
, "uintmax_t", (uintmax_t) 0,
917 TYPE_MAXIMUM (uintmax_t), false, false);
921 /* Format O as a null-terminated decimal string into BUF _backwards_;
922 return pointer to start of result. */
924 stringify_uintmax_t_backwards (uintmax_t o
, char *buf
)
928 *--buf
= '0' + (int) (o
% 10);
929 while ((o
/= 10) != 0);
933 /* Return a printable representation of T. The result points to
934 static storage that can be reused in the next call to this
935 function, to ctime, or to asctime. */
939 static char buffer
[max (UINTMAX_STRSIZE_BOUND
+ 1,
940 INT_STRLEN_BOUND (int) + 16)];
947 char const *time_stamp
= p
+ 4;
948 for (p
+= 16; p
[3] != '\n'; p
++)
954 /* Use ISO 8610 format. See:
955 http://www.cl.cam.ac.uk/~mgk25/iso-time.html */
956 struct tm
*tm
= utc_option
? gmtime (&t
) : localtime (&t
);
959 sprintf (buffer
, "%04ld-%02d-%02d %02d:%02d:%02d",
960 tm
->tm_year
+ 1900L, tm
->tm_mon
+ 1, tm
->tm_mday
,
961 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
966 /* The time stamp cannot be broken down, most likely because it
967 is out of range. Convert it as an integer,
968 right-adjusted in a field with the same width as the usual
969 19-byte 4-year ISO time format. */
970 p
= stringify_uintmax_t_backwards (t
< 0 ? - (uintmax_t) t
: (uintmax_t) t
,
971 buffer
+ sizeof buffer
);
974 while (buffer
+ sizeof buffer
- 19 - 1 < p
)
979 /* Actually print it.
981 Plain and fancy file header block logging. Non-verbose just prints
982 the name, e.g. for "tar t" or "tar x". This should just contain
983 file names, so it can be fed back into tar with xargs or the "-T"
984 option. The verbose option can give a bunch of info, one line per
985 file. I doubt anybody tries to parse its format, or if they do,
986 they shouldn't. Unix tar is pretty random here anyway. */
989 /* FIXME: Note that print_header uses the globals HEAD, HSTAT, and
990 HEAD_STANDARD, which must be set up in advance. Not very clean.. */
992 /* UGSWIDTH starts with 18, so with user and group names <= 8 chars, the
993 columns never shift during the listing. */
995 static int ugswidth
= UGSWIDTH
; /* maximum width encountered so far */
997 /* DATEWIDTH is the number of columns taken by the date and time fields. */
999 # define DATEWIDTH 19
1001 # define DATEWIDTH 18
1005 print_header (struct tar_stat_info
*st
, off_t block_ordinal
)
1008 char const *time_stamp
;
1009 char *temp_name
= st
->orig_file_name
? st
->orig_file_name
: st
->file_name
;
1011 /* These hold formatted ints. */
1012 char uform
[UINTMAX_STRSIZE_BOUND
], gform
[UINTMAX_STRSIZE_BOUND
];
1014 char size
[2 * UINTMAX_STRSIZE_BOUND
];
1015 /* holds formatted size or major,minor */
1016 char uintbuf
[UINTMAX_STRSIZE_BOUND
];
1019 if (block_number_option
)
1021 char buf
[UINTMAX_STRSIZE_BOUND
];
1022 if (block_ordinal
< 0)
1023 block_ordinal
= current_block_ordinal ();
1024 block_ordinal
-= recent_long_name_blocks
;
1025 block_ordinal
-= recent_long_link_blocks
;
1026 fprintf (stdlis
, _("block %s: "),
1027 STRINGIFY_BIGINT (block_ordinal
, buf
));
1030 if (verbose_option
<= 1)
1032 /* Just the fax, mam. */
1033 fprintf (stdlis
, "%s\n", quotearg (temp_name
));
1037 /* File type and modes. */
1040 switch (current_header
->header
.typeflag
)
1042 case GNUTYPE_VOLHDR
:
1046 case GNUTYPE_MULTIVOL
:
1054 case GNUTYPE_LONGNAME
:
1055 case GNUTYPE_LONGLINK
:
1057 ERROR ((0, 0, _("Unexpected long name header")));
1060 case GNUTYPE_SPARSE
:
1064 if (temp_name
[strlen (temp_name
) - 1] == '/')
1070 case GNUTYPE_DUMPDIR
:
1093 decode_mode (st
->stat
.st_mode
, modes
+ 1);
1097 time_stamp
= tartime (st
->stat
.st_mtime
);
1099 /* User and group names. */
1103 && current_format
!= V7_FORMAT
1104 && !numeric_owner_option
)
1108 /* Try parsing it as an unsigned integer first, and as a
1109 uid_t if that fails. This method can list positive user
1110 ids that are too large to fit in a uid_t. */
1111 uintmax_t u
= from_header (current_header
->header
.uid
,
1112 sizeof current_header
->header
.uid
, 0,
1114 (uintmax_t) TYPE_MAXIMUM (uintmax_t),
1117 user
= STRINGIFY_BIGINT (u
, uform
);
1120 sprintf (uform
, "%ld",
1121 (long) UID_FROM_HEADER (current_header
->header
.uid
));
1128 && current_format
!= V7_FORMAT
1129 && !numeric_owner_option
)
1133 /* Try parsing it as an unsigned integer first, and as a
1134 gid_t if that fails. This method can list positive group
1135 ids that are too large to fit in a gid_t. */
1136 uintmax_t g
= from_header (current_header
->header
.gid
,
1137 sizeof current_header
->header
.gid
, 0,
1139 (uintmax_t) TYPE_MAXIMUM (uintmax_t),
1142 group
= STRINGIFY_BIGINT (g
, gform
);
1145 sprintf (gform
, "%ld",
1146 (long) GID_FROM_HEADER (current_header
->header
.gid
));
1151 /* Format the file size or major/minor device numbers. */
1153 switch (current_header
->header
.typeflag
)
1158 STRINGIFY_BIGINT (major (st
->stat
.st_rdev
), uintbuf
));
1161 STRINGIFY_BIGINT (minor (st
->stat
.st_rdev
), uintbuf
));
1165 /* st->stat.st_size keeps stored file size */
1166 strcpy (size
, STRINGIFY_BIGINT (st
->stat
.st_size
, uintbuf
));
1170 /* Figure out padding and print the whole line. */
1172 pad
= strlen (user
) + strlen (group
) + strlen (size
) + 1;
1176 fprintf (stdlis
, "%s %s/%s %*s%s %s",
1177 modes
, user
, group
, ugswidth
- pad
, "", size
, time_stamp
);
1179 fprintf (stdlis
, " %s", quotearg (temp_name
));
1181 switch (current_header
->header
.typeflag
)
1184 fprintf (stdlis
, " -> %s\n", quotearg (st
->link_name
));
1188 fprintf (stdlis
, _(" link to %s\n"), quotearg (st
->link_name
));
1193 char type_string
[2];
1194 type_string
[0] = current_header
->header
.typeflag
;
1195 type_string
[1] = '\0';
1196 fprintf (stdlis
, _(" unknown file type %s\n"),
1197 quote (type_string
));
1203 case GNUTYPE_SPARSE
:
1209 case GNUTYPE_DUMPDIR
:
1210 putc ('\n', stdlis
);
1213 case GNUTYPE_LONGLINK
:
1214 fprintf (stdlis
, _("--Long Link--\n"));
1217 case GNUTYPE_LONGNAME
:
1218 fprintf (stdlis
, _("--Long Name--\n"));
1221 case GNUTYPE_VOLHDR
:
1222 fprintf (stdlis
, _("--Volume Header--\n"));
1225 case GNUTYPE_MULTIVOL
:
1228 (UINTMAX_FROM_HEADER (current_header
->oldgnu_header
.offset
),
1230 fprintf (stdlis
, _("--Continued at byte %s--\n"), size
);
1234 fprintf (stdlis
, _("--Mangled file names--\n"));
1241 /* Print a similar line when we make a directory automatically. */
1243 print_for_mkdir (char *dirname
, int length
, mode_t mode
)
1247 if (verbose_option
> 1)
1249 /* File type and modes. */
1252 decode_mode (mode
, modes
+ 1);
1254 if (block_number_option
)
1256 char buf
[UINTMAX_STRSIZE_BOUND
];
1257 fprintf (stdlis
, _("block %s: "),
1258 STRINGIFY_BIGINT (current_block_ordinal (), buf
));
1261 fprintf (stdlis
, "%s %*s %.*s\n", modes
, ugswidth
+ DATEWIDTH
,
1262 _("Creating directory:"), length
, quotearg (dirname
));
1266 /* Skip over SIZE bytes of data in blocks in the archive. */
1268 skip_file (off_t size
)
1272 if (multi_volume_option
)
1274 save_totsize
= size
;
1275 save_sizeleft
= size
;
1278 if (seekable_archive
)
1280 off_t nblk
= seek_archive (size
);
1283 size
-= nblk
* BLOCKSIZE
;
1284 if (multi_volume_option
) /* Argh.. */
1285 save_sizeleft
-= nblk
* BLOCKSIZE
;
1288 seekable_archive
= false;
1293 x
= find_next_block ();
1295 FATAL_ERROR ((0, 0, _("Unexpected EOF in archive")));
1297 set_next_block_after (x
);
1299 if (multi_volume_option
)
1300 save_sizeleft
-= BLOCKSIZE
;
1304 /* Skip the current member in the archive.
1305 NOTE: Current header must be decoded before calling this function. */
1309 char save_typeflag
= current_header
->header
.typeflag
;
1310 set_next_block_after (current_header
);
1312 assign_string (&save_name
, current_stat_info
.file_name
);
1314 if (current_stat_info
.is_sparse
)
1315 sparse_skip_file (¤t_stat_info
);
1316 else if (save_typeflag
!= DIRTYPE
)
1317 skip_file (current_stat_info
.stat
.st_size
);