1 /* POSIX extended headers for tar.
3 Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any later
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
13 Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
31 static bool xheader_protected_pattern_p (char const *pattern
);
32 static bool xheader_protected_keyword_p (char const *keyword
);
33 static void xheader_set_single_keyword (char *) __attribute__ ((noreturn
));
35 /* Used by xheader_finish() */
36 static void code_string (char const *string
, char const *keyword
,
37 struct xheader
*xhdr
);
38 static void extended_header_init (void);
40 /* Number of global headers written so far. */
41 static size_t global_header_count
;
42 /* FIXME: Possibly it should be reset after changing the volume.
43 POSIX %n specification says that it is expanded to the sequence
44 number of current global header in *the* archive. However, for
45 multi-volume archives this will yield duplicate header names
46 in different volumes, which I'd like to avoid. The best way
47 to solve this would be to use per-archive header count as required
48 by POSIX *and* set globexthdr.name to, say,
49 $TMPDIR/GlobalHead.%p.$NUMVOLUME.%n.
51 However it should wait until buffer.c is finally rewritten */
54 /* Interface functions to obstacks */
57 x_obstack_grow (struct xheader
*xhdr
, const char *ptr
, size_t length
)
59 obstack_grow (xhdr
->stk
, ptr
, length
);
64 x_obstack_1grow (struct xheader
*xhdr
, char c
)
66 obstack_1grow (xhdr
->stk
, c
);
71 x_obstack_blank (struct xheader
*xhdr
, size_t length
)
73 obstack_blank (xhdr
->stk
, length
);
82 struct keyword_list
*next
;
88 /* List of keyword patterns set by delete= option */
89 static struct keyword_list
*keyword_pattern_list
;
91 /* List of keyword/value pairs set by `keyword=value' option */
92 static struct keyword_list
*keyword_global_override_list
;
94 /* List of keyword/value pairs set by `keyword:=value' option */
95 static struct keyword_list
*keyword_override_list
;
97 /* List of keyword/value pairs decoded from the last 'g' type header */
98 static struct keyword_list
*global_header_override_list
;
100 /* Template for the name field of an 'x' type header */
101 static char *exthdr_name
;
103 /* Template for the name field of a 'g' type header */
104 static char *globexthdr_name
;
107 xheader_keyword_deleted_p (const char *kw
)
109 struct keyword_list
*kp
;
111 for (kp
= keyword_pattern_list
; kp
; kp
= kp
->next
)
112 if (fnmatch (kp
->pattern
, kw
, 0) == 0)
118 xheader_keyword_override_p (const char *keyword
)
120 struct keyword_list
*kp
;
122 for (kp
= keyword_override_list
; kp
; kp
= kp
->next
)
123 if (strcmp (kp
->pattern
, keyword
) == 0)
129 xheader_list_append (struct keyword_list
**root
, char const *kw
,
132 struct keyword_list
*kp
= xmalloc (sizeof *kp
);
133 kp
->pattern
= xstrdup (kw
);
134 kp
->value
= value
? xstrdup (value
) : NULL
;
140 xheader_list_destroy (struct keyword_list
**root
)
144 struct keyword_list
*kw
= *root
;
147 struct keyword_list
*next
= kw
->next
;
158 xheader_set_single_keyword (char *kw
)
160 USAGE_ERROR ((0, 0, _("Keyword %s is unknown or not yet implemented"), kw
));
164 xheader_set_keyword_equal (char *kw
, char *eq
)
175 while (p
> kw
&& isspace (*p
))
180 for (p
= eq
+ 1; *p
&& isspace (*p
); p
++)
183 if (strcmp (kw
, "delete") == 0)
185 if (xheader_protected_pattern_p (p
))
186 USAGE_ERROR ((0, 0, _("Pattern %s cannot be used"), quote (p
)));
187 xheader_list_append (&keyword_pattern_list
, p
, NULL
);
189 else if (strcmp (kw
, "exthdr.name") == 0)
190 assign_string (&exthdr_name
, p
);
191 else if (strcmp (kw
, "globexthdr.name") == 0)
192 assign_string (&globexthdr_name
, p
);
195 if (xheader_protected_keyword_p (kw
))
196 USAGE_ERROR ((0, 0, _("Keyword %s cannot be overridden"), kw
));
198 xheader_list_append (&keyword_global_override_list
, kw
, p
);
200 xheader_list_append (&keyword_override_list
, kw
, p
);
205 xheader_set_option (char *string
)
208 for (token
= strtok (string
, ","); token
; token
= strtok (NULL
, ","))
210 char *p
= strchr (token
, '=');
212 xheader_set_single_keyword (token
);
214 xheader_set_keyword_equal (token
, p
);
219 string Includes: Replaced By:
220 %d The directory name of the file,
221 equivalent to the result of the
222 dirname utility on the translated
224 %f The filename of the file, equivalent
225 to the result of the basename
226 utility on the translated file name.
227 %p The process ID of the pax process.
228 %n The value of the 3rd argument.
229 %% A '%' character. */
232 xheader_format_name (struct tar_stat_info
*st
, const char *fmt
, size_t n
)
235 size_t len
= strlen (fmt
);
241 char pidbuf
[UINTMAX_STRSIZE_BOUND
];
243 char nbuf
[UINTMAX_STRSIZE_BOUND
];
244 char const *nptr
= NULL
;
246 for (p
= fmt
; *p
&& (p
= strchr (p
, '%')); )
258 dirp
= dir_name (st
->orig_file_name
);
259 dir
= safer_name_suffix (dirp
, false, absolute_names_option
);
260 len
+= strlen (dir
) - 2;
267 base
= base_name (st
->orig_file_name
);
268 len
+= strlen (base
) - 2;
273 pptr
= umaxtostr (getpid (), pidbuf
);
274 len
+= pidbuf
+ sizeof pidbuf
- 1 - pptr
- 2;
278 nptr
= umaxtostr (n
, nbuf
);
279 len
+= nbuf
+ sizeof nbuf
- 1 - nptr
- 2;
285 buf
= xmalloc (len
+ 1);
286 for (q
= buf
, p
= fmt
; *p
; )
305 q
= stpcpy (q
, base
);
310 q
= stpcpy (q
, pptr
);
317 q
= stpcpy (q
, nptr
);
321 /* else fall through */
335 /* Do not allow it to end in a slash */
336 while (q
> buf
&& ISSLASH (q
[-1]))
343 xheader_xhdr_name (struct tar_stat_info
*st
)
346 assign_string (&exthdr_name
, "%d/PaxHeaders.%p/%f");
347 return xheader_format_name (st
, exthdr_name
, 0);
350 #define GLOBAL_HEADER_TEMPLATE "/GlobalHead.%p.%n"
353 xheader_ghdr_name (void)
355 if (!globexthdr_name
)
358 const char *tmp
= getenv ("TMPDIR");
361 len
= strlen (tmp
) + sizeof (GLOBAL_HEADER_TEMPLATE
); /* Includes nul */
362 globexthdr_name
= xmalloc (len
);
363 strcpy(globexthdr_name
, tmp
);
364 strcat(globexthdr_name
, GLOBAL_HEADER_TEMPLATE
);
367 return xheader_format_name (NULL
, globexthdr_name
, global_header_count
+ 1);
371 xheader_write (char type
, char *name
, struct xheader
*xhdr
)
378 header
= start_private_header (name
, size
);
379 header
->header
.typeflag
= type
;
381 simple_finish_header (header
);
389 header
= find_next_block ();
393 memcpy (header
->buffer
, p
, len
);
395 memset (header
->buffer
+ len
, 0, BLOCKSIZE
- len
);
398 set_next_block_after (header
);
401 xheader_destroy (xhdr
);
404 global_header_count
++;
408 xheader_write_global (void)
411 struct keyword_list
*kp
;
413 if (!keyword_global_override_list
)
416 extended_header_init ();
417 for (kp
= keyword_global_override_list
; kp
; kp
= kp
->next
)
418 code_string (kp
->value
, kp
->pattern
, &extended_header
);
419 xheader_finish (&extended_header
);
420 xheader_write (XGLTYPE
, name
= xheader_ghdr_name (),
426 /* General Interface */
431 void (*coder
) (struct tar_stat_info
const *, char const *,
432 struct xheader
*, void const *data
);
433 void (*decoder
) (struct tar_stat_info
*, char const *, size_t);
437 /* This declaration must be extern, because ISO C99 section 6.9.2
438 prohibits a tentative definition that has both internal linkage and
439 incomplete type. If we made it static, we'd have to declare its
440 size which would be a maintenance pain; if we put its initializer
441 here, we'd need a boatload of forward declarations, which would be
442 even more of a pain. */
443 extern struct xhdr_tab
const xhdr_tab
[];
445 static struct xhdr_tab
const *
446 locate_handler (char const *keyword
)
448 struct xhdr_tab
const *p
;
450 for (p
= xhdr_tab
; p
->keyword
; p
++)
451 if (strcmp (p
->keyword
, keyword
) == 0)
457 xheader_protected_pattern_p (const char *pattern
)
459 struct xhdr_tab
const *p
;
461 for (p
= xhdr_tab
; p
->keyword
; p
++)
462 if (p
->protect
&& fnmatch (pattern
, p
->keyword
, 0) == 0)
468 xheader_protected_keyword_p (const char *keyword
)
470 struct xhdr_tab
const *p
;
472 for (p
= xhdr_tab
; p
->keyword
; p
++)
473 if (p
->protect
&& strcmp (p
->keyword
, keyword
) == 0)
478 /* Decode a single extended header record, advancing *PTR to the next record.
479 Return true on success, false otherwise. */
481 decode_record (char **ptr
,
482 void (*handler
) (void *, char const *, char const *, size_t),
487 unsigned long int len
;
491 size_t len_max
= extended_header
.buffer
+ extended_header
.size
- start
;
493 while (*p
== ' ' || *p
== '\t')
499 ERROR ((0, 0, _("Malformed extended header: missing length")));
504 len
= strtoul (p
, &len_lim
, 10);
508 int len_len
= len_lim
- p
;
509 ERROR ((0, 0, _("Extended header length %*s is out of range"),
516 for (p
= len_lim
; *p
== ' ' || *p
== '\t'; p
++)
521 _("Malformed extended header: missing blank after length")));
527 if (! (p
&& p
< nextp
))
529 ERROR ((0, 0, _("Malformed extended header: missing equal sign")));
533 if (nextp
[-1] != '\n')
535 ERROR ((0, 0, _("Malformed extended header: missing newline")));
539 *p
= nextp
[-1] = '\0';
540 handler (data
, keyword
, p
+ 1, nextp
- p
- 2); /* '=' + trailing '\n' */
548 run_override_list (struct keyword_list
*kp
, struct tar_stat_info
*st
)
550 for (; kp
; kp
= kp
->next
)
552 struct xhdr_tab
const *t
= locate_handler (kp
->pattern
);
554 t
->decoder (st
, kp
->value
, strlen (kp
->value
));
559 decx (void *data
, char const *keyword
, char const *value
, size_t size
)
561 struct xhdr_tab
const *t
;
562 struct tar_stat_info
*st
= data
;
564 if (xheader_keyword_deleted_p (keyword
)
565 || xheader_keyword_override_p (keyword
))
568 t
= locate_handler (keyword
);
570 t
->decoder (st
, value
, size
);
572 ERROR((0, 0, _("Ignoring unknown extended header keyword `%s'"),
577 xheader_decode (struct tar_stat_info
*st
)
579 run_override_list (keyword_global_override_list
, st
);
580 run_override_list (global_header_override_list
, st
);
582 if (extended_header
.size
)
584 char *p
= extended_header
.buffer
+ BLOCKSIZE
;
585 while (decode_record (&p
, decx
, st
))
588 run_override_list (keyword_override_list
, st
);
592 decg (void *data
, char const *keyword
, char const *value
,
593 size_t size
__attribute__((unused
)))
595 struct keyword_list
**kwl
= data
;
596 xheader_list_append (kwl
, keyword
, value
);
600 xheader_decode_global (void)
602 if (extended_header
.size
)
604 char *p
= extended_header
.buffer
+ BLOCKSIZE
;
606 xheader_list_destroy (&global_header_override_list
);
607 while (decode_record (&p
, decg
, &global_header_override_list
))
613 extended_header_init (void)
615 if (!extended_header
.stk
)
617 extended_header
.stk
= xmalloc (sizeof *extended_header
.stk
);
618 obstack_init (extended_header
.stk
);
623 xheader_store (char const *keyword
, struct tar_stat_info
const *st
,
626 struct xhdr_tab
const *t
;
628 if (extended_header
.buffer
)
630 t
= locate_handler (keyword
);
633 if (xheader_keyword_deleted_p (keyword
)
634 || xheader_keyword_override_p (keyword
))
636 extended_header_init ();
637 t
->coder (st
, keyword
, &extended_header
, data
);
641 xheader_read (union block
*p
, size_t size
)
646 free (extended_header
.buffer
);
648 extended_header
.size
= size
;
649 nblocks
= (size
+ BLOCKSIZE
- 1) / BLOCKSIZE
;
650 extended_header
.buffer
= xmalloc (size
+ 1);
651 extended_header
.buffer
[size
] = '\0';
660 memcpy (&extended_header
.buffer
[j
], p
->buffer
, len
);
661 set_next_block_after (p
);
663 p
= find_next_block ();
672 xheader_print_n (struct xheader
*xhdr
, char const *keyword
,
673 char const *value
, size_t vsize
)
675 size_t len
= strlen (keyword
) + vsize
+ 3; /* ' ' + '=' + '\n' */
678 char nbuf
[UINTMAX_STRSIZE_BOUND
];
684 np
= umaxtostr (len
+ p
, nbuf
);
685 n
= nbuf
+ sizeof nbuf
- 1 - np
;
689 x_obstack_grow (xhdr
, np
, n
);
690 x_obstack_1grow (xhdr
, ' ');
691 x_obstack_grow (xhdr
, keyword
, strlen (keyword
));
692 x_obstack_1grow (xhdr
, '=');
693 x_obstack_grow (xhdr
, value
, vsize
);
694 x_obstack_1grow (xhdr
, '\n');
698 xheader_print (struct xheader
*xhdr
, char const *keyword
, char const *value
)
700 xheader_print_n (xhdr
, keyword
, value
, strlen (value
));
704 xheader_finish (struct xheader
*xhdr
)
706 struct keyword_list
*kp
;
708 for (kp
= keyword_override_list
; kp
; kp
= kp
->next
)
709 code_string (kp
->value
, kp
->pattern
, xhdr
);
711 xhdr
->buffer
= obstack_finish (xhdr
->stk
);
715 xheader_destroy (struct xheader
*xhdr
)
719 obstack_free (xhdr
->stk
, NULL
);
730 /* Buildable strings */
731 static uintmax_t string_length
;
734 xheader_string_begin ()
740 xheader_string_add (char const *s
)
742 if (extended_header
.buffer
)
744 extended_header_init ();
745 string_length
+= strlen (s
);
746 x_obstack_grow (&extended_header
, s
, strlen (s
));
750 xheader_string_end (char const *keyword
)
755 char nbuf
[UINTMAX_STRSIZE_BOUND
];
759 if (extended_header
.buffer
)
761 extended_header_init ();
763 len
= strlen (keyword
) + string_length
+ 3; /* ' ' + '=' + '\n' */
768 np
= umaxtostr (len
+ p
, nbuf
);
769 n
= nbuf
+ sizeof nbuf
- 1 - np
;
773 p
= strlen (keyword
) + n
+ 2;
774 x_obstack_blank (&extended_header
, p
);
775 x_obstack_1grow (&extended_header
, '\n');
776 cp
= obstack_next_free (extended_header
.stk
) - string_length
- p
- 1;
777 memmove (cp
+ p
, cp
, string_length
);
778 cp
= stpcpy (cp
, np
);
780 cp
= stpcpy (cp
, keyword
);
785 /* Implementations */
788 out_of_range_header (char const *keyword
, char const *value
,
789 uintmax_t minus_minval
, uintmax_t maxval
)
791 char minval_buf
[UINTMAX_STRSIZE_BOUND
+ 1];
792 char maxval_buf
[UINTMAX_STRSIZE_BOUND
];
793 char *minval_string
= umaxtostr (minus_minval
, minval_buf
+ 1);
794 char *maxval_string
= umaxtostr (maxval
, maxval_buf
);
796 *--minval_string
= '-';
798 /* TRANSLATORS: The first %s is the pax extended header keyword
799 (atime, gid, etc.). */
800 ERROR ((0, 0, _("Extended header %s=%s is out of range %s..%s"),
801 keyword
, value
, minval_string
, maxval_string
));
805 code_string (char const *string
, char const *keyword
, struct xheader
*xhdr
)
808 if (!utf8_convert (true, string
, &outstr
))
810 /* FIXME: report error */
811 outstr
= xstrdup (string
);
813 xheader_print (xhdr
, keyword
, outstr
);
818 decode_string (char **string
, char const *arg
)
825 if (!utf8_convert (false, arg
, string
))
827 /* FIXME: report error and act accordingly to --pax invalid=UTF-8 */
828 assign_string (string
, arg
);
833 code_time (struct timespec t
, char const *keyword
, struct xheader
*xhdr
)
835 char buf
[TIMESPEC_STRSIZE_BOUND
];
836 xheader_print (xhdr
, keyword
, code_timespec (t
, buf
));
839 enum decode_time_status
843 decode_time_bad_header
846 static enum decode_time_status
847 _decode_time (struct timespec
*ts
, char const *arg
, char const *keyword
)
850 unsigned long int ns
= 0;
853 bool negative
= *arg
== '-';
857 if (ISDIGIT (arg
[negative
]))
861 intmax_t i
= strtoimax (arg
, &arg_lim
, 10);
862 if (TYPE_SIGNED (time_t) ? i
< TYPE_MINIMUM (time_t) : i
< 0)
863 return decode_time_range
;
868 uintmax_t i
= strtoumax (arg
, &arg_lim
, 10);
869 if (TYPE_MAXIMUM (time_t) < i
)
870 return decode_time_range
;
877 return decode_time_range
;
882 bool trailing_nonzero
= false;
884 while (ISDIGIT (*++p
))
885 if (digits
< LOG10_BILLION
)
887 ns
= 10 * ns
+ (*p
- '0');
891 trailing_nonzero
|= *p
!= '0';
893 while (digits
++ < LOG10_BILLION
)
898 /* Convert "-1.10000000000001" to s == -2, ns == 89999999.
899 I.e., truncate time stamps towards minus infinity while
900 converting them to internal form. */
901 ns
+= trailing_nonzero
;
904 if (s
== TYPE_MINIMUM (time_t))
905 return decode_time_range
;
916 return decode_time_success
;
920 return decode_time_bad_header
;
924 decode_time (struct timespec
*ts
, char const *arg
, char const *keyword
)
926 switch (_decode_time (ts
, arg
, keyword
))
928 case decode_time_success
:
930 case decode_time_bad_header
:
931 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
934 case decode_time_range
:
935 out_of_range_header (keyword
, arg
, - (uintmax_t) TYPE_MINIMUM (time_t),
936 TYPE_MAXIMUM (time_t));
945 code_num (uintmax_t value
, char const *keyword
, struct xheader
*xhdr
)
947 char sbuf
[UINTMAX_STRSIZE_BOUND
];
948 xheader_print (xhdr
, keyword
, umaxtostr (value
, sbuf
));
952 decode_num (uintmax_t *num
, char const *arg
, uintmax_t maxval
,
958 if (! (ISDIGIT (*arg
)
959 && (errno
= 0, u
= strtoumax (arg
, &arg_lim
, 10), !*arg_lim
)))
961 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
966 if (! (u
<= maxval
&& errno
!= ERANGE
))
968 out_of_range_header (keyword
, arg
, 0, maxval
);
977 dummy_coder (struct tar_stat_info
const *st
__attribute__ ((unused
)),
978 char const *keyword
__attribute__ ((unused
)),
979 struct xheader
*xhdr
__attribute__ ((unused
)),
980 void const *data
__attribute__ ((unused
)))
985 dummy_decoder (struct tar_stat_info
*st
__attribute__ ((unused
)),
986 char const *arg
__attribute__ ((unused
)),
987 size_t size
__attribute__((unused
)))
992 atime_coder (struct tar_stat_info
const *st
, char const *keyword
,
993 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
995 code_time (st
->atime
, keyword
, xhdr
);
999 atime_decoder (struct tar_stat_info
*st
, char const *arg
,
1000 size_t size
__attribute__((unused
)))
1003 if (decode_time (&ts
, arg
, "atime"))
1008 gid_coder (struct tar_stat_info
const *st
, char const *keyword
,
1009 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1011 code_num (st
->stat
.st_gid
, keyword
, xhdr
);
1015 gid_decoder (struct tar_stat_info
*st
, char const *arg
,
1016 size_t size
__attribute__((unused
)))
1019 if (decode_num (&u
, arg
, TYPE_MAXIMUM (gid_t
), "gid"))
1020 st
->stat
.st_gid
= u
;
1024 gname_coder (struct tar_stat_info
const *st
, char const *keyword
,
1025 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1027 code_string (st
->gname
, keyword
, xhdr
);
1031 gname_decoder (struct tar_stat_info
*st
, char const *arg
,
1032 size_t size
__attribute__((unused
)))
1034 decode_string (&st
->gname
, arg
);
1038 linkpath_coder (struct tar_stat_info
const *st
, char const *keyword
,
1039 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1041 code_string (st
->link_name
, keyword
, xhdr
);
1045 linkpath_decoder (struct tar_stat_info
*st
, char const *arg
,
1046 size_t size
__attribute__((unused
)))
1048 decode_string (&st
->link_name
, arg
);
1052 ctime_coder (struct tar_stat_info
const *st
, char const *keyword
,
1053 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1055 code_time (st
->ctime
, keyword
, xhdr
);
1059 ctime_decoder (struct tar_stat_info
*st
, char const *arg
,
1060 size_t size
__attribute__((unused
)))
1063 if (decode_time (&ts
, arg
, "ctime"))
1068 mtime_coder (struct tar_stat_info
const *st
, char const *keyword
,
1069 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1071 code_time (st
->mtime
, keyword
, xhdr
);
1075 mtime_decoder (struct tar_stat_info
*st
, char const *arg
,
1076 size_t size
__attribute__((unused
)))
1079 if (decode_time (&ts
, arg
, "mtime"))
1084 path_coder (struct tar_stat_info
const *st
, char const *keyword
,
1085 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1087 code_string (st
->file_name
, keyword
, xhdr
);
1091 path_decoder (struct tar_stat_info
*st
, char const *arg
,
1092 size_t size
__attribute__((unused
)))
1094 decode_string (&st
->orig_file_name
, arg
);
1095 decode_string (&st
->file_name
, arg
);
1096 st
->had_trailing_slash
= strip_trailing_slashes (st
->file_name
);
1100 size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1101 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1103 code_num (st
->stat
.st_size
, keyword
, xhdr
);
1107 size_decoder (struct tar_stat_info
*st
, char const *arg
,
1108 size_t size
__attribute__((unused
)))
1111 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), "size"))
1112 st
->stat
.st_size
= u
;
1116 uid_coder (struct tar_stat_info
const *st
, char const *keyword
,
1117 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1119 code_num (st
->stat
.st_uid
, keyword
, xhdr
);
1123 uid_decoder (struct tar_stat_info
*st
, char const *arg
,
1124 size_t size
__attribute__((unused
)))
1127 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uid_t
), "uid"))
1128 st
->stat
.st_uid
= u
;
1132 uname_coder (struct tar_stat_info
const *st
, char const *keyword
,
1133 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1135 code_string (st
->uname
, keyword
, xhdr
);
1139 uname_decoder (struct tar_stat_info
*st
, char const *arg
,
1140 size_t size
__attribute__((unused
)))
1142 decode_string (&st
->uname
, arg
);
1146 sparse_size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1147 struct xheader
*xhdr
, void const *data
)
1149 size_coder (st
, keyword
, xhdr
, data
);
1153 sparse_size_decoder (struct tar_stat_info
*st
, char const *arg
,
1154 size_t size
__attribute__((unused
)))
1157 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), "GNU.sparse.size"))
1158 st
->stat
.st_size
= u
;
1162 sparse_numblocks_coder (struct tar_stat_info
const *st
, char const *keyword
,
1163 struct xheader
*xhdr
,
1164 void const *data
__attribute__ ((unused
)))
1166 code_num (st
->sparse_map_avail
, keyword
, xhdr
);
1170 sparse_numblocks_decoder (struct tar_stat_info
*st
, char const *arg
,
1171 size_t size
__attribute__((unused
)))
1174 if (decode_num (&u
, arg
, SIZE_MAX
, "GNU.sparse.numblocks"))
1176 st
->sparse_map_size
= u
;
1177 st
->sparse_map
= xcalloc (u
, sizeof st
->sparse_map
[0]);
1178 st
->sparse_map_avail
= 0;
1183 sparse_offset_coder (struct tar_stat_info
const *st
, char const *keyword
,
1184 struct xheader
*xhdr
, void const *data
)
1186 size_t const *pi
= data
;
1187 code_num (st
->sparse_map
[*pi
].offset
, keyword
, xhdr
);
1191 sparse_offset_decoder (struct tar_stat_info
*st
, char const *arg
,
1192 size_t size
__attribute__((unused
)))
1195 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), "GNU.sparse.offset"))
1197 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1198 st
->sparse_map
[st
->sparse_map_avail
].offset
= u
;
1200 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1201 "GNU.sparse.offset", arg
));
1206 sparse_numbytes_coder (struct tar_stat_info
const *st
, char const *keyword
,
1207 struct xheader
*xhdr
, void const *data
)
1209 size_t const *pi
= data
;
1210 code_num (st
->sparse_map
[*pi
].numbytes
, keyword
, xhdr
);
1214 sparse_numbytes_decoder (struct tar_stat_info
*st
, char const *arg
,
1215 size_t size
__attribute__((unused
)))
1218 if (decode_num (&u
, arg
, SIZE_MAX
, "GNU.sparse.numbytes"))
1220 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1221 st
->sparse_map
[st
->sparse_map_avail
++].numbytes
= u
;
1223 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1224 "GNU.sparse.numbytes", arg
));
1229 sparse_map_decoder (struct tar_stat_info
*st
, char const *arg
,
1230 size_t size
__attribute__((unused
)))
1233 static char *keyword
= "GNU.sparse.map";
1235 st
->sparse_map_avail
= 0;
1242 if (!ISDIGIT (*arg
))
1244 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
1250 u
= strtoumax (arg
, &delim
, 10);
1254 if (!(u
== e
.offset
&& errno
!= ERANGE
))
1256 out_of_range_header (keyword
, arg
, 0, TYPE_MAXIMUM (off_t
));
1263 if (!(u
== e
.numbytes
&& errno
!= ERANGE
))
1265 out_of_range_header (keyword
, arg
, 0, TYPE_MAXIMUM (size_t));
1268 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1269 st
->sparse_map
[st
->sparse_map_avail
++] = e
;
1272 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1282 else if (*delim
!= ',')
1285 _("Malformed extended header: invalid %s: unexpected delimiter %c"),
1295 _("Malformed extended header: invalid %s: odd number of values"),
1300 dumpdir_coder (struct tar_stat_info
const *st
, char const *keyword
,
1301 struct xheader
*xhdr
, void const *data
)
1303 xheader_print_n (xhdr
, keyword
, data
, dumpdir_size (data
));
1307 dumpdir_decoder (struct tar_stat_info
*st
, char const *arg
,
1310 st
->dumpdir
= xmalloc (size
);
1311 memcpy (st
->dumpdir
, arg
, size
);
1315 volume_label_coder (struct tar_stat_info
const *st
, char const *keyword
,
1316 struct xheader
*xhdr
, void const *data
)
1318 code_string (data
, keyword
, xhdr
);
1322 volume_label_decoder (struct tar_stat_info
*st
, char const *arg
, size_t size
)
1324 decode_string (&volume_label
, arg
);
1328 volume_size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1329 struct xheader
*xhdr
, void const *data
)
1331 off_t v
= *(off_t
*)data
;
1332 code_num (v
, keyword
, xhdr
);
1336 volume_size_decoder (struct tar_stat_info
*st
, char const *arg
, size_t size
)
1339 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uintmax_t), "GNU.volume.size"))
1340 continued_file_size
= u
;
1343 /* FIXME: Merge with volume_size_coder */
1345 volume_offset_coder (struct tar_stat_info
const *st
, char const *keyword
,
1346 struct xheader
*xhdr
, void const *data
)
1348 off_t v
= *(off_t
*)data
;
1349 code_num (v
, keyword
, xhdr
);
1353 volume_offset_decoder (struct tar_stat_info
*st
, char const *arg
, size_t size
)
1356 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uintmax_t), "GNU.volume.offset"))
1357 continued_file_offset
= u
;
1361 volume_filename_decoder (struct tar_stat_info
*st
, char const *arg
,
1364 decode_string (&continued_file_name
, arg
);
1368 struct xhdr_tab
const xhdr_tab
[] = {
1369 { "atime", atime_coder
, atime_decoder
, false },
1370 { "comment", dummy_coder
, dummy_decoder
, false },
1371 { "charset", dummy_coder
, dummy_decoder
, false },
1372 { "ctime", ctime_coder
, ctime_decoder
, false },
1373 { "gid", gid_coder
, gid_decoder
, false },
1374 { "gname", gname_coder
, gname_decoder
, false },
1375 { "linkpath", linkpath_coder
, linkpath_decoder
, false },
1376 { "mtime", mtime_coder
, mtime_decoder
, false },
1377 { "path", path_coder
, path_decoder
, false },
1378 { "size", size_coder
, size_decoder
, false },
1379 { "uid", uid_coder
, uid_decoder
, false },
1380 { "uname", uname_coder
, uname_decoder
, false },
1382 /* Sparse file handling */
1383 { "GNU.sparse.size", sparse_size_coder
, sparse_size_decoder
, true },
1384 { "GNU.sparse.numblocks", sparse_numblocks_coder
, sparse_numblocks_decoder
,
1386 /* tar 1.14 - 1.15.1 keywords. Multiplse instances of these appeared in 'x'
1387 headers, and each of them was meaningful. It confilcted with POSIX specs,
1388 which requires that "when extended header records conflict, the last one
1389 given in the header shall take precedence." */
1390 { "GNU.sparse.offset", sparse_offset_coder
, sparse_offset_decoder
,
1392 { "GNU.sparse.numbytes", sparse_numbytes_coder
, sparse_numbytes_decoder
,
1394 /* tar >=1.16 keyword, introduced to remove the above-mentioned conflict. */
1395 { "GNU.sparse.map", NULL
/* Unused, see pax_dump_header() */,
1396 sparse_map_decoder
, false },
1398 { "GNU.dumpdir", dumpdir_coder
, dumpdir_decoder
,
1401 /* Keeps the tape/volume label. May be present only in the global headers.
1402 Equivalent to GNUTYPE_VOLHDR. */
1403 { "GNU.volume.label", volume_label_coder
, volume_label_decoder
, true },
1405 /* These may be present in a first global header of the archive.
1406 They provide the same functionality as GNUTYPE_MULTIVOL header.
1407 The GNU.volume.size keeps the real_s_sizeleft value, which is
1408 otherwise kept in the size field of a multivolume header. The
1409 GNU.volume.offset keeps the offset of the start of this volume,
1410 otherwise kept in oldgnu_header.offset. */
1411 { "GNU.volume.filename", volume_label_coder
, volume_filename_decoder
,
1413 { "GNU.volume.size", volume_size_coder
, volume_size_decoder
, true },
1414 { "GNU.volume.offset", volume_offset_coder
, volume_offset_decoder
, true },
1416 { NULL
, NULL
, NULL
, false }