archive_write_set_format_pax.c revision 342360
1/*-
2 * Copyright (c) 2003-2007 Tim Kientzle
3 * Copyright (c) 2010-2012 Michihiro NAKAJIMA
4 * Copyright (c) 2016 Martin Matuska
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "archive_platform.h"
29__FBSDID("$FreeBSD: stable/11/contrib/libarchive/libarchive/archive_write_set_format_pax.c 342360 2018-12-21 23:33:05Z mm $");
30
31#ifdef HAVE_ERRNO_H
32#include <errno.h>
33#endif
34#ifdef HAVE_STDLIB_H
35#include <stdlib.h>
36#endif
37#ifdef HAVE_STRING_H
38#include <string.h>
39#endif
40
41#include "archive.h"
42#include "archive_entry.h"
43#include "archive_entry_locale.h"
44#include "archive_private.h"
45#include "archive_write_private.h"
46
47struct sparse_block {
48	struct sparse_block	*next;
49	int		is_hole;
50	uint64_t	offset;
51	uint64_t	remaining;
52};
53
54struct pax {
55	uint64_t	entry_bytes_remaining;
56	uint64_t	entry_padding;
57	struct archive_string	l_url_encoded_name;
58	struct archive_string	pax_header;
59	struct archive_string	sparse_map;
60	size_t			sparse_map_padding;
61	struct sparse_block	*sparse_list;
62	struct sparse_block	*sparse_tail;
63	struct archive_string_conv *sconv_utf8;
64	int			 opt_binary;
65
66	unsigned flags;
67#define WRITE_SCHILY_XATTR       (1 << 0)
68#define WRITE_LIBARCHIVE_XATTR   (1 << 1)
69};
70
71static void		 add_pax_attr(struct archive_string *, const char *key,
72			     const char *value);
73static void		 add_pax_attr_binary(struct archive_string *,
74			     const char *key,
75			     const char *value, size_t value_len);
76static void		 add_pax_attr_int(struct archive_string *,
77			     const char *key, int64_t value);
78static void		 add_pax_attr_time(struct archive_string *,
79			     const char *key, int64_t sec,
80			     unsigned long nanos);
81static int		 add_pax_acl(struct archive_write *,
82			    struct archive_entry *, struct pax *, int);
83static ssize_t		 archive_write_pax_data(struct archive_write *,
84			     const void *, size_t);
85static int		 archive_write_pax_close(struct archive_write *);
86static int		 archive_write_pax_free(struct archive_write *);
87static int		 archive_write_pax_finish_entry(struct archive_write *);
88static int		 archive_write_pax_header(struct archive_write *,
89			     struct archive_entry *);
90static int		 archive_write_pax_options(struct archive_write *,
91			     const char *, const char *);
92static char		*base64_encode(const char *src, size_t len);
93static char		*build_gnu_sparse_name(char *dest, const char *src);
94static char		*build_pax_attribute_name(char *dest, const char *src);
95static char		*build_ustar_entry_name(char *dest, const char *src,
96			     size_t src_length, const char *insert);
97static char		*format_int(char *dest, int64_t);
98static int		 has_non_ASCII(const char *);
99static void		 sparse_list_clear(struct pax *);
100static int		 sparse_list_add(struct pax *, int64_t, int64_t);
101static char		*url_encode(const char *in);
102
103/*
104 * Set output format to 'restricted pax' format.
105 *
106 * This is the same as normal 'pax', but tries to suppress
107 * the pax header whenever possible.  This is the default for
108 * bsdtar, for instance.
109 */
110int
111archive_write_set_format_pax_restricted(struct archive *_a)
112{
113	struct archive_write *a = (struct archive_write *)_a;
114	int r;
115
116	archive_check_magic(_a, ARCHIVE_WRITE_MAGIC,
117	    ARCHIVE_STATE_NEW, "archive_write_set_format_pax_restricted");
118
119	r = archive_write_set_format_pax(&a->archive);
120	a->archive.archive_format = ARCHIVE_FORMAT_TAR_PAX_RESTRICTED;
121	a->archive.archive_format_name = "restricted POSIX pax interchange";
122	return (r);
123}
124
125/*
126 * Set output format to 'pax' format.
127 */
128int
129archive_write_set_format_pax(struct archive *_a)
130{
131	struct archive_write *a = (struct archive_write *)_a;
132	struct pax *pax;
133
134	archive_check_magic(_a, ARCHIVE_WRITE_MAGIC,
135	    ARCHIVE_STATE_NEW, "archive_write_set_format_pax");
136
137	if (a->format_free != NULL)
138		(a->format_free)(a);
139
140	pax = (struct pax *)calloc(1, sizeof(*pax));
141	if (pax == NULL) {
142		archive_set_error(&a->archive, ENOMEM,
143		    "Can't allocate pax data");
144		return (ARCHIVE_FATAL);
145	}
146	pax->flags = WRITE_LIBARCHIVE_XATTR | WRITE_SCHILY_XATTR;
147
148	a->format_data = pax;
149	a->format_name = "pax";
150	a->format_options = archive_write_pax_options;
151	a->format_write_header = archive_write_pax_header;
152	a->format_write_data = archive_write_pax_data;
153	a->format_close = archive_write_pax_close;
154	a->format_free = archive_write_pax_free;
155	a->format_finish_entry = archive_write_pax_finish_entry;
156	a->archive.archive_format = ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE;
157	a->archive.archive_format_name = "POSIX pax interchange";
158	return (ARCHIVE_OK);
159}
160
161static int
162archive_write_pax_options(struct archive_write *a, const char *key,
163    const char *val)
164{
165	struct pax *pax = (struct pax *)a->format_data;
166	int ret = ARCHIVE_FAILED;
167
168	if (strcmp(key, "hdrcharset")  == 0) {
169		/*
170		 * The character-set we can use are defined in
171		 * IEEE Std 1003.1-2001
172		 */
173		if (val == NULL || val[0] == 0)
174			archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
175			    "pax: hdrcharset option needs a character-set name");
176		else if (strcmp(val, "BINARY") == 0 ||
177		    strcmp(val, "binary") == 0) {
178			/*
179			 * Specify binary mode. We will not convert
180			 * filenames, uname and gname to any charsets.
181			 */
182			pax->opt_binary = 1;
183			ret = ARCHIVE_OK;
184		} else if (strcmp(val, "UTF-8") == 0) {
185			/*
186			 * Specify UTF-8 character-set to be used for
187			 * filenames. This is almost the test that
188			 * running platform supports the string conversion.
189			 * Especially libarchive_test needs this trick for
190			 * its test.
191			 */
192			pax->sconv_utf8 = archive_string_conversion_to_charset(
193			    &(a->archive), "UTF-8", 0);
194			if (pax->sconv_utf8 == NULL)
195				ret = ARCHIVE_FATAL;
196			else
197				ret = ARCHIVE_OK;
198		} else
199			archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
200			    "pax: invalid charset name");
201		return (ret);
202	}
203
204	/* Note: The "warn" return is just to inform the options
205	 * supervisor that we didn't handle it.  It will generate
206	 * a suitable error if no one used this option. */
207	return (ARCHIVE_WARN);
208}
209
210/*
211 * Note: This code assumes that 'nanos' has the same sign as 'sec',
212 * which implies that sec=-1, nanos=200000000 represents -1.2 seconds
213 * and not -0.8 seconds.  This is a pretty pedantic point, as we're
214 * unlikely to encounter many real files created before Jan 1, 1970,
215 * much less ones with timestamps recorded to sub-second resolution.
216 */
217static void
218add_pax_attr_time(struct archive_string *as, const char *key,
219    int64_t sec, unsigned long nanos)
220{
221	int digit, i;
222	char *t;
223	/*
224	 * Note that each byte contributes fewer than 3 base-10
225	 * digits, so this will always be big enough.
226	 */
227	char tmp[1 + 3*sizeof(sec) + 1 + 3*sizeof(nanos)];
228
229	tmp[sizeof(tmp) - 1] = 0;
230	t = tmp + sizeof(tmp) - 1;
231
232	/* Skip trailing zeros in the fractional part. */
233	for (digit = 0, i = 10; i > 0 && digit == 0; i--) {
234		digit = nanos % 10;
235		nanos /= 10;
236	}
237
238	/* Only format the fraction if it's non-zero. */
239	if (i > 0) {
240		while (i > 0) {
241			*--t = "0123456789"[digit];
242			digit = nanos % 10;
243			nanos /= 10;
244			i--;
245		}
246		*--t = '.';
247	}
248	t = format_int(t, sec);
249
250	add_pax_attr(as, key, t);
251}
252
253static char *
254format_int(char *t, int64_t i)
255{
256	uint64_t ui;
257
258	if (i < 0)
259		ui = (i == INT64_MIN) ? (uint64_t)(INT64_MAX) + 1 : (uint64_t)(-i);
260	else
261		ui = i;
262
263	do {
264		*--t = "0123456789"[ui % 10];
265	} while (ui /= 10);
266	if (i < 0)
267		*--t = '-';
268	return (t);
269}
270
271static void
272add_pax_attr_int(struct archive_string *as, const char *key, int64_t value)
273{
274	char tmp[1 + 3 * sizeof(value)];
275
276	tmp[sizeof(tmp) - 1] = 0;
277	add_pax_attr(as, key, format_int(tmp + sizeof(tmp) - 1, value));
278}
279
280/*
281 * Add a key/value attribute to the pax header.  This function handles
282 * the length field and various other syntactic requirements.
283 */
284static void
285add_pax_attr(struct archive_string *as, const char *key, const char *value)
286{
287	add_pax_attr_binary(as, key, value, strlen(value));
288}
289
290/*
291 * Add a key/value attribute to the pax header.  This function handles
292 * binary values.
293 */
294static void
295add_pax_attr_binary(struct archive_string *as, const char *key,
296		    const char *value, size_t value_len)
297{
298	int digits, i, len, next_ten;
299	char tmp[1 + 3 * sizeof(int)];	/* < 3 base-10 digits per byte */
300
301	/*-
302	 * PAX attributes have the following layout:
303	 *     <len> <space> <key> <=> <value> <nl>
304	 */
305	len = 1 + (int)strlen(key) + 1 + (int)value_len + 1;
306
307	/*
308	 * The <len> field includes the length of the <len> field, so
309	 * computing the correct length is tricky.  I start by
310	 * counting the number of base-10 digits in 'len' and
311	 * computing the next higher power of 10.
312	 */
313	next_ten = 1;
314	digits = 0;
315	i = len;
316	while (i > 0) {
317		i = i / 10;
318		digits++;
319		next_ten = next_ten * 10;
320	}
321	/*
322	 * For example, if string without the length field is 99
323	 * chars, then adding the 2 digit length "99" will force the
324	 * total length past 100, requiring an extra digit.  The next
325	 * statement adjusts for this effect.
326	 */
327	if (len + digits >= next_ten)
328		digits++;
329
330	/* Now, we have the right length so we can build the line. */
331	tmp[sizeof(tmp) - 1] = 0;	/* Null-terminate the work area. */
332	archive_strcat(as, format_int(tmp + sizeof(tmp) - 1, len + digits));
333	archive_strappend_char(as, ' ');
334	archive_strcat(as, key);
335	archive_strappend_char(as, '=');
336	archive_array_append(as, value, value_len);
337	archive_strappend_char(as, '\n');
338}
339
340static void
341archive_write_pax_header_xattr(struct pax *pax, const char *encoded_name,
342    const void *value, size_t value_len)
343{
344	struct archive_string s;
345	char *encoded_value;
346
347	if (pax->flags & WRITE_LIBARCHIVE_XATTR) {
348		encoded_value = base64_encode((const char *)value, value_len);
349
350		if (encoded_name != NULL && encoded_value != NULL) {
351			archive_string_init(&s);
352			archive_strcpy(&s, "LIBARCHIVE.xattr.");
353			archive_strcat(&s, encoded_name);
354			add_pax_attr(&(pax->pax_header), s.s, encoded_value);
355			archive_string_free(&s);
356		}
357		free(encoded_value);
358	}
359	if (pax->flags & WRITE_SCHILY_XATTR) {
360		archive_string_init(&s);
361		archive_strcpy(&s, "SCHILY.xattr.");
362		archive_strcat(&s, encoded_name);
363		add_pax_attr_binary(&(pax->pax_header), s.s, value, value_len);
364		archive_string_free(&s);
365	}
366}
367
368static int
369archive_write_pax_header_xattrs(struct archive_write *a,
370    struct pax *pax, struct archive_entry *entry)
371{
372	int i = archive_entry_xattr_reset(entry);
373
374	while (i--) {
375		const char *name;
376		const void *value;
377		char *url_encoded_name = NULL, *encoded_name = NULL;
378		size_t size;
379		int r;
380
381		archive_entry_xattr_next(entry, &name, &value, &size);
382		url_encoded_name = url_encode(name);
383		if (url_encoded_name != NULL) {
384			/* Convert narrow-character to UTF-8. */
385			r = archive_strcpy_l(&(pax->l_url_encoded_name),
386			    url_encoded_name, pax->sconv_utf8);
387			free(url_encoded_name); /* Done with this. */
388			if (r == 0)
389				encoded_name = pax->l_url_encoded_name.s;
390			else if (errno == ENOMEM) {
391				archive_set_error(&a->archive, ENOMEM,
392				    "Can't allocate memory for Linkname");
393				return (ARCHIVE_FATAL);
394			}
395		}
396
397		archive_write_pax_header_xattr(pax, encoded_name,
398		    value, size);
399
400	}
401	return (ARCHIVE_OK);
402}
403
404static int
405get_entry_hardlink(struct archive_write *a, struct archive_entry *entry,
406    const char **name, size_t *length, struct archive_string_conv *sc)
407{
408	int r;
409
410	r = archive_entry_hardlink_l(entry, name, length, sc);
411	if (r != 0) {
412		if (errno == ENOMEM) {
413			archive_set_error(&a->archive, ENOMEM,
414			    "Can't allocate memory for Linkname");
415			return (ARCHIVE_FATAL);
416		}
417		return (ARCHIVE_WARN);
418	}
419	return (ARCHIVE_OK);
420}
421
422static int
423get_entry_pathname(struct archive_write *a, struct archive_entry *entry,
424    const char **name, size_t *length, struct archive_string_conv *sc)
425{
426	int r;
427
428	r = archive_entry_pathname_l(entry, name, length, sc);
429	if (r != 0) {
430		if (errno == ENOMEM) {
431			archive_set_error(&a->archive, ENOMEM,
432			    "Can't allocate memory for Pathname");
433			return (ARCHIVE_FATAL);
434		}
435		return (ARCHIVE_WARN);
436	}
437	return (ARCHIVE_OK);
438}
439
440static int
441get_entry_uname(struct archive_write *a, struct archive_entry *entry,
442    const char **name, size_t *length, struct archive_string_conv *sc)
443{
444	int r;
445
446	r = archive_entry_uname_l(entry, name, length, sc);
447	if (r != 0) {
448		if (errno == ENOMEM) {
449			archive_set_error(&a->archive, ENOMEM,
450			    "Can't allocate memory for Uname");
451			return (ARCHIVE_FATAL);
452		}
453		return (ARCHIVE_WARN);
454	}
455	return (ARCHIVE_OK);
456}
457
458static int
459get_entry_gname(struct archive_write *a, struct archive_entry *entry,
460    const char **name, size_t *length, struct archive_string_conv *sc)
461{
462	int r;
463
464	r = archive_entry_gname_l(entry, name, length, sc);
465	if (r != 0) {
466		if (errno == ENOMEM) {
467			archive_set_error(&a->archive, ENOMEM,
468			    "Can't allocate memory for Gname");
469			return (ARCHIVE_FATAL);
470		}
471		return (ARCHIVE_WARN);
472	}
473	return (ARCHIVE_OK);
474}
475
476static int
477get_entry_symlink(struct archive_write *a, struct archive_entry *entry,
478    const char **name, size_t *length, struct archive_string_conv *sc)
479{
480	int r;
481
482	r = archive_entry_symlink_l(entry, name, length, sc);
483	if (r != 0) {
484		if (errno == ENOMEM) {
485			archive_set_error(&a->archive, ENOMEM,
486			    "Can't allocate memory for Linkname");
487			return (ARCHIVE_FATAL);
488		}
489		return (ARCHIVE_WARN);
490	}
491	return (ARCHIVE_OK);
492}
493
494/* Add ACL to pax header */
495static int
496add_pax_acl(struct archive_write *a,
497    struct archive_entry *entry, struct pax *pax, int flags)
498{
499	char *p;
500	const char *attr;
501	int acl_types;
502
503	acl_types = archive_entry_acl_types(entry);
504
505	if ((acl_types & ARCHIVE_ENTRY_ACL_TYPE_NFS4) != 0)
506		attr = "SCHILY.acl.ace";
507	else if ((flags & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0)
508		attr = "SCHILY.acl.access";
509	else if ((flags & ARCHIVE_ENTRY_ACL_TYPE_DEFAULT) != 0)
510		attr = "SCHILY.acl.default";
511	else
512		return (ARCHIVE_FATAL);
513
514	p = archive_entry_acl_to_text_l(entry, NULL, flags, pax->sconv_utf8);
515	if (p == NULL) {
516		if (errno == ENOMEM) {
517			archive_set_error(&a->archive, ENOMEM, "%s %s",
518			    "Can't allocate memory for ", attr);
519			return (ARCHIVE_FATAL);
520		}
521		archive_set_error(&a->archive,
522		    ARCHIVE_ERRNO_FILE_FORMAT, "%s %s %s",
523		    "Can't translate ", attr, " to UTF-8");
524		return(ARCHIVE_WARN);
525	}
526
527	if (*p != '\0') {
528		add_pax_attr(&(pax->pax_header),
529		    attr, p);
530	}
531	free(p);
532	return(ARCHIVE_OK);
533}
534
535/*
536 * TODO: Consider adding 'comment' and 'charset' fields to
537 * archive_entry so that clients can specify them.  Also, consider
538 * adding generic key/value tags so clients can add arbitrary
539 * key/value data.
540 *
541 * TODO: Break up this 700-line function!!!!  Yowza!
542 */
543static int
544archive_write_pax_header(struct archive_write *a,
545    struct archive_entry *entry_original)
546{
547	struct archive_entry *entry_main;
548	const char *p;
549	const char *suffix;
550	int need_extension, r, ret;
551	int acl_types;
552	int sparse_count;
553	uint64_t sparse_total, real_size;
554	struct pax *pax;
555	const char *hardlink;
556	const char *path = NULL, *linkpath = NULL;
557	const char *uname = NULL, *gname = NULL;
558	const void *mac_metadata;
559	size_t mac_metadata_size;
560	struct archive_string_conv *sconv;
561	size_t hardlink_length, path_length, linkpath_length;
562	size_t uname_length, gname_length;
563
564	char paxbuff[512];
565	char ustarbuff[512];
566	char ustar_entry_name[256];
567	char pax_entry_name[256];
568	char gnu_sparse_name[256];
569	struct archive_string entry_name;
570
571	ret = ARCHIVE_OK;
572	need_extension = 0;
573	pax = (struct pax *)a->format_data;
574
575	/* Sanity check. */
576	if (archive_entry_pathname(entry_original) == NULL) {
577		archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
578			  "Can't record entry in tar file without pathname");
579		return (ARCHIVE_FAILED);
580	}
581
582	/*
583	 * Choose a header encoding.
584	 */
585	if (pax->opt_binary)
586		sconv = NULL;/* Binary mode. */
587	else {
588		/* Header encoding is UTF-8. */
589		if (pax->sconv_utf8 == NULL) {
590			/* Initialize the string conversion object
591			 * we must need */
592			pax->sconv_utf8 = archive_string_conversion_to_charset(
593			    &(a->archive), "UTF-8", 1);
594			if (pax->sconv_utf8 == NULL)
595				/* Couldn't allocate memory */
596				return (ARCHIVE_FAILED);
597		}
598		sconv = pax->sconv_utf8;
599	}
600
601	r = get_entry_hardlink(a, entry_original, &hardlink,
602	    &hardlink_length, sconv);
603	if (r == ARCHIVE_FATAL)
604		return (r);
605	else if (r != ARCHIVE_OK) {
606		r = get_entry_hardlink(a, entry_original, &hardlink,
607		    &hardlink_length, NULL);
608		if (r == ARCHIVE_FATAL)
609			return (r);
610		archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
611		    "Can't translate linkname '%s' to %s", hardlink,
612		    archive_string_conversion_charset_name(sconv));
613		ret = ARCHIVE_WARN;
614		sconv = NULL;/* The header charset switches to binary mode. */
615	}
616
617	/* Make sure this is a type of entry that we can handle here */
618	if (hardlink == NULL) {
619		switch (archive_entry_filetype(entry_original)) {
620		case AE_IFBLK:
621		case AE_IFCHR:
622		case AE_IFIFO:
623		case AE_IFLNK:
624		case AE_IFREG:
625			break;
626		case AE_IFDIR:
627		{
628			/*
629			 * Ensure a trailing '/'.  Modify the original
630			 * entry so the client sees the change.
631			 */
632#if defined(_WIN32) && !defined(__CYGWIN__)
633			const wchar_t *wp;
634
635			wp = archive_entry_pathname_w(entry_original);
636			if (wp != NULL && wp[wcslen(wp) -1] != L'/') {
637				struct archive_wstring ws;
638
639				archive_string_init(&ws);
640				path_length = wcslen(wp);
641				if (archive_wstring_ensure(&ws,
642				    path_length + 2) == NULL) {
643					archive_set_error(&a->archive, ENOMEM,
644					    "Can't allocate pax data");
645					archive_wstring_free(&ws);
646					return(ARCHIVE_FATAL);
647				}
648				/* Should we keep '\' ? */
649				if (wp[path_length -1] == L'\\')
650					path_length--;
651				archive_wstrncpy(&ws, wp, path_length);
652				archive_wstrappend_wchar(&ws, L'/');
653				archive_entry_copy_pathname_w(
654				    entry_original, ws.s);
655				archive_wstring_free(&ws);
656				p = NULL;
657			} else
658#endif
659				p = archive_entry_pathname(entry_original);
660			/*
661			 * On Windows, this is a backup operation just in
662			 * case getting WCS failed. On POSIX, this is a
663			 * normal operation.
664			 */
665			if (p != NULL && p[0] != '\0' && p[strlen(p) - 1] != '/') {
666				struct archive_string as;
667
668				archive_string_init(&as);
669				path_length = strlen(p);
670				if (archive_string_ensure(&as,
671				    path_length + 2) == NULL) {
672					archive_set_error(&a->archive, ENOMEM,
673					    "Can't allocate pax data");
674					archive_string_free(&as);
675					return(ARCHIVE_FATAL);
676				}
677#if defined(_WIN32) && !defined(__CYGWIN__)
678				/* NOTE: This might break the pathname
679				 * if the current code page is CP932 and
680				 * the pathname includes a character '\'
681				 * as a part of its multibyte pathname. */
682				if (p[strlen(p) -1] == '\\')
683					path_length--;
684				else
685#endif
686				archive_strncpy(&as, p, path_length);
687				archive_strappend_char(&as, '/');
688				archive_entry_copy_pathname(
689				    entry_original, as.s);
690				archive_string_free(&as);
691			}
692			break;
693		}
694		case AE_IFSOCK:
695			archive_set_error(&a->archive,
696			    ARCHIVE_ERRNO_FILE_FORMAT,
697			    "tar format cannot archive socket");
698			return (ARCHIVE_FAILED);
699		default:
700			archive_set_error(&a->archive,
701			    ARCHIVE_ERRNO_FILE_FORMAT,
702			    "tar format cannot archive this (type=0%lo)",
703			    (unsigned long)
704			    archive_entry_filetype(entry_original));
705			return (ARCHIVE_FAILED);
706		}
707	}
708
709	/*
710	 * If Mac OS metadata blob is here, recurse to write that
711	 * as a separate entry.  This is really a pretty poor design:
712	 * In particular, it doubles the overhead for long filenames.
713	 * TODO: Help Apple folks design something better and figure
714	 * out how to transition from this legacy format.
715	 *
716	 * Note that this code is present on every platform; clients
717	 * on non-Mac are unlikely to ever provide this data, but
718	 * applications that copy entries from one archive to another
719	 * should not lose data just because the local filesystem
720	 * can't store it.
721	 */
722	mac_metadata =
723	    archive_entry_mac_metadata(entry_original, &mac_metadata_size);
724	if (mac_metadata != NULL) {
725		const char *oname;
726		char *name, *bname;
727		size_t name_length;
728		struct archive_entry *extra = archive_entry_new2(&a->archive);
729
730		oname = archive_entry_pathname(entry_original);
731		name_length = strlen(oname);
732		name = malloc(name_length + 3);
733		if (name == NULL || extra == NULL) {
734			/* XXX error message */
735			archive_entry_free(extra);
736			free(name);
737			return (ARCHIVE_FAILED);
738		}
739		strcpy(name, oname);
740		/* Find last '/'; strip trailing '/' characters */
741		bname = strrchr(name, '/');
742		while (bname != NULL && bname[1] == '\0') {
743			*bname = '\0';
744			bname = strrchr(name, '/');
745		}
746		if (bname == NULL) {
747			memmove(name + 2, name, name_length + 1);
748			memmove(name, "._", 2);
749		} else {
750			bname += 1;
751			memmove(bname + 2, bname, strlen(bname) + 1);
752			memmove(bname, "._", 2);
753		}
754		archive_entry_copy_pathname(extra, name);
755		free(name);
756
757		archive_entry_set_size(extra, mac_metadata_size);
758		archive_entry_set_filetype(extra, AE_IFREG);
759		archive_entry_set_perm(extra,
760		    archive_entry_perm(entry_original));
761		archive_entry_set_mtime(extra,
762		    archive_entry_mtime(entry_original),
763		    archive_entry_mtime_nsec(entry_original));
764		archive_entry_set_gid(extra,
765		    archive_entry_gid(entry_original));
766		archive_entry_set_gname(extra,
767		    archive_entry_gname(entry_original));
768		archive_entry_set_uid(extra,
769		    archive_entry_uid(entry_original));
770		archive_entry_set_uname(extra,
771		    archive_entry_uname(entry_original));
772
773		/* Recurse to write the special copyfile entry. */
774		r = archive_write_pax_header(a, extra);
775		archive_entry_free(extra);
776		if (r < ARCHIVE_WARN)
777			return (r);
778		if (r < ret)
779			ret = r;
780		r = (int)archive_write_pax_data(a, mac_metadata,
781		    mac_metadata_size);
782		if (r < ARCHIVE_WARN)
783			return (r);
784		if (r < ret)
785			ret = r;
786		r = archive_write_pax_finish_entry(a);
787		if (r < ARCHIVE_WARN)
788			return (r);
789		if (r < ret)
790			ret = r;
791	}
792
793	/* Copy entry so we can modify it as needed. */
794#if defined(_WIN32) && !defined(__CYGWIN__)
795	/* Make sure the path separators in pathname, hardlink and symlink
796	 * are all slash '/', not the Windows path separator '\'. */
797	entry_main = __la_win_entry_in_posix_pathseparator(entry_original);
798	if (entry_main == entry_original)
799		entry_main = archive_entry_clone(entry_original);
800#else
801	entry_main = archive_entry_clone(entry_original);
802#endif
803	if (entry_main == NULL) {
804		archive_set_error(&a->archive, ENOMEM,
805		    "Can't allocate pax data");
806		return(ARCHIVE_FATAL);
807	}
808	archive_string_empty(&(pax->pax_header)); /* Blank our work area. */
809	archive_string_empty(&(pax->sparse_map));
810	sparse_total = 0;
811	sparse_list_clear(pax);
812
813	if (hardlink == NULL &&
814	    archive_entry_filetype(entry_main) == AE_IFREG)
815		sparse_count = archive_entry_sparse_reset(entry_main);
816	else
817		sparse_count = 0;
818	if (sparse_count) {
819		int64_t offset, length, last_offset = 0;
820		/* Get the last entry of sparse block. */
821		while (archive_entry_sparse_next(
822		    entry_main, &offset, &length) == ARCHIVE_OK)
823			last_offset = offset + length;
824
825		/* If the last sparse block does not reach the end of file,
826		 * We have to add a empty sparse block as the last entry to
827		 * manage storing file data. */
828		if (last_offset < archive_entry_size(entry_main))
829			archive_entry_sparse_add_entry(entry_main,
830			    archive_entry_size(entry_main), 0);
831		sparse_count = archive_entry_sparse_reset(entry_main);
832	}
833
834	/*
835	 * First, check the name fields and see if any of them
836	 * require binary coding.  If any of them does, then all of
837	 * them do.
838	 */
839	r = get_entry_pathname(a, entry_main, &path, &path_length, sconv);
840	if (r == ARCHIVE_FATAL)
841		return (r);
842	else if (r != ARCHIVE_OK) {
843		r = get_entry_pathname(a, entry_main, &path,
844		    &path_length, NULL);
845		if (r == ARCHIVE_FATAL)
846			return (r);
847		archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
848		    "Can't translate pathname '%s' to %s", path,
849		    archive_string_conversion_charset_name(sconv));
850		ret = ARCHIVE_WARN;
851		sconv = NULL;/* The header charset switches to binary mode. */
852	}
853	r = get_entry_uname(a, entry_main, &uname, &uname_length, sconv);
854	if (r == ARCHIVE_FATAL)
855		return (r);
856	else if (r != ARCHIVE_OK) {
857		r = get_entry_uname(a, entry_main, &uname, &uname_length, NULL);
858		if (r == ARCHIVE_FATAL)
859			return (r);
860		archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
861		    "Can't translate uname '%s' to %s", uname,
862		    archive_string_conversion_charset_name(sconv));
863		ret = ARCHIVE_WARN;
864		sconv = NULL;/* The header charset switches to binary mode. */
865	}
866	r = get_entry_gname(a, entry_main, &gname, &gname_length, sconv);
867	if (r == ARCHIVE_FATAL)
868		return (r);
869	else if (r != ARCHIVE_OK) {
870		r = get_entry_gname(a, entry_main, &gname, &gname_length, NULL);
871		if (r == ARCHIVE_FATAL)
872			return (r);
873		archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
874		    "Can't translate gname '%s' to %s", gname,
875		    archive_string_conversion_charset_name(sconv));
876		ret = ARCHIVE_WARN;
877		sconv = NULL;/* The header charset switches to binary mode. */
878	}
879	linkpath = hardlink;
880	linkpath_length = hardlink_length;
881	if (linkpath == NULL) {
882		r = get_entry_symlink(a, entry_main, &linkpath,
883		    &linkpath_length, sconv);
884		if (r == ARCHIVE_FATAL)
885			return (r);
886		else if (r != ARCHIVE_OK) {
887			r = get_entry_symlink(a, entry_main, &linkpath,
888			    &linkpath_length, NULL);
889			if (r == ARCHIVE_FATAL)
890				return (r);
891			archive_set_error(&a->archive,
892			    ARCHIVE_ERRNO_FILE_FORMAT,
893			    "Can't translate linkname '%s' to %s", linkpath,
894			    archive_string_conversion_charset_name(sconv));
895			ret = ARCHIVE_WARN;
896			sconv = NULL;
897		}
898	}
899
900	/* If any string conversions failed, get all attributes
901	 * in binary-mode. */
902	if (sconv == NULL && !pax->opt_binary) {
903		if (hardlink != NULL) {
904			r = get_entry_hardlink(a, entry_main, &hardlink,
905			    &hardlink_length, NULL);
906			if (r == ARCHIVE_FATAL)
907				return (r);
908			linkpath = hardlink;
909			linkpath_length = hardlink_length;
910		}
911		r = get_entry_pathname(a, entry_main, &path,
912		    &path_length, NULL);
913		if (r == ARCHIVE_FATAL)
914			return (r);
915		r = get_entry_uname(a, entry_main, &uname, &uname_length, NULL);
916		if (r == ARCHIVE_FATAL)
917			return (r);
918		r = get_entry_gname(a, entry_main, &gname, &gname_length, NULL);
919		if (r == ARCHIVE_FATAL)
920			return (r);
921	}
922
923	/* Store the header encoding first, to be nice to readers. */
924	if (sconv == NULL)
925		add_pax_attr(&(pax->pax_header), "hdrcharset", "BINARY");
926
927
928	/*
929	 * If name is too long, or has non-ASCII characters, add
930	 * 'path' to pax extended attrs.  (Note that an unconvertible
931	 * name must have non-ASCII characters.)
932	 */
933	if (has_non_ASCII(path)) {
934		/* We have non-ASCII characters. */
935		add_pax_attr(&(pax->pax_header), "path", path);
936		archive_entry_set_pathname(entry_main,
937		    build_ustar_entry_name(ustar_entry_name,
938			path, path_length, NULL));
939		need_extension = 1;
940	} else {
941		/* We have an all-ASCII path; we'd like to just store
942		 * it in the ustar header if it will fit.  Yes, this
943		 * duplicates some of the logic in
944		 * archive_write_set_format_ustar.c
945		 */
946		if (path_length <= 100) {
947			/* Fits in the old 100-char tar name field. */
948		} else {
949			/* Find largest suffix that will fit. */
950			/* Note: strlen() > 100, so strlen() - 100 - 1 >= 0 */
951			suffix = strchr(path + path_length - 100 - 1, '/');
952			/* Don't attempt an empty prefix. */
953			if (suffix == path)
954				suffix = strchr(suffix + 1, '/');
955			/* We can put it in the ustar header if it's
956			 * all ASCII and it's either <= 100 characters
957			 * or can be split at a '/' into a prefix <=
958			 * 155 chars and a suffix <= 100 chars.  (Note
959			 * the strchr() above will return NULL exactly
960			 * when the path can't be split.)
961			 */
962			if (suffix == NULL       /* Suffix > 100 chars. */
963			    || suffix[1] == '\0'    /* empty suffix */
964			    || suffix - path > 155)  /* Prefix > 155 chars */
965			{
966				add_pax_attr(&(pax->pax_header), "path", path);
967				archive_entry_set_pathname(entry_main,
968				    build_ustar_entry_name(ustar_entry_name,
969					path, path_length, NULL));
970				need_extension = 1;
971			}
972		}
973	}
974
975	if (linkpath != NULL) {
976		/* If link name is too long or has non-ASCII characters, add
977		 * 'linkpath' to pax extended attrs. */
978		if (linkpath_length > 100 || has_non_ASCII(linkpath)) {
979			add_pax_attr(&(pax->pax_header), "linkpath", linkpath);
980			if (linkpath_length > 100) {
981				if (hardlink != NULL)
982					archive_entry_set_hardlink(entry_main,
983					    "././@LongHardLink");
984				else
985					archive_entry_set_symlink(entry_main,
986					    "././@LongSymLink");
987			}
988			need_extension = 1;
989		}
990	}
991	/* Save a pathname since it will be renamed if `entry_main` has
992	 * sparse blocks. */
993	archive_string_init(&entry_name);
994	archive_strcpy(&entry_name, archive_entry_pathname(entry_main));
995
996	/* If file size is too large, add 'size' to pax extended attrs. */
997	if (archive_entry_size(entry_main) >= (((int64_t)1) << 33)) {
998		add_pax_attr_int(&(pax->pax_header), "size",
999		    archive_entry_size(entry_main));
1000		need_extension = 1;
1001	}
1002
1003	/* If numeric GID is too large, add 'gid' to pax extended attrs. */
1004	if ((unsigned int)archive_entry_gid(entry_main) >= (1 << 18)) {
1005		add_pax_attr_int(&(pax->pax_header), "gid",
1006		    archive_entry_gid(entry_main));
1007		need_extension = 1;
1008	}
1009
1010	/* If group name is too large or has non-ASCII characters, add
1011	 * 'gname' to pax extended attrs. */
1012	if (gname != NULL) {
1013		if (gname_length > 31 || has_non_ASCII(gname)) {
1014			add_pax_attr(&(pax->pax_header), "gname", gname);
1015			need_extension = 1;
1016		}
1017	}
1018
1019	/* If numeric UID is too large, add 'uid' to pax extended attrs. */
1020	if ((unsigned int)archive_entry_uid(entry_main) >= (1 << 18)) {
1021		add_pax_attr_int(&(pax->pax_header), "uid",
1022		    archive_entry_uid(entry_main));
1023		need_extension = 1;
1024	}
1025
1026	/* Add 'uname' to pax extended attrs if necessary. */
1027	if (uname != NULL) {
1028		if (uname_length > 31 || has_non_ASCII(uname)) {
1029			add_pax_attr(&(pax->pax_header), "uname", uname);
1030			need_extension = 1;
1031		}
1032	}
1033
1034	/*
1035	 * POSIX/SUSv3 doesn't provide a standard key for large device
1036	 * numbers.  I use the same keys here that Joerg Schilling
1037	 * used for 'star.'  (Which, somewhat confusingly, are called
1038	 * "devXXX" even though they code "rdev" values.)  No doubt,
1039	 * other implementations use other keys.  Note that there's no
1040	 * reason we can't write the same information into a number of
1041	 * different keys.
1042	 *
1043	 * Of course, this is only needed for block or char device entries.
1044	 */
1045	if (archive_entry_filetype(entry_main) == AE_IFBLK
1046	    || archive_entry_filetype(entry_main) == AE_IFCHR) {
1047		/*
1048		 * If rdevmajor is too large, add 'SCHILY.devmajor' to
1049		 * extended attributes.
1050		 */
1051		int rdevmajor, rdevminor;
1052		rdevmajor = archive_entry_rdevmajor(entry_main);
1053		rdevminor = archive_entry_rdevminor(entry_main);
1054		if (rdevmajor >= (1 << 18)) {
1055			add_pax_attr_int(&(pax->pax_header), "SCHILY.devmajor",
1056			    rdevmajor);
1057			/*
1058			 * Non-strict formatting below means we don't
1059			 * have to truncate here.  Not truncating improves
1060			 * the chance that some more modern tar archivers
1061			 * (such as GNU tar 1.13) can restore the full
1062			 * value even if they don't understand the pax
1063			 * extended attributes.  See my rant below about
1064			 * file size fields for additional details.
1065			 */
1066			/* archive_entry_set_rdevmajor(entry_main,
1067			   rdevmajor & ((1 << 18) - 1)); */
1068			need_extension = 1;
1069		}
1070
1071		/*
1072		 * If devminor is too large, add 'SCHILY.devminor' to
1073		 * extended attributes.
1074		 */
1075		if (rdevminor >= (1 << 18)) {
1076			add_pax_attr_int(&(pax->pax_header), "SCHILY.devminor",
1077			    rdevminor);
1078			/* Truncation is not necessary here, either. */
1079			/* archive_entry_set_rdevminor(entry_main,
1080			   rdevminor & ((1 << 18) - 1)); */
1081			need_extension = 1;
1082		}
1083	}
1084
1085	/*
1086	 * Technically, the mtime field in the ustar header can
1087	 * support 33 bits, but many platforms use signed 32-bit time
1088	 * values.  The cutoff of 0x7fffffff here is a compromise.
1089	 * Yes, this check is duplicated just below; this helps to
1090	 * avoid writing an mtime attribute just to handle a
1091	 * high-resolution timestamp in "restricted pax" mode.
1092	 */
1093	if (!need_extension &&
1094	    ((archive_entry_mtime(entry_main) < 0)
1095		|| (archive_entry_mtime(entry_main) >= 0x7fffffff)))
1096		need_extension = 1;
1097
1098	/* I use a star-compatible file flag attribute. */
1099	p = archive_entry_fflags_text(entry_main);
1100	if (!need_extension && p != NULL  &&  *p != '\0')
1101		need_extension = 1;
1102
1103	/* If there are extended attributes, we need an extension */
1104	if (!need_extension && archive_entry_xattr_count(entry_original) > 0)
1105		need_extension = 1;
1106
1107	/* If there are sparse info, we need an extension */
1108	if (!need_extension && sparse_count > 0)
1109		need_extension = 1;
1110
1111	acl_types = archive_entry_acl_types(entry_original);
1112
1113	/* If there are any ACL entries, we need an extension */
1114	if (!need_extension && acl_types != 0)
1115		need_extension = 1;
1116
1117	/*
1118	 * Libarchive used to include these in extended headers for
1119	 * restricted pax format, but that confused people who
1120	 * expected ustar-like time semantics.  So now we only include
1121	 * them in full pax format.
1122	 */
1123	if (a->archive.archive_format != ARCHIVE_FORMAT_TAR_PAX_RESTRICTED) {
1124		if (archive_entry_ctime(entry_main) != 0  ||
1125		    archive_entry_ctime_nsec(entry_main) != 0)
1126			add_pax_attr_time(&(pax->pax_header), "ctime",
1127			    archive_entry_ctime(entry_main),
1128			    archive_entry_ctime_nsec(entry_main));
1129
1130		if (archive_entry_atime(entry_main) != 0 ||
1131		    archive_entry_atime_nsec(entry_main) != 0)
1132			add_pax_attr_time(&(pax->pax_header), "atime",
1133			    archive_entry_atime(entry_main),
1134			    archive_entry_atime_nsec(entry_main));
1135
1136		/* Store birth/creationtime only if it's earlier than mtime */
1137		if (archive_entry_birthtime_is_set(entry_main) &&
1138		    archive_entry_birthtime(entry_main)
1139		    < archive_entry_mtime(entry_main))
1140			add_pax_attr_time(&(pax->pax_header),
1141			    "LIBARCHIVE.creationtime",
1142			    archive_entry_birthtime(entry_main),
1143			    archive_entry_birthtime_nsec(entry_main));
1144	}
1145
1146	/*
1147	 * The following items are handled differently in "pax
1148	 * restricted" format.  In particular, in "pax restricted"
1149	 * format they won't be added unless need_extension is
1150	 * already set (we're already generating an extended header, so
1151	 * may as well include these).
1152	 */
1153	if (a->archive.archive_format != ARCHIVE_FORMAT_TAR_PAX_RESTRICTED ||
1154	    need_extension) {
1155		if (archive_entry_mtime(entry_main) < 0  ||
1156		    archive_entry_mtime(entry_main) >= 0x7fffffff  ||
1157		    archive_entry_mtime_nsec(entry_main) != 0)
1158			add_pax_attr_time(&(pax->pax_header), "mtime",
1159			    archive_entry_mtime(entry_main),
1160			    archive_entry_mtime_nsec(entry_main));
1161
1162		/* I use a star-compatible file flag attribute. */
1163		p = archive_entry_fflags_text(entry_main);
1164		if (p != NULL  &&  *p != '\0')
1165			add_pax_attr(&(pax->pax_header), "SCHILY.fflags", p);
1166
1167		/* I use star-compatible ACL attributes. */
1168		if ((acl_types & ARCHIVE_ENTRY_ACL_TYPE_NFS4) != 0) {
1169			ret = add_pax_acl(a, entry_original, pax,
1170			    ARCHIVE_ENTRY_ACL_STYLE_EXTRA_ID |
1171			    ARCHIVE_ENTRY_ACL_STYLE_SEPARATOR_COMMA |
1172			    ARCHIVE_ENTRY_ACL_STYLE_COMPACT);
1173			if (ret == ARCHIVE_FATAL)
1174				return (ARCHIVE_FATAL);
1175		}
1176		if (acl_types & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) {
1177			ret = add_pax_acl(a, entry_original, pax,
1178			    ARCHIVE_ENTRY_ACL_TYPE_ACCESS |
1179			    ARCHIVE_ENTRY_ACL_STYLE_EXTRA_ID |
1180			    ARCHIVE_ENTRY_ACL_STYLE_SEPARATOR_COMMA);
1181			if (ret == ARCHIVE_FATAL)
1182				return (ARCHIVE_FATAL);
1183		}
1184		if (acl_types & ARCHIVE_ENTRY_ACL_TYPE_DEFAULT) {
1185			ret = add_pax_acl(a, entry_original, pax,
1186			    ARCHIVE_ENTRY_ACL_TYPE_DEFAULT |
1187			    ARCHIVE_ENTRY_ACL_STYLE_EXTRA_ID |
1188			    ARCHIVE_ENTRY_ACL_STYLE_SEPARATOR_COMMA);
1189			if (ret == ARCHIVE_FATAL)
1190				return (ARCHIVE_FATAL);
1191		}
1192
1193		/* We use GNU-tar-compatible sparse attributes. */
1194		if (sparse_count > 0) {
1195			int64_t soffset, slength;
1196
1197			add_pax_attr_int(&(pax->pax_header),
1198			    "GNU.sparse.major", 1);
1199			add_pax_attr_int(&(pax->pax_header),
1200			    "GNU.sparse.minor", 0);
1201			/*
1202			 * Make sure to store the original path, since
1203			 * truncation to ustar limit happened already.
1204			 */
1205			add_pax_attr(&(pax->pax_header),
1206			    "GNU.sparse.name", path);
1207			add_pax_attr_int(&(pax->pax_header),
1208			    "GNU.sparse.realsize",
1209			    archive_entry_size(entry_main));
1210
1211			/* Rename the file name which will be used for
1212			 * ustar header to a special name, which GNU
1213			 * PAX Format 1.0 requires */
1214			archive_entry_set_pathname(entry_main,
1215			    build_gnu_sparse_name(gnu_sparse_name,
1216			        entry_name.s));
1217
1218			/*
1219			 * - Make a sparse map, which will precede a file data.
1220			 * - Get the total size of available data of sparse.
1221			 */
1222			archive_string_sprintf(&(pax->sparse_map), "%d\n",
1223			    sparse_count);
1224			while (archive_entry_sparse_next(entry_main,
1225			    &soffset, &slength) == ARCHIVE_OK) {
1226				archive_string_sprintf(&(pax->sparse_map),
1227				    "%jd\n%jd\n",
1228				    (intmax_t)soffset,
1229				    (intmax_t)slength);
1230				sparse_total += slength;
1231				if (sparse_list_add(pax, soffset, slength)
1232				    != ARCHIVE_OK) {
1233					archive_set_error(&a->archive,
1234					    ENOMEM,
1235					    "Can't allocate memory");
1236					archive_entry_free(entry_main);
1237					archive_string_free(&entry_name);
1238					return (ARCHIVE_FATAL);
1239				}
1240			}
1241		}
1242
1243		/* Store extended attributes */
1244		if (archive_write_pax_header_xattrs(a, pax, entry_original)
1245		    == ARCHIVE_FATAL) {
1246			archive_entry_free(entry_main);
1247			archive_string_free(&entry_name);
1248			return (ARCHIVE_FATAL);
1249		}
1250	}
1251
1252	/* Only regular files have data. */
1253	if (archive_entry_filetype(entry_main) != AE_IFREG)
1254		archive_entry_set_size(entry_main, 0);
1255
1256	/*
1257	 * Pax-restricted does not store data for hardlinks, in order
1258	 * to improve compatibility with ustar.
1259	 */
1260	if (a->archive.archive_format != ARCHIVE_FORMAT_TAR_PAX_INTERCHANGE &&
1261	    hardlink != NULL)
1262		archive_entry_set_size(entry_main, 0);
1263
1264	/*
1265	 * XXX Full pax interchange format does permit a hardlink
1266	 * entry to have data associated with it.  I'm not supporting
1267	 * that here because the client expects me to tell them whether
1268	 * or not this format expects data for hardlinks.  If I
1269	 * don't check here, then every pax archive will end up with
1270	 * duplicated data for hardlinks.  Someday, there may be
1271	 * need to select this behavior, in which case the following
1272	 * will need to be revisited. XXX
1273	 */
1274	if (hardlink != NULL)
1275		archive_entry_set_size(entry_main, 0);
1276
1277	/* Save a real file size. */
1278	real_size = archive_entry_size(entry_main);
1279	/*
1280	 * Overwrite a file size by the total size of sparse blocks and
1281	 * the size of sparse map info. That file size is the length of
1282	 * the data, which we will exactly store into an archive file.
1283	 */
1284	if (archive_strlen(&(pax->sparse_map))) {
1285		size_t mapsize = archive_strlen(&(pax->sparse_map));
1286		pax->sparse_map_padding = 0x1ff & (-(ssize_t)mapsize);
1287		archive_entry_set_size(entry_main,
1288		    mapsize + pax->sparse_map_padding + sparse_total);
1289	}
1290
1291	/* Format 'ustar' header for main entry.
1292	 *
1293	 * The trouble with file size: If the reader can't understand
1294	 * the file size, they may not be able to locate the next
1295	 * entry and the rest of the archive is toast.  Pax-compliant
1296	 * readers are supposed to ignore the file size in the main
1297	 * header, so the question becomes how to maximize portability
1298	 * for readers that don't support pax attribute extensions.
1299	 * For maximum compatibility, I permit numeric extensions in
1300	 * the main header so that the file size stored will always be
1301	 * correct, even if it's in a format that only some
1302	 * implementations understand.  The technique used here is:
1303	 *
1304	 *  a) If possible, follow the standard exactly.  This handles
1305	 *  files up to 8 gigabytes minus 1.
1306	 *
1307	 *  b) If that fails, try octal but omit the field terminator.
1308	 *  That handles files up to 64 gigabytes minus 1.
1309	 *
1310	 *  c) Otherwise, use base-256 extensions.  That handles files
1311	 *  up to 2^63 in this implementation, with the potential to
1312	 *  go up to 2^94.  That should hold us for a while. ;-)
1313	 *
1314	 * The non-strict formatter uses similar logic for other
1315	 * numeric fields, though they're less critical.
1316	 */
1317	if (__archive_write_format_header_ustar(a, ustarbuff, entry_main, -1, 0,
1318	    NULL) == ARCHIVE_FATAL)
1319		return (ARCHIVE_FATAL);
1320
1321	/* If we built any extended attributes, write that entry first. */
1322	if (archive_strlen(&(pax->pax_header)) > 0) {
1323		struct archive_entry *pax_attr_entry;
1324		time_t s;
1325		int64_t uid, gid;
1326		int mode;
1327
1328		pax_attr_entry = archive_entry_new2(&a->archive);
1329		p = entry_name.s;
1330		archive_entry_set_pathname(pax_attr_entry,
1331		    build_pax_attribute_name(pax_entry_name, p));
1332		archive_entry_set_size(pax_attr_entry,
1333		    archive_strlen(&(pax->pax_header)));
1334		/* Copy uid/gid (but clip to ustar limits). */
1335		uid = archive_entry_uid(entry_main);
1336		if (uid >= 1 << 18)
1337			uid = (1 << 18) - 1;
1338		archive_entry_set_uid(pax_attr_entry, uid);
1339		gid = archive_entry_gid(entry_main);
1340		if (gid >= 1 << 18)
1341			gid = (1 << 18) - 1;
1342		archive_entry_set_gid(pax_attr_entry, gid);
1343		/* Copy mode over (but not setuid/setgid bits) */
1344		mode = archive_entry_mode(entry_main);
1345#ifdef S_ISUID
1346		mode &= ~S_ISUID;
1347#endif
1348#ifdef S_ISGID
1349		mode &= ~S_ISGID;
1350#endif
1351#ifdef S_ISVTX
1352		mode &= ~S_ISVTX;
1353#endif
1354		archive_entry_set_mode(pax_attr_entry, mode);
1355
1356		/* Copy uname/gname. */
1357		archive_entry_set_uname(pax_attr_entry,
1358		    archive_entry_uname(entry_main));
1359		archive_entry_set_gname(pax_attr_entry,
1360		    archive_entry_gname(entry_main));
1361
1362		/* Copy mtime, but clip to ustar limits. */
1363		s = archive_entry_mtime(entry_main);
1364		if (s < 0) { s = 0; }
1365		if (s >= 0x7fffffff) { s = 0x7fffffff; }
1366		archive_entry_set_mtime(pax_attr_entry, s, 0);
1367
1368		/* Standard ustar doesn't support atime. */
1369		archive_entry_set_atime(pax_attr_entry, 0, 0);
1370
1371		/* Standard ustar doesn't support ctime. */
1372		archive_entry_set_ctime(pax_attr_entry, 0, 0);
1373
1374		r = __archive_write_format_header_ustar(a, paxbuff,
1375		    pax_attr_entry, 'x', 1, NULL);
1376
1377		archive_entry_free(pax_attr_entry);
1378
1379		/* Note that the 'x' header shouldn't ever fail to format */
1380		if (r < ARCHIVE_WARN) {
1381			archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
1382			    "archive_write_pax_header: "
1383			    "'x' header failed?!  This can't happen.\n");
1384			return (ARCHIVE_FATAL);
1385		} else if (r < ret)
1386			ret = r;
1387		r = __archive_write_output(a, paxbuff, 512);
1388		if (r != ARCHIVE_OK) {
1389			sparse_list_clear(pax);
1390			pax->entry_bytes_remaining = 0;
1391			pax->entry_padding = 0;
1392			return (ARCHIVE_FATAL);
1393		}
1394
1395		pax->entry_bytes_remaining = archive_strlen(&(pax->pax_header));
1396		pax->entry_padding =
1397		    0x1ff & (-(int64_t)pax->entry_bytes_remaining);
1398
1399		r = __archive_write_output(a, pax->pax_header.s,
1400		    archive_strlen(&(pax->pax_header)));
1401		if (r != ARCHIVE_OK) {
1402			/* If a write fails, we're pretty much toast. */
1403			return (ARCHIVE_FATAL);
1404		}
1405		/* Pad out the end of the entry. */
1406		r = __archive_write_nulls(a, (size_t)pax->entry_padding);
1407		if (r != ARCHIVE_OK) {
1408			/* If a write fails, we're pretty much toast. */
1409			return (ARCHIVE_FATAL);
1410		}
1411		pax->entry_bytes_remaining = pax->entry_padding = 0;
1412	}
1413
1414	/* Write the header for main entry. */
1415	r = __archive_write_output(a, ustarbuff, 512);
1416	if (r != ARCHIVE_OK)
1417		return (r);
1418
1419	/*
1420	 * Inform the client of the on-disk size we're using, so
1421	 * they can avoid unnecessarily writing a body for something
1422	 * that we're just going to ignore.
1423	 */
1424	archive_entry_set_size(entry_original, real_size);
1425	if (pax->sparse_list == NULL && real_size > 0) {
1426		/* This is not a sparse file but we handle its data as
1427		 * a sparse block. */
1428		sparse_list_add(pax, 0, real_size);
1429		sparse_total = real_size;
1430	}
1431	pax->entry_padding = 0x1ff & (-(int64_t)sparse_total);
1432	archive_entry_free(entry_main);
1433	archive_string_free(&entry_name);
1434
1435	return (ret);
1436}
1437
1438/*
1439 * We need a valid name for the regular 'ustar' entry.  This routine
1440 * tries to hack something more-or-less reasonable.
1441 *
1442 * The approach here tries to preserve leading dir names.  We do so by
1443 * working with four sections:
1444 *   1) "prefix" directory names,
1445 *   2) "suffix" directory names,
1446 *   3) inserted dir name (optional),
1447 *   4) filename.
1448 *
1449 * These sections must satisfy the following requirements:
1450 *   * Parts 1 & 2 together form an initial portion of the dir name.
1451 *   * Part 3 is specified by the caller.  (It should not contain a leading
1452 *     or trailing '/'.)
1453 *   * Part 4 forms an initial portion of the base filename.
1454 *   * The filename must be <= 99 chars to fit the ustar 'name' field.
1455 *   * Parts 2, 3, 4 together must be <= 99 chars to fit the ustar 'name' fld.
1456 *   * Part 1 must be <= 155 chars to fit the ustar 'prefix' field.
1457 *   * If the original name ends in a '/', the new name must also end in a '/'
1458 *   * Trailing '/.' sequences may be stripped.
1459 *
1460 * Note: Recall that the ustar format does not store the '/' separating
1461 * parts 1 & 2, but does store the '/' separating parts 2 & 3.
1462 */
1463static char *
1464build_ustar_entry_name(char *dest, const char *src, size_t src_length,
1465    const char *insert)
1466{
1467	const char *prefix, *prefix_end;
1468	const char *suffix, *suffix_end;
1469	const char *filename, *filename_end;
1470	char *p;
1471	int need_slash = 0; /* Was there a trailing slash? */
1472	size_t suffix_length = 99;
1473	size_t insert_length;
1474
1475	/* Length of additional dir element to be added. */
1476	if (insert == NULL)
1477		insert_length = 0;
1478	else
1479		/* +2 here allows for '/' before and after the insert. */
1480		insert_length = strlen(insert) + 2;
1481
1482	/* Step 0: Quick bailout in a common case. */
1483	if (src_length < 100 && insert == NULL) {
1484		strncpy(dest, src, src_length);
1485		dest[src_length] = '\0';
1486		return (dest);
1487	}
1488
1489	/* Step 1: Locate filename and enforce the length restriction. */
1490	filename_end = src + src_length;
1491	/* Remove trailing '/' chars and '/.' pairs. */
1492	for (;;) {
1493		if (filename_end > src && filename_end[-1] == '/') {
1494			filename_end --;
1495			need_slash = 1; /* Remember to restore trailing '/'. */
1496			continue;
1497		}
1498		if (filename_end > src + 1 && filename_end[-1] == '.'
1499		    && filename_end[-2] == '/') {
1500			filename_end -= 2;
1501			need_slash = 1; /* "foo/." will become "foo/" */
1502			continue;
1503		}
1504		break;
1505	}
1506	if (need_slash)
1507		suffix_length--;
1508	/* Find start of filename. */
1509	filename = filename_end - 1;
1510	while ((filename > src) && (*filename != '/'))
1511		filename --;
1512	if ((*filename == '/') && (filename < filename_end - 1))
1513		filename ++;
1514	/* Adjust filename_end so that filename + insert fits in 99 chars. */
1515	suffix_length -= insert_length;
1516	if (filename_end > filename + suffix_length)
1517		filename_end = filename + suffix_length;
1518	/* Calculate max size for "suffix" section (#3 above). */
1519	suffix_length -= filename_end - filename;
1520
1521	/* Step 2: Locate the "prefix" section of the dirname, including
1522	 * trailing '/'. */
1523	prefix = src;
1524	prefix_end = prefix + 155;
1525	if (prefix_end > filename)
1526		prefix_end = filename;
1527	while (prefix_end > prefix && *prefix_end != '/')
1528		prefix_end--;
1529	if ((prefix_end < filename) && (*prefix_end == '/'))
1530		prefix_end++;
1531
1532	/* Step 3: Locate the "suffix" section of the dirname,
1533	 * including trailing '/'. */
1534	suffix = prefix_end;
1535	suffix_end = suffix + suffix_length; /* Enforce limit. */
1536	if (suffix_end > filename)
1537		suffix_end = filename;
1538	if (suffix_end < suffix)
1539		suffix_end = suffix;
1540	while (suffix_end > suffix && *suffix_end != '/')
1541		suffix_end--;
1542	if ((suffix_end < filename) && (*suffix_end == '/'))
1543		suffix_end++;
1544
1545	/* Step 4: Build the new name. */
1546	/* The OpenBSD strlcpy function is safer, but less portable. */
1547	/* Rather than maintain two versions, just use the strncpy version. */
1548	p = dest;
1549	if (prefix_end > prefix) {
1550		strncpy(p, prefix, prefix_end - prefix);
1551		p += prefix_end - prefix;
1552	}
1553	if (suffix_end > suffix) {
1554		strncpy(p, suffix, suffix_end - suffix);
1555		p += suffix_end - suffix;
1556	}
1557	if (insert != NULL) {
1558		/* Note: assume insert does not have leading or trailing '/' */
1559		strcpy(p, insert);
1560		p += strlen(insert);
1561		*p++ = '/';
1562	}
1563	strncpy(p, filename, filename_end - filename);
1564	p += filename_end - filename;
1565	if (need_slash)
1566		*p++ = '/';
1567	*p = '\0';
1568
1569	return (dest);
1570}
1571
1572/*
1573 * The ustar header for the pax extended attributes must have a
1574 * reasonable name:  SUSv3 requires 'dirname'/PaxHeader.'pid'/'filename'
1575 * where 'pid' is the PID of the archiving process.  Unfortunately,
1576 * that makes testing a pain since the output varies for each run,
1577 * so I'm sticking with the simpler 'dirname'/PaxHeader/'filename'
1578 * for now.  (Someday, I'll make this settable.  Then I can use the
1579 * SUS recommendation as default and test harnesses can override it
1580 * to get predictable results.)
1581 *
1582 * Joerg Schilling has argued that this is unnecessary because, in
1583 * practice, if the pax extended attributes get extracted as regular
1584 * files, no one is going to bother reading those attributes to
1585 * manually restore them.  Based on this, 'star' uses
1586 * /tmp/PaxHeader/'basename' as the ustar header name.  This is a
1587 * tempting argument, in part because it's simpler than the SUSv3
1588 * recommendation, but I'm not entirely convinced.  I'm also
1589 * uncomfortable with the fact that "/tmp" is a Unix-ism.
1590 *
1591 * The following routine leverages build_ustar_entry_name() above and
1592 * so is simpler than you might think.  It just needs to provide the
1593 * additional path element and handle a few pathological cases).
1594 */
1595static char *
1596build_pax_attribute_name(char *dest, const char *src)
1597{
1598	char buff[64];
1599	const char *p;
1600
1601	/* Handle the null filename case. */
1602	if (src == NULL || *src == '\0') {
1603		strcpy(dest, "PaxHeader/blank");
1604		return (dest);
1605	}
1606
1607	/* Prune final '/' and other unwanted final elements. */
1608	p = src + strlen(src);
1609	for (;;) {
1610		/* Ends in "/", remove the '/' */
1611		if (p > src && p[-1] == '/') {
1612			--p;
1613			continue;
1614		}
1615		/* Ends in "/.", remove the '.' */
1616		if (p > src + 1 && p[-1] == '.'
1617		    && p[-2] == '/') {
1618			--p;
1619			continue;
1620		}
1621		break;
1622	}
1623
1624	/* Pathological case: After above, there was nothing left.
1625	 * This includes "/." "/./." "/.//./." etc. */
1626	if (p == src) {
1627		strcpy(dest, "/PaxHeader/rootdir");
1628		return (dest);
1629	}
1630
1631	/* Convert unadorned "." into a suitable filename. */
1632	if (*src == '.' && p == src + 1) {
1633		strcpy(dest, "PaxHeader/currentdir");
1634		return (dest);
1635	}
1636
1637	/*
1638	 * TODO: Push this string into the 'pax' structure to avoid
1639	 * recomputing it every time.  That will also open the door
1640	 * to having clients override it.
1641	 */
1642#if HAVE_GETPID && 0  /* Disable this for now; see above comment. */
1643	sprintf(buff, "PaxHeader.%d", getpid());
1644#else
1645	/* If the platform can't fetch the pid, don't include it. */
1646	strcpy(buff, "PaxHeader");
1647#endif
1648	/* General case: build a ustar-compatible name adding
1649	 * "/PaxHeader/". */
1650	build_ustar_entry_name(dest, src, p - src, buff);
1651
1652	return (dest);
1653}
1654
1655/*
1656 * GNU PAX Format 1.0 requires the special name, which pattern is:
1657 * <dir>/GNUSparseFile.<pid>/<original file name>
1658 *
1659 * Since reproducible archives are more important, use 0 as pid.
1660 *
1661 * This function is used for only Sparse file, a file type of which
1662 * is regular file.
1663 */
1664static char *
1665build_gnu_sparse_name(char *dest, const char *src)
1666{
1667	const char *p;
1668
1669	/* Handle the null filename case. */
1670	if (src == NULL || *src == '\0') {
1671		strcpy(dest, "GNUSparseFile/blank");
1672		return (dest);
1673	}
1674
1675	/* Prune final '/' and other unwanted final elements. */
1676	p = src + strlen(src);
1677	for (;;) {
1678		/* Ends in "/", remove the '/' */
1679		if (p > src && p[-1] == '/') {
1680			--p;
1681			continue;
1682		}
1683		/* Ends in "/.", remove the '.' */
1684		if (p > src + 1 && p[-1] == '.'
1685		    && p[-2] == '/') {
1686			--p;
1687			continue;
1688		}
1689		break;
1690	}
1691
1692	/* General case: build a ustar-compatible name adding
1693	 * "/GNUSparseFile/". */
1694	build_ustar_entry_name(dest, src, p - src, "GNUSparseFile.0");
1695
1696	return (dest);
1697}
1698
1699/* Write two null blocks for the end of archive */
1700static int
1701archive_write_pax_close(struct archive_write *a)
1702{
1703	return (__archive_write_nulls(a, 512 * 2));
1704}
1705
1706static int
1707archive_write_pax_free(struct archive_write *a)
1708{
1709	struct pax *pax;
1710
1711	pax = (struct pax *)a->format_data;
1712	if (pax == NULL)
1713		return (ARCHIVE_OK);
1714
1715	archive_string_free(&pax->pax_header);
1716	archive_string_free(&pax->sparse_map);
1717	archive_string_free(&pax->l_url_encoded_name);
1718	sparse_list_clear(pax);
1719	free(pax);
1720	a->format_data = NULL;
1721	return (ARCHIVE_OK);
1722}
1723
1724static int
1725archive_write_pax_finish_entry(struct archive_write *a)
1726{
1727	struct pax *pax;
1728	uint64_t remaining;
1729	int ret;
1730
1731	pax = (struct pax *)a->format_data;
1732	remaining = pax->entry_bytes_remaining;
1733	if (remaining == 0) {
1734		while (pax->sparse_list) {
1735			struct sparse_block *sb;
1736			if (!pax->sparse_list->is_hole)
1737				remaining += pax->sparse_list->remaining;
1738			sb = pax->sparse_list->next;
1739			free(pax->sparse_list);
1740			pax->sparse_list = sb;
1741		}
1742	}
1743	ret = __archive_write_nulls(a, (size_t)(remaining + pax->entry_padding));
1744	pax->entry_bytes_remaining = pax->entry_padding = 0;
1745	return (ret);
1746}
1747
1748static ssize_t
1749archive_write_pax_data(struct archive_write *a, const void *buff, size_t s)
1750{
1751	struct pax *pax;
1752	size_t ws;
1753	size_t total;
1754	int ret;
1755
1756	pax = (struct pax *)a->format_data;
1757
1758	/*
1759	 * According to GNU PAX format 1.0, write a sparse map
1760	 * before the body.
1761	 */
1762	if (archive_strlen(&(pax->sparse_map))) {
1763		ret = __archive_write_output(a, pax->sparse_map.s,
1764		    archive_strlen(&(pax->sparse_map)));
1765		if (ret != ARCHIVE_OK)
1766			return (ret);
1767		ret = __archive_write_nulls(a, pax->sparse_map_padding);
1768		if (ret != ARCHIVE_OK)
1769			return (ret);
1770		archive_string_empty(&(pax->sparse_map));
1771	}
1772
1773	total = 0;
1774	while (total < s) {
1775		const unsigned char *p;
1776
1777		while (pax->sparse_list != NULL &&
1778		    pax->sparse_list->remaining == 0) {
1779			struct sparse_block *sb = pax->sparse_list->next;
1780			free(pax->sparse_list);
1781			pax->sparse_list = sb;
1782		}
1783
1784		if (pax->sparse_list == NULL)
1785			return (total);
1786
1787		p = ((const unsigned char *)buff) + total;
1788		ws = s - total;
1789		if (ws > pax->sparse_list->remaining)
1790			ws = (size_t)pax->sparse_list->remaining;
1791
1792		if (pax->sparse_list->is_hole) {
1793			/* Current block is hole thus we do not write
1794			 * the body. */
1795			pax->sparse_list->remaining -= ws;
1796			total += ws;
1797			continue;
1798		}
1799
1800		ret = __archive_write_output(a, p, ws);
1801		pax->sparse_list->remaining -= ws;
1802		total += ws;
1803		if (ret != ARCHIVE_OK)
1804			return (ret);
1805	}
1806	return (total);
1807}
1808
1809static int
1810has_non_ASCII(const char *_p)
1811{
1812	const unsigned char *p = (const unsigned char *)_p;
1813
1814	if (p == NULL)
1815		return (1);
1816	while (*p != '\0' && *p < 128)
1817		p++;
1818	return (*p != '\0');
1819}
1820
1821/*
1822 * Used by extended attribute support; encodes the name
1823 * so that there will be no '=' characters in the result.
1824 */
1825static char *
1826url_encode(const char *in)
1827{
1828	const char *s;
1829	char *d;
1830	int out_len = 0;
1831	char *out;
1832
1833	for (s = in; *s != '\0'; s++) {
1834		if (*s < 33 || *s > 126 || *s == '%' || *s == '=')
1835			out_len += 3;
1836		else
1837			out_len++;
1838	}
1839
1840	out = (char *)malloc(out_len + 1);
1841	if (out == NULL)
1842		return (NULL);
1843
1844	for (s = in, d = out; *s != '\0'; s++) {
1845		/* encode any non-printable ASCII character or '%' or '=' */
1846		if (*s < 33 || *s > 126 || *s == '%' || *s == '=') {
1847			/* URL encoding is '%' followed by two hex digits */
1848			*d++ = '%';
1849			*d++ = "0123456789ABCDEF"[0x0f & (*s >> 4)];
1850			*d++ = "0123456789ABCDEF"[0x0f & *s];
1851		} else {
1852			*d++ = *s;
1853		}
1854	}
1855	*d = '\0';
1856	return (out);
1857}
1858
1859/*
1860 * Encode a sequence of bytes into a C string using base-64 encoding.
1861 *
1862 * Returns a null-terminated C string allocated with malloc(); caller
1863 * is responsible for freeing the result.
1864 */
1865static char *
1866base64_encode(const char *s, size_t len)
1867{
1868	static const char digits[64] =
1869	    { 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
1870	      'P','Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d',
1871	      'e','f','g','h','i','j','k','l','m','n','o','p','q','r','s',
1872	      't','u','v','w','x','y','z','0','1','2','3','4','5','6','7',
1873	      '8','9','+','/' };
1874	int v;
1875	char *d, *out;
1876
1877	/* 3 bytes becomes 4 chars, but round up and allow for trailing NUL */
1878	out = (char *)malloc((len * 4 + 2) / 3 + 1);
1879	if (out == NULL)
1880		return (NULL);
1881	d = out;
1882
1883	/* Convert each group of 3 bytes into 4 characters. */
1884	while (len >= 3) {
1885		v = (((int)s[0] << 16) & 0xff0000)
1886		    | (((int)s[1] << 8) & 0xff00)
1887		    | (((int)s[2]) & 0x00ff);
1888		s += 3;
1889		len -= 3;
1890		*d++ = digits[(v >> 18) & 0x3f];
1891		*d++ = digits[(v >> 12) & 0x3f];
1892		*d++ = digits[(v >> 6) & 0x3f];
1893		*d++ = digits[(v) & 0x3f];
1894	}
1895	/* Handle final group of 1 byte (2 chars) or 2 bytes (3 chars). */
1896	switch (len) {
1897	case 0: break;
1898	case 1:
1899		v = (((int)s[0] << 16) & 0xff0000);
1900		*d++ = digits[(v >> 18) & 0x3f];
1901		*d++ = digits[(v >> 12) & 0x3f];
1902		break;
1903	case 2:
1904		v = (((int)s[0] << 16) & 0xff0000)
1905		    | (((int)s[1] << 8) & 0xff00);
1906		*d++ = digits[(v >> 18) & 0x3f];
1907		*d++ = digits[(v >> 12) & 0x3f];
1908		*d++ = digits[(v >> 6) & 0x3f];
1909		break;
1910	}
1911	/* Add trailing NUL character so output is a valid C string. */
1912	*d = '\0';
1913	return (out);
1914}
1915
1916static void
1917sparse_list_clear(struct pax *pax)
1918{
1919	while (pax->sparse_list != NULL) {
1920		struct sparse_block *sb = pax->sparse_list;
1921		pax->sparse_list = sb->next;
1922		free(sb);
1923	}
1924	pax->sparse_tail = NULL;
1925}
1926
1927static int
1928_sparse_list_add_block(struct pax *pax, int64_t offset, int64_t length,
1929    int is_hole)
1930{
1931	struct sparse_block *sb;
1932
1933	sb = (struct sparse_block *)malloc(sizeof(*sb));
1934	if (sb == NULL)
1935		return (ARCHIVE_FATAL);
1936	sb->next = NULL;
1937	sb->is_hole = is_hole;
1938	sb->offset = offset;
1939	sb->remaining = length;
1940	if (pax->sparse_list == NULL || pax->sparse_tail == NULL)
1941		pax->sparse_list = pax->sparse_tail = sb;
1942	else {
1943		pax->sparse_tail->next = sb;
1944		pax->sparse_tail = sb;
1945	}
1946	return (ARCHIVE_OK);
1947}
1948
1949static int
1950sparse_list_add(struct pax *pax, int64_t offset, int64_t length)
1951{
1952	int64_t last_offset;
1953	int r;
1954
1955	if (pax->sparse_tail == NULL)
1956		last_offset = 0;
1957	else {
1958		last_offset = pax->sparse_tail->offset +
1959		    pax->sparse_tail->remaining;
1960	}
1961	if (last_offset < offset) {
1962		/* Add a hole block. */
1963		r = _sparse_list_add_block(pax, last_offset,
1964		    offset - last_offset, 1);
1965		if (r != ARCHIVE_OK)
1966			return (r);
1967	}
1968	/* Add data block. */
1969	return (_sparse_list_add_block(pax, offset, length, 0));
1970}
1971
1972