1 /* POSIX extended headers for tar.
3 Copyright (C) 2003, 2004, 2005 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 imlemented"), 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
);
240 char pidbuf
[UINTMAX_STRSIZE_BOUND
];
242 char nbuf
[UINTMAX_STRSIZE_BOUND
];
243 char const *nptr
= NULL
;
245 for (p
= fmt
; *p
&& (p
= strchr (p
, '%')); )
256 dir
= safer_name_suffix (dir_name (st
->orig_file_name
),
257 false, absolute_names_option
);
258 len
+= strlen (dir
) - 2;
265 base
= base_name (st
->orig_file_name
);
266 len
+= strlen (base
) - 2;
271 pptr
= umaxtostr (getpid (), pidbuf
);
272 len
+= pidbuf
+ sizeof pidbuf
- 1 - pptr
- 2;
276 nptr
= umaxtostr (n
, nbuf
);
277 len
+= nbuf
+ sizeof nbuf
- 1 - nptr
- 2;
283 buf
= xmalloc (len
+ 1);
284 for (q
= buf
, p
= fmt
; *p
; )
303 q
= stpcpy (q
, base
);
308 q
= stpcpy (q
, pptr
);
315 q
= stpcpy (q
, nptr
);
319 /* else fall through */
331 /* Do not allow it to end in a slash */
332 while (q
> buf
&& ISSLASH (q
[-1]))
339 xheader_xhdr_name (struct tar_stat_info
*st
)
342 assign_string (&exthdr_name
, "%d/PaxHeaders.%p/%f");
343 return xheader_format_name (st
, exthdr_name
, 0);
346 #define GLOBAL_HEADER_TEMPLATE "/GlobalHead.%p.%n"
349 xheader_ghdr_name (void)
351 if (!globexthdr_name
)
354 const char *tmp
= getenv ("TMPDIR");
357 len
= strlen (tmp
) + sizeof (GLOBAL_HEADER_TEMPLATE
); /* Includes nul */
358 globexthdr_name
= xmalloc (len
);
359 strcpy(globexthdr_name
, tmp
);
360 strcat(globexthdr_name
, GLOBAL_HEADER_TEMPLATE
);
363 return xheader_format_name (NULL
, globexthdr_name
, global_header_count
+ 1);
367 xheader_write (char type
, char *name
, struct xheader
*xhdr
)
374 header
= start_private_header (name
, size
);
375 header
->header
.typeflag
= type
;
377 simple_finish_header (header
);
385 header
= find_next_block ();
389 memcpy (header
->buffer
, p
, len
);
391 memset (header
->buffer
+ len
, 0, BLOCKSIZE
- len
);
394 set_next_block_after (header
);
397 xheader_destroy (xhdr
);
400 global_header_count
++;
404 xheader_write_global (void)
407 struct keyword_list
*kp
;
409 if (!keyword_global_override_list
)
412 extended_header_init ();
413 for (kp
= keyword_global_override_list
; kp
; kp
= kp
->next
)
414 code_string (kp
->value
, kp
->pattern
, &extended_header
);
415 xheader_finish (&extended_header
);
416 xheader_write (XGLTYPE
, name
= xheader_ghdr_name (),
422 /* General Interface */
427 void (*coder
) (struct tar_stat_info
const *, char const *,
428 struct xheader
*, void const *data
);
429 void (*decoder
) (struct tar_stat_info
*, char const *, size_t);
433 /* This declaration must be extern, because ISO C99 section 6.9.2
434 prohibits a tentative definition that has both internal linkage and
435 incomplete type. If we made it static, we'd have to declare its
436 size which would be a maintenance pain; if we put its initializer
437 here, we'd need a boatload of forward declarations, which would be
438 even more of a pain. */
439 extern struct xhdr_tab
const xhdr_tab
[];
441 static struct xhdr_tab
const *
442 locate_handler (char const *keyword
)
444 struct xhdr_tab
const *p
;
446 for (p
= xhdr_tab
; p
->keyword
; p
++)
447 if (strcmp (p
->keyword
, keyword
) == 0)
453 xheader_protected_pattern_p (const char *pattern
)
455 struct xhdr_tab
const *p
;
457 for (p
= xhdr_tab
; p
->keyword
; p
++)
458 if (p
->protect
&& fnmatch (pattern
, p
->keyword
, 0) == 0)
464 xheader_protected_keyword_p (const char *keyword
)
466 struct xhdr_tab
const *p
;
468 for (p
= xhdr_tab
; p
->keyword
; p
++)
469 if (p
->protect
&& strcmp (p
->keyword
, keyword
) == 0)
474 /* Decode a single extended header record, advancing *PTR to the next record.
475 Return true on success, false otherwise. */
477 decode_record (char **ptr
,
478 void (*handler
) (void *, char const *, char const *, size_t),
483 unsigned long int len
;
487 size_t len_max
= extended_header
.buffer
+ extended_header
.size
- start
;
489 while (*p
== ' ' || *p
== '\t')
495 ERROR ((0, 0, _("Malformed extended header: missing length")));
500 len
= strtoul (p
, &len_lim
, 10);
504 int len_len
= len_lim
- p
;
505 ERROR ((0, 0, _("Extended header length %*s is out of range"),
512 for (p
= len_lim
; *p
== ' ' || *p
== '\t'; p
++)
517 _("Malformed extended header: missing blank after length")));
523 if (! (p
&& p
< nextp
))
525 ERROR ((0, 0, _("Malformed extended header: missing equal sign")));
529 if (nextp
[-1] != '\n')
531 ERROR ((0, 0, _("Malformed extended header: missing newline")));
535 *p
= nextp
[-1] = '\0';
536 handler (data
, keyword
, p
+ 1, nextp
- p
- 2); /* '=' + trailing '\n' */
544 run_override_list (struct keyword_list
*kp
, struct tar_stat_info
*st
)
546 for (; kp
; kp
= kp
->next
)
548 struct xhdr_tab
const *t
= locate_handler (kp
->pattern
);
550 t
->decoder (st
, kp
->value
, strlen (kp
->value
));
555 decx (void *data
, char const *keyword
, char const *value
, size_t size
)
557 struct xhdr_tab
const *t
;
558 struct tar_stat_info
*st
= data
;
560 if (xheader_keyword_deleted_p (keyword
)
561 || xheader_keyword_override_p (keyword
))
564 t
= locate_handler (keyword
);
566 t
->decoder (st
, value
, size
);
568 ERROR((0, 0, _("Ignoring unknown extended header keyword `%s'"),
573 xheader_decode (struct tar_stat_info
*st
)
575 run_override_list (keyword_global_override_list
, st
);
576 run_override_list (global_header_override_list
, st
);
578 if (extended_header
.size
)
580 char *p
= extended_header
.buffer
+ BLOCKSIZE
;
581 while (decode_record (&p
, decx
, st
))
584 run_override_list (keyword_override_list
, st
);
588 decg (void *data
, char const *keyword
, char const *value
,
589 size_t size
__attribute__((unused
)))
591 struct keyword_list
**kwl
= data
;
592 xheader_list_append (kwl
, keyword
, value
);
596 xheader_decode_global (void)
598 if (extended_header
.size
)
600 char *p
= extended_header
.buffer
+ BLOCKSIZE
;
602 xheader_list_destroy (&global_header_override_list
);
603 while (decode_record (&p
, decg
, &global_header_override_list
))
609 extended_header_init (void)
611 if (!extended_header
.stk
)
613 extended_header
.stk
= xmalloc (sizeof *extended_header
.stk
);
614 obstack_init (extended_header
.stk
);
619 xheader_store (char const *keyword
, struct tar_stat_info
const *st
,
622 struct xhdr_tab
const *t
;
624 if (extended_header
.buffer
)
626 t
= locate_handler (keyword
);
629 if (xheader_keyword_deleted_p (keyword
)
630 || xheader_keyword_override_p (keyword
))
632 extended_header_init ();
633 t
->coder (st
, keyword
, &extended_header
, data
);
637 xheader_read (union block
*p
, size_t size
)
642 free (extended_header
.buffer
);
644 extended_header
.size
= size
;
645 nblocks
= (size
+ BLOCKSIZE
- 1) / BLOCKSIZE
;
646 extended_header
.buffer
= xmalloc (size
+ 1);
647 extended_header
.buffer
[size
] = '\0';
656 memcpy (&extended_header
.buffer
[j
], p
->buffer
, len
);
657 set_next_block_after (p
);
659 p
= find_next_block ();
668 xheader_print_n (struct xheader
*xhdr
, char const *keyword
,
669 char const *value
, size_t vsize
)
671 size_t len
= strlen (keyword
) + vsize
+ 3; /* ' ' + '=' + '\n' */
674 char nbuf
[UINTMAX_STRSIZE_BOUND
];
680 np
= umaxtostr (len
+ p
, nbuf
);
681 n
= nbuf
+ sizeof nbuf
- 1 - np
;
685 x_obstack_grow (xhdr
, np
, n
);
686 x_obstack_1grow (xhdr
, ' ');
687 x_obstack_grow (xhdr
, keyword
, strlen (keyword
));
688 x_obstack_1grow (xhdr
, '=');
689 x_obstack_grow (xhdr
, value
, vsize
);
690 x_obstack_1grow (xhdr
, '\n');
694 xheader_print (struct xheader
*xhdr
, char const *keyword
, char const *value
)
696 xheader_print_n (xhdr
, keyword
, value
, strlen (value
));
700 xheader_finish (struct xheader
*xhdr
)
702 struct keyword_list
*kp
;
704 for (kp
= keyword_override_list
; kp
; kp
= kp
->next
)
705 code_string (kp
->value
, kp
->pattern
, xhdr
);
707 xhdr
->buffer
= obstack_finish (xhdr
->stk
);
711 xheader_destroy (struct xheader
*xhdr
)
715 obstack_free (xhdr
->stk
, NULL
);
726 /* Buildable strings */
727 static uintmax_t string_length
;
730 xheader_string_begin ()
736 xheader_string_add (char const *s
)
738 if (extended_header
.buffer
)
740 extended_header_init ();
741 string_length
+= strlen (s
);
742 x_obstack_grow (&extended_header
, s
, strlen (s
));
746 xheader_string_end (char const *keyword
)
751 char nbuf
[UINTMAX_STRSIZE_BOUND
];
755 if (extended_header
.buffer
)
757 extended_header_init ();
759 len
= strlen (keyword
) + string_length
+ 3; /* ' ' + '=' + '\n' */
764 np
= umaxtostr (len
+ p
, nbuf
);
765 n
= nbuf
+ sizeof nbuf
- 1 - np
;
769 p
= strlen (keyword
) + n
+ 2;
770 x_obstack_blank (&extended_header
, p
);
771 x_obstack_1grow (&extended_header
, '\n');
772 cp
= obstack_next_free (extended_header
.stk
) - string_length
- p
- 1;
773 memmove (cp
+ p
, cp
, string_length
);
774 cp
= stpcpy (cp
, np
);
776 cp
= stpcpy (cp
, keyword
);
781 /* Implementations */
784 out_of_range_header (char const *keyword
, char const *value
,
785 uintmax_t minus_minval
, uintmax_t maxval
)
787 char minval_buf
[UINTMAX_STRSIZE_BOUND
+ 1];
788 char maxval_buf
[UINTMAX_STRSIZE_BOUND
];
789 char *minval_string
= umaxtostr (minus_minval
, minval_buf
+ 1);
790 char *maxval_string
= umaxtostr (maxval
, maxval_buf
);
792 *--minval_string
= '-';
794 /* TRANSLATORS: The first %s is the pax extended header keyword
795 (atime, gid, etc.). */
796 ERROR ((0, 0, _("Extended header %s=%s is out of range %s..%s"),
797 keyword
, value
, minval_string
, maxval_string
));
801 code_string (char const *string
, char const *keyword
, struct xheader
*xhdr
)
804 if (!utf8_convert (true, string
, &outstr
))
806 /* FIXME: report error */
807 outstr
= xstrdup (string
);
809 xheader_print (xhdr
, keyword
, outstr
);
814 decode_string (char **string
, char const *arg
)
821 if (!utf8_convert (false, arg
, string
))
823 /* FIXME: report error and act accordingly to --pax invalid=UTF-8 */
824 assign_string (string
, arg
);
829 code_time (struct timespec t
, char const *keyword
, struct xheader
*xhdr
)
831 char buf
[TIMESPEC_STRSIZE_BOUND
];
832 xheader_print (xhdr
, keyword
, code_timespec (t
, buf
));
836 decode_time (struct timespec
*ts
, char const *arg
, char const *keyword
)
839 unsigned long int ns
= 0;
842 bool negative
= *arg
== '-';
846 if (ISDIGIT (arg
[negative
]))
850 intmax_t i
= strtoimax (arg
, &arg_lim
, 10);
851 if (TYPE_SIGNED (time_t) ? i
< TYPE_MINIMUM (time_t) : i
< 0)
857 uintmax_t i
= strtoumax (arg
, &arg_lim
, 10);
858 if (TYPE_MAXIMUM (time_t) < i
)
871 bool trailing_nonzero
= false;
873 while (ISDIGIT (*++p
))
874 if (digits
< LOG10_BILLION
)
876 ns
= 10 * ns
+ (*p
- '0');
880 trailing_nonzero
|= *p
!= '0';
882 while (digits
++ < LOG10_BILLION
)
887 /* Convert "-1.10000000000001" to s == -2, ns == 89999999.
888 I.e., truncate time stamps towards minus infinity while
889 converting them to internal form. */
890 ns
+= trailing_nonzero
;
893 if (s
== TYPE_MINIMUM (time_t))
909 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
914 out_of_range_header (keyword
, arg
, - (uintmax_t) TYPE_MINIMUM (time_t),
915 TYPE_MAXIMUM (time_t));
920 code_num (uintmax_t value
, char const *keyword
, struct xheader
*xhdr
)
922 char sbuf
[UINTMAX_STRSIZE_BOUND
];
923 xheader_print (xhdr
, keyword
, umaxtostr (value
, sbuf
));
927 decode_num (uintmax_t *num
, char const *arg
, uintmax_t maxval
,
933 if (! (ISDIGIT (*arg
)
934 && (errno
= 0, u
= strtoumax (arg
, &arg_lim
, 10), !*arg_lim
)))
936 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
941 if (! (u
<= maxval
&& errno
!= ERANGE
))
943 out_of_range_header (keyword
, arg
, 0, maxval
);
952 dummy_coder (struct tar_stat_info
const *st
__attribute__ ((unused
)),
953 char const *keyword
__attribute__ ((unused
)),
954 struct xheader
*xhdr
__attribute__ ((unused
)),
955 void const *data
__attribute__ ((unused
)))
960 dummy_decoder (struct tar_stat_info
*st
__attribute__ ((unused
)),
961 char const *arg
__attribute__ ((unused
)),
962 size_t size
__attribute__((unused
)))
967 atime_coder (struct tar_stat_info
const *st
, char const *keyword
,
968 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
970 code_time (st
->atime
, keyword
, xhdr
);
974 atime_decoder (struct tar_stat_info
*st
, char const *arg
,
975 size_t size
__attribute__((unused
)))
978 if (decode_time (&ts
, arg
, "atime"))
983 gid_coder (struct tar_stat_info
const *st
, char const *keyword
,
984 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
986 code_num (st
->stat
.st_gid
, keyword
, xhdr
);
990 gid_decoder (struct tar_stat_info
*st
, char const *arg
,
991 size_t size
__attribute__((unused
)))
994 if (decode_num (&u
, arg
, TYPE_MAXIMUM (gid_t
), "gid"))
999 gname_coder (struct tar_stat_info
const *st
, char const *keyword
,
1000 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1002 code_string (st
->gname
, keyword
, xhdr
);
1006 gname_decoder (struct tar_stat_info
*st
, char const *arg
,
1007 size_t size
__attribute__((unused
)))
1009 decode_string (&st
->gname
, arg
);
1013 linkpath_coder (struct tar_stat_info
const *st
, char const *keyword
,
1014 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1016 code_string (st
->link_name
, keyword
, xhdr
);
1020 linkpath_decoder (struct tar_stat_info
*st
, char const *arg
,
1021 size_t size
__attribute__((unused
)))
1023 decode_string (&st
->link_name
, arg
);
1027 ctime_coder (struct tar_stat_info
const *st
, char const *keyword
,
1028 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1030 code_time (st
->ctime
, keyword
, xhdr
);
1034 ctime_decoder (struct tar_stat_info
*st
, char const *arg
,
1035 size_t size
__attribute__((unused
)))
1038 if (decode_time (&ts
, arg
, "ctime"))
1043 mtime_coder (struct tar_stat_info
const *st
, char const *keyword
,
1044 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1046 code_time (st
->mtime
, keyword
, xhdr
);
1050 mtime_decoder (struct tar_stat_info
*st
, char const *arg
,
1051 size_t size
__attribute__((unused
)))
1054 if (decode_time (&ts
, arg
, "mtime"))
1059 path_coder (struct tar_stat_info
const *st
, char const *keyword
,
1060 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1062 code_string (st
->file_name
, keyword
, xhdr
);
1066 path_decoder (struct tar_stat_info
*st
, char const *arg
,
1067 size_t size
__attribute__((unused
)))
1069 decode_string (&st
->orig_file_name
, arg
);
1070 decode_string (&st
->file_name
, arg
);
1071 st
->had_trailing_slash
= strip_trailing_slashes (st
->file_name
);
1075 size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1076 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1078 code_num (st
->stat
.st_size
, keyword
, xhdr
);
1082 size_decoder (struct tar_stat_info
*st
, char const *arg
,
1083 size_t size
__attribute__((unused
)))
1086 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), "size"))
1087 st
->stat
.st_size
= u
;
1091 uid_coder (struct tar_stat_info
const *st
, char const *keyword
,
1092 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1094 code_num (st
->stat
.st_uid
, keyword
, xhdr
);
1098 uid_decoder (struct tar_stat_info
*st
, char const *arg
,
1099 size_t size
__attribute__((unused
)))
1102 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uid_t
), "uid"))
1103 st
->stat
.st_uid
= u
;
1107 uname_coder (struct tar_stat_info
const *st
, char const *keyword
,
1108 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1110 code_string (st
->uname
, keyword
, xhdr
);
1114 uname_decoder (struct tar_stat_info
*st
, char const *arg
,
1115 size_t size
__attribute__((unused
)))
1117 decode_string (&st
->uname
, arg
);
1121 sparse_size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1122 struct xheader
*xhdr
, void const *data
)
1124 size_coder (st
, keyword
, xhdr
, data
);
1128 sparse_size_decoder (struct tar_stat_info
*st
, char const *arg
,
1129 size_t size
__attribute__((unused
)))
1132 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), "GNU.sparse.size"))
1133 st
->stat
.st_size
= u
;
1137 sparse_numblocks_coder (struct tar_stat_info
const *st
, char const *keyword
,
1138 struct xheader
*xhdr
,
1139 void const *data
__attribute__ ((unused
)))
1141 code_num (st
->sparse_map_avail
, keyword
, xhdr
);
1145 sparse_numblocks_decoder (struct tar_stat_info
*st
, char const *arg
,
1146 size_t size
__attribute__((unused
)))
1149 if (decode_num (&u
, arg
, SIZE_MAX
, "GNU.sparse.numblocks"))
1151 st
->sparse_map_size
= u
;
1152 st
->sparse_map
= xcalloc (u
, sizeof st
->sparse_map
[0]);
1153 st
->sparse_map_avail
= 0;
1158 sparse_offset_coder (struct tar_stat_info
const *st
, char const *keyword
,
1159 struct xheader
*xhdr
, void const *data
)
1161 size_t const *pi
= data
;
1162 code_num (st
->sparse_map
[*pi
].offset
, keyword
, xhdr
);
1166 sparse_offset_decoder (struct tar_stat_info
*st
, char const *arg
,
1167 size_t size
__attribute__((unused
)))
1170 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), "GNU.sparse.offset"))
1172 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1173 st
->sparse_map
[st
->sparse_map_avail
].offset
= u
;
1175 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1176 "GNU.sparse.offset", arg
));
1181 sparse_numbytes_coder (struct tar_stat_info
const *st
, char const *keyword
,
1182 struct xheader
*xhdr
, void const *data
)
1184 size_t const *pi
= data
;
1185 code_num (st
->sparse_map
[*pi
].numbytes
, keyword
, xhdr
);
1189 sparse_numbytes_decoder (struct tar_stat_info
*st
, char const *arg
,
1190 size_t size
__attribute__((unused
)))
1193 if (decode_num (&u
, arg
, SIZE_MAX
, "GNU.sparse.numbytes"))
1195 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1196 st
->sparse_map
[st
->sparse_map_avail
++].numbytes
= u
;
1198 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1199 "GNU.sparse.numbytes", arg
));
1204 sparse_map_decoder (struct tar_stat_info
*st
, char const *arg
,
1205 size_t size
__attribute__((unused
)))
1208 static char *keyword
= "GNU.sparse.map";
1210 st
->sparse_map_avail
= 0;
1217 if (!ISDIGIT (*arg
))
1219 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
1225 u
= strtoumax (arg
, &delim
, 10);
1229 if (!(u
== e
.offset
&& errno
!= ERANGE
))
1231 out_of_range_header (keyword
, arg
, 0, TYPE_MAXIMUM (off_t
));
1238 if (!(u
== e
.numbytes
&& errno
!= ERANGE
))
1240 out_of_range_header (keyword
, arg
, 0, TYPE_MAXIMUM (size_t));
1243 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1244 st
->sparse_map
[st
->sparse_map_avail
++] = e
;
1247 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1248 "GNU.sparse.numbytes", arg
));
1257 else if (*delim
!= ',')
1260 _("Malformed extended header: invalid %s: unexpected delimiter %c"),
1270 _("Malformed extended header: invalid %s: odd number of values"),
1275 dumpdir_coder (struct tar_stat_info
const *st
, char const *keyword
,
1276 struct xheader
*xhdr
, void const *data
)
1278 xheader_print_n (xhdr
, keyword
, data
, dumpdir_size (data
));
1282 dumpdir_decoder (struct tar_stat_info
*st
, char const *arg
,
1285 st
->dumpdir
= xmalloc (size
);
1286 memcpy (st
->dumpdir
, arg
, size
);
1290 volume_label_coder (struct tar_stat_info
const *st
, char const *keyword
,
1291 struct xheader
*xhdr
, void const *data
)
1293 code_string (data
, keyword
, xhdr
);
1297 volume_label_decoder (struct tar_stat_info
*st
, char const *arg
, size_t size
)
1299 decode_string (&volume_label
, arg
);
1303 volume_size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1304 struct xheader
*xhdr
, void const *data
)
1306 off_t v
= *(off_t
*)data
;
1307 code_num (v
, keyword
, xhdr
);
1311 volume_size_decoder (struct tar_stat_info
*st
, char const *arg
, size_t size
)
1314 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uintmax_t), "GNU.volume.size"))
1315 continued_file_size
= u
;
1318 /* FIXME: Merge with volume_size_coder */
1320 volume_offset_coder (struct tar_stat_info
const *st
, char const *keyword
,
1321 struct xheader
*xhdr
, void const *data
)
1323 off_t v
= *(off_t
*)data
;
1324 code_num (v
, keyword
, xhdr
);
1328 volume_offset_decoder (struct tar_stat_info
*st
, char const *arg
, size_t size
)
1331 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uintmax_t), "GNU.volume.offset"))
1332 continued_file_offset
= u
;
1336 volume_filename_decoder (struct tar_stat_info
*st
, char const *arg
,
1339 decode_string (&continued_file_name
, arg
);
1343 struct xhdr_tab
const xhdr_tab
[] = {
1344 { "atime", atime_coder
, atime_decoder
, false },
1345 { "comment", dummy_coder
, dummy_decoder
, false },
1346 { "charset", dummy_coder
, dummy_decoder
, false },
1347 { "ctime", ctime_coder
, ctime_decoder
, false },
1348 { "gid", gid_coder
, gid_decoder
, false },
1349 { "gname", gname_coder
, gname_decoder
, false },
1350 { "linkpath", linkpath_coder
, linkpath_decoder
, false },
1351 { "mtime", mtime_coder
, mtime_decoder
, false },
1352 { "path", path_coder
, path_decoder
, false },
1353 { "size", size_coder
, size_decoder
, false },
1354 { "uid", uid_coder
, uid_decoder
, false },
1355 { "uname", uname_coder
, uname_decoder
, false },
1357 /* Sparse file handling */
1358 { "GNU.sparse.size", sparse_size_coder
, sparse_size_decoder
, true },
1359 { "GNU.sparse.numblocks", sparse_numblocks_coder
, sparse_numblocks_decoder
,
1361 /* tar 1.14 - 1.15.1 keywords. Multiplse instances of these appeared in 'x'
1362 headers, and each of them was meaningful. It confilcted with POSIX specs,
1363 which requires that "when extended header records conflict, the last one
1364 given in the header shall take precedence." */
1365 { "GNU.sparse.offset", sparse_offset_coder
, sparse_offset_decoder
,
1367 { "GNU.sparse.numbytes", sparse_numbytes_coder
, sparse_numbytes_decoder
,
1369 /* tar >=1.16 keyword, introduced to remove the above-mentioned conflict. */
1370 { "GNU.sparse.map", NULL
/* Unused, see pax_dump_header() */,
1371 sparse_map_decoder
, false },
1373 { "GNU.dumpdir", dumpdir_coder
, dumpdir_decoder
,
1376 /* Keeps the tape/volume label. May be present only in the global headers.
1377 Equivalent to GNUTYPE_VOLHDR. */
1378 { "GNU.volume.label", volume_label_coder
, volume_label_decoder
, true },
1380 /* These may be present in a first global header of the archive.
1381 They provide the same functionality as GNUTYPE_MULTIVOL header.
1382 The GNU.volume.size keeps the real_s_sizeleft value, which is
1383 otherwise kept in the size field of a multivolume header. The
1384 GNU.volume.offset keeps the offset of the start of this volume,
1385 otherwise kept in oldgnu_header.offset. */
1386 { "GNU.volume.filename", volume_label_coder
, volume_filename_decoder
,
1388 { "GNU.volume.size", volume_size_coder
, volume_size_decoder
, true },
1389 { "GNU.volume.offset", volume_offset_coder
, volume_offset_decoder
, true },
1391 { NULL
, NULL
, NULL
, false }