1 /* POSIX extended headers for tar.
3 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009, 2010 Free Software
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any later
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14 Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
29 static void xheader_init (struct xheader
*xhdr
);
30 static bool xheader_protected_pattern_p (char const *pattern
);
31 static bool xheader_protected_keyword_p (char const *keyword
);
32 static void xheader_set_single_keyword (char *) __attribute__ ((noreturn
));
34 /* Used by xheader_finish() */
35 static void code_string (char const *string
, char const *keyword
,
36 struct xheader
*xhdr
);
38 /* Number of global headers written so far. */
39 static size_t global_header_count
;
40 /* FIXME: Possibly it should be reset after changing the volume.
41 POSIX %n specification says that it is expanded to the sequence
42 number of current global header in *the* archive. However, for
43 multi-volume archives this will yield duplicate header names
44 in different volumes, which I'd like to avoid. The best way
45 to solve this would be to use per-archive header count as required
46 by POSIX *and* set globexthdr.name to, say,
47 $TMPDIR/GlobalHead.%p.$NUMVOLUME.%n.
49 However it should wait until buffer.c is finally rewritten */
52 /* Interface functions to obstacks */
55 x_obstack_grow (struct xheader
*xhdr
, const char *ptr
, size_t length
)
57 obstack_grow (xhdr
->stk
, ptr
, length
);
62 x_obstack_1grow (struct xheader
*xhdr
, char c
)
64 obstack_1grow (xhdr
->stk
, c
);
69 x_obstack_blank (struct xheader
*xhdr
, size_t length
)
71 obstack_blank (xhdr
->stk
, length
);
80 struct keyword_list
*next
;
86 /* List of keyword patterns set by delete= option */
87 static struct keyword_list
*keyword_pattern_list
;
89 /* List of keyword/value pairs set by `keyword=value' option */
90 static struct keyword_list
*keyword_global_override_list
;
92 /* List of keyword/value pairs set by `keyword:=value' option */
93 static struct keyword_list
*keyword_override_list
;
95 /* List of keyword/value pairs decoded from the last 'g' type header */
96 static struct keyword_list
*global_header_override_list
;
98 /* Template for the name field of an 'x' type header */
99 static char *exthdr_name
;
101 static char *exthdr_mtime_option
;
102 static time_t exthdr_mtime
;
104 /* Template for the name field of a 'g' type header */
105 static char *globexthdr_name
;
107 static char *globexthdr_mtime_option
;
108 static time_t globexthdr_mtime
;
111 xheader_keyword_deleted_p (const char *kw
)
113 struct keyword_list
*kp
;
115 for (kp
= keyword_pattern_list
; kp
; kp
= kp
->next
)
116 if (fnmatch (kp
->pattern
, kw
, 0) == 0)
122 xheader_keyword_override_p (const char *keyword
)
124 struct keyword_list
*kp
;
126 for (kp
= keyword_override_list
; kp
; kp
= kp
->next
)
127 if (strcmp (kp
->pattern
, keyword
) == 0)
133 xheader_list_append (struct keyword_list
**root
, char const *kw
,
136 struct keyword_list
*kp
= xmalloc (sizeof *kp
);
137 kp
->pattern
= xstrdup (kw
);
138 kp
->value
= value
? xstrdup (value
) : NULL
;
144 xheader_list_destroy (struct keyword_list
**root
)
148 struct keyword_list
*kw
= *root
;
151 struct keyword_list
*next
= kw
->next
;
162 xheader_set_single_keyword (char *kw
)
164 USAGE_ERROR ((0, 0, _("Keyword %s is unknown or not yet implemented"), kw
));
168 assign_time_option (char **sval
, time_t *tval
, const char *input
)
172 time_t t
= u
= strtoumax (input
, &p
, 10);
173 if (t
!= u
|| *p
|| errno
== ERANGE
)
174 ERROR ((0, 0, _("Time stamp is out of allowed range")));
178 assign_string (sval
, input
);
183 xheader_set_keyword_equal (char *kw
, char *eq
)
194 while (p
> kw
&& isspace ((unsigned char) *p
))
199 for (p
= eq
+ 1; *p
&& isspace ((unsigned char) *p
); p
++)
202 if (strcmp (kw
, "delete") == 0)
204 if (xheader_protected_pattern_p (p
))
205 USAGE_ERROR ((0, 0, _("Pattern %s cannot be used"), quote (p
)));
206 xheader_list_append (&keyword_pattern_list
, p
, NULL
);
208 else if (strcmp (kw
, "exthdr.name") == 0)
209 assign_string (&exthdr_name
, p
);
210 else if (strcmp (kw
, "globexthdr.name") == 0)
211 assign_string (&globexthdr_name
, p
);
212 else if (strcmp (kw
, "exthdr.mtime") == 0)
213 assign_time_option (&exthdr_mtime_option
, &exthdr_mtime
, p
);
214 else if (strcmp (kw
, "globexthdr.mtime") == 0)
215 assign_time_option (&globexthdr_mtime_option
, &globexthdr_mtime
, p
);
218 if (xheader_protected_keyword_p (kw
))
219 USAGE_ERROR ((0, 0, _("Keyword %s cannot be overridden"), kw
));
221 xheader_list_append (&keyword_global_override_list
, kw
, p
);
223 xheader_list_append (&keyword_override_list
, kw
, p
);
228 xheader_set_option (char *string
)
231 for (token
= strtok (string
, ","); token
; token
= strtok (NULL
, ","))
233 char *p
= strchr (token
, '=');
235 xheader_set_single_keyword (token
);
237 xheader_set_keyword_equal (token
, p
);
242 string Includes: Replaced By:
243 %d The directory name of the file,
244 equivalent to the result of the
245 dirname utility on the translated
247 %f The filename of the file, equivalent
248 to the result of the basename
249 utility on the translated file name.
250 %p The process ID of the pax process.
251 %n The value of the 3rd argument.
252 %% A '%' character. */
255 xheader_format_name (struct tar_stat_info
*st
, const char *fmt
, size_t n
)
258 size_t len
= strlen (fmt
);
264 char pidbuf
[UINTMAX_STRSIZE_BOUND
];
266 char nbuf
[UINTMAX_STRSIZE_BOUND
];
267 char const *nptr
= NULL
;
269 for (p
= fmt
; *p
&& (p
= strchr (p
, '%')); )
281 dirp
= dir_name (st
->orig_file_name
);
282 dir
= safer_name_suffix (dirp
, false, absolute_names_option
);
283 len
+= strlen (dir
) - 2;
290 base
= last_component (st
->orig_file_name
);
291 len
+= strlen (base
) - 2;
296 pptr
= umaxtostr (getpid (), pidbuf
);
297 len
+= pidbuf
+ sizeof pidbuf
- 1 - pptr
- 2;
301 nptr
= umaxtostr (n
, nbuf
);
302 len
+= nbuf
+ sizeof nbuf
- 1 - nptr
- 2;
308 buf
= xmalloc (len
+ 1);
309 for (q
= buf
, p
= fmt
; *p
; )
328 q
= stpcpy (q
, base
);
333 q
= stpcpy (q
, pptr
);
340 q
= stpcpy (q
, nptr
);
344 /* else fall through */
358 /* Do not allow it to end in a slash */
359 while (q
> buf
&& ISSLASH (q
[-1]))
366 xheader_xhdr_name (struct tar_stat_info
*st
)
369 assign_string (&exthdr_name
, "%d/PaxHeaders.%p/%f");
370 return xheader_format_name (st
, exthdr_name
, 0);
373 #define GLOBAL_HEADER_TEMPLATE "/GlobalHead.%p.%n"
376 xheader_ghdr_name (void)
378 if (!globexthdr_name
)
381 const char *tmp
= getenv ("TMPDIR");
384 len
= strlen (tmp
) + sizeof (GLOBAL_HEADER_TEMPLATE
); /* Includes nul */
385 globexthdr_name
= xmalloc (len
);
386 strcpy(globexthdr_name
, tmp
);
387 strcat(globexthdr_name
, GLOBAL_HEADER_TEMPLATE
);
390 return xheader_format_name (NULL
, globexthdr_name
, global_header_count
+ 1);
394 xheader_write (char type
, char *name
, time_t t
, struct xheader
*xhdr
)
404 if (globexthdr_mtime_option
)
405 t
= globexthdr_mtime
;
409 if (exthdr_mtime_option
)
413 header
= start_private_header (name
, size
, t
);
414 header
->header
.typeflag
= type
;
416 simple_finish_header (header
);
424 header
= find_next_block ();
428 memcpy (header
->buffer
, p
, len
);
430 memset (header
->buffer
+ len
, 0, BLOCKSIZE
- len
);
433 set_next_block_after (header
);
436 xheader_destroy (xhdr
);
439 global_header_count
++;
443 xheader_write_global (struct xheader
*xhdr
)
445 if (keyword_global_override_list
)
447 struct keyword_list
*kp
;
450 for (kp
= keyword_global_override_list
; kp
; kp
= kp
->next
)
451 code_string (kp
->value
, kp
->pattern
, xhdr
);
457 xheader_finish (xhdr
);
458 xheader_write (XGLTYPE
, name
= xheader_ghdr_name (), time (NULL
), xhdr
);
464 /* General Interface */
466 #define XHDR_PROTECTED 0x01
467 #define XHDR_GLOBAL 0x02
472 void (*coder
) (struct tar_stat_info
const *, char const *,
473 struct xheader
*, void const *data
);
474 void (*decoder
) (struct tar_stat_info
*, char const *, char const *, size_t);
478 /* This declaration must be extern, because ISO C99 section 6.9.2
479 prohibits a tentative definition that has both internal linkage and
480 incomplete type. If we made it static, we'd have to declare its
481 size which would be a maintenance pain; if we put its initializer
482 here, we'd need a boatload of forward declarations, which would be
483 even more of a pain. */
484 extern struct xhdr_tab
const xhdr_tab
[];
486 static struct xhdr_tab
const *
487 locate_handler (char const *keyword
)
489 struct xhdr_tab
const *p
;
491 for (p
= xhdr_tab
; p
->keyword
; p
++)
492 if (strcmp (p
->keyword
, keyword
) == 0)
498 xheader_protected_pattern_p (const char *pattern
)
500 struct xhdr_tab
const *p
;
502 for (p
= xhdr_tab
; p
->keyword
; p
++)
503 if ((p
->flags
& XHDR_PROTECTED
) && fnmatch (pattern
, p
->keyword
, 0) == 0)
509 xheader_protected_keyword_p (const char *keyword
)
511 struct xhdr_tab
const *p
;
513 for (p
= xhdr_tab
; p
->keyword
; p
++)
514 if ((p
->flags
& XHDR_PROTECTED
) && strcmp (p
->keyword
, keyword
) == 0)
519 /* Decode a single extended header record, advancing *PTR to the next record.
520 Return true on success, false otherwise. */
522 decode_record (struct xheader
*xhdr
,
524 void (*handler
) (void *, char const *, char const *, size_t),
534 size_t len_max
= xhdr
->buffer
+ xhdr
->size
- start
;
536 while (*p
== ' ' || *p
== '\t')
542 ERROR ((0, 0, _("Malformed extended header: missing length")));
547 len
= u
= strtoumax (p
, &len_lim
, 10);
548 if (len
!= u
|| errno
== ERANGE
)
550 ERROR ((0, 0, _("Extended header length is out of allowed range")));
556 int len_len
= len_lim
- p
;
557 ERROR ((0, 0, _("Extended header length %*s is out of range"),
564 for (p
= len_lim
; *p
== ' ' || *p
== '\t'; p
++)
569 _("Malformed extended header: missing blank after length")));
575 if (! (p
&& p
< nextp
))
577 ERROR ((0, 0, _("Malformed extended header: missing equal sign")));
581 if (nextp
[-1] != '\n')
583 ERROR ((0, 0, _("Malformed extended header: missing newline")));
587 *p
= nextp
[-1] = '\0';
588 handler (data
, keyword
, p
+ 1, nextp
- p
- 2); /* '=' + trailing '\n' */
596 run_override_list (struct keyword_list
*kp
, struct tar_stat_info
*st
)
598 for (; kp
; kp
= kp
->next
)
600 struct xhdr_tab
const *t
= locate_handler (kp
->pattern
);
602 t
->decoder (st
, t
->keyword
, kp
->value
, strlen (kp
->value
));
607 decx (void *data
, char const *keyword
, char const *value
, size_t size
)
609 struct xhdr_tab
const *t
;
610 struct tar_stat_info
*st
= data
;
612 if (xheader_keyword_deleted_p (keyword
)
613 || xheader_keyword_override_p (keyword
))
616 t
= locate_handler (keyword
);
618 t
->decoder (st
, keyword
, value
, size
);
620 WARNOPT (WARN_UNKNOWN_KEYWORD
,
621 (0, 0, _("Ignoring unknown extended header keyword `%s'"),
626 xheader_decode (struct tar_stat_info
*st
)
628 run_override_list (keyword_global_override_list
, st
);
629 run_override_list (global_header_override_list
, st
);
633 char *p
= st
->xhdr
.buffer
+ BLOCKSIZE
;
634 while (decode_record (&st
->xhdr
, &p
, decx
, st
))
637 run_override_list (keyword_override_list
, st
);
641 decg (void *data
, char const *keyword
, char const *value
,
642 size_t size
__attribute__((unused
)))
644 struct keyword_list
**kwl
= data
;
645 struct xhdr_tab
const *tab
= locate_handler (keyword
);
646 if (tab
&& (tab
->flags
& XHDR_GLOBAL
))
647 tab
->decoder (data
, keyword
, value
, size
);
649 xheader_list_append (kwl
, keyword
, value
);
653 xheader_decode_global (struct xheader
*xhdr
)
657 char *p
= xhdr
->buffer
+ BLOCKSIZE
;
659 xheader_list_destroy (&global_header_override_list
);
660 while (decode_record (xhdr
, &p
, decg
, &global_header_override_list
))
666 xheader_init (struct xheader
*xhdr
)
670 xhdr
->stk
= xmalloc (sizeof *xhdr
->stk
);
671 obstack_init (xhdr
->stk
);
676 xheader_store (char const *keyword
, struct tar_stat_info
*st
,
679 struct xhdr_tab
const *t
;
683 t
= locate_handler (keyword
);
686 if (xheader_keyword_deleted_p (keyword
)
687 || xheader_keyword_override_p (keyword
))
689 xheader_init (&st
->xhdr
);
690 t
->coder (st
, keyword
, &st
->xhdr
, data
);
694 xheader_read (struct xheader
*xhdr
, union block
*p
, size_t size
)
700 xhdr
->buffer
= xmalloc (size
+ 1);
701 xhdr
->buffer
[size
] = '\0';
711 FATAL_ERROR ((0, 0, _("Unexpected EOF in archive")));
713 memcpy (&xhdr
->buffer
[j
], p
->buffer
, len
);
714 set_next_block_after (p
);
716 p
= find_next_block ();
725 xheader_print_n (struct xheader
*xhdr
, char const *keyword
,
726 char const *value
, size_t vsize
)
728 size_t len
= strlen (keyword
) + vsize
+ 3; /* ' ' + '=' + '\n' */
731 char nbuf
[UINTMAX_STRSIZE_BOUND
];
737 np
= umaxtostr (len
+ p
, nbuf
);
738 n
= nbuf
+ sizeof nbuf
- 1 - np
;
742 x_obstack_grow (xhdr
, np
, n
);
743 x_obstack_1grow (xhdr
, ' ');
744 x_obstack_grow (xhdr
, keyword
, strlen (keyword
));
745 x_obstack_1grow (xhdr
, '=');
746 x_obstack_grow (xhdr
, value
, vsize
);
747 x_obstack_1grow (xhdr
, '\n');
751 xheader_print (struct xheader
*xhdr
, char const *keyword
, char const *value
)
753 xheader_print_n (xhdr
, keyword
, value
, strlen (value
));
757 xheader_finish (struct xheader
*xhdr
)
759 struct keyword_list
*kp
;
761 for (kp
= keyword_override_list
; kp
; kp
= kp
->next
)
762 code_string (kp
->value
, kp
->pattern
, xhdr
);
764 xhdr
->buffer
= obstack_finish (xhdr
->stk
);
768 xheader_destroy (struct xheader
*xhdr
)
772 obstack_free (xhdr
->stk
, NULL
);
783 /* Buildable strings */
786 xheader_string_begin (struct xheader
*xhdr
)
788 xhdr
->string_length
= 0;
792 xheader_string_add (struct xheader
*xhdr
, char const *s
)
797 xhdr
->string_length
+= strlen (s
);
798 x_obstack_grow (xhdr
, s
, strlen (s
));
802 xheader_string_end (struct xheader
*xhdr
, char const *keyword
)
808 char nbuf
[UINTMAX_STRSIZE_BOUND
];
816 len
= strlen (keyword
) + xhdr
->string_length
+ 3; /* ' ' + '=' + '\n' */
821 np
= umaxtostr (len
+ p
, nbuf
);
822 n
= nbuf
+ sizeof nbuf
- 1 - np
;
826 p
= strlen (keyword
) + n
+ 2;
831 _("Generated keyword/value pair is too long (keyword=%s, length=%s)"),
833 obstack_free (xhdr
->stk
, obstack_finish (xhdr
->stk
));
836 x_obstack_blank (xhdr
, p
);
837 x_obstack_1grow (xhdr
, '\n');
838 cp
= obstack_next_free (xhdr
->stk
) - xhdr
->string_length
- p
- 1;
839 memmove (cp
+ p
, cp
, xhdr
->string_length
);
840 cp
= stpcpy (cp
, np
);
842 cp
= stpcpy (cp
, keyword
);
848 /* Implementations */
851 out_of_range_header (char const *keyword
, char const *value
,
852 uintmax_t minus_minval
, uintmax_t maxval
)
854 char minval_buf
[UINTMAX_STRSIZE_BOUND
+ 1];
855 char maxval_buf
[UINTMAX_STRSIZE_BOUND
];
856 char *minval_string
= umaxtostr (minus_minval
, minval_buf
+ 1);
857 char *maxval_string
= umaxtostr (maxval
, maxval_buf
);
859 *--minval_string
= '-';
861 /* TRANSLATORS: The first %s is the pax extended header keyword
862 (atime, gid, etc.). */
863 ERROR ((0, 0, _("Extended header %s=%s is out of range %s..%s"),
864 keyword
, value
, minval_string
, maxval_string
));
868 code_string (char const *string
, char const *keyword
, struct xheader
*xhdr
)
871 if (!utf8_convert (true, string
, &outstr
))
873 /* FIXME: report error */
874 outstr
= xstrdup (string
);
876 xheader_print (xhdr
, keyword
, outstr
);
881 decode_string (char **string
, char const *arg
)
888 if (!utf8_convert (false, arg
, string
))
890 /* FIXME: report error and act accordingly to --pax invalid=UTF-8 */
891 assign_string (string
, arg
);
896 code_time (struct timespec t
, char const *keyword
, struct xheader
*xhdr
)
898 char buf
[TIMESPEC_STRSIZE_BOUND
];
899 xheader_print (xhdr
, keyword
, code_timespec (t
, buf
));
902 enum decode_time_status
906 decode_time_bad_header
909 static enum decode_time_status
910 _decode_time (struct timespec
*ts
, char const *arg
, char const *keyword
)
913 unsigned long int ns
= 0;
916 bool negative
= *arg
== '-';
920 if (ISDIGIT (arg
[negative
]))
924 intmax_t i
= strtoimax (arg
, &arg_lim
, 10);
925 if (TYPE_SIGNED (time_t) ? i
< TYPE_MINIMUM (time_t) : i
< 0)
926 return decode_time_range
;
931 uintmax_t i
= strtoumax (arg
, &arg_lim
, 10);
932 if (TYPE_MAXIMUM (time_t) < i
)
933 return decode_time_range
;
940 return decode_time_range
;
945 bool trailing_nonzero
= false;
947 while (ISDIGIT (*++p
))
948 if (digits
< LOG10_BILLION
)
950 ns
= 10 * ns
+ (*p
- '0');
954 trailing_nonzero
|= *p
!= '0';
956 while (digits
++ < LOG10_BILLION
)
961 /* Convert "-1.10000000000001" to s == -2, ns == 89999999.
962 I.e., truncate time stamps towards minus infinity while
963 converting them to internal form. */
964 ns
+= trailing_nonzero
;
967 if (s
== TYPE_MINIMUM (time_t))
968 return decode_time_range
;
979 return decode_time_success
;
983 return decode_time_bad_header
;
987 decode_time (struct timespec
*ts
, char const *arg
, char const *keyword
)
989 switch (_decode_time (ts
, arg
, keyword
))
991 case decode_time_success
:
993 case decode_time_bad_header
:
994 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
997 case decode_time_range
:
998 out_of_range_header (keyword
, arg
, - (uintmax_t) TYPE_MINIMUM (time_t),
999 TYPE_MAXIMUM (time_t));
1008 code_num (uintmax_t value
, char const *keyword
, struct xheader
*xhdr
)
1010 char sbuf
[UINTMAX_STRSIZE_BOUND
];
1011 xheader_print (xhdr
, keyword
, umaxtostr (value
, sbuf
));
1015 decode_num (uintmax_t *num
, char const *arg
, uintmax_t maxval
,
1016 char const *keyword
)
1021 if (! (ISDIGIT (*arg
)
1022 && (errno
= 0, u
= strtoumax (arg
, &arg_lim
, 10), !*arg_lim
)))
1024 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
1029 if (! (u
<= maxval
&& errno
!= ERANGE
))
1031 out_of_range_header (keyword
, arg
, 0, maxval
);
1040 dummy_coder (struct tar_stat_info
const *st
__attribute__ ((unused
)),
1041 char const *keyword
__attribute__ ((unused
)),
1042 struct xheader
*xhdr
__attribute__ ((unused
)),
1043 void const *data
__attribute__ ((unused
)))
1048 dummy_decoder (struct tar_stat_info
*st
__attribute__ ((unused
)),
1049 char const *keyword
__attribute__ ((unused
)),
1050 char const *arg
__attribute__ ((unused
)),
1051 size_t size
__attribute__((unused
)))
1056 atime_coder (struct tar_stat_info
const *st
, char const *keyword
,
1057 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1059 code_time (st
->atime
, keyword
, xhdr
);
1063 atime_decoder (struct tar_stat_info
*st
,
1064 char const *keyword
,
1066 size_t size
__attribute__((unused
)))
1069 if (decode_time (&ts
, arg
, keyword
))
1074 gid_coder (struct tar_stat_info
const *st
, char const *keyword
,
1075 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1077 code_num (st
->stat
.st_gid
, keyword
, xhdr
);
1081 gid_decoder (struct tar_stat_info
*st
,
1082 char const *keyword
,
1084 size_t size
__attribute__((unused
)))
1087 if (decode_num (&u
, arg
, TYPE_MAXIMUM (gid_t
), keyword
))
1088 st
->stat
.st_gid
= u
;
1092 gname_coder (struct tar_stat_info
const *st
, char const *keyword
,
1093 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1095 code_string (st
->gname
, keyword
, xhdr
);
1099 gname_decoder (struct tar_stat_info
*st
,
1100 char const *keyword
__attribute__((unused
)),
1102 size_t size
__attribute__((unused
)))
1104 decode_string (&st
->gname
, arg
);
1108 linkpath_coder (struct tar_stat_info
const *st
, char const *keyword
,
1109 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1111 code_string (st
->link_name
, keyword
, xhdr
);
1115 linkpath_decoder (struct tar_stat_info
*st
,
1116 char const *keyword
__attribute__((unused
)),
1118 size_t size
__attribute__((unused
)))
1120 decode_string (&st
->link_name
, arg
);
1124 ctime_coder (struct tar_stat_info
const *st
, char const *keyword
,
1125 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1127 code_time (st
->ctime
, keyword
, xhdr
);
1131 ctime_decoder (struct tar_stat_info
*st
,
1132 char const *keyword
,
1134 size_t size
__attribute__((unused
)))
1137 if (decode_time (&ts
, arg
, keyword
))
1142 mtime_coder (struct tar_stat_info
const *st
, char const *keyword
,
1143 struct xheader
*xhdr
, void const *data
)
1145 struct timespec
const *mtime
= data
;
1146 code_time (mtime
? *mtime
: st
->mtime
, keyword
, xhdr
);
1150 mtime_decoder (struct tar_stat_info
*st
,
1151 char const *keyword
,
1153 size_t size
__attribute__((unused
)))
1156 if (decode_time (&ts
, arg
, keyword
))
1161 path_coder (struct tar_stat_info
const *st
, char const *keyword
,
1162 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1164 code_string (st
->file_name
, keyword
, xhdr
);
1168 path_decoder (struct tar_stat_info
*st
,
1169 char const *keyword
__attribute__((unused
)),
1171 size_t size
__attribute__((unused
)))
1173 decode_string (&st
->orig_file_name
, arg
);
1174 decode_string (&st
->file_name
, arg
);
1175 st
->had_trailing_slash
= strip_trailing_slashes (st
->file_name
);
1179 size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1180 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1182 code_num (st
->stat
.st_size
, keyword
, xhdr
);
1186 size_decoder (struct tar_stat_info
*st
,
1187 char const *keyword
,
1189 size_t size
__attribute__((unused
)))
1192 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), keyword
))
1193 st
->stat
.st_size
= u
;
1197 uid_coder (struct tar_stat_info
const *st
, char const *keyword
,
1198 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1200 code_num (st
->stat
.st_uid
, keyword
, xhdr
);
1204 uid_decoder (struct tar_stat_info
*st
,
1205 char const *keyword
,
1207 size_t size
__attribute__((unused
)))
1210 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uid_t
), keyword
))
1211 st
->stat
.st_uid
= u
;
1215 uname_coder (struct tar_stat_info
const *st
, char const *keyword
,
1216 struct xheader
*xhdr
, void const *data
__attribute__ ((unused
)))
1218 code_string (st
->uname
, keyword
, xhdr
);
1222 uname_decoder (struct tar_stat_info
*st
,
1223 char const *keyword
__attribute__((unused
)),
1225 size_t size
__attribute__((unused
)))
1227 decode_string (&st
->uname
, arg
);
1231 sparse_size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1232 struct xheader
*xhdr
, void const *data
)
1234 size_coder (st
, keyword
, xhdr
, data
);
1238 sparse_size_decoder (struct tar_stat_info
*st
,
1239 char const *keyword
,
1241 size_t size
__attribute__((unused
)))
1244 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), keyword
))
1245 st
->stat
.st_size
= u
;
1249 sparse_numblocks_coder (struct tar_stat_info
const *st
, char const *keyword
,
1250 struct xheader
*xhdr
,
1251 void const *data
__attribute__ ((unused
)))
1253 code_num (st
->sparse_map_avail
, keyword
, xhdr
);
1257 sparse_numblocks_decoder (struct tar_stat_info
*st
,
1258 char const *keyword
,
1260 size_t size
__attribute__((unused
)))
1263 if (decode_num (&u
, arg
, SIZE_MAX
, keyword
))
1265 st
->sparse_map_size
= u
;
1266 st
->sparse_map
= xcalloc (u
, sizeof st
->sparse_map
[0]);
1267 st
->sparse_map_avail
= 0;
1272 sparse_offset_coder (struct tar_stat_info
const *st
, char const *keyword
,
1273 struct xheader
*xhdr
, void const *data
)
1275 size_t const *pi
= data
;
1276 code_num (st
->sparse_map
[*pi
].offset
, keyword
, xhdr
);
1280 sparse_offset_decoder (struct tar_stat_info
*st
,
1281 char const *keyword
,
1283 size_t size
__attribute__((unused
)))
1286 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), keyword
))
1288 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1289 st
->sparse_map
[st
->sparse_map_avail
].offset
= u
;
1291 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1292 "GNU.sparse.offset", arg
));
1297 sparse_numbytes_coder (struct tar_stat_info
const *st
, char const *keyword
,
1298 struct xheader
*xhdr
, void const *data
)
1300 size_t const *pi
= data
;
1301 code_num (st
->sparse_map
[*pi
].numbytes
, keyword
, xhdr
);
1305 sparse_numbytes_decoder (struct tar_stat_info
*st
,
1306 char const *keyword
,
1308 size_t size
__attribute__((unused
)))
1311 if (decode_num (&u
, arg
, TYPE_MAXIMUM (off_t
), keyword
))
1313 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1314 st
->sparse_map
[st
->sparse_map_avail
++].numbytes
= u
;
1316 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1322 sparse_map_decoder (struct tar_stat_info
*st
,
1323 char const *keyword
,
1325 size_t size
__attribute__((unused
)))
1329 st
->sparse_map_avail
= 0;
1336 if (!ISDIGIT (*arg
))
1338 ERROR ((0, 0, _("Malformed extended header: invalid %s=%s"),
1344 u
= strtoumax (arg
, &delim
, 10);
1348 if (!(u
== e
.offset
&& errno
!= ERANGE
))
1350 out_of_range_header (keyword
, arg
, 0, TYPE_MAXIMUM (off_t
));
1357 if (!(u
== e
.numbytes
&& errno
!= ERANGE
))
1359 out_of_range_header (keyword
, arg
, 0, TYPE_MAXIMUM (off_t
));
1362 if (st
->sparse_map_avail
< st
->sparse_map_size
)
1363 st
->sparse_map
[st
->sparse_map_avail
++] = e
;
1366 ERROR ((0, 0, _("Malformed extended header: excess %s=%s"),
1376 else if (*delim
!= ',')
1379 _("Malformed extended header: invalid %s: unexpected delimiter %c"),
1389 _("Malformed extended header: invalid %s: odd number of values"),
1394 dumpdir_coder (struct tar_stat_info
const *st
, char const *keyword
,
1395 struct xheader
*xhdr
, void const *data
)
1397 xheader_print_n (xhdr
, keyword
, data
, dumpdir_size (data
));
1401 dumpdir_decoder (struct tar_stat_info
*st
,
1402 char const *keyword
__attribute__((unused
)),
1406 st
->dumpdir
= xmalloc (size
);
1407 memcpy (st
->dumpdir
, arg
, size
);
1411 volume_label_coder (struct tar_stat_info
const *st
, char const *keyword
,
1412 struct xheader
*xhdr
, void const *data
)
1414 code_string (data
, keyword
, xhdr
);
1418 volume_label_decoder (struct tar_stat_info
*st
,
1419 char const *keyword
__attribute__((unused
)),
1421 size_t size
__attribute__((unused
)))
1423 decode_string (&volume_label
, arg
);
1427 volume_size_coder (struct tar_stat_info
const *st
, char const *keyword
,
1428 struct xheader
*xhdr
, void const *data
)
1430 off_t
const *v
= data
;
1431 code_num (*v
, keyword
, xhdr
);
1435 volume_size_decoder (struct tar_stat_info
*st
,
1436 char const *keyword
,
1437 char const *arg
, size_t size
)
1440 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uintmax_t), keyword
))
1441 continued_file_size
= u
;
1444 /* FIXME: Merge with volume_size_coder */
1446 volume_offset_coder (struct tar_stat_info
const *st
, char const *keyword
,
1447 struct xheader
*xhdr
, void const *data
)
1449 off_t
const *v
= data
;
1450 code_num (*v
, keyword
, xhdr
);
1454 volume_offset_decoder (struct tar_stat_info
*st
,
1455 char const *keyword
,
1456 char const *arg
, size_t size
)
1459 if (decode_num (&u
, arg
, TYPE_MAXIMUM (uintmax_t), keyword
))
1460 continued_file_offset
= u
;
1464 volume_filename_decoder (struct tar_stat_info
*st
,
1465 char const *keyword
__attribute__((unused
)),
1467 size_t size
__attribute__((unused
)))
1469 decode_string (&continued_file_name
, arg
);
1473 sparse_major_coder (struct tar_stat_info
const *st
, char const *keyword
,
1474 struct xheader
*xhdr
, void const *data
)
1476 code_num (st
->sparse_major
, keyword
, xhdr
);
1480 sparse_major_decoder (struct tar_stat_info
*st
,
1481 char const *keyword
,
1486 if (decode_num (&u
, arg
, TYPE_MAXIMUM (unsigned), keyword
))
1487 st
->sparse_major
= u
;
1491 sparse_minor_coder (struct tar_stat_info
const *st
, char const *keyword
,
1492 struct xheader
*xhdr
, void const *data
)
1494 code_num (st
->sparse_minor
, keyword
, xhdr
);
1498 sparse_minor_decoder (struct tar_stat_info
*st
,
1499 char const *keyword
,
1504 if (decode_num (&u
, arg
, TYPE_MAXIMUM (unsigned), keyword
))
1505 st
->sparse_minor
= u
;
1508 struct xhdr_tab
const xhdr_tab
[] = {
1509 { "atime", atime_coder
, atime_decoder
, 0 },
1510 { "comment", dummy_coder
, dummy_decoder
, 0 },
1511 { "charset", dummy_coder
, dummy_decoder
, 0 },
1512 { "ctime", ctime_coder
, ctime_decoder
, 0 },
1513 { "gid", gid_coder
, gid_decoder
, 0 },
1514 { "gname", gname_coder
, gname_decoder
, 0 },
1515 { "linkpath", linkpath_coder
, linkpath_decoder
, 0 },
1516 { "mtime", mtime_coder
, mtime_decoder
, 0 },
1517 { "path", path_coder
, path_decoder
, 0 },
1518 { "size", size_coder
, size_decoder
, 0 },
1519 { "uid", uid_coder
, uid_decoder
, 0 },
1520 { "uname", uname_coder
, uname_decoder
, 0 },
1522 /* Sparse file handling */
1523 { "GNU.sparse.name", path_coder
, path_decoder
,
1525 { "GNU.sparse.major", sparse_major_coder
, sparse_major_decoder
,
1527 { "GNU.sparse.minor", sparse_minor_coder
, sparse_minor_decoder
,
1529 { "GNU.sparse.realsize", sparse_size_coder
, sparse_size_decoder
,
1531 { "GNU.sparse.numblocks", sparse_numblocks_coder
, sparse_numblocks_decoder
,
1534 /* tar 1.14 - 1.15.90 keywords. */
1535 { "GNU.sparse.size", sparse_size_coder
, sparse_size_decoder
,
1537 /* tar 1.14 - 1.15.1 keywords. Multiple instances of these appeared in 'x'
1538 headers, and each of them was meaningful. It confilcted with POSIX specs,
1539 which requires that "when extended header records conflict, the last one
1540 given in the header shall take precedence." */
1541 { "GNU.sparse.offset", sparse_offset_coder
, sparse_offset_decoder
,
1543 { "GNU.sparse.numbytes", sparse_numbytes_coder
, sparse_numbytes_decoder
,
1545 /* tar 1.15.90 keyword, introduced to remove the above-mentioned conflict. */
1546 { "GNU.sparse.map", NULL
/* Unused, see pax_dump_header() */,
1547 sparse_map_decoder
, 0 },
1549 { "GNU.dumpdir", dumpdir_coder
, dumpdir_decoder
,
1552 /* Keeps the tape/volume label. May be present only in the global headers.
1553 Equivalent to GNUTYPE_VOLHDR. */
1554 { "GNU.volume.label", volume_label_coder
, volume_label_decoder
,
1555 XHDR_PROTECTED
| XHDR_GLOBAL
},
1557 /* These may be present in a first global header of the archive.
1558 They provide the same functionality as GNUTYPE_MULTIVOL header.
1559 The GNU.volume.size keeps the real_s_sizeleft value, which is
1560 otherwise kept in the size field of a multivolume header. The
1561 GNU.volume.offset keeps the offset of the start of this volume,
1562 otherwise kept in oldgnu_header.offset. */
1563 { "GNU.volume.filename", volume_label_coder
, volume_filename_decoder
,
1564 XHDR_PROTECTED
| XHDR_GLOBAL
},
1565 { "GNU.volume.size", volume_size_coder
, volume_size_decoder
,
1566 XHDR_PROTECTED
| XHDR_GLOBAL
},
1567 { "GNU.volume.offset", volume_offset_coder
, volume_offset_decoder
,
1568 XHDR_PROTECTED
| XHDR_GLOBAL
},
1570 { NULL
, NULL
, NULL
, 0 }