]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libarchive/archive_read_support_format_tar.c
This commit was generated by cvs2svn to compensate for changes in r170964,
[FreeBSD/FreeBSD.git] / lib / libarchive / archive_read_support_format_tar.c
1 /*-
2  * Copyright (c) 2003-2007 Tim Kientzle
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "archive_platform.h"
27 __FBSDID("$FreeBSD$");
28
29 #ifdef HAVE_ERRNO_H
30 #include <errno.h>
31 #endif
32 #include <stddef.h>
33 /* #include <stdint.h> */ /* See archive_platform.h */
34 #ifdef HAVE_STDLIB_H
35 #include <stdlib.h>
36 #endif
37 #ifdef HAVE_STRING_H
38 #include <string.h>
39 #endif
40
41 /* Obtain suitable wide-character manipulation functions. */
42 #ifdef HAVE_WCHAR_H
43 #include <wchar.h>
44 #else
45 /* Good enough for equality testing, which is all we need. */
46 static int wcscmp(const wchar_t *s1, const wchar_t *s2)
47 {
48         int diff = *s1 - *s2;
49         while (*s1 && diff == 0)
50                 diff = (int)*++s1 - (int)*++s2;
51         return diff;
52 }
53 /* Good enough for equality testing, which is all we need. */
54 static int wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n)
55 {
56         int diff = *s1 - *s2;
57         while (*s1 && diff == 0 && n-- > 0)
58                 diff = (int)*++s1 - (int)*++s2;
59         return diff;
60 }
61 static size_t wcslen(const wchar_t *s)
62 {
63         const wchar_t *p = s;
64         while (*p)
65                 p++;
66         return p - s;
67 }
68 #endif
69
70 #include "archive.h"
71 #include "archive_entry.h"
72 #include "archive_private.h"
73 #include "archive_read_private.h"
74
75 /*
76  * Layout of POSIX 'ustar' tar header.
77  */
78 struct archive_entry_header_ustar {
79         char    name[100];
80         char    mode[8];
81         char    uid[8];
82         char    gid[8];
83         char    size[12];
84         char    mtime[12];
85         char    checksum[8];
86         char    typeflag[1];
87         char    linkname[100];  /* "old format" header ends here */
88         char    magic[6];       /* For POSIX: "ustar\0" */
89         char    version[2];     /* For POSIX: "00" */
90         char    uname[32];
91         char    gname[32];
92         char    rdevmajor[8];
93         char    rdevminor[8];
94         char    prefix[155];
95 };
96
97 /*
98  * Structure of GNU tar header
99  */
100 struct gnu_sparse {
101         char    offset[12];
102         char    numbytes[12];
103 };
104
105 struct archive_entry_header_gnutar {
106         char    name[100];
107         char    mode[8];
108         char    uid[8];
109         char    gid[8];
110         char    size[12];
111         char    mtime[12];
112         char    checksum[8];
113         char    typeflag[1];
114         char    linkname[100];
115         char    magic[8];  /* "ustar  \0" (note blank/blank/null at end) */
116         char    uname[32];
117         char    gname[32];
118         char    rdevmajor[8];
119         char    rdevminor[8];
120         char    atime[12];
121         char    ctime[12];
122         char    offset[12];
123         char    longnames[4];
124         char    unused[1];
125         struct gnu_sparse sparse[4];
126         char    isextended[1];
127         char    realsize[12];
128         /*
129          * GNU doesn't use POSIX 'prefix' field; they use the 'L' (longname)
130          * entry instead.
131          */
132 };
133
134 /*
135  * Data specific to this format.
136  */
137 struct sparse_block {
138         struct sparse_block     *next;
139         off_t   offset;
140         off_t   remaining;
141 };
142
143 struct tar {
144         struct archive_string    acl_text;
145         struct archive_string    entry_name;
146         struct archive_string    entry_linkname;
147         struct archive_string    entry_uname;
148         struct archive_string    entry_gname;
149         struct archive_string    longlink;
150         struct archive_string    longname;
151         struct archive_string    pax_header;
152         struct archive_string    pax_global;
153         struct archive_string    line;
154         wchar_t                 *pax_entry;
155         size_t                   pax_entry_length;
156         int                      header_recursion_depth;
157         off_t                    entry_bytes_remaining;
158         off_t                    entry_offset;
159         off_t                    entry_padding;
160         off_t                    realsize;
161         struct sparse_block     *sparse_list;
162         struct sparse_block     *sparse_last;
163         int64_t                  sparse_offset;
164         int64_t                  sparse_numbytes;
165         int                      sparse_gnu_major;
166         int                      sparse_gnu_minor;
167         char                     sparse_gnu_pending;
168 };
169
170 static size_t   UTF8_mbrtowc(wchar_t *pwc, const char *s, size_t n);
171 static int      archive_block_is_null(const unsigned char *p);
172 static char     *base64_decode(const wchar_t *, size_t, size_t *);
173 static void      gnu_add_sparse_entry(struct tar *,
174                     off_t offset, off_t remaining);
175 static int      gnu_sparse_old_read(struct archive_read *, struct tar *,
176                     const struct archive_entry_header_gnutar *header);
177 static void     gnu_sparse_old_parse(struct tar *,
178                     const struct gnu_sparse *sparse, int length);
179 static int      gnu_sparse_01_parse(struct tar *, const wchar_t *);
180 static ssize_t  gnu_sparse_10_read(struct archive_read *, struct tar *);
181 static int      header_Solaris_ACL(struct archive_read *,  struct tar *,
182                     struct archive_entry *, const void *);
183 static int      header_common(struct archive_read *,  struct tar *,
184                     struct archive_entry *, const void *);
185 static int      header_old_tar(struct archive_read *, struct tar *,
186                     struct archive_entry *, const void *);
187 static int      header_pax_extensions(struct archive_read *, struct tar *,
188                     struct archive_entry *, const void *);
189 static int      header_pax_global(struct archive_read *, struct tar *,
190                     struct archive_entry *, const void *h);
191 static int      header_longlink(struct archive_read *, struct tar *,
192                     struct archive_entry *, const void *h);
193 static int      header_longname(struct archive_read *, struct tar *,
194                     struct archive_entry *, const void *h);
195 static int      header_volume(struct archive_read *, struct tar *,
196                     struct archive_entry *, const void *h);
197 static int      header_ustar(struct archive_read *, struct tar *,
198                     struct archive_entry *, const void *h);
199 static int      header_gnutar(struct archive_read *, struct tar *,
200                     struct archive_entry *, const void *h);
201 static int      archive_read_format_tar_bid(struct archive_read *);
202 static int      archive_read_format_tar_cleanup(struct archive_read *);
203 static int      archive_read_format_tar_read_data(struct archive_read *a,
204                     const void **buff, size_t *size, off_t *offset);
205 static int      archive_read_format_tar_skip(struct archive_read *a);
206 static int      archive_read_format_tar_read_header(struct archive_read *,
207                     struct archive_entry *);
208 static int      checksum(struct archive_read *, const void *);
209 static int      pax_attribute(struct tar *, struct archive_entry *,
210                     wchar_t *key, wchar_t *value);
211 static int      pax_header(struct archive_read *, struct tar *,
212                     struct archive_entry *, char *attr);
213 static void     pax_time(const wchar_t *, int64_t *sec, long *nanos);
214 static ssize_t  readline(struct archive_read *, struct tar *, const char **);
215 static int      read_body_to_string(struct archive_read *, struct tar *,
216                     struct archive_string *, const void *h);
217 static int64_t  tar_atol(const char *, unsigned);
218 static int64_t  tar_atol10(const wchar_t *, unsigned);
219 static int64_t  tar_atol256(const char *, unsigned);
220 static int64_t  tar_atol8(const char *, unsigned);
221 static int      tar_read_header(struct archive_read *, struct tar *,
222                     struct archive_entry *);
223 static int      tohex(int c);
224 static char     *url_decode(const char *);
225 static int      utf8_decode(wchar_t *, const char *, size_t length);
226 static char     *wide_to_narrow(const wchar_t *wval);
227
228 int
229 archive_read_support_format_gnutar(struct archive *a)
230 {
231         return (archive_read_support_format_tar(a));
232 }
233
234
235 int
236 archive_read_support_format_tar(struct archive *_a)
237 {
238         struct archive_read *a = (struct archive_read *)_a;
239         struct tar *tar;
240         int r;
241
242         tar = (struct tar *)malloc(sizeof(*tar));
243         if (tar == NULL) {
244                 archive_set_error(&a->archive, ENOMEM,
245                     "Can't allocate tar data");
246                 return (ARCHIVE_FATAL);
247         }
248         memset(tar, 0, sizeof(*tar));
249
250         r = __archive_read_register_format(a, tar,
251             archive_read_format_tar_bid,
252             archive_read_format_tar_read_header,
253             archive_read_format_tar_read_data,
254             archive_read_format_tar_skip,
255             archive_read_format_tar_cleanup);
256
257         if (r != ARCHIVE_OK)
258                 free(tar);
259         return (ARCHIVE_OK);
260 }
261
262 static int
263 archive_read_format_tar_cleanup(struct archive_read *a)
264 {
265         struct tar *tar;
266         struct sparse_block *p;
267
268         tar = (struct tar *)(a->format->data);
269         while (tar->sparse_list != NULL) {
270                 p = tar->sparse_list;
271                 tar->sparse_list = p->next;
272                 free(p);
273         }
274         archive_string_free(&tar->acl_text);
275         archive_string_free(&tar->entry_name);
276         archive_string_free(&tar->entry_linkname);
277         archive_string_free(&tar->entry_uname);
278         archive_string_free(&tar->entry_gname);
279         archive_string_free(&tar->line);
280         archive_string_free(&tar->pax_global);
281         archive_string_free(&tar->pax_header);
282         free(tar->pax_entry);
283         free(tar);
284         (a->format->data) = NULL;
285         return (ARCHIVE_OK);
286 }
287
288
289 static int
290 archive_read_format_tar_bid(struct archive_read *a)
291 {
292         int bid;
293         ssize_t bytes_read;
294         const void *h;
295         const struct archive_entry_header_ustar *header;
296
297         /*
298          * If we're already reading a non-tar file, don't
299          * bother to bid.
300          */
301         if (a->archive.archive_format != 0 &&
302             (a->archive.archive_format & ARCHIVE_FORMAT_BASE_MASK) !=
303             ARCHIVE_FORMAT_TAR)
304                 return (0);
305         bid = 0;
306
307         /*
308          * If we're already reading a tar format, start the bid at 1 as
309          * a failsafe.
310          */
311         if ((a->archive.archive_format & ARCHIVE_FORMAT_BASE_MASK) ==
312             ARCHIVE_FORMAT_TAR)
313                 bid++;
314
315         /* Now let's look at the actual header and see if it matches. */
316         if (a->decompressor->read_ahead != NULL)
317                 bytes_read = (a->decompressor->read_ahead)(a, &h, 512);
318         else
319                 bytes_read = 0; /* Empty file. */
320         if (bytes_read < 0)
321                 return (ARCHIVE_FATAL);
322         if (bytes_read == 0  &&  bid > 0) {
323                 /* An archive without a proper end-of-archive marker. */
324                 /* Hold our nose and bid 1 anyway. */
325                 return (1);
326         }
327         if (bytes_read < 512) {
328                 /* If it's a new archive, then just return a zero bid. */
329                 if (bid == 0)
330                         return (0);
331                 /*
332                  * If we already know this is a tar archive,
333                  * then we have a problem.
334                  */
335                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
336                     "Truncated tar archive");
337                 return (ARCHIVE_FATAL);
338         }
339
340         /* If it's an end-of-archive mark, we can handle it. */
341         if ((*(const char *)h) == 0 && archive_block_is_null((const unsigned char *)h)) {
342                 /* If it's a known tar file, end-of-archive is definite. */
343                 if ((a->archive.archive_format & ARCHIVE_FORMAT_BASE_MASK) ==
344                     ARCHIVE_FORMAT_TAR)
345                         return (512);
346                 /* Empty archive? */
347                 return (1);
348         }
349
350         /* If it's not an end-of-archive mark, it must have a valid checksum.*/
351         if (!checksum(a, h))
352                 return (0);
353         bid += 48;  /* Checksum is usually 6 octal digits. */
354
355         header = (const struct archive_entry_header_ustar *)h;
356
357         /* Recognize POSIX formats. */
358         if ((memcmp(header->magic, "ustar\0", 6) == 0)
359             &&(memcmp(header->version, "00", 2)==0))
360                 bid += 56;
361
362         /* Recognize GNU tar format. */
363         if ((memcmp(header->magic, "ustar ", 6) == 0)
364             &&(memcmp(header->version, " \0", 2)==0))
365                 bid += 56;
366
367         /* Type flag must be null, digit or A-Z, a-z. */
368         if (header->typeflag[0] != 0 &&
369             !( header->typeflag[0] >= '0' && header->typeflag[0] <= '9') &&
370             !( header->typeflag[0] >= 'A' && header->typeflag[0] <= 'Z') &&
371             !( header->typeflag[0] >= 'a' && header->typeflag[0] <= 'z') )
372                 return (0);
373         bid += 2;  /* 6 bits of variation in an 8-bit field leaves 2 bits. */
374
375         /* Sanity check: Look at first byte of mode field. */
376         switch (255 & (unsigned)header->mode[0]) {
377         case 0: case 255:
378                 /* Base-256 value: No further verification possible! */
379                 break;
380         case ' ': /* Not recommended, but not illegal, either. */
381                 break;
382         case '0': case '1': case '2': case '3':
383         case '4': case '5': case '6': case '7':
384                 /* Octal Value. */
385                 /* TODO: Check format of remainder of this field. */
386                 break;
387         default:
388                 /* Not a valid mode; bail out here. */
389                 return (0);
390         }
391         /* TODO: Sanity test uid/gid/size/mtime/rdevmajor/rdevminor fields. */
392
393         return (bid);
394 }
395
396 /*
397  * The function invoked by archive_read_header().  This
398  * just sets up a few things and then calls the internal
399  * tar_read_header() function below.
400  */
401 static int
402 archive_read_format_tar_read_header(struct archive_read *a,
403     struct archive_entry *entry)
404 {
405         /*
406          * When converting tar archives to cpio archives, it is
407          * essential that each distinct file have a distinct inode
408          * number.  To simplify this, we keep a static count here to
409          * assign fake dev/inode numbers to each tar entry.  Note that
410          * pax format archives may overwrite this with something more
411          * useful.
412          *
413          * Ideally, we would track every file read from the archive so
414          * that we could assign the same dev/ino pair to hardlinks,
415          * but the memory required to store a complete lookup table is
416          * probably not worthwhile just to support the relatively
417          * obscure tar->cpio conversion case.
418          */
419         static int default_inode;
420         static int default_dev;
421         struct tar *tar;
422         struct sparse_block *sp;
423         const char *p;
424         int r;
425         size_t l;
426         ssize_t size;
427
428         /* Assign default device/inode values. */
429         archive_entry_set_dev(entry, 1 + default_dev); /* Don't use zero. */
430         archive_entry_set_ino(entry, ++default_inode); /* Don't use zero. */
431         /* Limit generated st_ino number to 16 bits. */
432         if (default_inode >= 0xffff) {
433                 ++default_dev;
434                 default_inode = 0;
435         }
436
437         tar = (struct tar *)(a->format->data);
438         tar->entry_offset = 0;
439         while (tar->sparse_list != NULL) {
440                 sp = tar->sparse_list;
441                 tar->sparse_list = sp->next;
442                 free(sp);
443         }
444         tar->sparse_last = NULL;
445
446         r = tar_read_header(a, tar, entry);
447
448         /*
449          * Yuck.  See comments for gnu_sparse_10_read for why this
450          * is here and not in _read_data where it "should" go.
451          */
452         if (tar->sparse_gnu_pending
453             && tar->sparse_gnu_major == 1
454             && tar->sparse_gnu_minor == 0) {
455                 tar->sparse_gnu_pending = 0;
456                 /* Read initial sparse map. */
457                 size = gnu_sparse_10_read(a, tar);
458                 if (size < 0)
459                         return (size);
460                 tar->entry_bytes_remaining -= size;
461                 tar->entry_padding += size;
462         }
463
464         /*
465          * "non-sparse" files are really just sparse files with
466          * a single block.
467          */
468         if (tar->sparse_list == NULL)
469                 gnu_add_sparse_entry(tar, 0, tar->entry_bytes_remaining);
470
471         tar->realsize = archive_entry_size(entry);
472
473         if (r == ARCHIVE_OK) {
474                 /*
475                  * "Regular" entry with trailing '/' is really
476                  * directory: This is needed for certain old tar
477                  * variants and even for some broken newer ones.
478                  */
479                 p = archive_entry_pathname(entry);
480                 l = strlen(p);
481                 if (archive_entry_filetype(entry) == AE_IFREG
482                     && p[l-1] == '/')
483                         archive_entry_set_filetype(entry, AE_IFDIR);
484         }
485         return (r);
486 }
487
488 static int
489 archive_read_format_tar_read_data(struct archive_read *a,
490     const void **buff, size_t *size, off_t *offset)
491 {
492         ssize_t bytes_read;
493         struct tar *tar;
494         struct sparse_block *p;
495
496         tar = (struct tar *)(a->format->data);
497
498         if (tar->sparse_gnu_pending) {
499                 if (tar->sparse_gnu_major == 1 && tar->sparse_gnu_minor == 0) {
500                         /*
501                          * <sigh> We should parse the sparse data
502                          * here, but have to parse it as part of the
503                          * header because of a bug in GNU tar 1.16.1.
504                          */
505                 } else {
506                         *size = 0;
507                         *offset = 0;
508                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
509                             "Unrecognized GNU sparse file format");
510                         return (ARCHIVE_WARN);
511                 }
512                 tar->sparse_gnu_pending = 0;
513         }
514
515         /* Remove exhausted entries from sparse list. */
516         while (tar->sparse_list != NULL &&
517             tar->sparse_list->remaining == 0) {
518                 p = tar->sparse_list;
519                 tar->sparse_list = p->next;
520                 free(p);
521         }
522
523         /* If we're at end of file, return EOF. */
524         if (tar->sparse_list == NULL || tar->entry_bytes_remaining == 0) {
525                 if ((a->decompressor->skip)(a, tar->entry_padding) < 0)
526                         return (ARCHIVE_FATAL);
527                 tar->entry_padding = 0;
528                 *buff = NULL;
529                 *size = 0;
530                 *offset = tar->realsize;
531                 return (ARCHIVE_EOF);
532         }
533
534         bytes_read = (a->decompressor->read_ahead)(a, buff, 1);
535         if (bytes_read == 0) {
536                 archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
537                     "Truncated tar archive");
538                 return (ARCHIVE_FATAL);
539         }
540         if (bytes_read < 0)
541                 return (ARCHIVE_FATAL);
542         if (bytes_read > tar->entry_bytes_remaining)
543                 bytes_read = tar->entry_bytes_remaining;
544         /* Don't read more than is available in the
545          * current sparse block. */
546         if (tar->sparse_list->remaining < bytes_read)
547                 bytes_read = tar->sparse_list->remaining;
548         *size = bytes_read;
549         *offset = tar->sparse_list->offset;
550         tar->sparse_list->remaining -= bytes_read;
551         tar->sparse_list->offset += bytes_read;
552         tar->entry_bytes_remaining -= bytes_read;
553         (a->decompressor->consume)(a, bytes_read);
554         return (ARCHIVE_OK);
555 }
556
557 static int
558 archive_read_format_tar_skip(struct archive_read *a)
559 {
560         off_t bytes_skipped;
561         struct tar* tar;
562         struct sparse_block *p;
563
564         tar = (struct tar *)(a->format->data);
565
566         /*
567          * Compression layer skip functions are required to either skip the
568          * length requested or fail, so we can rely upon the entire entry
569          * plus padding being skipped.
570          */
571         bytes_skipped = (a->decompressor->skip)(a, tar->entry_bytes_remaining +
572             tar->entry_padding);
573         if (bytes_skipped < 0)
574                 return (ARCHIVE_FATAL);
575
576         tar->entry_bytes_remaining = 0;
577         tar->entry_padding = 0;
578
579         /* Free the sparse list. */
580         while (tar->sparse_list != NULL) {
581                 p = tar->sparse_list;
582                 tar->sparse_list = p->next;
583                 free(p);
584         }
585         tar->sparse_last = NULL;
586
587         return (ARCHIVE_OK);
588 }
589
590 /*
591  * This function recursively interprets all of the headers associated
592  * with a single entry.
593  */
594 static int
595 tar_read_header(struct archive_read *a, struct tar *tar,
596     struct archive_entry *entry)
597 {
598         ssize_t bytes;
599         int err;
600         const void *h;
601         const struct archive_entry_header_ustar *header;
602
603         /* Read 512-byte header record */
604         bytes = (a->decompressor->read_ahead)(a, &h, 512);
605         if (bytes < 512) {
606                 /*
607                  * If we're here, it's becase the _bid function accepted
608                  * this file.  So just call a short read end-of-archive
609                  * and be done with it.
610                  */
611                 return (ARCHIVE_EOF);
612         }
613         (a->decompressor->consume)(a, 512);
614
615         /* Check for end-of-archive mark. */
616         if (((*(const char *)h)==0) && archive_block_is_null((const unsigned char *)h)) {
617                 /* Try to consume a second all-null record, as well. */
618                 bytes = (a->decompressor->read_ahead)(a, &h, 512);
619                 if (bytes > 0)
620                         (a->decompressor->consume)(a, bytes);
621                 archive_set_error(&a->archive, 0, NULL);
622                 return (ARCHIVE_EOF);
623         }
624
625         /*
626          * Note: If the checksum fails and we return ARCHIVE_RETRY,
627          * then the client is likely to just retry.  This is a very
628          * crude way to search for the next valid header!
629          *
630          * TODO: Improve this by implementing a real header scan.
631          */
632         if (!checksum(a, h)) {
633                 archive_set_error(&a->archive, EINVAL, "Damaged tar archive");
634                 return (ARCHIVE_RETRY); /* Retryable: Invalid header */
635         }
636
637         if (++tar->header_recursion_depth > 32) {
638                 archive_set_error(&a->archive, EINVAL, "Too many special headers");
639                 return (ARCHIVE_WARN);
640         }
641
642         /* Determine the format variant. */
643         header = (const struct archive_entry_header_ustar *)h;
644         switch(header->typeflag[0]) {
645         case 'A': /* Solaris tar ACL */
646                 a->archive.archive_format = ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE;
647                 a->archive.archive_format_name = "Solaris tar";
648                 err = header_Solaris_ACL(a, tar, entry, h);
649                 break;
650         case 'g': /* POSIX-standard 'g' header. */
651                 a->archive.archive_format = ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE;
652                 a->archive.archive_format_name = "POSIX pax interchange format";
653                 err = header_pax_global(a, tar, entry, h);
654                 break;
655         case 'K': /* Long link name (GNU tar, others) */
656                 err = header_longlink(a, tar, entry, h);
657                 break;
658         case 'L': /* Long filename (GNU tar, others) */
659                 err = header_longname(a, tar, entry, h);
660                 break;
661         case 'V': /* GNU volume header */
662                 err = header_volume(a, tar, entry, h);
663                 break;
664         case 'X': /* Used by SUN tar; same as 'x'. */
665                 a->archive.archive_format = ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE;
666                 a->archive.archive_format_name =
667                     "POSIX pax interchange format (Sun variant)";
668                 err = header_pax_extensions(a, tar, entry, h);
669                 break;
670         case 'x': /* POSIX-standard 'x' header. */
671                 a->archive.archive_format = ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE;
672                 a->archive.archive_format_name = "POSIX pax interchange format";
673                 err = header_pax_extensions(a, tar, entry, h);
674                 break;
675         default:
676                 if (memcmp(header->magic, "ustar  \0", 8) == 0) {
677                         a->archive.archive_format = ARCHIVE_FORMAT_TAR_GNUTAR;
678                         a->archive.archive_format_name = "GNU tar format";
679                         err = header_gnutar(a, tar, entry, h);
680                 } else if (memcmp(header->magic, "ustar", 5) == 0) {
681                         if (a->archive.archive_format != ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE) {
682                                 a->archive.archive_format = ARCHIVE_FORMAT_TAR_USTAR;
683                                 a->archive.archive_format_name = "POSIX ustar format";
684                         }
685                         err = header_ustar(a, tar, entry, h);
686                 } else {
687                         a->archive.archive_format = ARCHIVE_FORMAT_TAR;
688                         a->archive.archive_format_name = "tar (non-POSIX)";
689                         err = header_old_tar(a, tar, entry, h);
690                 }
691         }
692         --tar->header_recursion_depth;
693         return (err);
694 }
695
696 /*
697  * Return true if block checksum is correct.
698  */
699 static int
700 checksum(struct archive_read *a, const void *h)
701 {
702         const unsigned char *bytes;
703         const struct archive_entry_header_ustar *header;
704         int check, i, sum;
705
706         (void)a; /* UNUSED */
707         bytes = (const unsigned char *)h;
708         header = (const struct archive_entry_header_ustar *)h;
709
710         /*
711          * Test the checksum.  Note that POSIX specifies _unsigned_
712          * bytes for this calculation.
713          */
714         sum = tar_atol(header->checksum, sizeof(header->checksum));
715         check = 0;
716         for (i = 0; i < 148; i++)
717                 check += (unsigned char)bytes[i];
718         for (; i < 156; i++)
719                 check += 32;
720         for (; i < 512; i++)
721                 check += (unsigned char)bytes[i];
722         if (sum == check)
723                 return (1);
724
725         /*
726          * Repeat test with _signed_ bytes, just in case this archive
727          * was created by an old BSD, Solaris, or HP-UX tar with a
728          * broken checksum calculation.
729          */
730         check = 0;
731         for (i = 0; i < 148; i++)
732                 check += (signed char)bytes[i];
733         for (; i < 156; i++)
734                 check += 32;
735         for (; i < 512; i++)
736                 check += (signed char)bytes[i];
737         if (sum == check)
738                 return (1);
739
740         return (0);
741 }
742
743 /*
744  * Return true if this block contains only nulls.
745  */
746 static int
747 archive_block_is_null(const unsigned char *p)
748 {
749         unsigned i;
750
751         for (i = 0; i < ARCHIVE_BYTES_PER_RECORD / sizeof(*p); i++)
752                 if (*p++)
753                         return (0);
754         return (1);
755 }
756
757 /*
758  * Interpret 'A' Solaris ACL header
759  */
760 static int
761 header_Solaris_ACL(struct archive_read *a, struct tar *tar,
762     struct archive_entry *entry, const void *h)
763 {
764         int err, err2;
765         char *p;
766         wchar_t *wp;
767
768         err = read_body_to_string(a, tar, &(tar->acl_text), h);
769         err2 = tar_read_header(a, tar, entry);
770         err = err_combine(err, err2);
771
772         /* XXX Ensure p doesn't overrun acl_text */
773
774         /* Skip leading octal number. */
775         /* XXX TODO: Parse the octal number and sanity-check it. */
776         p = tar->acl_text.s;
777         while (*p != '\0')
778                 p++;
779         p++;
780
781         wp = (wchar_t *)malloc((strlen(p) + 1) * sizeof(wchar_t));
782         if (wp != NULL) {
783                 utf8_decode(wp, p, strlen(p));
784                 err2 = __archive_entry_acl_parse_w(entry, wp,
785                     ARCHIVE_ENTRY_ACL_TYPE_ACCESS);
786                 err = err_combine(err, err2);
787                 free(wp);
788         }
789
790         return (err);
791 }
792
793 /*
794  * Interpret 'K' long linkname header.
795  */
796 static int
797 header_longlink(struct archive_read *a, struct tar *tar,
798     struct archive_entry *entry, const void *h)
799 {
800         int err, err2;
801
802         err = read_body_to_string(a, tar, &(tar->longlink), h);
803         err2 = tar_read_header(a, tar, entry);
804         if (err == ARCHIVE_OK && err2 == ARCHIVE_OK) {
805                 /* Set symlink if symlink already set, else hardlink. */
806                 archive_entry_set_link(entry, tar->longlink.s);
807         }
808         return (err_combine(err, err2));
809 }
810
811 /*
812  * Interpret 'L' long filename header.
813  */
814 static int
815 header_longname(struct archive_read *a, struct tar *tar,
816     struct archive_entry *entry, const void *h)
817 {
818         int err, err2;
819
820         err = read_body_to_string(a, tar, &(tar->longname), h);
821         /* Read and parse "real" header, then override name. */
822         err2 = tar_read_header(a, tar, entry);
823         if (err == ARCHIVE_OK && err2 == ARCHIVE_OK)
824                 archive_entry_set_pathname(entry, tar->longname.s);
825         return (err_combine(err, err2));
826 }
827
828
829 /*
830  * Interpret 'V' GNU tar volume header.
831  */
832 static int
833 header_volume(struct archive_read *a, struct tar *tar,
834     struct archive_entry *entry, const void *h)
835 {
836         (void)h;
837
838         /* Just skip this and read the next header. */
839         return (tar_read_header(a, tar, entry));
840 }
841
842 /*
843  * Read body of an archive entry into an archive_string object.
844  */
845 static int
846 read_body_to_string(struct archive_read *a, struct tar *tar,
847     struct archive_string *as, const void *h)
848 {
849         off_t size, padded_size;
850         ssize_t bytes_read, bytes_to_copy;
851         const struct archive_entry_header_ustar *header;
852         const void *src;
853         char *dest;
854
855         (void)tar; /* UNUSED */
856         header = (const struct archive_entry_header_ustar *)h;
857         size  = tar_atol(header->size, sizeof(header->size));
858
859         /* Read the body into the string. */
860         archive_string_ensure(as, size+1);
861         padded_size = (size + 511) & ~ 511;
862         dest = as->s;
863         while (padded_size > 0) {
864                 bytes_read = (a->decompressor->read_ahead)(a, &src, padded_size);
865                 if (bytes_read < 0)
866                         return (ARCHIVE_FATAL);
867                 if (bytes_read > padded_size)
868                         bytes_read = padded_size;
869                 (a->decompressor->consume)(a, bytes_read);
870                 bytes_to_copy = bytes_read;
871                 if ((off_t)bytes_to_copy > size)
872                         bytes_to_copy = (ssize_t)size;
873                 memcpy(dest, src, bytes_to_copy);
874                 dest += bytes_to_copy;
875                 size -= bytes_to_copy;
876                 padded_size -= bytes_read;
877         }
878         *dest = '\0';
879         return (ARCHIVE_OK);
880 }
881
882 /*
883  * Parse out common header elements.
884  *
885  * This would be the same as header_old_tar, except that the
886  * filename is handled slightly differently for old and POSIX
887  * entries  (POSIX entries support a 'prefix').  This factoring
888  * allows header_old_tar and header_ustar
889  * to handle filenames differently, while still putting most of the
890  * common parsing into one place.
891  */
892 static int
893 header_common(struct archive_read *a, struct tar *tar,
894     struct archive_entry *entry, const void *h)
895 {
896         const struct archive_entry_header_ustar *header;
897         char    tartype;
898
899         (void)a; /* UNUSED */
900
901         header = (const struct archive_entry_header_ustar *)h;
902         if (header->linkname[0])
903                 archive_strncpy(&(tar->entry_linkname), header->linkname,
904                     sizeof(header->linkname));
905         else
906                 archive_string_empty(&(tar->entry_linkname));
907
908         /* Parse out the numeric fields (all are octal) */
909         archive_entry_set_mode(entry, tar_atol(header->mode, sizeof(header->mode)));
910         archive_entry_set_uid(entry, tar_atol(header->uid, sizeof(header->uid)));
911         archive_entry_set_gid(entry, tar_atol(header->gid, sizeof(header->gid)));
912         tar->entry_bytes_remaining = tar_atol(header->size, sizeof(header->size));
913         archive_entry_set_size(entry, tar->entry_bytes_remaining);
914         archive_entry_set_mtime(entry, tar_atol(header->mtime, sizeof(header->mtime)), 0);
915
916         /* Handle the tar type flag appropriately. */
917         tartype = header->typeflag[0];
918
919         switch (tartype) {
920         case '1': /* Hard link */
921                 archive_entry_set_hardlink(entry, tar->entry_linkname.s);
922                 /*
923                  * The following may seem odd, but: Technically, tar
924                  * does not store the file type for a "hard link"
925                  * entry, only the fact that it is a hard link.  So, I
926                  * leave the type zero normally.  But, pax interchange
927                  * format allows hard links to have data, which
928                  * implies that the underlying entry is a regular
929                  * file.
930                  */
931                 if (archive_entry_size(entry) > 0)
932                         archive_entry_set_filetype(entry, AE_IFREG);
933
934                 /*
935                  * A tricky point: Traditionally, tar readers have
936                  * ignored the size field when reading hardlink
937                  * entries, and some writers put non-zero sizes even
938                  * though the body is empty.  POSIX.1-2001 broke with
939                  * this tradition by permitting hardlink entries to
940                  * store valid bodies in pax interchange format, but
941                  * not in ustar format.  Since there is no hard and
942                  * fast way to distinguish pax interchange from
943                  * earlier archives (the 'x' and 'g' entries are
944                  * optional, after all), we need a heuristic.  Here, I
945                  * use the bid function to test whether or not there's
946                  * a valid header following.  Of course, if we know
947                  * this is pax interchange format, then we must obey
948                  * the size.
949                  *
950                  * This heuristic will only fail for a pax interchange
951                  * archive that is storing hardlink bodies, no pax
952                  * extended attribute entries have yet occurred, and
953                  * we encounter a hardlink entry for a file that is
954                  * itself an uncompressed tar archive.
955                  */
956                 if (archive_entry_size(entry) > 0  &&
957                     a->archive.archive_format != ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE  &&
958                     archive_read_format_tar_bid(a) > 50) {
959                         archive_entry_set_size(entry, 0);
960                         tar->entry_bytes_remaining = 0;
961                 }
962         case '2': /* Symlink */
963                 archive_entry_set_filetype(entry, AE_IFLNK);
964                 archive_entry_set_size(entry, 0);
965                 tar->entry_bytes_remaining = 0;
966                 archive_entry_set_symlink(entry, tar->entry_linkname.s);
967                 break;
968         case '3': /* Character device */
969                 archive_entry_set_filetype(entry, AE_IFCHR);
970                 archive_entry_set_size(entry, 0);
971                 tar->entry_bytes_remaining = 0;
972                 break;
973         case '4': /* Block device */
974                 archive_entry_set_filetype(entry, AE_IFBLK);
975                 archive_entry_set_size(entry, 0);
976                 tar->entry_bytes_remaining = 0;
977                 break;
978         case '5': /* Dir */
979                 archive_entry_set_filetype(entry, AE_IFDIR);
980                 archive_entry_set_size(entry, 0);
981                 tar->entry_bytes_remaining = 0;
982                 break;
983         case '6': /* FIFO device */
984                 archive_entry_set_filetype(entry, AE_IFIFO);
985                 archive_entry_set_size(entry, 0);
986                 tar->entry_bytes_remaining = 0;
987                 break;
988         case 'D': /* GNU incremental directory type */
989                 /*
990                  * No special handling is actually required here.
991                  * It might be nice someday to preprocess the file list and
992                  * provide it to the client, though.
993                  */
994                 archive_entry_set_filetype(entry, AE_IFDIR);
995                 break;
996         case 'M': /* GNU "Multi-volume" (remainder of file from last archive)*/
997                 /*
998                  * As far as I can tell, this is just like a regular file
999                  * entry, except that the contents should be _appended_ to
1000                  * the indicated file at the indicated offset.  This may
1001                  * require some API work to fully support.
1002                  */
1003                 break;
1004         case 'N': /* Old GNU "long filename" entry. */
1005                 /* The body of this entry is a script for renaming
1006                  * previously-extracted entries.  Ugh.  It will never
1007                  * be supported by libarchive. */
1008                 archive_entry_set_filetype(entry, AE_IFREG);
1009                 break;
1010         case 'S': /* GNU sparse files */
1011                 /*
1012                  * Sparse files are really just regular files with
1013                  * sparse information in the extended area.
1014                  */
1015                 /* FALLTHROUGH */
1016         default: /* Regular file  and non-standard types */
1017                 /*
1018                  * Per POSIX: non-recognized types should always be
1019                  * treated as regular files.
1020                  */
1021                 archive_entry_set_filetype(entry, AE_IFREG);
1022                 break;
1023         }
1024         return (0);
1025 }
1026
1027 /*
1028  * Parse out header elements for "old-style" tar archives.
1029  */
1030 static int
1031 header_old_tar(struct archive_read *a, struct tar *tar,
1032     struct archive_entry *entry, const void *h)
1033 {
1034         const struct archive_entry_header_ustar *header;
1035
1036         /* Copy filename over (to ensure null termination). */
1037         header = (const struct archive_entry_header_ustar *)h;
1038         archive_strncpy(&(tar->entry_name), header->name, sizeof(header->name));
1039         archive_entry_set_pathname(entry, tar->entry_name.s);
1040
1041         /* Grab rest of common fields */
1042         header_common(a, tar, entry, h);
1043
1044         tar->entry_padding = 0x1ff & (-tar->entry_bytes_remaining);
1045         return (0);
1046 }
1047
1048 /*
1049  * Parse a file header for a pax extended archive entry.
1050  */
1051 static int
1052 header_pax_global(struct archive_read *a, struct tar *tar,
1053     struct archive_entry *entry, const void *h)
1054 {
1055         int err, err2;
1056
1057         err = read_body_to_string(a, tar, &(tar->pax_global), h);
1058         err2 = tar_read_header(a, tar, entry);
1059         return (err_combine(err, err2));
1060 }
1061
1062 static int
1063 header_pax_extensions(struct archive_read *a, struct tar *tar,
1064     struct archive_entry *entry, const void *h)
1065 {
1066         int err, err2;
1067
1068         read_body_to_string(a, tar, &(tar->pax_header), h);
1069
1070         /* Parse the next header. */
1071         err = tar_read_header(a, tar, entry);
1072
1073         /*
1074          * TODO: Parse global/default options into 'entry' struct here
1075          * before handling file-specific options.
1076          *
1077          * This design (parse standard header, then overwrite with pax
1078          * extended attribute data) usually works well, but isn't ideal;
1079          * it would be better to parse the pax extended attributes first
1080          * and then skip any fields in the standard header that were
1081          * defined in the pax header.
1082          */
1083         err2 = pax_header(a, tar, entry, tar->pax_header.s);
1084         err =  err_combine(err, err2);
1085         tar->entry_padding = 0x1ff & (-tar->entry_bytes_remaining);
1086         return (err);
1087 }
1088
1089
1090 /*
1091  * Parse a file header for a Posix "ustar" archive entry.  This also
1092  * handles "pax" or "extended ustar" entries.
1093  */
1094 static int
1095 header_ustar(struct archive_read *a, struct tar *tar,
1096     struct archive_entry *entry, const void *h)
1097 {
1098         const struct archive_entry_header_ustar *header;
1099         struct archive_string *as;
1100
1101         header = (const struct archive_entry_header_ustar *)h;
1102
1103         /* Copy name into an internal buffer to ensure null-termination. */
1104         as = &(tar->entry_name);
1105         if (header->prefix[0]) {
1106                 archive_strncpy(as, header->prefix, sizeof(header->prefix));
1107                 if (as->s[archive_strlen(as) - 1] != '/')
1108                         archive_strappend_char(as, '/');
1109                 archive_strncat(as, header->name, sizeof(header->name));
1110         } else
1111                 archive_strncpy(as, header->name, sizeof(header->name));
1112
1113         archive_entry_set_pathname(entry, as->s);
1114
1115         /* Handle rest of common fields. */
1116         header_common(a, tar, entry, h);
1117
1118         /* Handle POSIX ustar fields. */
1119         archive_strncpy(&(tar->entry_uname), header->uname,
1120             sizeof(header->uname));
1121         archive_entry_set_uname(entry, tar->entry_uname.s);
1122
1123         archive_strncpy(&(tar->entry_gname), header->gname,
1124             sizeof(header->gname));
1125         archive_entry_set_gname(entry, tar->entry_gname.s);
1126
1127         /* Parse out device numbers only for char and block specials. */
1128         if (header->typeflag[0] == '3' || header->typeflag[0] == '4') {
1129                 archive_entry_set_rdevmajor(entry,
1130                     tar_atol(header->rdevmajor, sizeof(header->rdevmajor)));
1131                 archive_entry_set_rdevminor(entry,
1132                     tar_atol(header->rdevminor, sizeof(header->rdevminor)));
1133         }
1134
1135         tar->entry_padding = 0x1ff & (-tar->entry_bytes_remaining);
1136
1137         return (0);
1138 }
1139
1140
1141 /*
1142  * Parse the pax extended attributes record.
1143  *
1144  * Returns non-zero if there's an error in the data.
1145  */
1146 static int
1147 pax_header(struct archive_read *a, struct tar *tar,
1148     struct archive_entry *entry, char *attr)
1149 {
1150         size_t attr_length, l, line_length;
1151         char *line, *p;
1152         wchar_t *key, *wp, *value;
1153         int err, err2;
1154
1155         attr_length = strlen(attr);
1156         err = ARCHIVE_OK;
1157         while (attr_length > 0) {
1158                 /* Parse decimal length field at start of line. */
1159                 line_length = 0;
1160                 l = attr_length;
1161                 line = p = attr; /* Record start of line. */
1162                 while (l>0) {
1163                         if (*p == ' ') {
1164                                 p++;
1165                                 l--;
1166                                 break;
1167                         }
1168                         if (*p < '0' || *p > '9')
1169                                 return (-1);
1170                         line_length *= 10;
1171                         line_length += *p - '0';
1172                         if (line_length > 999999) {
1173                                 archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
1174                                     "Rejecting pax extended attribute > 1MB");
1175                                 return (ARCHIVE_WARN);
1176                         }
1177                         p++;
1178                         l--;
1179                 }
1180
1181                 if (line_length > attr_length)
1182                         return (0);
1183
1184                 /* Ensure pax_entry buffer is big enough. */
1185                 if (tar->pax_entry_length <= line_length) {
1186                         wchar_t *old_entry = tar->pax_entry;
1187
1188                         if (tar->pax_entry_length <= 0)
1189                                 tar->pax_entry_length = 1024;
1190                         while (tar->pax_entry_length <= line_length + 1)
1191                                 tar->pax_entry_length *= 2;
1192
1193                         old_entry = tar->pax_entry;
1194                         tar->pax_entry = (wchar_t *)realloc(tar->pax_entry,
1195                             tar->pax_entry_length * sizeof(wchar_t));
1196                         if (tar->pax_entry == NULL) {
1197                                 free(old_entry);
1198                                 archive_set_error(&a->archive, ENOMEM,
1199                                         "No memory");
1200                                 return (ARCHIVE_FATAL);
1201                         }
1202                 }
1203
1204                 /* Decode UTF-8 to wchar_t, null-terminate result. */
1205                 if (utf8_decode(tar->pax_entry, p,
1206                         line_length - (p - attr) - 1)) {
1207                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
1208                            "Invalid UTF8 character in pax extended attribute");
1209                         err = err_combine(err, ARCHIVE_WARN);
1210                 }
1211
1212                 /* Null-terminate 'key' value. */
1213                 wp = key = tar->pax_entry;
1214                 if (key[0] == L'=')
1215                         return (-1);
1216                 while (*wp && *wp != L'=')
1217                         ++wp;
1218                 if (*wp == L'\0') {
1219                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
1220                             "Invalid pax extended attributes");
1221                         return (ARCHIVE_WARN);
1222                 }
1223                 *wp = 0;
1224
1225                 /* Identify null-terminated 'value' portion. */
1226                 value = wp + 1;
1227
1228                 /* Identify this attribute and set it in the entry. */
1229                 err2 = pax_attribute(tar, entry, key, value);
1230                 err = err_combine(err, err2);
1231
1232                 /* Skip to next line */
1233                 attr += line_length;
1234                 attr_length -= line_length;
1235         }
1236         return (err);
1237 }
1238
1239 static int
1240 pax_attribute_xattr(struct archive_entry *entry,
1241         wchar_t *name, wchar_t *value)
1242 {
1243         char *name_decoded, *name_narrow;
1244         void *value_decoded;
1245         size_t value_len;
1246
1247         if (wcslen(name) < 18 || (wcsncmp(name, L"LIBARCHIVE.xattr.", 17)) != 0)
1248                 return 3;
1249
1250         name += 17;
1251
1252         /* URL-decode name */
1253         name_narrow = wide_to_narrow(name);
1254         if (name_narrow == NULL)
1255                 return 2;
1256         name_decoded = url_decode(name_narrow);
1257         free(name_narrow);
1258         if (name_decoded == NULL)
1259                 return 2;
1260
1261         /* Base-64 decode value */
1262         value_decoded = base64_decode(value, wcslen(value), &value_len);
1263         if (value_decoded == NULL) {
1264                 free(name_decoded);
1265                 return 1;
1266         }
1267
1268         archive_entry_xattr_add_entry(entry, name_decoded,
1269                 value_decoded, value_len);
1270
1271         free(name_decoded);
1272         free(value_decoded);
1273         return 0;
1274 }
1275
1276 /*
1277  * Parse a single key=value attribute.  key/value pointers are
1278  * assumed to point into reasonably long-lived storage.
1279  *
1280  * Note that POSIX reserves all-lowercase keywords.  Vendor-specific
1281  * extensions should always have keywords of the form "VENDOR.attribute"
1282  * In particular, it's quite feasible to support many different
1283  * vendor extensions here.  I'm using "LIBARCHIVE" for extensions
1284  * unique to this library.
1285  *
1286  * Investigate other vendor-specific extensions and see if
1287  * any of them look useful.
1288  */
1289 static int
1290 pax_attribute(struct tar *tar, struct archive_entry *entry,
1291     wchar_t *key, wchar_t *value)
1292 {
1293         int64_t s;
1294         long n;
1295
1296         switch (key[0]) {
1297         case 'G':
1298                 /* GNU "0.0" sparse pax format. */
1299                 if (wcscmp(key, L"GNU.sparse.numblocks") == 0) {
1300                         tar->sparse_offset = -1;
1301                         tar->sparse_numbytes = -1;
1302                         tar->sparse_gnu_major = 0;
1303                         tar->sparse_gnu_minor = 0;
1304                 }
1305                 if (wcscmp(key, L"GNU.sparse.offset") == 0) {
1306                         tar->sparse_offset = tar_atol10(value, wcslen(value));
1307                         if (tar->sparse_numbytes != -1) {
1308                                 gnu_add_sparse_entry(tar,
1309                                     tar->sparse_offset, tar->sparse_numbytes);
1310                                 tar->sparse_offset = -1;
1311                                 tar->sparse_numbytes = -1;
1312                         }
1313                 }
1314                 if (wcscmp(key, L"GNU.sparse.numbytes") == 0) {
1315                         tar->sparse_numbytes = tar_atol10(value, wcslen(value));
1316                         if (tar->sparse_numbytes != -1) {
1317                                 gnu_add_sparse_entry(tar,
1318                                     tar->sparse_offset, tar->sparse_numbytes);
1319                                 tar->sparse_offset = -1;
1320                                 tar->sparse_numbytes = -1;
1321                         }
1322                 }
1323                 if (wcscmp(key, L"GNU.sparse.size") == 0)
1324                         archive_entry_set_size(entry,
1325                             tar_atol10(value, wcslen(value)));
1326
1327                 /* GNU "0.1" sparse pax format. */
1328                 if (wcscmp(key, L"GNU.sparse.map") == 0) {
1329                         tar->sparse_gnu_major = 0;
1330                         tar->sparse_gnu_minor = 1;
1331                         if (gnu_sparse_01_parse(tar, value) != ARCHIVE_OK)
1332                                 return (ARCHIVE_WARN);
1333                 }
1334
1335                 /* GNU "1.0" sparse pax format */
1336                 if (wcscmp(key, L"GNU.sparse.major") == 0) {
1337                         tar->sparse_gnu_major = tar_atol10(value, wcslen(value));
1338                         tar->sparse_gnu_pending = 1;
1339                 }
1340                 if (wcscmp(key, L"GNU.sparse.minor") == 0) {
1341                         tar->sparse_gnu_minor = tar_atol10(value, wcslen(value));
1342                         tar->sparse_gnu_pending = 1;
1343                 }
1344                 if (wcscmp(key, L"GNU.sparse.name") == 0)
1345                         archive_entry_copy_pathname_w(entry, value);
1346                 if (wcscmp(key, L"GNU.sparse.realsize") == 0)
1347                         archive_entry_set_size(entry,
1348                             tar_atol10(value, wcslen(value)));
1349                 break;
1350         case 'L':
1351                 /* Our extensions */
1352 /* TODO: Handle arbitrary extended attributes... */
1353 /*
1354                 if (strcmp(key, "LIBARCHIVE.xxxxxxx")==0)
1355                         archive_entry_set_xxxxxx(entry, value);
1356 */
1357                 if (wcsncmp(key, L"LIBARCHIVE.xattr.", 17)==0)
1358                         pax_attribute_xattr(entry, key, value);
1359                 break;
1360         case 'S':
1361                 /* We support some keys used by the "star" archiver */
1362                 if (wcscmp(key, L"SCHILY.acl.access")==0)
1363                         __archive_entry_acl_parse_w(entry, value,
1364                             ARCHIVE_ENTRY_ACL_TYPE_ACCESS);
1365                 else if (wcscmp(key, L"SCHILY.acl.default")==0)
1366                         __archive_entry_acl_parse_w(entry, value,
1367                             ARCHIVE_ENTRY_ACL_TYPE_DEFAULT);
1368                 else if (wcscmp(key, L"SCHILY.devmajor")==0)
1369                         archive_entry_set_rdevmajor(entry, tar_atol10(value, wcslen(value)));
1370                 else if (wcscmp(key, L"SCHILY.devminor")==0)
1371                         archive_entry_set_rdevminor(entry, tar_atol10(value, wcslen(value)));
1372                 else if (wcscmp(key, L"SCHILY.fflags")==0)
1373                         archive_entry_copy_fflags_text_w(entry, value);
1374                 else if (wcscmp(key, L"SCHILY.dev")==0)
1375                         archive_entry_set_dev(entry, tar_atol10(value, wcslen(value)));
1376                 else if (wcscmp(key, L"SCHILY.ino")==0)
1377                         archive_entry_set_ino(entry, tar_atol10(value, wcslen(value)));
1378                 else if (wcscmp(key, L"SCHILY.nlink")==0)
1379                         archive_entry_set_nlink(entry, tar_atol10(value, wcslen(value)));
1380                 break;
1381         case 'a':
1382                 if (wcscmp(key, L"atime")==0) {
1383                         pax_time(value, &s, &n);
1384                         archive_entry_set_atime(entry, s, n);
1385                 }
1386                 break;
1387         case 'c':
1388                 if (wcscmp(key, L"ctime")==0) {
1389                         pax_time(value, &s, &n);
1390                         archive_entry_set_ctime(entry, s, n);
1391                 } else if (wcscmp(key, L"charset")==0) {
1392                         /* TODO: Publish charset information in entry. */
1393                 } else if (wcscmp(key, L"comment")==0) {
1394                         /* TODO: Publish comment in entry. */
1395                 }
1396                 break;
1397         case 'g':
1398                 if (wcscmp(key, L"gid")==0)
1399                         archive_entry_set_gid(entry, tar_atol10(value, wcslen(value)));
1400                 else if (wcscmp(key, L"gname")==0)
1401                         archive_entry_copy_gname_w(entry, value);
1402                 break;
1403         case 'l':
1404                 /* pax interchange doesn't distinguish hardlink vs. symlink. */
1405                 if (wcscmp(key, L"linkpath")==0) {
1406                         if (archive_entry_hardlink(entry))
1407                                 archive_entry_copy_hardlink_w(entry, value);
1408                         else
1409                                 archive_entry_copy_symlink_w(entry, value);
1410                 }
1411                 break;
1412         case 'm':
1413                 if (wcscmp(key, L"mtime")==0) {
1414                         pax_time(value, &s, &n);
1415                         archive_entry_set_mtime(entry, s, n);
1416                 }
1417                 break;
1418         case 'p':
1419                 if (wcscmp(key, L"path")==0)
1420                         archive_entry_copy_pathname_w(entry, value);
1421                 break;
1422         case 'r':
1423                 /* POSIX has reserved 'realtime.*' */
1424                 break;
1425         case 's':
1426                 /* POSIX has reserved 'security.*' */
1427                 /* Someday: if (wcscmp(key, L"security.acl")==0) { ... } */
1428                 if (wcscmp(key, L"size")==0) {
1429                         tar->entry_bytes_remaining = tar_atol10(value, wcslen(value));
1430                         archive_entry_set_size(entry, tar->entry_bytes_remaining);
1431                 }
1432                 tar->entry_bytes_remaining = 0;
1433
1434                 break;
1435         case 'u':
1436                 if (wcscmp(key, L"uid")==0)
1437                         archive_entry_set_uid(entry, tar_atol10(value, wcslen(value)));
1438                 else if (wcscmp(key, L"uname")==0)
1439                         archive_entry_copy_uname_w(entry, value);
1440                 break;
1441         }
1442         return (0);
1443 }
1444
1445
1446
1447 /*
1448  * parse a decimal time value, which may include a fractional portion
1449  */
1450 static void
1451 pax_time(const wchar_t *p, int64_t *ps, long *pn)
1452 {
1453         char digit;
1454         int64_t s;
1455         unsigned long l;
1456         int sign;
1457         int64_t limit, last_digit_limit;
1458
1459         limit = INT64_MAX / 10;
1460         last_digit_limit = INT64_MAX % 10;
1461
1462         s = 0;
1463         sign = 1;
1464         if (*p == '-') {
1465                 sign = -1;
1466                 p++;
1467         }
1468         while (*p >= '0' && *p <= '9') {
1469                 digit = *p - '0';
1470                 if (s > limit ||
1471                     (s == limit && digit > last_digit_limit)) {
1472                         s = UINT64_MAX;
1473                         break;
1474                 }
1475                 s = (s * 10) + digit;
1476                 ++p;
1477         }
1478
1479         *ps = s * sign;
1480
1481         /* Calculate nanoseconds. */
1482         *pn = 0;
1483
1484         if (*p != '.')
1485                 return;
1486
1487         l = 100000000UL;
1488         do {
1489                 ++p;
1490                 if (*p >= '0' && *p <= '9')
1491                         *pn += (*p - '0') * l;
1492                 else
1493                         break;
1494         } while (l /= 10);
1495 }
1496
1497 /*
1498  * Parse GNU tar header
1499  */
1500 static int
1501 header_gnutar(struct archive_read *a, struct tar *tar,
1502     struct archive_entry *entry, const void *h)
1503 {
1504         const struct archive_entry_header_gnutar *header;
1505
1506         (void)a;
1507
1508         /*
1509          * GNU header is like POSIX ustar, except 'prefix' is
1510          * replaced with some other fields. This also means the
1511          * filename is stored as in old-style archives.
1512          */
1513
1514         /* Grab fields common to all tar variants. */
1515         header_common(a, tar, entry, h);
1516
1517         /* Copy filename over (to ensure null termination). */
1518         header = (const struct archive_entry_header_gnutar *)h;
1519         archive_strncpy(&(tar->entry_name), header->name,
1520             sizeof(header->name));
1521         archive_entry_set_pathname(entry, tar->entry_name.s);
1522
1523         /* Fields common to ustar and GNU */
1524         /* XXX Can the following be factored out since it's common
1525          * to ustar and gnu tar?  Is it okay to move it down into
1526          * header_common, perhaps?  */
1527         archive_strncpy(&(tar->entry_uname),
1528             header->uname, sizeof(header->uname));
1529         archive_entry_set_uname(entry, tar->entry_uname.s);
1530
1531         archive_strncpy(&(tar->entry_gname),
1532             header->gname, sizeof(header->gname));
1533         archive_entry_set_gname(entry, tar->entry_gname.s);
1534
1535         /* Parse out device numbers only for char and block specials */
1536         if (header->typeflag[0] == '3' || header->typeflag[0] == '4') {
1537                 archive_entry_set_rdevmajor(entry,
1538                     tar_atol(header->rdevmajor, sizeof(header->rdevmajor)));
1539                 archive_entry_set_rdevminor(entry,
1540                     tar_atol(header->rdevminor, sizeof(header->rdevminor)));
1541         } else
1542                 archive_entry_set_rdev(entry, 0);
1543
1544         tar->entry_padding = 0x1ff & (-tar->entry_bytes_remaining);
1545
1546         /* Grab GNU-specific fields. */
1547         archive_entry_set_atime(entry,
1548             tar_atol(header->atime, sizeof(header->atime)), 0);
1549         archive_entry_set_ctime(entry,
1550             tar_atol(header->ctime, sizeof(header->ctime)), 0);
1551         if (header->realsize[0] != 0) {
1552                 archive_entry_set_size(entry,
1553                     tar_atol(header->realsize, sizeof(header->realsize)));
1554         }
1555
1556         if (header->sparse[0].offset[0] != 0) {
1557                 gnu_sparse_old_read(a, tar, header);
1558         } else {
1559                 if (header->isextended[0] != 0) {
1560                         /* XXX WTF? XXX */
1561                 }
1562         }
1563
1564         return (0);
1565 }
1566
1567 static void
1568 gnu_add_sparse_entry(struct tar *tar, off_t offset, off_t remaining)
1569 {
1570         struct sparse_block *p;
1571
1572         p = (struct sparse_block *)malloc(sizeof(*p));
1573         if (p == NULL)
1574                 __archive_errx(1, "Out of memory");
1575         memset(p, 0, sizeof(*p));
1576         if (tar->sparse_last != NULL)
1577                 tar->sparse_last->next = p;
1578         else
1579                 tar->sparse_list = p;
1580         tar->sparse_last = p;
1581         p->offset = offset;
1582         p->remaining = remaining;
1583 }
1584
1585 /*
1586  * GNU tar old-format sparse data.
1587  *
1588  * GNU old-format sparse data is stored in a fixed-field
1589  * format.  Offset/size values are 11-byte octal fields (same
1590  * format as 'size' field in ustart header).  These are
1591  * stored in the header, allocating subsequent header blocks
1592  * as needed.  Extending the header in this way is a pretty
1593  * severe POSIX violation; this design has earned GNU tar a
1594  * lot of criticism.
1595  */
1596
1597 static int
1598 gnu_sparse_old_read(struct archive_read *a, struct tar *tar,
1599     const struct archive_entry_header_gnutar *header)
1600 {
1601         ssize_t bytes_read;
1602         const void *data;
1603         struct extended {
1604                 struct gnu_sparse sparse[21];
1605                 char    isextended[1];
1606                 char    padding[7];
1607         };
1608         const struct extended *ext;
1609
1610         gnu_sparse_old_parse(tar, header->sparse, 4);
1611         if (header->isextended[0] == 0)
1612                 return (ARCHIVE_OK);
1613
1614         do {
1615                 bytes_read = (a->decompressor->read_ahead)(a, &data, 512);
1616                 if (bytes_read < 0)
1617                         return (ARCHIVE_FATAL);
1618                 if (bytes_read < 512) {
1619                         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1620                             "Truncated tar archive "
1621                             "detected while reading sparse file data");
1622                         return (ARCHIVE_FATAL);
1623                 }
1624                 (a->decompressor->consume)(a, 512);
1625                 ext = (const struct extended *)data;
1626                 gnu_sparse_old_parse(tar, ext->sparse, 21);
1627         } while (ext->isextended[0] != 0);
1628         if (tar->sparse_list != NULL)
1629                 tar->entry_offset = tar->sparse_list->offset;
1630         return (ARCHIVE_OK);
1631 }
1632
1633 static void
1634 gnu_sparse_old_parse(struct tar *tar,
1635     const struct gnu_sparse *sparse, int length)
1636 {
1637         while (length > 0 && sparse->offset[0] != 0) {
1638                 gnu_add_sparse_entry(tar,
1639                     tar_atol(sparse->offset, sizeof(sparse->offset)),
1640                     tar_atol(sparse->numbytes, sizeof(sparse->numbytes)));
1641                 sparse++;
1642                 length--;
1643         }
1644 }
1645
1646 /*
1647  * GNU tar sparse format 0.0
1648  *
1649  * Beginning with GNU tar 1.15, sparse files are stored using
1650  * information in the pax extended header.  The GNU tar maintainers
1651  * have gone through a number of variations in the process of working
1652  * out this scheme; furtunately, they're all numbered.
1653  *
1654  * Sparse format 0.0 uses attribute GNU.sparse.numblocks to store the
1655  * number of blocks, and GNU.sparse.offset/GNU.sparse.numbytes to
1656  * store offset/size for each block.  The repeated instances of these
1657  * latter fields violate the pax specification (which frowns on
1658  * duplicate keys), so this format was quickly replaced.
1659  */
1660
1661 /*
1662  * GNU tar sparse format 0.1
1663  *
1664  * This version replaced the offset/numbytes attributes with
1665  * a single "map" attribute that stored a list of integers.  This
1666  * format had two problems: First, the "map" attribute could be very
1667  * long, which caused problems for some implementations.  More
1668  * importantly, the sparse data was lost when extracted by archivers
1669  * that didn't recognize this extension.
1670  */
1671
1672 static int
1673 gnu_sparse_01_parse(struct tar *tar, const wchar_t *p)
1674 {
1675         const wchar_t *e;
1676         off_t offset = -1, size = -1;
1677
1678         for (;;) {
1679                 e = p;
1680                 while (*e != '\0' && *e != ',') {
1681                         if (*e < '0' || *e > '9')
1682                                 return (ARCHIVE_WARN);
1683                         e++;
1684                 }
1685                 if (offset < 0) {
1686                         offset = tar_atol10(p, e - p);
1687                         if (offset < 0)
1688                                 return (ARCHIVE_WARN);
1689                 } else {
1690                         size = tar_atol10(p, e - p);
1691                         if (size < 0)
1692                                 return (ARCHIVE_WARN);
1693                         gnu_add_sparse_entry(tar, offset, size);
1694                         offset = -1;
1695                 }
1696                 if (*e == '\0')
1697                         return (ARCHIVE_OK);
1698                 p = e + 1;
1699         }
1700 }
1701
1702 /*
1703  * GNU tar sparse format 1.0
1704  *
1705  * The idea: The offset/size data is stored as a series of base-10
1706  * ASCII numbers prepended to the file data, so that dearchivers that
1707  * don't support this format will extract the block map along with the
1708  * data and a separate post-process can restore the sparseness.
1709  *
1710  * Unfortunately, GNU tar 1.16 adds bogus padding to the end of the
1711  * entry that depends on the size of the map; this means we have to
1712  * parse the sparse map when we read the header (otherwise, entry_skip
1713  * will fail).  This is why sparse_10_read is called from read_header
1714  * above, instead of at the beginning of read_data, where it "should"
1715  * go.
1716  *
1717  * This variant also replaced GNU.sparse.size with GNU.sparse.realsize
1718  * and introduced the GNU.sparse.major/GNU.sparse.minor attributes.
1719  */
1720
1721 /*
1722  * Read the next line from the input, and parse it as a decimal
1723  * integer followed by '\n'.  Returns positive integer value or
1724  * negative on error.
1725  */
1726 static int64_t
1727 gnu_sparse_10_atol(struct archive_read *a, struct tar *tar,
1728     ssize_t *total_read)
1729 {
1730         int64_t l, limit, last_digit_limit;
1731         const char *p;
1732         ssize_t bytes_read;
1733         int base, digit;
1734
1735         base = 10;
1736         limit = INT64_MAX / base;
1737         last_digit_limit = INT64_MAX % base;
1738
1739         bytes_read = readline(a, tar, &p);
1740         if (bytes_read <= 0)
1741                 return (ARCHIVE_FATAL);
1742         *total_read += bytes_read;
1743
1744         l = 0;
1745         while (bytes_read > 0) {
1746                 if (*p == '\n')
1747                         return (l);
1748                 if (*p < '0' || *p >= '0' + base)
1749                         return (ARCHIVE_WARN);
1750                 digit = *p - '0';
1751                 if (l > limit || (l == limit && digit > last_digit_limit))
1752                         l = UINT64_MAX; /* Truncate on overflow. */
1753                 else
1754                         l = (l * base) + digit;
1755                 p++;
1756                 bytes_read--;
1757         }
1758         /* TODO: Error message. */
1759         return (ARCHIVE_WARN);
1760 }
1761
1762 /*
1763  * Returns number of bytes consumed to read the sparse block data.
1764  */
1765 static ssize_t
1766 gnu_sparse_10_read(struct archive_read *a, struct tar *tar)
1767 {
1768         ssize_t bytes_read = 0;
1769         int entries;
1770         off_t offset, size, to_skip;
1771
1772         /* Parse entries. */
1773         entries = gnu_sparse_10_atol(a, tar, &bytes_read);
1774         if (entries < 0)
1775                 return (ARCHIVE_FATAL);
1776         /* Parse the individual entries. */
1777         while (entries-- > 0) {
1778                 /* Parse offset/size */
1779                 offset = gnu_sparse_10_atol(a, tar, &bytes_read);
1780                 if (offset < 0)
1781                         return (ARCHIVE_FATAL);
1782                 size = gnu_sparse_10_atol(a, tar, &bytes_read);
1783                 if (size < 0)
1784                         return (ARCHIVE_FATAL);
1785                 /* Add a new sparse entry. */
1786                 gnu_add_sparse_entry(tar, offset, size);
1787         }
1788         /* Skip rest of block... */
1789         to_skip = 0x1ff & -bytes_read;
1790         if (to_skip != (a->decompressor->skip)(a, to_skip))
1791                 return (ARCHIVE_FATAL);
1792         return (bytes_read + to_skip);
1793 }
1794
1795 /*-
1796  * Convert text->integer.
1797  *
1798  * Traditional tar formats (including POSIX) specify base-8 for
1799  * all of the standard numeric fields.  This is a significant limitation
1800  * in practice:
1801  *   = file size is limited to 8GB
1802  *   = rdevmajor and rdevminor are limited to 21 bits
1803  *   = uid/gid are limited to 21 bits
1804  *
1805  * There are two workarounds for this:
1806  *   = pax extended headers, which use variable-length string fields
1807  *   = GNU tar and STAR both allow either base-8 or base-256 in
1808  *      most fields.  The high bit is set to indicate base-256.
1809  *
1810  * On read, this implementation supports both extensions.
1811  */
1812 static int64_t
1813 tar_atol(const char *p, unsigned char_cnt)
1814 {
1815         /*
1816          * Technically, GNU tar considers a field to be in base-256
1817          * only if the first byte is 0xff or 0x80.
1818          */
1819         if (*p & 0x80)
1820                 return (tar_atol256(p, char_cnt));
1821         return (tar_atol8(p, char_cnt));
1822 }
1823
1824 /*
1825  * Note that this implementation does not (and should not!) obey
1826  * locale settings; you cannot simply substitute strtol here, since
1827  * it does obey locale.
1828  */
1829 static int64_t
1830 tar_atol8(const char *p, unsigned char_cnt)
1831 {
1832         int64_t l, limit, last_digit_limit;
1833         int digit, sign, base;
1834
1835         base = 8;
1836         limit = INT64_MAX / base;
1837         last_digit_limit = INT64_MAX % base;
1838
1839         while (*p == ' ' || *p == '\t')
1840                 p++;
1841         if (*p == '-') {
1842                 sign = -1;
1843                 p++;
1844         } else
1845                 sign = 1;
1846
1847         l = 0;
1848         digit = *p - '0';
1849         while (digit >= 0 && digit < base  && char_cnt-- > 0) {
1850                 if (l>limit || (l == limit && digit > last_digit_limit)) {
1851                         l = UINT64_MAX; /* Truncate on overflow. */
1852                         break;
1853                 }
1854                 l = (l * base) + digit;
1855                 digit = *++p - '0';
1856         }
1857         return (sign < 0) ? -l : l;
1858 }
1859
1860 /*
1861  * Note that this implementation does not (and should not!) obey
1862  * locale settings; you cannot simply substitute strtol here, since
1863  * it does obey locale.
1864  */
1865 static int64_t
1866 tar_atol10(const wchar_t *p, unsigned char_cnt)
1867 {
1868         int64_t l, limit, last_digit_limit;
1869         int base, digit, sign;
1870
1871         base = 10;
1872         limit = INT64_MAX / base;
1873         last_digit_limit = INT64_MAX % base;
1874
1875         while (*p == ' ' || *p == '\t')
1876                 p++;
1877         if (*p == '-') {
1878                 sign = -1;
1879                 p++;
1880         } else
1881                 sign = 1;
1882
1883         l = 0;
1884         digit = *p - '0';
1885         while (digit >= 0 && digit < base  && char_cnt-- > 0) {
1886                 if (l > limit || (l == limit && digit > last_digit_limit)) {
1887                         l = UINT64_MAX; /* Truncate on overflow. */
1888                         break;
1889                 }
1890                 l = (l * base) + digit;
1891                 digit = *++p - '0';
1892         }
1893         return (sign < 0) ? -l : l;
1894 }
1895
1896 /*
1897  * Parse a base-256 integer.  This is just a straight signed binary
1898  * value in big-endian order, except that the high-order bit is
1899  * ignored.  Remember that "int64_t" may or may not be exactly 64
1900  * bits; the implementation here tries to avoid making any assumptions
1901  * about the actual size of an int64_t.  It does assume we're using
1902  * twos-complement arithmetic, though.
1903  */
1904 static int64_t
1905 tar_atol256(const char *_p, unsigned char_cnt)
1906 {
1907         int64_t l, upper_limit, lower_limit;
1908         const unsigned char *p = (const unsigned char *)_p;
1909
1910         upper_limit = INT64_MAX / 256;
1911         lower_limit = INT64_MIN / 256;
1912
1913         /* Pad with 1 or 0 bits, depending on sign. */
1914         if ((0x40 & *p) == 0x40)
1915                 l = (int64_t)-1;
1916         else
1917                 l = 0;
1918         l = (l << 6) | (0x3f & *p++);
1919         while (--char_cnt > 0) {
1920                 if (l > upper_limit) {
1921                         l = INT64_MAX; /* Truncate on overflow */
1922                         break;
1923                 } else if (l < lower_limit) {
1924                         l = INT64_MIN;
1925                         break;
1926                 }
1927                 l = (l << 8) | (0xff & (int64_t)*p++);
1928         }
1929         return (l);
1930 }
1931
1932 /*
1933  * Returns length of line (including trailing newline)
1934  * or negative on error.  'start' argument is updated to
1935  * point to first character of line.  This avoids copying
1936  * when possible.
1937  */
1938 static ssize_t
1939 readline(struct archive_read *a, struct tar *tar, const char **start)
1940 {
1941         ssize_t bytes_read;
1942         ssize_t total_size = 0;
1943         const void *t;
1944         const char *s;
1945         void *p;
1946
1947         bytes_read = (a->decompressor->read_ahead)(a, &t, 1);
1948         if (bytes_read <= 0)
1949                 return (ARCHIVE_FATAL);
1950         s = t;  /* Start of line? */
1951         p = memchr(t, '\n', bytes_read);
1952         /* If we found '\n' in the read buffer, return pointer to that. */
1953         if (p != NULL) {
1954                 bytes_read = 1 + ((const char *)p) - s;
1955                 (a->decompressor->consume)(a, bytes_read);
1956                 *start = s;
1957                 return (bytes_read);
1958         }
1959         /* Otherwise, we need to accumulate in a line buffer. */
1960         for (;;) {
1961                 archive_string_ensure(&tar->line, total_size + bytes_read);
1962                 memcpy(tar->line.s + total_size, t, bytes_read);
1963                 (a->decompressor->consume)(a, bytes_read);
1964                 total_size += bytes_read;
1965                 /* Read some more. */
1966                 bytes_read = (a->decompressor->read_ahead)(a, &t, 1);
1967                 if (bytes_read <= 0)
1968                         return (ARCHIVE_FATAL);
1969                 s = t;  /* Start of line? */
1970                 p = memchr(t, '\n', bytes_read);
1971                 /* If we found '\n', finish the line. */
1972                 if (p != NULL) {
1973                         bytes_read = 1 + ((const char *)p) - s;
1974                         (a->decompressor->consume)(a, bytes_read);
1975                         *start = tar->line.s;
1976                         return (total_size + bytes_read);
1977                 }
1978         }
1979 }
1980
1981 static int
1982 utf8_decode(wchar_t *dest, const char *src, size_t length)
1983 {
1984         size_t n;
1985         int err;
1986
1987         err = 0;
1988         while (length > 0) {
1989                 n = UTF8_mbrtowc(dest, src, length);
1990                 if (n == 0)
1991                         break;
1992                 dest++;
1993                 src += n;
1994                 length -= n;
1995         }
1996         *dest++ = L'\0';
1997         return (err);
1998 }
1999
2000 /*
2001  * Copied and simplified from FreeBSD libc/locale.
2002  */
2003 static size_t
2004 UTF8_mbrtowc(wchar_t *pwc, const char *s, size_t n)
2005 {
2006         int ch, i, len, mask;
2007         unsigned long wch;
2008
2009         if (s == NULL || n == 0 || pwc == NULL)
2010                 return (0);
2011
2012         /*
2013          * Determine the number of octets that make up this character from
2014          * the first octet, and a mask that extracts the interesting bits of
2015          * the first octet.
2016          */
2017         ch = (unsigned char)*s;
2018         if ((ch & 0x80) == 0) {
2019                 mask = 0x7f;
2020                 len = 1;
2021         } else if ((ch & 0xe0) == 0xc0) {
2022                 mask = 0x1f;
2023                 len = 2;
2024         } else if ((ch & 0xf0) == 0xe0) {
2025                 mask = 0x0f;
2026                 len = 3;
2027         } else if ((ch & 0xf8) == 0xf0) {
2028                 mask = 0x07;
2029                 len = 4;
2030         } else if ((ch & 0xfc) == 0xf8) {
2031                 mask = 0x03;
2032                 len = 5;
2033         } else if ((ch & 0xfe) == 0xfc) {
2034                 mask = 0x01;
2035                 len = 6;
2036         } else {
2037                 /* Invalid first byte; convert to '?' */
2038                 *pwc = '?';
2039                 return (1);
2040         }
2041
2042         if (n < (size_t)len) {
2043                 /* Invalid first byte; convert to '?' */
2044                 *pwc = '?';
2045                 return (1);
2046         }
2047
2048         /*
2049          * Decode the octet sequence representing the character in chunks
2050          * of 6 bits, most significant first.
2051          */
2052         wch = (unsigned char)*s++ & mask;
2053         i = len;
2054         while (--i != 0) {
2055                 if ((*s & 0xc0) != 0x80) {
2056                         /* Invalid intermediate byte; consume one byte and
2057                          * emit '?' */
2058                         *pwc = '?';
2059                         return (1);
2060                 }
2061                 wch <<= 6;
2062                 wch |= *s++ & 0x3f;
2063         }
2064
2065         /* Assign the value to the output; out-of-range values
2066          * just get truncated. */
2067         *pwc = (wchar_t)wch;
2068 #ifdef WCHAR_MAX
2069         /*
2070          * If platform has WCHAR_MAX, we can do something
2071          * more sensible with out-of-range values.
2072          */
2073         if (wch >= WCHAR_MAX)
2074                 *pwc = '?';
2075 #endif
2076         /* Return number of bytes input consumed: 0 for end-of-string. */
2077         return (wch == L'\0' ? 0 : len);
2078 }
2079
2080
2081 /*
2082  * base64_decode - Base64 decode
2083  *
2084  * This accepts most variations of base-64 encoding, including:
2085  *    * with or without line breaks
2086  *    * with or without the final group padded with '=' or '_' characters
2087  * (The most economical Base-64 variant does not pad the last group and
2088  * omits line breaks; RFC1341 used for MIME requires both.)
2089  */
2090 static char *
2091 base64_decode(const wchar_t *src, size_t len, size_t *out_len)
2092 {
2093         static const unsigned char digits[64] = {
2094                 'A','B','C','D','E','F','G','H','I','J','K','L','M','N',
2095                 'O','P','Q','R','S','T','U','V','W','X','Y','Z','a','b',
2096                 'c','d','e','f','g','h','i','j','k','l','m','n','o','p',
2097                 'q','r','s','t','u','v','w','x','y','z','0','1','2','3',
2098                 '4','5','6','7','8','9','+','/' };
2099         static unsigned char decode_table[128];
2100         char *out, *d;
2101
2102         /* If the decode table is not yet initialized, prepare it. */
2103         if (decode_table[digits[1]] != 1) {
2104                 size_t i;
2105                 memset(decode_table, 0xff, sizeof(decode_table));
2106                 for (i = 0; i < sizeof(digits); i++)
2107                         decode_table[digits[i]] = i;
2108         }
2109
2110         /* Allocate enough space to hold the entire output. */
2111         /* Note that we may not use all of this... */
2112         out = (char *)malloc((len * 3 + 3) / 4);
2113         if (out == NULL) {
2114                 *out_len = 0;
2115                 return (NULL);
2116         }
2117         d = out;
2118
2119         while (len > 0) {
2120                 /* Collect the next group of (up to) four characters. */
2121                 int v = 0;
2122                 int group_size = 0;
2123                 while (group_size < 4 && len > 0) {
2124                         /* '=' or '_' padding indicates final group. */
2125                         if (*src == '=' || *src == '_') {
2126                                 len = 0;
2127                                 break;
2128                         }
2129                         /* Skip illegal characters (including line breaks) */
2130                         if (*src > 127 || *src < 32
2131                             || decode_table[*src] == 0xff) {
2132                                 len--;
2133                                 src++;
2134                                 continue;
2135                         }
2136                         v <<= 6;
2137                         v |= decode_table[*src++];
2138                         len --;
2139                         group_size++;
2140                 }
2141                 /* Align a short group properly. */
2142                 v <<= 6 * (4 - group_size);
2143                 /* Unpack the group we just collected. */
2144                 switch (group_size) {
2145                 case 4: d[2] = v & 0xff;
2146                         /* FALLTHROUGH */
2147                 case 3: d[1] = (v >> 8) & 0xff;
2148                         /* FALLTHROUGH */
2149                 case 2: d[0] = (v >> 16) & 0xff;
2150                         break;
2151                 case 1: /* this is invalid! */
2152                         break;
2153                 }
2154                 d += group_size * 3 / 4;
2155         }
2156
2157         *out_len = d - out;
2158         return (out);
2159 }
2160
2161 /*
2162  * This is a little tricky because the C99 standard wcstombs()
2163  * function returns the number of bytes that were converted,
2164  * not the number that should be converted.  As a result,
2165  * we can never accurately size the output buffer (without
2166  * doing a tedious output size calculation in advance).
2167  * This approach (try a conversion, then try again if it fails)
2168  * will almost always succeed on the first try, and is thus
2169  * much faster, at the cost of sometimes requiring multiple
2170  * passes while we expand the buffer.
2171  */
2172 static char *
2173 wide_to_narrow(const wchar_t *wval)
2174 {
2175         int converted_length;
2176         /* Guess an output buffer size and try the conversion. */
2177         int alloc_length = wcslen(wval) * 3;
2178         char *mbs_val = (char *)malloc(alloc_length + 1);
2179         if (mbs_val == NULL)
2180                 return (NULL);
2181         converted_length = wcstombs(mbs_val, wval, alloc_length);
2182
2183         /* If we exhausted the buffer, resize and try again. */
2184         while (converted_length >= alloc_length) {
2185                 free(mbs_val);
2186                 alloc_length *= 2;
2187                 mbs_val = (char *)malloc(alloc_length + 1);
2188                 if (mbs_val == NULL)
2189                         return (NULL);
2190                 converted_length = wcstombs(mbs_val, wval, alloc_length);
2191         }
2192
2193         /* Ensure a trailing null and return the final string. */
2194         mbs_val[alloc_length] = '\0';
2195         return (mbs_val);
2196 }
2197
2198 static char *
2199 url_decode(const char *in)
2200 {
2201         char *out, *d;
2202         const char *s;
2203
2204         out = (char *)malloc(strlen(in) + 1);
2205         if (out == NULL)
2206                 return (NULL);
2207         for (s = in, d = out; *s != '\0'; ) {
2208                 if (*s == '%') {
2209                         /* Try to convert % escape */
2210                         int digit1 = tohex(s[1]);
2211                         int digit2 = tohex(s[2]);
2212                         if (digit1 >= 0 && digit2 >= 0) {
2213                                 /* Looks good, consume three chars */
2214                                 s += 3;
2215                                 /* Convert output */
2216                                 *d++ = ((digit1 << 4) | digit2);
2217                                 continue;
2218                         }
2219                         /* Else fall through and treat '%' as normal char */
2220                 }
2221                 *d++ = *s++;
2222         }
2223         *d = '\0';
2224         return (out);
2225 }
2226
2227 static int
2228 tohex(int c)
2229 {
2230         if (c >= '0' && c <= '9')
2231                 return (c - '0');
2232         else if (c >= 'A' && c <= 'F')
2233                 return (c - 'A' + 10);
2234         else if (c >= 'a' && c <= 'f')
2235                 return (c - 'a' + 10);
2236         else
2237                 return (-1);
2238 }