]> Dogcows Code - chaz/tar/blob - src/list.c
(decode_header): Call xheader_decode unconditionally.
[chaz/tar] / src / list.c
1 /* List a tar archive, with support routines for reading a tar archive.
2
3 Copyright (C) 1988, 1992, 1993, 1994, 1996, 1997, 1998, 1999, 2000,
4 2001, 2003 Free Software Foundation, Inc.
5
6 Written by John Gilmore, on 1985-08-26.
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 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21
22 /* Define to non-zero for forcing old ctime format instead of ISO format. */
23 #undef USE_OLD_CTIME
24
25 #include "system.h"
26 #include <quotearg.h>
27
28 #include "common.h"
29
30 #define max(a, b) ((a) < (b) ? (b) : (a))
31
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 */
38
39 static uintmax_t from_header (const char *, size_t, const char *,
40 uintmax_t, uintmax_t);
41
42 /* Base 64 digits; see Internet RFC 2045 Table 1. */
43 static char const base_64_digits[64] =
44 {
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', '+', '/'
50 };
51
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];
55
56 static void
57 base64_init (void)
58 {
59 int i;
60 memset (base64_map, 64, sizeof base64_map);
61 for (i = 0; i < 64; i++)
62 base64_map[(int) base_64_digits[i]] = i;
63 }
64
65 /* Main loop for reading an archive. */
66 void
67 read_and (void (*do_something) (void))
68 {
69 enum read_header status = HEADER_STILL_UNREAD;
70 enum read_header prev_status;
71
72 base64_init ();
73 name_gather ();
74 open_archive (ACCESS_READ);
75
76 do
77 {
78 prev_status = status;
79 tar_stat_destroy (&current_stat_info);
80 xheader_destroy (&extended_header);
81
82 status = read_header (false);
83 switch (status)
84 {
85 case HEADER_STILL_UNREAD:
86 case HEADER_SUCCESS_EXTENDED:
87 abort ();
88
89 case HEADER_SUCCESS:
90
91 /* Valid header. We should decode next field (mode) first.
92 Ensure incoming names are null terminated. */
93
94 if (! name_match (current_stat_info.file_name)
95 || (newer_mtime_option != TYPE_MINIMUM (time_t)
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))
100 < newer_mtime_option))
101 || excluded_name (current_stat_info.file_name))
102 {
103 switch (current_header->header.typeflag)
104 {
105 case GNUTYPE_VOLHDR:
106 case GNUTYPE_MULTIVOL:
107 case GNUTYPE_NAMES:
108 break;
109
110 case DIRTYPE:
111 if (show_omitted_dirs_option)
112 WARN ((0, 0, _("%s: Omitting"),
113 quotearg_colon (current_stat_info.file_name)));
114 /* Fall through. */
115 default:
116 skip_member ();
117 continue;
118 }
119 }
120
121 (*do_something) ();
122 continue;
123
124 case HEADER_ZERO_BLOCK:
125 if (block_number_option)
126 {
127 char buf[UINTMAX_STRSIZE_BOUND];
128 fprintf (stdlis, _("block %s: ** Block of NULs **\n"),
129 STRINGIFY_BIGINT (current_block_ordinal (), buf));
130 }
131
132 set_next_block_after (current_header);
133
134 if (!ignore_zeros_option)
135 {
136 char buf[UINTMAX_STRSIZE_BOUND];
137
138 status = read_header (false);
139 if (status == HEADER_ZERO_BLOCK)
140 break;
141 WARN ((0, 0, _("A lone zero block at %s"),
142 STRINGIFY_BIGINT (current_block_ordinal (), buf)));
143 }
144 status = prev_status;
145 continue;
146
147 case HEADER_END_OF_FILE:
148 if (block_number_option)
149 {
150 char buf[UINTMAX_STRSIZE_BOUND];
151 fprintf (stdlis, _("block %s: ** End of File **\n"),
152 STRINGIFY_BIGINT (current_block_ordinal (), buf));
153 }
154 break;
155
156 case HEADER_FAILURE:
157 /* If the previous header was good, tell them that we are
158 skipping bad ones. */
159 set_next_block_after (current_header);
160 switch (prev_status)
161 {
162 case HEADER_STILL_UNREAD:
163 ERROR ((0, 0, _("This does not look like a tar archive")));
164 /* Fall through. */
165
166 case HEADER_ZERO_BLOCK:
167 case HEADER_SUCCESS:
168 ERROR ((0, 0, _("Skipping to next header")));
169 break;
170
171 case HEADER_END_OF_FILE:
172 case HEADER_FAILURE:
173 /* We are in the middle of a cascade of errors. */
174 break;
175
176 case HEADER_SUCCESS_EXTENDED:
177 abort ();
178 }
179 continue;
180 }
181 break;
182 }
183 while (!all_names_found (&current_stat_info));
184
185 close_archive ();
186 names_notfound (); /* print names not found */
187 }
188
189 /* Print a header block, based on tar options. */
190 void
191 list_archive (void)
192 {
193 /* Print the header block. */
194
195 decode_header (current_header, &current_stat_info, &current_format, 0);
196 if (verbose_option)
197 print_header (&current_stat_info, -1);
198
199 if (incremental_option && current_header->header.typeflag == GNUTYPE_DUMPDIR)
200 {
201 off_t size;
202 size_t written, check;
203 union block *data_block;
204
205 set_next_block_after (current_header);
206 if (multi_volume_option)
207 {
208 assign_string (&save_name, current_stat_info.file_name);
209 save_totsize = current_stat_info.stat.st_size;
210 }
211 for (size = current_stat_info.stat.st_size; size > 0; size -= written)
212 {
213 if (multi_volume_option)
214 save_sizeleft = size;
215 data_block = find_next_block ();
216 if (!data_block)
217 {
218 ERROR ((0, 0, _("Unexpected EOF in archive")));
219 break; /* FIXME: What happens, then? */
220 }
221 written = available_space_after (data_block);
222 if (written > size)
223 written = size;
224 errno = 0;
225 check = fwrite (data_block->buffer, sizeof (char), written, stdlis);
226 set_next_block_after ((union block *)
227 (data_block->buffer + written - 1));
228 if (check != written)
229 {
230 write_error_details (current_stat_info.file_name, check, written);
231 skip_file (size - written);
232 break;
233 }
234 }
235 if (multi_volume_option)
236 assign_string (&save_name, 0);
237 fputc ('\n', stdlis);
238 fflush (stdlis);
239 return;
240
241 }
242
243 if (multi_volume_option)
244 assign_string (&save_name, current_stat_info.file_name);
245
246 skip_member ();
247
248 if (multi_volume_option)
249 assign_string (&save_name, 0);
250 }
251
252 /* Read a block that's supposed to be a header block. Return its
253 address in "current_header", and if it is good, the file's size in
254 current_stat_info.stat.st_size.
255
256 Return 1 for success, 0 if the checksum is bad, EOF on eof, 2 for a
257 block full of zeros (EOF marker).
258
259 If RAW_EXTENDED_HEADERS is nonzero, do not automagically fold the
260 GNU long name and link headers into later headers.
261
262 You must always set_next_block_after(current_header) to skip past
263 the header which this routine reads. */
264
265 /* The standard BSD tar sources create the checksum by adding up the
266 bytes in the header as type char. I think the type char was unsigned
267 on the PDP-11, but it's signed on the Next and Sun. It looks like the
268 sources to BSD tar were never changed to compute the checksum
269 correctly, so both the Sun and Next add the bytes of the header as
270 signed chars. This doesn't cause a problem until you get a file with
271 a name containing characters with the high bit set. So read_header
272 computes two checksums -- signed and unsigned. */
273
274 enum read_header
275 read_header (bool raw_extended_headers)
276 {
277 size_t i;
278 int unsigned_sum; /* the POSIX one :-) */
279 int signed_sum; /* the Sun one :-( */
280 int recorded_sum;
281 uintmax_t parsed_sum;
282 char *p;
283 union block *header;
284 union block *header_copy;
285 char *bp;
286 union block *data_block;
287 size_t size, written;
288 union block *next_long_name = 0;
289 union block *next_long_link = 0;
290 size_t next_long_name_blocks;
291 size_t next_long_link_blocks;
292
293 while (1)
294 {
295 header = find_next_block ();
296 current_header = header;
297 if (!header)
298 return HEADER_END_OF_FILE;
299
300 unsigned_sum = 0;
301 signed_sum = 0;
302 p = header->buffer;
303 for (i = sizeof *header; i-- != 0;)
304 {
305 unsigned_sum += (unsigned char) *p;
306 signed_sum += (signed char) (*p++);
307 }
308
309 if (unsigned_sum == 0)
310 return HEADER_ZERO_BLOCK;
311
312 /* Adjust checksum to count the "chksum" field as blanks. */
313
314 for (i = sizeof header->header.chksum; i-- != 0;)
315 {
316 unsigned_sum -= (unsigned char) header->header.chksum[i];
317 signed_sum -= (signed char) (header->header.chksum[i]);
318 }
319 unsigned_sum += ' ' * sizeof header->header.chksum;
320 signed_sum += ' ' * sizeof header->header.chksum;
321
322 parsed_sum = from_header (header->header.chksum,
323 sizeof header->header.chksum, 0,
324 (uintmax_t) 0,
325 (uintmax_t) TYPE_MAXIMUM (int));
326 if (parsed_sum == (uintmax_t) -1)
327 return HEADER_FAILURE;
328
329 recorded_sum = parsed_sum;
330
331 if (unsigned_sum != recorded_sum && signed_sum != recorded_sum)
332 return HEADER_FAILURE;
333
334 /* Good block. Decode file size and return. */
335
336 if (header->header.typeflag == LNKTYPE)
337 current_stat_info.stat.st_size = 0; /* links 0 size on tape */
338 else
339 current_stat_info.stat.st_size = OFF_FROM_HEADER (header->header.size);
340
341 if (header->header.typeflag == GNUTYPE_LONGNAME
342 || header->header.typeflag == GNUTYPE_LONGLINK
343 || header->header.typeflag == XHDTYPE
344 || header->header.typeflag == XGLTYPE)
345 {
346 if (raw_extended_headers)
347 return HEADER_SUCCESS_EXTENDED;
348 else if (header->header.typeflag == GNUTYPE_LONGNAME
349 || header->header.typeflag == GNUTYPE_LONGLINK)
350 {
351 size_t name_size = current_stat_info.stat.st_size;
352 size = name_size - name_size % BLOCKSIZE + 2 * BLOCKSIZE;
353 if (name_size != current_stat_info.stat.st_size
354 || size < name_size)
355 xalloc_die ();
356
357 header_copy = xmalloc (size + 1);
358
359 if (header->header.typeflag == GNUTYPE_LONGNAME)
360 {
361 if (next_long_name)
362 free (next_long_name);
363 next_long_name = header_copy;
364 next_long_name_blocks = size / BLOCKSIZE;
365 }
366 else
367 {
368 if (next_long_link)
369 free (next_long_link);
370 next_long_link = header_copy;
371 next_long_link_blocks = size / BLOCKSIZE;
372 }
373
374 set_next_block_after (header);
375 *header_copy = *header;
376 bp = header_copy->buffer + BLOCKSIZE;
377
378 for (size -= BLOCKSIZE; size > 0; size -= written)
379 {
380 data_block = find_next_block ();
381 if (! data_block)
382 {
383 ERROR ((0, 0, _("Unexpected EOF in archive")));
384 break;
385 }
386 written = available_space_after (data_block);
387 if (written > size)
388 written = size;
389
390 memcpy (bp, data_block->buffer, written);
391 bp += written;
392 set_next_block_after ((union block *)
393 (data_block->buffer + written - 1));
394 }
395
396 *bp = '\0';
397 }
398 else if (header->header.typeflag == XHDTYPE
399 || header->header.typeflag == XGLTYPE)
400 xheader_read (header, OFF_FROM_HEADER (header->header.size));
401
402 /* Loop! */
403
404 }
405 else
406 {
407 char const *name;
408 struct posix_header const *h = &current_header->header;
409 char namebuf[sizeof h->prefix + 1 + NAME_FIELD_SIZE + 1];
410
411 if (recent_long_name)
412 free (recent_long_name);
413
414 if (next_long_name)
415 {
416 name = next_long_name->buffer + BLOCKSIZE;
417 recent_long_name = next_long_name;
418 recent_long_name_blocks = next_long_name_blocks;
419 }
420 else
421 {
422 /* Accept file names as specified by POSIX.1-1996
423 section 10.1.1. */
424 char *np = namebuf;
425
426 if (h->prefix[0] && strcmp (h->magic, TMAGIC) == 0)
427 {
428 memcpy (np, h->prefix, sizeof h->prefix);
429 np[sizeof h->prefix] = '\0';
430 np += strlen (np);
431 *np++ = '/';
432
433 /* Prevent later references to current_header from
434 mistakenly treating this as an old GNU header.
435 This assignment invalidates h->prefix. */
436 current_header->oldgnu_header.isextended = 0;
437 }
438 memcpy (np, h->name, sizeof h->name);
439 np[sizeof h->name] = '\0';
440 name = namebuf;
441 recent_long_name = 0;
442 recent_long_name_blocks = 0;
443 }
444 assign_string (&current_stat_info.orig_file_name, name);
445 assign_string (&current_stat_info.file_name, name);
446 current_stat_info.had_trailing_slash = strip_trailing_slashes (current_stat_info.file_name);
447
448 if (recent_long_link)
449 free (recent_long_link);
450
451 if (next_long_link)
452 {
453 name = next_long_link->buffer + BLOCKSIZE;
454 recent_long_link = next_long_link;
455 recent_long_link_blocks = next_long_link_blocks;
456 }
457 else
458 {
459 memcpy (namebuf, h->linkname, sizeof h->linkname);
460 namebuf[sizeof h->linkname] = '\0';
461 name = namebuf;
462 recent_long_link = 0;
463 recent_long_link_blocks = 0;
464 }
465 assign_string (&current_stat_info.link_name, name);
466
467 return HEADER_SUCCESS;
468 }
469 }
470 }
471
472 #define ISOCTAL(c) ((c)>='0'&&(c)<='7')
473
474 /* Decode things from a file HEADER block into STAT_INFO, also setting
475 *FORMAT_POINTER depending on the header block format. If
476 DO_USER_GROUP, decode the user/group information (this is useful
477 for extraction, but waste time when merely listing).
478
479 read_header() has already decoded the checksum and length, so we don't.
480
481 This routine should *not* be called twice for the same block, since
482 the two calls might use different DO_USER_GROUP values and thus
483 might end up with different uid/gid for the two calls. If anybody
484 wants the uid/gid they should decode it first, and other callers
485 should decode it without uid/gid before calling a routine,
486 e.g. print_header, that assumes decoded data. */
487 void
488 decode_header (union block *header, struct tar_stat_info *stat_info,
489 enum archive_format *format_pointer, int do_user_group)
490 {
491 enum archive_format format;
492
493 if (strcmp (header->header.magic, TMAGIC) == 0)
494 {
495 if (header->star_header.prefix[130] == 0
496 && ISOCTAL (header->star_header.atime[0])
497 && header->star_header.atime[11] == ' '
498 && ISOCTAL (header->star_header.ctime[0])
499 && header->star_header.ctime[11] == ' ')
500 format = STAR_FORMAT;
501 else if (extended_header.size)
502 format = POSIX_FORMAT;
503 else
504 format = USTAR_FORMAT;
505 }
506 else if (strcmp (header->header.magic, OLDGNU_MAGIC) == 0)
507 format = OLDGNU_FORMAT;
508 else
509 format = V7_FORMAT;
510 *format_pointer = format;
511
512 stat_info->stat.st_mode = MODE_FROM_HEADER (header->header.mode);
513 stat_info->stat.st_mtime = TIME_FROM_HEADER (header->header.mtime);
514 assign_string (&stat_info->uname, header->header.uname);
515 assign_string (&stat_info->gname, header->header.gname);
516 stat_info->devmajor = MAJOR_FROM_HEADER (header->header.devmajor);
517 stat_info->devminor = MINOR_FROM_HEADER (header->header.devminor);
518
519 stat_info->stat.st_atime = start_time;
520 stat_info->stat.st_ctime = start_time;
521
522 if (format == OLDGNU_FORMAT && incremental_option)
523 {
524 stat_info->stat.st_atime = TIME_FROM_HEADER (header->oldgnu_header.atime);
525 stat_info->stat.st_ctime = TIME_FROM_HEADER (header->oldgnu_header.ctime);
526 }
527
528 if (format == V7_FORMAT)
529 {
530 stat_info->stat.st_uid = UID_FROM_HEADER (header->header.uid);
531 stat_info->stat.st_gid = GID_FROM_HEADER (header->header.gid);
532 stat_info->stat.st_rdev = 0;
533 }
534 else
535 {
536
537 if (format == STAR_FORMAT)
538 {
539 stat_info->stat.st_atime = TIME_FROM_HEADER (header->star_header.atime);
540 stat_info->stat.st_ctime = TIME_FROM_HEADER (header->star_header.ctime);
541 }
542
543 if (do_user_group)
544 {
545 /* FIXME: Decide if this should somewhat depend on -p. */
546
547 if (numeric_owner_option
548 || !*header->header.uname
549 || !uname_to_uid (header->header.uname, &stat_info->stat.st_uid))
550 stat_info->stat.st_uid = UID_FROM_HEADER (header->header.uid);
551
552 if (numeric_owner_option
553 || !*header->header.gname
554 || !gname_to_gid (header->header.gname, &stat_info->stat.st_gid))
555 stat_info->stat.st_gid = GID_FROM_HEADER (header->header.gid);
556 }
557
558 switch (header->header.typeflag)
559 {
560 case BLKTYPE:
561 case CHRTYPE:
562 stat_info->stat.st_rdev = makedev (stat_info->devmajor, stat_info->devminor);
563 break;
564
565 default:
566 stat_info->stat.st_rdev = 0;
567 }
568 }
569
570 current_stat_info.archive_file_size = current_stat_info.stat.st_size;
571 xheader_decode (stat_info);
572 }
573
574 /* Convert buffer at WHERE0 of size DIGS from external format to
575 uintmax_t. The data is of type TYPE. The buffer must represent a
576 value in the range -MINUS_MINVAL through MAXVAL. DIGS must be
577 positive. Return -1 on error, diagnosing the error if TYPE is
578 nonzero. */
579 static uintmax_t
580 from_header (char const *where0, size_t digs, char const *type,
581 uintmax_t minus_minval, uintmax_t maxval)
582 {
583 uintmax_t value;
584 char const *where = where0;
585 char const *lim = where + digs;
586 int negative = 0;
587
588 /* Accommodate buggy tar of unknown vintage, which outputs leading
589 NUL if the previous field overflows. */
590 where += !*where;
591
592 /* Accommodate older tars, which output leading spaces. */
593 for (;;)
594 {
595 if (where == lim)
596 {
597 if (type)
598 ERROR ((0, 0,
599 _("Blanks in header where numeric %s value expected"),
600 type));
601 return -1;
602 }
603 if (!ISSPACE ((unsigned char) *where))
604 break;
605 where++;
606 }
607
608 value = 0;
609 if (ISODIGIT (*where))
610 {
611 char const *where1 = where;
612 uintmax_t overflow = 0;
613
614 for (;;)
615 {
616 value += *where++ - '0';
617 if (where == lim || ! ISODIGIT (*where))
618 break;
619 overflow |= value ^ (value << LG_8 >> LG_8);
620 value <<= LG_8;
621 }
622
623 /* Parse the output of older, unportable tars, which generate
624 negative values in two's complement octal. If the leading
625 nonzero digit is 1, we can't recover the original value
626 reliably; so do this only if the digit is 2 or more. This
627 catches the common case of 32-bit negative time stamps. */
628 if ((overflow || maxval < value) && '2' <= *where1 && type)
629 {
630 /* Compute the negative of the input value, assuming two's
631 complement. */
632 int digit = (*where1 - '0') | 4;
633 overflow = 0;
634 value = 0;
635 where = where1;
636 for (;;)
637 {
638 value += 7 - digit;
639 where++;
640 if (where == lim || ! ISODIGIT (*where))
641 break;
642 digit = *where - '0';
643 overflow |= value ^ (value << LG_8 >> LG_8);
644 value <<= LG_8;
645 }
646 value++;
647 overflow |= !value;
648
649 if (!overflow && value <= minus_minval)
650 {
651 WARN ((0, 0,
652 _("Archive octal value %.*s is out of %s range; assuming two's complement"),
653 (int) (where - where1), where1, type));
654 negative = 1;
655 }
656 }
657
658 if (overflow)
659 {
660 if (type)
661 ERROR ((0, 0,
662 _("Archive octal value %.*s is out of %s range"),
663 (int) (where - where1), where1, type));
664 return -1;
665 }
666 }
667 else if (*where == '-' || *where == '+')
668 {
669 /* Parse base-64 output produced only by tar test versions
670 1.13.6 (1999-08-11) through 1.13.11 (1999-08-23).
671 Support for this will be withdrawn in future releases. */
672 int dig;
673 static int warned_once;
674 if (! warned_once)
675 {
676 warned_once = 1;
677 WARN ((0, 0,
678 _("Archive contains obsolescent base-64 headers")));
679 }
680 negative = *where++ == '-';
681 while (where != lim
682 && (dig = base64_map[(unsigned char) *where]) < 64)
683 {
684 if (value << LG_64 >> LG_64 != value)
685 {
686 char *string = alloca (digs + 1);
687 memcpy (string, where0, digs);
688 string[digs] = '\0';
689 if (type)
690 ERROR ((0, 0,
691 _("Archive signed base-64 string %s is out of %s range"),
692 quote (string), type));
693 return -1;
694 }
695 value = (value << LG_64) | dig;
696 where++;
697 }
698 }
699 else if (*where == '\200' /* positive base-256 */
700 || *where == '\377' /* negative base-256 */)
701 {
702 /* Parse base-256 output. A nonnegative number N is
703 represented as (256**DIGS)/2 + N; a negative number -N is
704 represented as (256**DIGS) - N, i.e. as two's complement.
705 The representation guarantees that the leading bit is
706 always on, so that we don't confuse this format with the
707 others (assuming ASCII bytes of 8 bits or more). */
708 int signbit = *where & (1 << (LG_256 - 2));
709 uintmax_t topbits = (((uintmax_t) - signbit)
710 << (CHAR_BIT * sizeof (uintmax_t)
711 - LG_256 - (LG_256 - 2)));
712 value = (*where++ & ((1 << (LG_256 - 2)) - 1)) - signbit;
713 for (;;)
714 {
715 value = (value << LG_256) + (unsigned char) *where++;
716 if (where == lim)
717 break;
718 if (((value << LG_256 >> LG_256) | topbits) != value)
719 {
720 if (type)
721 ERROR ((0, 0,
722 _("Archive base-256 value is out of %s range"),
723 type));
724 return -1;
725 }
726 }
727 negative = signbit;
728 if (negative)
729 value = -value;
730 }
731
732 if (where != lim && *where && !ISSPACE ((unsigned char) *where))
733 {
734 if (type)
735 {
736 char buf[1000]; /* Big enough to represent any header. */
737 static struct quoting_options *o;
738
739 if (!o)
740 {
741 o = clone_quoting_options (0);
742 set_quoting_style (o, locale_quoting_style);
743 }
744
745 while (where0 != lim && ! lim[-1])
746 lim--;
747 quotearg_buffer (buf, sizeof buf, where0, lim - where, o);
748 ERROR ((0, 0,
749 _("Archive contains %.*s where numeric %s value expected"),
750 (int) sizeof buf, buf, type));
751 }
752
753 return -1;
754 }
755
756 if (value <= (negative ? minus_minval : maxval))
757 return negative ? -value : value;
758
759 if (type)
760 {
761 char minval_buf[UINTMAX_STRSIZE_BOUND + 1];
762 char maxval_buf[UINTMAX_STRSIZE_BOUND];
763 char value_buf[UINTMAX_STRSIZE_BOUND + 1];
764 char *minval_string = STRINGIFY_BIGINT (minus_minval, minval_buf + 1);
765 char *value_string = STRINGIFY_BIGINT (value, value_buf + 1);
766 if (negative)
767 *--value_string = '-';
768 if (minus_minval)
769 *--minval_string = '-';
770 ERROR ((0, 0, _("Archive value %s is out of %s range %s.%s"),
771 value_string, type,
772 minval_string, STRINGIFY_BIGINT (maxval, maxval_buf)));
773 }
774
775 return -1;
776 }
777
778 gid_t
779 gid_from_header (const char *p, size_t s)
780 {
781 return from_header (p, s, "gid_t",
782 - (uintmax_t) TYPE_MINIMUM (gid_t),
783 (uintmax_t) TYPE_MAXIMUM (gid_t));
784 }
785
786 major_t
787 major_from_header (const char *p, size_t s)
788 {
789 return from_header (p, s, "major_t",
790 - (uintmax_t) TYPE_MINIMUM (major_t),
791 (uintmax_t) TYPE_MAXIMUM (major_t));
792 }
793
794 minor_t
795 minor_from_header (const char *p, size_t s)
796 {
797 return from_header (p, s, "minor_t",
798 - (uintmax_t) TYPE_MINIMUM (minor_t),
799 (uintmax_t) TYPE_MAXIMUM (minor_t));
800 }
801
802 mode_t
803 mode_from_header (const char *p, size_t s)
804 {
805 /* Do not complain about unrecognized mode bits. */
806 unsigned u = from_header (p, s, "mode_t",
807 - (uintmax_t) TYPE_MINIMUM (mode_t),
808 TYPE_MAXIMUM (uintmax_t));
809 return ((u & TSUID ? S_ISUID : 0)
810 | (u & TSGID ? S_ISGID : 0)
811 | (u & TSVTX ? S_ISVTX : 0)
812 | (u & TUREAD ? S_IRUSR : 0)
813 | (u & TUWRITE ? S_IWUSR : 0)
814 | (u & TUEXEC ? S_IXUSR : 0)
815 | (u & TGREAD ? S_IRGRP : 0)
816 | (u & TGWRITE ? S_IWGRP : 0)
817 | (u & TGEXEC ? S_IXGRP : 0)
818 | (u & TOREAD ? S_IROTH : 0)
819 | (u & TOWRITE ? S_IWOTH : 0)
820 | (u & TOEXEC ? S_IXOTH : 0));
821 }
822
823 off_t
824 off_from_header (const char *p, size_t s)
825 {
826 /* Negative offsets are not allowed in tar files, so invoke
827 from_header with minimum value 0, not TYPE_MINIMUM (off_t). */
828 return from_header (p, s, "off_t", (uintmax_t) 0,
829 (uintmax_t) TYPE_MAXIMUM (off_t));
830 }
831
832 size_t
833 size_from_header (const char *p, size_t s)
834 {
835 return from_header (p, s, "size_t", (uintmax_t) 0,
836 (uintmax_t) TYPE_MAXIMUM (size_t));
837 }
838
839 time_t
840 time_from_header (const char *p, size_t s)
841 {
842 return from_header (p, s, "time_t",
843 - (uintmax_t) TYPE_MINIMUM (time_t),
844 (uintmax_t) TYPE_MAXIMUM (time_t));
845 }
846
847 uid_t
848 uid_from_header (const char *p, size_t s)
849 {
850 return from_header (p, s, "uid_t",
851 - (uintmax_t) TYPE_MINIMUM (uid_t),
852 (uintmax_t) TYPE_MAXIMUM (uid_t));
853 }
854
855 uintmax_t
856 uintmax_from_header (const char *p, size_t s)
857 {
858 return from_header (p, s, "uintmax_t", (uintmax_t) 0,
859 TYPE_MAXIMUM (uintmax_t));
860 }
861
862
863 /* Format O as a null-terminated decimal string into BUF _backwards_;
864 return pointer to start of result. */
865 char *
866 stringify_uintmax_t_backwards (uintmax_t o, char *buf)
867 {
868 *--buf = '\0';
869 do
870 *--buf = '0' + (int) (o % 10);
871 while ((o /= 10) != 0);
872 return buf;
873 }
874
875 /* Return a printable representation of T. The result points to
876 static storage that can be reused in the next call to this
877 function, to ctime, or to asctime. */
878 char const *
879 tartime (time_t t)
880 {
881 static char buffer[max (UINTMAX_STRSIZE_BOUND + 1,
882 INT_STRLEN_BOUND (int) + 16)];
883 char *p;
884
885 #if USE_OLD_CTIME
886 p = ctime (&t);
887 if (p)
888 {
889 char const *time_stamp = p + 4;
890 for (p += 16; p[3] != '\n'; p++)
891 p[0] = p[3];
892 p[0] = '\0';
893 return time_stamp;
894 }
895 #else
896 /* Use ISO 8610 format. See:
897 http://www.cl.cam.ac.uk/~mgk25/iso-time.html */
898 struct tm *tm = localtime (&t);
899 if (tm)
900 {
901 sprintf (buffer, "%04ld-%02d-%02d %02d:%02d:%02d",
902 tm->tm_year + 1900L, tm->tm_mon + 1, tm->tm_mday,
903 tm->tm_hour, tm->tm_min, tm->tm_sec);
904 return buffer;
905 }
906 #endif
907
908 /* The time stamp cannot be broken down, most likely because it
909 is out of range. Convert it as an integer,
910 right-adjusted in a field with the same width as the usual
911 19-byte 4-year ISO time format. */
912 p = stringify_uintmax_t_backwards (t < 0 ? - (uintmax_t) t : (uintmax_t) t,
913 buffer + sizeof buffer);
914 if (t < 0)
915 *--p = '-';
916 while (buffer + sizeof buffer - 19 - 1 < p)
917 *--p = ' ';
918 return p;
919 }
920
921 /* Actually print it.
922
923 Plain and fancy file header block logging. Non-verbose just prints
924 the name, e.g. for "tar t" or "tar x". This should just contain
925 file names, so it can be fed back into tar with xargs or the "-T"
926 option. The verbose option can give a bunch of info, one line per
927 file. I doubt anybody tries to parse its format, or if they do,
928 they shouldn't. Unix tar is pretty random here anyway. */
929
930
931 /* FIXME: Note that print_header uses the globals HEAD, HSTAT, and
932 HEAD_STANDARD, which must be set up in advance. Not very clean.. */
933
934 /* UGSWIDTH starts with 18, so with user and group names <= 8 chars, the
935 columns never shift during the listing. */
936 #define UGSWIDTH 18
937 static int ugswidth = UGSWIDTH; /* maximum width encountered so far */
938
939 /* DATEWIDTH is the number of columns taken by the date and time fields. */
940 #if USE_OLD_CDATE
941 # define DATEWIDTH 19
942 #else
943 # define DATEWIDTH 18
944 #endif
945
946 void
947 print_header (struct tar_stat_info *st, off_t block_ordinal)
948 {
949 char modes[11];
950 char const *time_stamp;
951 char *temp_name = st->orig_file_name ? st->orig_file_name : st->file_name;
952
953 /* These hold formatted ints. */
954 char uform[UINTMAX_STRSIZE_BOUND], gform[UINTMAX_STRSIZE_BOUND];
955 char *user, *group;
956 char size[2 * UINTMAX_STRSIZE_BOUND];
957 /* holds formatted size or major,minor */
958 char uintbuf[UINTMAX_STRSIZE_BOUND];
959 int pad;
960
961 if (block_number_option)
962 {
963 char buf[UINTMAX_STRSIZE_BOUND];
964 if (block_ordinal < 0)
965 block_ordinal = current_block_ordinal ();
966 block_ordinal -= recent_long_name_blocks;
967 block_ordinal -= recent_long_link_blocks;
968 fprintf (stdlis, _("block %s: "),
969 STRINGIFY_BIGINT (block_ordinal, buf));
970 }
971
972 if (verbose_option <= 1)
973 {
974 /* Just the fax, mam. */
975 fprintf (stdlis, "%s\n", quotearg (temp_name));
976 }
977 else
978 {
979 /* File type and modes. */
980
981 modes[0] = '?';
982 switch (current_header->header.typeflag)
983 {
984 case GNUTYPE_VOLHDR:
985 modes[0] = 'V';
986 break;
987
988 case GNUTYPE_MULTIVOL:
989 modes[0] = 'M';
990 break;
991
992 case GNUTYPE_NAMES:
993 modes[0] = 'N';
994 break;
995
996 case GNUTYPE_LONGNAME:
997 case GNUTYPE_LONGLINK:
998 modes[0] = 'L';
999 ERROR ((0, 0, _("Visible longname error")));
1000 break;
1001
1002 case GNUTYPE_SPARSE:
1003 case REGTYPE:
1004 case AREGTYPE:
1005 modes[0] = '-';
1006 if (temp_name[strlen (temp_name) - 1] == '/')
1007 modes[0] = 'd';
1008 break;
1009 case LNKTYPE:
1010 modes[0] = 'h';
1011 break;
1012 case GNUTYPE_DUMPDIR:
1013 modes[0] = 'd';
1014 break;
1015 case DIRTYPE:
1016 modes[0] = 'd';
1017 break;
1018 case SYMTYPE:
1019 modes[0] = 'l';
1020 break;
1021 case BLKTYPE:
1022 modes[0] = 'b';
1023 break;
1024 case CHRTYPE:
1025 modes[0] = 'c';
1026 break;
1027 case FIFOTYPE:
1028 modes[0] = 'p';
1029 break;
1030 case CONTTYPE:
1031 modes[0] = 'C';
1032 break;
1033 }
1034
1035 decode_mode (st->stat.st_mode, modes + 1);
1036
1037 /* Time stamp. */
1038
1039 time_stamp = tartime (st->stat.st_mtime);
1040
1041 /* User and group names. */
1042
1043 if (st->uname && current_format != V7_FORMAT
1044 && !numeric_owner_option)
1045 user = st->uname;
1046 else
1047 {
1048 /* Try parsing it as an unsigned integer first, and as a
1049 uid_t if that fails. This method can list positive user
1050 ids that are too large to fit in a uid_t. */
1051 uintmax_t u = from_header (current_header->header.uid,
1052 sizeof current_header->header.uid, 0,
1053 (uintmax_t) 0,
1054 (uintmax_t) TYPE_MAXIMUM (uintmax_t));
1055 if (u != -1)
1056 user = STRINGIFY_BIGINT (u, uform);
1057 else
1058 {
1059 sprintf (uform, "%ld",
1060 (long) UID_FROM_HEADER (current_header->header.uid));
1061 user = uform;
1062 }
1063 }
1064
1065 if (st->gname && current_format != V7_FORMAT
1066 && !numeric_owner_option)
1067 group = st->gname;
1068 else
1069 {
1070 /* Try parsing it as an unsigned integer first, and as a
1071 gid_t if that fails. This method can list positive group
1072 ids that are too large to fit in a gid_t. */
1073 uintmax_t g = from_header (current_header->header.gid,
1074 sizeof current_header->header.gid, 0,
1075 (uintmax_t) 0,
1076 (uintmax_t) TYPE_MAXIMUM (uintmax_t));
1077 if (g != -1)
1078 group = STRINGIFY_BIGINT (g, gform);
1079 else
1080 {
1081 sprintf (gform, "%ld",
1082 (long) GID_FROM_HEADER (current_header->header.gid));
1083 group = gform;
1084 }
1085 }
1086
1087 /* Format the file size or major/minor device numbers. */
1088
1089 switch (current_header->header.typeflag)
1090 {
1091 case CHRTYPE:
1092 case BLKTYPE:
1093 strcpy (size,
1094 STRINGIFY_BIGINT (major (st->stat.st_rdev), uintbuf));
1095 strcat (size, ",");
1096 strcat (size,
1097 STRINGIFY_BIGINT (minor (st->stat.st_rdev), uintbuf));
1098 break;
1099 case GNUTYPE_SPARSE:
1100 strcpy (size,
1101 STRINGIFY_BIGINT
1102 (UINTMAX_FROM_HEADER (current_header
1103 ->oldgnu_header.realsize),
1104 uintbuf));
1105 break;
1106 default:
1107 /* st->stat.st_size keeps stored file size */
1108 strcpy (size, STRINGIFY_BIGINT (st->archive_file_size, uintbuf));
1109 break;
1110 }
1111
1112 /* Figure out padding and print the whole line. */
1113
1114 pad = strlen (user) + strlen (group) + strlen (size) + 1;
1115 if (pad > ugswidth)
1116 ugswidth = pad;
1117
1118 fprintf (stdlis, "%s %s/%s %*s%s %s",
1119 modes, user, group, ugswidth - pad, "", size, time_stamp);
1120
1121 fprintf (stdlis, " %s", quotearg (temp_name));
1122
1123 switch (current_header->header.typeflag)
1124 {
1125 case SYMTYPE:
1126 fprintf (stdlis, " -> %s\n", quotearg (st->link_name));
1127 break;
1128
1129 case LNKTYPE:
1130 fprintf (stdlis, _(" link to %s\n"), quotearg (st->link_name));
1131 break;
1132
1133 default:
1134 {
1135 char type_string[2];
1136 type_string[0] = current_header->header.typeflag;
1137 type_string[1] = '\0';
1138 fprintf (stdlis, _(" unknown file type %s\n"),
1139 quote (type_string));
1140 }
1141 break;
1142
1143 case AREGTYPE:
1144 case REGTYPE:
1145 case GNUTYPE_SPARSE:
1146 case CHRTYPE:
1147 case BLKTYPE:
1148 case DIRTYPE:
1149 case FIFOTYPE:
1150 case CONTTYPE:
1151 case GNUTYPE_DUMPDIR:
1152 putc ('\n', stdlis);
1153 break;
1154
1155 case GNUTYPE_LONGLINK:
1156 fprintf (stdlis, _("--Long Link--\n"));
1157 break;
1158
1159 case GNUTYPE_LONGNAME:
1160 fprintf (stdlis, _("--Long Name--\n"));
1161 break;
1162
1163 case GNUTYPE_VOLHDR:
1164 fprintf (stdlis, _("--Volume Header--\n"));
1165 break;
1166
1167 case GNUTYPE_MULTIVOL:
1168 strcpy (size,
1169 STRINGIFY_BIGINT
1170 (UINTMAX_FROM_HEADER (current_header->oldgnu_header.offset),
1171 uintbuf));
1172 fprintf (stdlis, _("--Continued at byte %s--\n"), size);
1173 break;
1174
1175 case GNUTYPE_NAMES:
1176 fprintf (stdlis, _("--Mangled file names--\n"));
1177 break;
1178 }
1179 }
1180 fflush (stdlis);
1181 }
1182
1183 /* Print a similar line when we make a directory automatically. */
1184 void
1185 print_for_mkdir (char *pathname, int length, mode_t mode)
1186 {
1187 char modes[11];
1188
1189 if (verbose_option > 1)
1190 {
1191 /* File type and modes. */
1192
1193 modes[0] = 'd';
1194 decode_mode (mode, modes + 1);
1195
1196 if (block_number_option)
1197 {
1198 char buf[UINTMAX_STRSIZE_BOUND];
1199 fprintf (stdlis, _("block %s: "),
1200 STRINGIFY_BIGINT (current_block_ordinal (), buf));
1201 }
1202
1203 fprintf (stdlis, "%s %*s %.*s\n", modes, ugswidth + DATEWIDTH,
1204 _("Creating directory:"), length, quotearg (pathname));
1205 }
1206 }
1207
1208 /* Skip over SIZE bytes of data in blocks in the archive. */
1209 void
1210 skip_file (off_t size)
1211 {
1212 union block *x;
1213
1214 if (multi_volume_option)
1215 {
1216 save_totsize = size;
1217 save_sizeleft = size;
1218 }
1219
1220 while (size > 0)
1221 {
1222 x = find_next_block ();
1223 if (! x)
1224 FATAL_ERROR ((0, 0, _("Unexpected EOF in archive")));
1225
1226 set_next_block_after (x);
1227 size -= BLOCKSIZE;
1228 if (multi_volume_option)
1229 save_sizeleft -= BLOCKSIZE;
1230 }
1231 }
1232
1233 /* Skip the current member in the archive. */
1234 void
1235 skip_member (void)
1236 {
1237 char save_typeflag = current_header->header.typeflag;
1238 set_next_block_after (current_header);
1239
1240 if (current_format == OLDGNU_FORMAT
1241 && current_header->oldgnu_header.isextended)
1242 {
1243 union block *exhdr;
1244 do
1245 {
1246 exhdr = find_next_block ();
1247 if (!exhdr)
1248 FATAL_ERROR ((0, 0, _("Unexpected EOF in archive")));
1249 set_next_block_after (exhdr);
1250 }
1251 while (exhdr->sparse_header.isextended);
1252 }
1253
1254 if (save_typeflag != DIRTYPE)
1255 skip_file (current_stat_info.stat.st_size);
1256 }
This page took 0.096494 seconds and 5 git commands to generate.