1 /*-
2  * Copyright (c) 2003-2007 Tim Kientzle
3  * Copyright (c) 2008 Joerg Sonnenberger
4  * Copyright (c) 2011-2012 Michihiro NAKAJIMA
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/12/contrib/libarchive/libarchive/archive_read_support_format_mtree.c 372820 2022-12-28 22:12:33Z git2svn $");
30 
31 #ifdef HAVE_SYS_STAT_H
32 #include <sys/stat.h>
33 #endif
34 #ifdef HAVE_ERRNO_H
35 #include <errno.h>
36 #endif
37 #ifdef HAVE_FCNTL_H
38 #include <fcntl.h>
39 #endif
40 #include <stddef.h>
41 /* #include <stdint.h> */ /* See archive_platform.h */
42 #ifdef HAVE_STDLIB_H
43 #include <stdlib.h>
44 #endif
45 #ifdef HAVE_STRING_H
46 #include <string.h>
47 #endif
48 #ifdef HAVE_CTYPE_H
49 #include <ctype.h>
50 #endif
51 
52 #include "archive.h"
53 #include "archive_entry.h"
54 #include "archive_entry_private.h"
55 #include "archive_private.h"
56 #include "archive_rb.h"
57 #include "archive_read_private.h"
58 #include "archive_string.h"
59 #include "archive_pack_dev.h"
60 
61 #ifndef O_BINARY
62 #define	O_BINARY 0
63 #endif
64 #ifndef O_CLOEXEC
65 #define O_CLOEXEC	0
66 #endif
67 
68 #define	MTREE_HAS_DEVICE	0x0001
69 #define	MTREE_HAS_FFLAGS	0x0002
70 #define	MTREE_HAS_GID		0x0004
71 #define	MTREE_HAS_GNAME		0x0008
72 #define	MTREE_HAS_MTIME		0x0010
73 #define	MTREE_HAS_NLINK		0x0020
74 #define	MTREE_HAS_PERM		0x0040
75 #define	MTREE_HAS_SIZE		0x0080
76 #define	MTREE_HAS_TYPE		0x0100
77 #define	MTREE_HAS_UID		0x0200
78 #define	MTREE_HAS_UNAME		0x0400
79 
80 #define	MTREE_HAS_OPTIONAL	0x0800
81 #define	MTREE_HAS_NOCHANGE	0x1000 /* FreeBSD specific */
82 
83 #define	MAX_LINE_LEN		(1024 * 1024)
84 
85 struct mtree_option {
86 	struct mtree_option *next;
87 	char *value;
88 };
89 
90 struct mtree_entry {
91 	struct archive_rb_node rbnode;
92 	struct mtree_entry *next_dup;
93 	struct mtree_entry *next;
94 	struct mtree_option *options;
95 	char *name;
96 	char full;
97 	char used;
98 };
99 
100 struct mtree {
101 	struct archive_string	 line;
102 	size_t			 buffsize;
103 	char			*buff;
104 	int64_t			 offset;
105 	int			 fd;
106 	int			 archive_format;
107 	const char		*archive_format_name;
108 	struct mtree_entry	*entries;
109 	struct mtree_entry	*this_entry;
110 	struct archive_rb_tree	 entry_rbtree;
111 	struct archive_string	 current_dir;
112 	struct archive_string	 contents_name;
113 
114 	struct archive_entry_linkresolver *resolver;
115 	struct archive_rb_tree rbtree;
116 
117 	int64_t			 cur_size;
118 	char checkfs;
119 };
120 
121 static int	bid_keycmp(const char *, const char *, ssize_t);
122 static int	cleanup(struct archive_read *);
123 static int	detect_form(struct archive_read *, int *);
124 static int	mtree_bid(struct archive_read *, int);
125 static int	parse_file(struct archive_read *, struct archive_entry *,
126 		    struct mtree *, struct mtree_entry *, int *);
127 static void	parse_escapes(char *, struct mtree_entry *);
128 static int	parse_line(struct archive_read *, struct archive_entry *,
129 		    struct mtree *, struct mtree_entry *, int *);
130 static int	parse_keyword(struct archive_read *, struct mtree *,
131 		    struct archive_entry *, struct mtree_option *, int *);
132 static int	read_data(struct archive_read *a,
133 		    const void **buff, size_t *size, int64_t *offset);
134 static ssize_t	readline(struct archive_read *, struct mtree *, char **, ssize_t);
135 static int	skip(struct archive_read *a);
136 static int	read_header(struct archive_read *,
137 		    struct archive_entry *);
138 static int64_t	mtree_atol(char **, int base);
139 #ifndef HAVE_STRNLEN
140 static size_t	mtree_strnlen(const char *, size_t);
141 #endif
142 
143 /*
144  * There's no standard for TIME_T_MAX/TIME_T_MIN.  So we compute them
145  * here.  TODO: Move this to configure time, but be careful
146  * about cross-compile environments.
147  */
148 static int64_t
get_time_t_max(void)149 get_time_t_max(void)
150 {
151 #if defined(TIME_T_MAX)
152 	return TIME_T_MAX;
153 #else
154 	/* ISO C allows time_t to be a floating-point type,
155 	   but POSIX requires an integer type.  The following
156 	   should work on any system that follows the POSIX
157 	   conventions. */
158 	if (((time_t)0) < ((time_t)-1)) {
159 		/* Time_t is unsigned */
160 		return (~(time_t)0);
161 	} else {
162 		/* Time_t is signed. */
163 		/* Assume it's the same as int64_t or int32_t */
164 		if (sizeof(time_t) == sizeof(int64_t)) {
165 			return (time_t)INT64_MAX;
166 		} else {
167 			return (time_t)INT32_MAX;
168 		}
169 	}
170 #endif
171 }
172 
173 static int64_t
get_time_t_min(void)174 get_time_t_min(void)
175 {
176 #if defined(TIME_T_MIN)
177 	return TIME_T_MIN;
178 #else
179 	if (((time_t)0) < ((time_t)-1)) {
180 		/* Time_t is unsigned */
181 		return (time_t)0;
182 	} else {
183 		/* Time_t is signed. */
184 		if (sizeof(time_t) == sizeof(int64_t)) {
185 			return (time_t)INT64_MIN;
186 		} else {
187 			return (time_t)INT32_MIN;
188 		}
189 	}
190 #endif
191 }
192 
193 #ifdef HAVE_STRNLEN
194 #define mtree_strnlen(a,b) strnlen(a,b)
195 #else
196 static size_t
mtree_strnlen(const char * p,size_t maxlen)197 mtree_strnlen(const char *p, size_t maxlen)
198 {
199 	size_t i;
200 
201 	for (i = 0; i <= maxlen; i++) {
202 		if (p[i] == 0)
203 			break;
204 	}
205 	if (i > maxlen)
206 		return (-1);/* invalid */
207 	return (i);
208 }
209 #endif
210 
211 static int
archive_read_format_mtree_options(struct archive_read * a,const char * key,const char * val)212 archive_read_format_mtree_options(struct archive_read *a,
213     const char *key, const char *val)
214 {
215 	struct mtree *mtree;
216 
217 	mtree = (struct mtree *)(a->format->data);
218 	if (strcmp(key, "checkfs")  == 0) {
219 		/* Allows to read information missing from the mtree from the file system */
220 		if (val == NULL || val[0] == 0) {
221 			mtree->checkfs = 0;
222 		} else {
223 			mtree->checkfs = 1;
224 		}
225 		return (ARCHIVE_OK);
226 	}
227 
228 	/* Note: The "warn" return is just to inform the options
229 	 * supervisor that we didn't handle it.  It will generate
230 	 * a suitable error if no one used this option. */
231 	return (ARCHIVE_WARN);
232 }
233 
234 static void
free_options(struct mtree_option * head)235 free_options(struct mtree_option *head)
236 {
237 	struct mtree_option *next;
238 
239 	for (; head != NULL; head = next) {
240 		next = head->next;
241 		free(head->value);
242 		free(head);
243 	}
244 }
245 
246 static int
mtree_cmp_node(const struct archive_rb_node * n1,const struct archive_rb_node * n2)247 mtree_cmp_node(const struct archive_rb_node *n1,
248     const struct archive_rb_node *n2)
249 {
250 	const struct mtree_entry *e1 = (const struct mtree_entry *)n1;
251 	const struct mtree_entry *e2 = (const struct mtree_entry *)n2;
252 
253 	return (strcmp(e1->name, e2->name));
254 }
255 
256 static int
mtree_cmp_key(const struct archive_rb_node * n,const void * key)257 mtree_cmp_key(const struct archive_rb_node *n, const void *key)
258 {
259 	const struct mtree_entry *e = (const struct mtree_entry *)n;
260 
261 	return (strcmp(e->name, key));
262 }
263 
264 int
archive_read_support_format_mtree(struct archive * _a)265 archive_read_support_format_mtree(struct archive *_a)
266 {
267 	static const struct archive_rb_tree_ops rb_ops = {
268 		mtree_cmp_node, mtree_cmp_key,
269 	};
270 	struct archive_read *a = (struct archive_read *)_a;
271 	struct mtree *mtree;
272 	int r;
273 
274 	archive_check_magic(_a, ARCHIVE_READ_MAGIC,
275 	    ARCHIVE_STATE_NEW, "archive_read_support_format_mtree");
276 
277 	mtree = (struct mtree *)calloc(1, sizeof(*mtree));
278 	if (mtree == NULL) {
279 		archive_set_error(&a->archive, ENOMEM,
280 		    "Can't allocate mtree data");
281 		return (ARCHIVE_FATAL);
282 	}
283 	mtree->checkfs = 0;
284 	mtree->fd = -1;
285 
286 	__archive_rb_tree_init(&mtree->rbtree, &rb_ops);
287 
288 	r = __archive_read_register_format(a, mtree, "mtree",
289            mtree_bid, archive_read_format_mtree_options, read_header, read_data, skip, NULL, cleanup, NULL, NULL);
290 
291 	if (r != ARCHIVE_OK)
292 		free(mtree);
293 	return (ARCHIVE_OK);
294 }
295 
296 static int
cleanup(struct archive_read * a)297 cleanup(struct archive_read *a)
298 {
299 	struct mtree *mtree;
300 	struct mtree_entry *p, *q;
301 
302 	mtree = (struct mtree *)(a->format->data);
303 
304 	p = mtree->entries;
305 	while (p != NULL) {
306 		q = p->next;
307 		free(p->name);
308 		free_options(p->options);
309 		free(p);
310 		p = q;
311 	}
312 	archive_string_free(&mtree->line);
313 	archive_string_free(&mtree->current_dir);
314 	archive_string_free(&mtree->contents_name);
315 	archive_entry_linkresolver_free(mtree->resolver);
316 
317 	free(mtree->buff);
318 	free(mtree);
319 	(a->format->data) = NULL;
320 	return (ARCHIVE_OK);
321 }
322 
323 static ssize_t
get_line_size(const char * b,ssize_t avail,ssize_t * nlsize)324 get_line_size(const char *b, ssize_t avail, ssize_t *nlsize)
325 {
326 	ssize_t len;
327 
328 	len = 0;
329 	while (len < avail) {
330 		switch (*b) {
331 		case '\0':/* Non-ascii character or control character. */
332 			if (nlsize != NULL)
333 				*nlsize = 0;
334 			return (-1);
335 		case '\r':
336 			if (avail-len > 1 && b[1] == '\n') {
337 				if (nlsize != NULL)
338 					*nlsize = 2;
339 				return (len+2);
340 			}
341 			/* FALL THROUGH */
342 		case '\n':
343 			if (nlsize != NULL)
344 				*nlsize = 1;
345 			return (len+1);
346 		default:
347 			b++;
348 			len++;
349 			break;
350 		}
351 	}
352 	if (nlsize != NULL)
353 		*nlsize = 0;
354 	return (avail);
355 }
356 
357 /*
358  *  <---------------- ravail --------------------->
359  *  <-- diff ------> <---  avail ----------------->
360  *                   <---- len ----------->
361  * | Previous lines | line being parsed  nl extra |
362  *                  ^
363  *                  b
364  *
365  */
366 static ssize_t
next_line(struct archive_read * a,const char ** b,ssize_t * avail,ssize_t * ravail,ssize_t * nl)367 next_line(struct archive_read *a,
368     const char **b, ssize_t *avail, ssize_t *ravail, ssize_t *nl)
369 {
370 	ssize_t len;
371 	int quit;
372 
373 	quit = 0;
374 	if (*avail == 0) {
375 		*nl = 0;
376 		len = 0;
377 	} else
378 		len = get_line_size(*b, *avail, nl);
379 	/*
380 	 * Read bytes more while it does not reach the end of line.
381 	 */
382 	while (*nl == 0 && len == *avail && !quit) {
383 		ssize_t diff = *ravail - *avail;
384 		size_t nbytes_req = (*ravail+1023) & ~1023U;
385 		ssize_t tested;
386 
387 		/*
388 		 * Place an arbitrary limit on the line length.
389 		 * mtree is almost free-form input and without line length limits,
390 		 * it can consume a lot of memory.
391 		 */
392 		if (len >= MAX_LINE_LEN)
393 			return (-1);
394 
395 		/* Increase reading bytes if it is not enough to at least
396 		 * new two lines. */
397 		if (nbytes_req < (size_t)*ravail + 160)
398 			nbytes_req <<= 1;
399 
400 		*b = __archive_read_ahead(a, nbytes_req, avail);
401 		if (*b == NULL) {
402 			if (*ravail >= *avail)
403 				return (0);
404 			/* Reading bytes reaches the end of file. */
405 			*b = __archive_read_ahead(a, *avail, avail);
406 			quit = 1;
407 		}
408 		*ravail = *avail;
409 		*b += diff;
410 		*avail -= diff;
411 		tested = len;/* Skip some bytes we already determined. */
412 		len = get_line_size(*b + len, *avail - len, nl);
413 		if (len >= 0)
414 			len += tested;
415 	}
416 	return (len);
417 }
418 
419 /*
420  * Compare characters with a mtree keyword.
421  * Returns the length of a mtree keyword if matched.
422  * Returns 0 if not matched.
423  */
424 static int
bid_keycmp(const char * p,const char * key,ssize_t len)425 bid_keycmp(const char *p, const char *key, ssize_t len)
426 {
427 	int match_len = 0;
428 
429 	while (len > 0 && *p && *key) {
430 		if (*p == *key) {
431 			--len;
432 			++p;
433 			++key;
434 			++match_len;
435 			continue;
436 		}
437 		return (0);/* Not match */
438 	}
439 	if (*key != '\0')
440 		return (0);/* Not match */
441 
442 	/* A following character should be specified characters */
443 	if (p[0] == '=' || p[0] == ' ' || p[0] == '\t' ||
444 	    p[0] == '\n' || p[0] == '\r' ||
445 	   (p[0] == '\\' && (p[1] == '\n' || p[1] == '\r')))
446 		return (match_len);
447 	return (0);/* Not match */
448 }
449 
450 /*
451  * Test whether the characters 'p' has is mtree keyword.
452  * Returns the length of a detected keyword.
453  * Returns 0 if any keywords were not found.
454  */
455 static int
bid_keyword(const char * p,ssize_t len)456 bid_keyword(const char *p,  ssize_t len)
457 {
458 	static const char * const keys_c[] = {
459 		"content", "contents", "cksum", NULL
460 	};
461 	static const char * const keys_df[] = {
462 		"device", "flags", NULL
463 	};
464 	static const char * const keys_g[] = {
465 		"gid", "gname", NULL
466 	};
467 	static const char * const keys_il[] = {
468 		"ignore", "inode", "link", NULL
469 	};
470 	static const char * const keys_m[] = {
471 		"md5", "md5digest", "mode", NULL
472 	};
473 	static const char * const keys_no[] = {
474 		"nlink", "nochange", "optional", NULL
475 	};
476 	static const char * const keys_r[] = {
477 		"resdevice", "rmd160", "rmd160digest", NULL
478 	};
479 	static const char * const keys_s[] = {
480 		"sha1", "sha1digest",
481 		"sha256", "sha256digest",
482 		"sha384", "sha384digest",
483 		"sha512", "sha512digest",
484 		"size", NULL
485 	};
486 	static const char * const keys_t[] = {
487 		"tags", "time", "type", NULL
488 	};
489 	static const char * const keys_u[] = {
490 		"uid", "uname",	NULL
491 	};
492 	const char * const *keys;
493 	int i;
494 
495 	switch (*p) {
496 	case 'c': keys = keys_c; break;
497 	case 'd': case 'f': keys = keys_df; break;
498 	case 'g': keys = keys_g; break;
499 	case 'i': case 'l': keys = keys_il; break;
500 	case 'm': keys = keys_m; break;
501 	case 'n': case 'o': keys = keys_no; break;
502 	case 'r': keys = keys_r; break;
503 	case 's': keys = keys_s; break;
504 	case 't': keys = keys_t; break;
505 	case 'u': keys = keys_u; break;
506 	default: return (0);/* Unknown key */
507 	}
508 
509 	for (i = 0; keys[i] != NULL; i++) {
510 		int l = bid_keycmp(p, keys[i], len);
511 		if (l > 0)
512 			return (l);
513 	}
514 	return (0);/* Unknown key */
515 }
516 
517 /*
518  * Test whether there is a set of mtree keywords.
519  * Returns the number of keyword.
520  * Returns -1 if we got incorrect sequence.
521  * This function expects a set of "<space characters>keyword=value".
522  * When "unset" is specified, expects a set of "<space characters>keyword".
523  */
524 static int
bid_keyword_list(const char * p,ssize_t len,int unset,int last_is_path)525 bid_keyword_list(const char *p,  ssize_t len, int unset, int last_is_path)
526 {
527 	int l;
528 	int keycnt = 0;
529 
530 	while (len > 0 && *p) {
531 		int blank = 0;
532 
533 		/* Test whether there are blank characters in the line. */
534 		while (len >0 && (*p == ' ' || *p == '\t')) {
535 			++p;
536 			--len;
537 			blank = 1;
538 		}
539 		if (*p == '\n' || *p == '\r')
540 			break;
541 		if (p[0] == '\\' && (p[1] == '\n' || p[1] == '\r'))
542 			break;
543 		if (!blank && !last_is_path) /* No blank character. */
544 			return (-1);
545 		if (last_is_path && len == 0)
546 				return (keycnt);
547 
548 		if (unset) {
549 			l = bid_keycmp(p, "all", len);
550 			if (l > 0)
551 				return (1);
552 		}
553 		/* Test whether there is a correct key in the line. */
554 		l = bid_keyword(p, len);
555 		if (l == 0)
556 			return (-1);/* Unknown keyword was found. */
557 		p += l;
558 		len -= l;
559 		keycnt++;
560 
561 		/* Skip value */
562 		if (*p == '=') {
563 			int value = 0;
564 			++p;
565 			--len;
566 			while (len > 0 && *p != ' ' && *p != '\t') {
567 				++p;
568 				--len;
569 				value = 1;
570 			}
571 			/* A keyword should have a its value unless
572 			 * "/unset" operation. */
573 			if (!unset && value == 0)
574 				return (-1);
575 		}
576 	}
577 	return (keycnt);
578 }
579 
580 static int
bid_entry(const char * p,ssize_t len,ssize_t nl,int * last_is_path)581 bid_entry(const char *p, ssize_t len, ssize_t nl, int *last_is_path)
582 {
583 	int f = 0;
584 	static const unsigned char safe_char[256] = {
585 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 00 - 0F */
586 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 10 - 1F */
587 		/* !"$%&'()*+,-./  EXCLUSION:( )(#) */
588 		0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 20 - 2F */
589 		/* 0123456789:;<>?  EXCLUSION:(=) */
590 		1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, /* 30 - 3F */
591 		/* @ABCDEFGHIJKLMNO */
592 		1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 40 - 4F */
593 		/* PQRSTUVWXYZ[\]^_  */
594 		1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 50 - 5F */
595 		/* `abcdefghijklmno */
596 		1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 60 - 6F */
597 		/* pqrstuvwxyz{|}~ */
598 		1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, /* 70 - 7F */
599 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 80 - 8F */
600 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 90 - 9F */
601 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* A0 - AF */
602 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* B0 - BF */
603 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* C0 - CF */
604 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* D0 - DF */
605 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* E0 - EF */
606 		0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* F0 - FF */
607 	};
608 	ssize_t ll;
609 	const char *pp = p;
610 	const char * const pp_end = pp + len;
611 
612 	*last_is_path = 0;
613 	/*
614 	 * Skip the path-name which is quoted.
615 	 */
616 	for (;pp < pp_end; ++pp) {
617 		if (!safe_char[*(const unsigned char *)pp]) {
618 			if (*pp != ' ' && *pp != '\t' && *pp != '\r'
619 			    && *pp != '\n')
620 				f = 0;
621 			break;
622 		}
623 		f = 1;
624 	}
625 	ll = pp_end - pp;
626 
627 	/* If a path-name was not found at the first, try to check
628 	 * a mtree format(a.k.a form D) ``NetBSD's mtree -D'' creates,
629 	 * which places the path-name at the last. */
630 	if (f == 0) {
631 		const char *pb = p + len - nl;
632 		int name_len = 0;
633 		int slash;
634 
635 		/* The form D accepts only a single line for an entry. */
636 		if (pb-2 >= p &&
637 		    pb[-1] == '\\' && (pb[-2] == ' ' || pb[-2] == '\t'))
638 			return (-1);
639 		if (pb-1 >= p && pb[-1] == '\\')
640 			return (-1);
641 
642 		slash = 0;
643 		while (p <= --pb && *pb != ' ' && *pb != '\t') {
644 			if (!safe_char[*(const unsigned char *)pb])
645 				return (-1);
646 			name_len++;
647 			/* The pathname should have a slash in this
648 			 * format. */
649 			if (*pb == '/')
650 				slash = 1;
651 		}
652 		if (name_len == 0 || slash == 0)
653 			return (-1);
654 		/* If '/' is placed at the first in this field, this is not
655 		 * a valid filename. */
656 		if (pb[1] == '/')
657 			return (-1);
658 		ll = len - nl - name_len;
659 		pp = p;
660 		*last_is_path = 1;
661 	}
662 
663 	return (bid_keyword_list(pp, ll, 0, *last_is_path));
664 }
665 
666 #define MAX_BID_ENTRY	3
667 
668 static int
mtree_bid(struct archive_read * a,int best_bid)669 mtree_bid(struct archive_read *a, int best_bid)
670 {
671 	const char *signature = "#mtree";
672 	const char *p;
673 
674 	(void)best_bid; /* UNUSED */
675 
676 	/* Now let's look at the actual header and see if it matches. */
677 	p = __archive_read_ahead(a, strlen(signature), NULL);
678 	if (p == NULL)
679 		return (-1);
680 
681 	if (memcmp(p, signature, strlen(signature)) == 0)
682 		return (8 * (int)strlen(signature));
683 
684 	/*
685 	 * There is not a mtree signature. Let's try to detect mtree format.
686 	 */
687 	return (detect_form(a, NULL));
688 }
689 
690 static int
detect_form(struct archive_read * a,int * is_form_d)691 detect_form(struct archive_read *a, int *is_form_d)
692 {
693 	const char *p;
694 	ssize_t avail, ravail;
695 	ssize_t detected_bytes = 0, len, nl;
696 	int entry_cnt = 0, multiline = 0;
697 	int form_D = 0;/* The archive is generated by `NetBSD mtree -D'
698 			* (In this source we call it `form D') . */
699 
700 	if (is_form_d != NULL)
701 		*is_form_d = 0;
702 	p = __archive_read_ahead(a, 1, &avail);
703 	if (p == NULL)
704 		return (-1);
705 	ravail = avail;
706 	for (;;) {
707 		len = next_line(a, &p, &avail, &ravail, &nl);
708 		/* The terminal character of the line should be
709 		 * a new line character, '\r\n' or '\n'. */
710 		if (len <= 0 || nl == 0)
711 			break;
712 		if (!multiline) {
713 			/* Leading whitespace is never significant,
714 			 * ignore it. */
715 			while (len > 0 && (*p == ' ' || *p == '\t')) {
716 				++p;
717 				--avail;
718 				--len;
719 			}
720 			/* Skip comment or empty line. */
721 			if (p[0] == '#' || p[0] == '\n' || p[0] == '\r') {
722 				p += len;
723 				avail -= len;
724 				continue;
725 			}
726 		} else {
727 			/* A continuance line; the terminal
728 			 * character of previous line was '\' character. */
729 			if (bid_keyword_list(p, len, 0, 0) <= 0)
730 				break;
731 			if (multiline == 1)
732 				detected_bytes += len;
733 			if (p[len-nl-1] != '\\') {
734 				if (multiline == 1 &&
735 				    ++entry_cnt >= MAX_BID_ENTRY)
736 					break;
737 				multiline = 0;
738 			}
739 			p += len;
740 			avail -= len;
741 			continue;
742 		}
743 		if (p[0] != '/') {
744 			int last_is_path, keywords;
745 
746 			keywords = bid_entry(p, len, nl, &last_is_path);
747 			if (keywords >= 0) {
748 				detected_bytes += len;
749 				if (form_D == 0) {
750 					if (last_is_path)
751 						form_D = 1;
752 					else if (keywords > 0)
753 						/* This line is not `form D'. */
754 						form_D = -1;
755 				} else if (form_D == 1) {
756 					if (!last_is_path && keywords > 0)
757 						/* This this is not `form D'
758 						 * and We cannot accept mixed
759 						 * format. */
760 						break;
761 				}
762 				if (!last_is_path && p[len-nl-1] == '\\')
763 					/* This line continues. */
764 					multiline = 1;
765 				else {
766 					/* We've got plenty of correct lines
767 					 * to assume that this file is a mtree
768 					 * format. */
769 					if (++entry_cnt >= MAX_BID_ENTRY)
770 						break;
771 				}
772 			} else
773 				break;
774 		} else if (len > 4 && strncmp(p, "/set", 4) == 0) {
775 			if (bid_keyword_list(p+4, len-4, 0, 0) <= 0)
776 				break;
777 			/* This line continues. */
778 			if (p[len-nl-1] == '\\')
779 				multiline = 2;
780 		} else if (len > 6 && strncmp(p, "/unset", 6) == 0) {
781 			if (bid_keyword_list(p+6, len-6, 1, 0) <= 0)
782 				break;
783 			/* This line continues. */
784 			if (p[len-nl-1] == '\\')
785 				multiline = 2;
786 		} else
787 			break;
788 
789 		/* Test next line. */
790 		p += len;
791 		avail -= len;
792 	}
793 	if (entry_cnt >= MAX_BID_ENTRY || (entry_cnt > 0 && len == 0)) {
794 		if (is_form_d != NULL) {
795 			if (form_D == 1)
796 				*is_form_d = 1;
797 		}
798 		return (32);
799 	}
800 
801 	return (0);
802 }
803 
804 /*
805  * The extended mtree format permits multiple lines specifying
806  * attributes for each file.  For those entries, only the last line
807  * is actually used.  Practically speaking, that means we have
808  * to read the entire mtree file into memory up front.
809  *
810  * The parsing is done in two steps.  First, it is decided if a line
811  * changes the global defaults and if it is, processed accordingly.
812  * Otherwise, the options of the line are merged with the current
813  * global options.
814  */
815 static int
add_option(struct archive_read * a,struct mtree_option ** global,const char * value,size_t len)816 add_option(struct archive_read *a, struct mtree_option **global,
817     const char *value, size_t len)
818 {
819 	struct mtree_option *opt;
820 
821 	if ((opt = malloc(sizeof(*opt))) == NULL) {
822 		archive_set_error(&a->archive, errno, "Can't allocate memory");
823 		return (ARCHIVE_FATAL);
824 	}
825 	if ((opt->value = malloc(len + 1)) == NULL) {
826 		free(opt);
827 		archive_set_error(&a->archive, errno, "Can't allocate memory");
828 		return (ARCHIVE_FATAL);
829 	}
830 	memcpy(opt->value, value, len);
831 	opt->value[len] = '\0';
832 	opt->next = *global;
833 	*global = opt;
834 	return (ARCHIVE_OK);
835 }
836 
837 static void
remove_option(struct mtree_option ** global,const char * value,size_t len)838 remove_option(struct mtree_option **global, const char *value, size_t len)
839 {
840 	struct mtree_option *iter, *last;
841 
842 	last = NULL;
843 	for (iter = *global; iter != NULL; last = iter, iter = iter->next) {
844 		if (strncmp(iter->value, value, len) == 0 &&
845 		    (iter->value[len] == '\0' ||
846 		     iter->value[len] == '='))
847 			break;
848 	}
849 	if (iter == NULL)
850 		return;
851 	if (last == NULL)
852 		*global = iter->next;
853 	else
854 		last->next = iter->next;
855 
856 	free(iter->value);
857 	free(iter);
858 }
859 
860 static int
process_global_set(struct archive_read * a,struct mtree_option ** global,const char * line)861 process_global_set(struct archive_read *a,
862     struct mtree_option **global, const char *line)
863 {
864 	const char *next, *eq;
865 	size_t len;
866 	int r;
867 
868 	line += 4;
869 	for (;;) {
870 		next = line + strspn(line, " \t\r\n");
871 		if (*next == '\0')
872 			return (ARCHIVE_OK);
873 		line = next;
874 		next = line + strcspn(line, " \t\r\n");
875 		eq = strchr(line, '=');
876 		if (eq > next)
877 			len = next - line;
878 		else
879 			len = eq - line;
880 
881 		remove_option(global, line, len);
882 		r = add_option(a, global, line, next - line);
883 		if (r != ARCHIVE_OK)
884 			return (r);
885 		line = next;
886 	}
887 }
888 
889 static int
process_global_unset(struct archive_read * a,struct mtree_option ** global,const char * line)890 process_global_unset(struct archive_read *a,
891     struct mtree_option **global, const char *line)
892 {
893 	const char *next;
894 	size_t len;
895 
896 	line += 6;
897 	if (strchr(line, '=') != NULL) {
898 		archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
899 		    "/unset shall not contain `='");
900 		return ARCHIVE_FATAL;
901 	}
902 
903 	for (;;) {
904 		next = line + strspn(line, " \t\r\n");
905 		if (*next == '\0')
906 			return (ARCHIVE_OK);
907 		line = next;
908 		len = strcspn(line, " \t\r\n");
909 
910 		if (len == 3 && strncmp(line, "all", 3) == 0) {
911 			free_options(*global);
912 			*global = NULL;
913 		} else {
914 			remove_option(global, line, len);
915 		}
916 
917 		line += len;
918 	}
919 }
920 
921 static int
process_add_entry(struct archive_read * a,struct mtree * mtree,struct mtree_option ** global,const char * line,ssize_t line_len,struct mtree_entry ** last_entry,int is_form_d)922 process_add_entry(struct archive_read *a, struct mtree *mtree,
923     struct mtree_option **global, const char *line, ssize_t line_len,
924     struct mtree_entry **last_entry, int is_form_d)
925 {
926 	struct mtree_entry *entry;
927 	struct mtree_option *iter;
928 	const char *next, *eq, *name, *end;
929 	size_t name_len, len;
930 	int r, i;
931 
932 	if ((entry = malloc(sizeof(*entry))) == NULL) {
933 		archive_set_error(&a->archive, errno, "Can't allocate memory");
934 		return (ARCHIVE_FATAL);
935 	}
936 	entry->next = NULL;
937 	entry->options = NULL;
938 	entry->name = NULL;
939 	entry->used = 0;
940 	entry->full = 0;
941 
942 	/* Add this entry to list. */
943 	if (*last_entry == NULL)
944 		mtree->entries = entry;
945 	else
946 		(*last_entry)->next = entry;
947 	*last_entry = entry;
948 
949 	if (is_form_d) {
950 		/* Filename is last item on line. */
951 		/* Adjust line_len to trim trailing whitespace */
952 		while (line_len > 0) {
953 			char last_character = line[line_len - 1];
954 			if (last_character == '\r'
955 			    || last_character == '\n'
956 			    || last_character == '\t'
957 			    || last_character == ' ') {
958 				line_len--;
959 			} else {
960 				break;
961 			}
962 		}
963 		/* Name starts after the last whitespace separator */
964 		name = line;
965 		for (i = 0; i < line_len; i++) {
966 			if (line[i] == '\r'
967 			    || line[i] == '\n'
968 			    || line[i] == '\t'
969 			    || line[i] == ' ') {
970 				name = line + i + 1;
971 			}
972 		}
973 		name_len = line + line_len - name;
974 		end = name;
975 	} else {
976 		/* Filename is first item on line */
977 		name_len = strcspn(line, " \t\r\n");
978 		name = line;
979 		line += name_len;
980 		end = line + line_len;
981 	}
982 	/* name/name_len is the name within the line. */
983 	/* line..end brackets the entire line except the name */
984 
985 	if ((entry->name = malloc(name_len + 1)) == NULL) {
986 		archive_set_error(&a->archive, errno, "Can't allocate memory");
987 		return (ARCHIVE_FATAL);
988 	}
989 
990 	memcpy(entry->name, name, name_len);
991 	entry->name[name_len] = '\0';
992 	parse_escapes(entry->name, entry);
993 
994 	entry->next_dup = NULL;
995 	if (entry->full) {
996 		if (!__archive_rb_tree_insert_node(&mtree->rbtree, &entry->rbnode)) {
997 			struct mtree_entry *alt;
998 			alt = (struct mtree_entry *)__archive_rb_tree_find_node(
999 			    &mtree->rbtree, entry->name);
1000 			if (alt != NULL) {
1001 				while (alt->next_dup)
1002 					alt = alt->next_dup;
1003 				alt->next_dup = entry;
1004 			}
1005 		}
1006 	}
1007 
1008 	for (iter = *global; iter != NULL; iter = iter->next) {
1009 		r = add_option(a, &entry->options, iter->value,
1010 		    strlen(iter->value));
1011 		if (r != ARCHIVE_OK)
1012 			return (r);
1013 	}
1014 
1015 	for (;;) {
1016 		next = line + strspn(line, " \t\r\n");
1017 		if (*next == '\0')
1018 			return (ARCHIVE_OK);
1019 		if (next >= end)
1020 			return (ARCHIVE_OK);
1021 		line = next;
1022 		next = line + strcspn(line, " \t\r\n");
1023 		eq = strchr(line, '=');
1024 		if (eq == NULL || eq > next)
1025 			len = next - line;
1026 		else
1027 			len = eq - line;
1028 
1029 		remove_option(&entry->options, line, len);
1030 		r = add_option(a, &entry->options, line, next - line);
1031 		if (r != ARCHIVE_OK)
1032 			return (r);
1033 		line = next;
1034 	}
1035 }
1036 
1037 static int
read_mtree(struct archive_read * a,struct mtree * mtree)1038 read_mtree(struct archive_read *a, struct mtree *mtree)
1039 {
1040 	ssize_t len;
1041 	uintmax_t counter;
1042 	char *p, *s;
1043 	struct mtree_option *global;
1044 	struct mtree_entry *last_entry;
1045 	int r, is_form_d;
1046 
1047 	mtree->archive_format = ARCHIVE_FORMAT_MTREE;
1048 	mtree->archive_format_name = "mtree";
1049 
1050 	global = NULL;
1051 	last_entry = NULL;
1052 
1053 	(void)detect_form(a, &is_form_d);
1054 
1055 	for (counter = 1; ; ++counter) {
1056 		r = ARCHIVE_OK;
1057 		len = readline(a, mtree, &p, 65536);
1058 		if (len == 0) {
1059 			mtree->this_entry = mtree->entries;
1060 			free_options(global);
1061 			return (ARCHIVE_OK);
1062 		}
1063 		if (len < 0) {
1064 			free_options(global);
1065 			return ((int)len);
1066 		}
1067 		/* Leading whitespace is never significant, ignore it. */
1068 		while (*p == ' ' || *p == '\t') {
1069 			++p;
1070 			--len;
1071 		}
1072 		/* Skip content lines and blank lines. */
1073 		if (*p == '#')
1074 			continue;
1075 		if (*p == '\r' || *p == '\n' || *p == '\0')
1076 			continue;
1077 		/* Non-printable characters are not allowed */
1078 		for (s = p;s < p + len - 1; s++) {
1079 			if (!isprint((unsigned char)*s) && *s != '\t') {
1080 				r = ARCHIVE_FATAL;
1081 				break;
1082 			}
1083 		}
1084 		if (r != ARCHIVE_OK)
1085 			break;
1086 		if (*p != '/') {
1087 			r = process_add_entry(a, mtree, &global, p, len,
1088 			    &last_entry, is_form_d);
1089 		} else if (len > 4 && strncmp(p, "/set", 4) == 0) {
1090 			if (p[4] != ' ' && p[4] != '\t')
1091 				break;
1092 			r = process_global_set(a, &global, p);
1093 		} else if (len > 6 && strncmp(p, "/unset", 6) == 0) {
1094 			if (p[6] != ' ' && p[6] != '\t')
1095 				break;
1096 			r = process_global_unset(a, &global, p);
1097 		} else
1098 			break;
1099 
1100 		if (r != ARCHIVE_OK) {
1101 			free_options(global);
1102 			return r;
1103 		}
1104 	}
1105 
1106 	archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1107 	    "Can't parse line %ju", counter);
1108 	free_options(global);
1109 	return (ARCHIVE_FATAL);
1110 }
1111 
1112 /*
1113  * Read in the entire mtree file into memory on the first request.
1114  * Then use the next unused file to satisfy each header request.
1115  */
1116 static int
read_header(struct archive_read * a,struct archive_entry * entry)1117 read_header(struct archive_read *a, struct archive_entry *entry)
1118 {
1119 	struct mtree *mtree;
1120 	char *p;
1121 	int r, use_next;
1122 
1123 	mtree = (struct mtree *)(a->format->data);
1124 
1125 	if (mtree->fd >= 0) {
1126 		close(mtree->fd);
1127 		mtree->fd = -1;
1128 	}
1129 
1130 	if (mtree->entries == NULL) {
1131 		mtree->resolver = archive_entry_linkresolver_new();
1132 		if (mtree->resolver == NULL)
1133 			return ARCHIVE_FATAL;
1134 		archive_entry_linkresolver_set_strategy(mtree->resolver,
1135 		    ARCHIVE_FORMAT_MTREE);
1136 		r = read_mtree(a, mtree);
1137 		if (r != ARCHIVE_OK)
1138 			return (r);
1139 	}
1140 
1141 	a->archive.archive_format = mtree->archive_format;
1142 	a->archive.archive_format_name = mtree->archive_format_name;
1143 
1144 	for (;;) {
1145 		if (mtree->this_entry == NULL)
1146 			return (ARCHIVE_EOF);
1147 		if (strcmp(mtree->this_entry->name, "..") == 0) {
1148 			mtree->this_entry->used = 1;
1149 			if (archive_strlen(&mtree->current_dir) > 0) {
1150 				/* Roll back current path. */
1151 				p = mtree->current_dir.s
1152 				    + mtree->current_dir.length - 1;
1153 				while (p >= mtree->current_dir.s && *p != '/')
1154 					--p;
1155 				if (p >= mtree->current_dir.s)
1156 					--p;
1157 				mtree->current_dir.length
1158 				    = p - mtree->current_dir.s + 1;
1159 			}
1160 		}
1161 		if (!mtree->this_entry->used) {
1162 			use_next = 0;
1163 			r = parse_file(a, entry, mtree, mtree->this_entry,
1164 				&use_next);
1165 			if (use_next == 0)
1166 				return (r);
1167 		}
1168 		mtree->this_entry = mtree->this_entry->next;
1169 	}
1170 }
1171 
1172 /*
1173  * A single file can have multiple lines contribute specifications.
1174  * Parse as many lines as necessary, then pull additional information
1175  * from a backing file on disk as necessary.
1176  */
1177 static int
parse_file(struct archive_read * a,struct archive_entry * entry,struct mtree * mtree,struct mtree_entry * mentry,int * use_next)1178 parse_file(struct archive_read *a, struct archive_entry *entry,
1179     struct mtree *mtree, struct mtree_entry *mentry, int *use_next)
1180 {
1181 	const char *path;
1182 	struct stat st_storage, *st;
1183 	struct mtree_entry *mp;
1184 	struct archive_entry *sparse_entry;
1185 	int r = ARCHIVE_OK, r1, parsed_kws;
1186 
1187 	mentry->used = 1;
1188 
1189 	/* Initialize reasonable defaults. */
1190 	archive_entry_set_filetype(entry, AE_IFREG);
1191 	archive_entry_set_size(entry, 0);
1192 	archive_string_empty(&mtree->contents_name);
1193 
1194 	/* Parse options from this line. */
1195 	parsed_kws = 0;
1196 	r = parse_line(a, entry, mtree, mentry, &parsed_kws);
1197 
1198 	if (mentry->full) {
1199 		archive_entry_copy_pathname(entry, mentry->name);
1200 		/*
1201 		 * "Full" entries are allowed to have multiple lines
1202 		 * and those lines aren't required to be adjacent.  We
1203 		 * don't support multiple lines for "relative" entries
1204 		 * nor do we make any attempt to merge data from
1205 		 * separate "relative" and "full" entries.  (Merging
1206 		 * "relative" and "full" entries would require dealing
1207 		 * with pathname canonicalization, which is a very
1208 		 * tricky subject.)
1209 		 */
1210 		mp = (struct mtree_entry *)__archive_rb_tree_find_node(
1211 		    &mtree->rbtree, mentry->name);
1212 		for (; mp; mp = mp->next_dup) {
1213 			if (mp->full && !mp->used) {
1214 				/* Later lines override earlier ones. */
1215 				mp->used = 1;
1216 				r1 = parse_line(a, entry, mtree, mp, &parsed_kws);
1217 				if (r1 < r)
1218 					r = r1;
1219 			}
1220 		}
1221 	} else {
1222 		/*
1223 		 * Relative entries require us to construct
1224 		 * the full path and possibly update the
1225 		 * current directory.
1226 		 */
1227 		size_t n = archive_strlen(&mtree->current_dir);
1228 		if (n > 0)
1229 			archive_strcat(&mtree->current_dir, "/");
1230 		archive_strcat(&mtree->current_dir, mentry->name);
1231 		archive_entry_copy_pathname(entry, mtree->current_dir.s);
1232 		if (archive_entry_filetype(entry) != AE_IFDIR)
1233 			mtree->current_dir.length = n;
1234 	}
1235 
1236 	if (mtree->checkfs) {
1237 		/*
1238 		 * Try to open and stat the file to get the real size
1239 		 * and other file info.  It would be nice to avoid
1240 		 * this here so that getting a listing of an mtree
1241 		 * wouldn't require opening every referenced contents
1242 		 * file.  But then we wouldn't know the actual
1243 		 * contents size, so I don't see a really viable way
1244 		 * around this.  (Also, we may want to someday pull
1245 		 * other unspecified info from the contents file on
1246 		 * disk.)
1247 		 */
1248 		mtree->fd = -1;
1249 		if (archive_strlen(&mtree->contents_name) > 0)
1250 			path = mtree->contents_name.s;
1251 		else
1252 			path = archive_entry_pathname(entry);
1253 
1254 		if (archive_entry_filetype(entry) == AE_IFREG ||
1255 				archive_entry_filetype(entry) == AE_IFDIR) {
1256 			mtree->fd = open(path, O_RDONLY | O_BINARY | O_CLOEXEC);
1257 			__archive_ensure_cloexec_flag(mtree->fd);
1258 			if (mtree->fd == -1 && (
1259 #if defined(_WIN32) && !defined(__CYGWIN__)
1260         /*
1261          * On Windows, attempting to open a file with an
1262          * invalid name result in EINVAL (Error 22)
1263          */
1264 				(errno != ENOENT && errno != EINVAL)
1265 #else
1266 				errno != ENOENT
1267 #endif
1268         || archive_strlen(&mtree->contents_name) > 0)) {
1269 				archive_set_error(&a->archive, errno,
1270 						"Can't open %s", path);
1271 				r = ARCHIVE_WARN;
1272 			}
1273 		}
1274 
1275 		st = &st_storage;
1276 		if (mtree->fd >= 0) {
1277 			if (fstat(mtree->fd, st) == -1) {
1278 				archive_set_error(&a->archive, errno,
1279 						"Could not fstat %s", path);
1280 				r = ARCHIVE_WARN;
1281 				/* If we can't stat it, don't keep it open. */
1282 				close(mtree->fd);
1283 				mtree->fd = -1;
1284 				st = NULL;
1285 			}
1286 		} else if (lstat(path, st) == -1) {
1287 			st = NULL;
1288 		}
1289 
1290 		/*
1291 		 * Check for a mismatch between the type in the specification
1292 		 * and the type of the contents object on disk.
1293 		 */
1294 		if (st != NULL) {
1295 			if (((st->st_mode & S_IFMT) == S_IFREG &&
1296 			      archive_entry_filetype(entry) == AE_IFREG)
1297 #ifdef S_IFLNK
1298 			  ||((st->st_mode & S_IFMT) == S_IFLNK &&
1299 			      archive_entry_filetype(entry) == AE_IFLNK)
1300 #endif
1301 #ifdef S_IFSOCK
1302 			  ||((st->st_mode & S_IFSOCK) == S_IFSOCK &&
1303 			      archive_entry_filetype(entry) == AE_IFSOCK)
1304 #endif
1305 #ifdef S_IFCHR
1306 			  ||((st->st_mode & S_IFMT) == S_IFCHR &&
1307 			      archive_entry_filetype(entry) == AE_IFCHR)
1308 #endif
1309 #ifdef S_IFBLK
1310 			  ||((st->st_mode & S_IFMT) == S_IFBLK &&
1311 			      archive_entry_filetype(entry) == AE_IFBLK)
1312 #endif
1313 			  ||((st->st_mode & S_IFMT) == S_IFDIR &&
1314 			      archive_entry_filetype(entry) == AE_IFDIR)
1315 #ifdef S_IFIFO
1316 			  ||((st->st_mode & S_IFMT) == S_IFIFO &&
1317 			      archive_entry_filetype(entry) == AE_IFIFO)
1318 #endif
1319 			) {
1320 				/* Types match. */
1321 			} else {
1322 				/* Types don't match; bail out gracefully. */
1323 				if (mtree->fd >= 0)
1324 					close(mtree->fd);
1325 				mtree->fd = -1;
1326 				if (parsed_kws & MTREE_HAS_OPTIONAL) {
1327 					/* It's not an error for an optional
1328 					 * entry to not match disk. */
1329 					*use_next = 1;
1330 				} else if (r == ARCHIVE_OK) {
1331 					archive_set_error(&a->archive,
1332 					    ARCHIVE_ERRNO_MISC,
1333 					    "mtree specification has different"
1334 					    " type for %s",
1335 					    archive_entry_pathname(entry));
1336 					r = ARCHIVE_WARN;
1337 				}
1338 				return (r);
1339 			}
1340 		}
1341 
1342 		/*
1343 		 * If there is a contents file on disk, pick some of the
1344 		 * metadata from that file.  For most of these, we only
1345 		 * set it from the contents if it wasn't already parsed
1346 		 * from the specification.
1347 		 */
1348 		if (st != NULL) {
1349 			if (((parsed_kws & MTREE_HAS_DEVICE) == 0 ||
1350 				(parsed_kws & MTREE_HAS_NOCHANGE) != 0) &&
1351 				(archive_entry_filetype(entry) == AE_IFCHR ||
1352 				 archive_entry_filetype(entry) == AE_IFBLK))
1353 				archive_entry_set_rdev(entry, st->st_rdev);
1354 			if ((parsed_kws & (MTREE_HAS_GID | MTREE_HAS_GNAME))
1355 				== 0 ||
1356 			    (parsed_kws & MTREE_HAS_NOCHANGE) != 0)
1357 				archive_entry_set_gid(entry, st->st_gid);
1358 			if ((parsed_kws & (MTREE_HAS_UID | MTREE_HAS_UNAME))
1359 				== 0 ||
1360 			    (parsed_kws & MTREE_HAS_NOCHANGE) != 0)
1361 				archive_entry_set_uid(entry, st->st_uid);
1362 			if ((parsed_kws & MTREE_HAS_MTIME) == 0 ||
1363 			    (parsed_kws & MTREE_HAS_NOCHANGE) != 0) {
1364 #if HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC
1365 				archive_entry_set_mtime(entry, st->st_mtime,
1366 						st->st_mtimespec.tv_nsec);
1367 #elif HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
1368 				archive_entry_set_mtime(entry, st->st_mtime,
1369 						st->st_mtim.tv_nsec);
1370 #elif HAVE_STRUCT_STAT_ST_MTIME_N
1371 				archive_entry_set_mtime(entry, st->st_mtime,
1372 						st->st_mtime_n);
1373 #elif HAVE_STRUCT_STAT_ST_UMTIME
1374 				archive_entry_set_mtime(entry, st->st_mtime,
1375 						st->st_umtime*1000);
1376 #elif HAVE_STRUCT_STAT_ST_MTIME_USEC
1377 				archive_entry_set_mtime(entry, st->st_mtime,
1378 						st->st_mtime_usec*1000);
1379 #else
1380 				archive_entry_set_mtime(entry, st->st_mtime, 0);
1381 #endif
1382 			}
1383 			if ((parsed_kws & MTREE_HAS_NLINK) == 0 ||
1384 			    (parsed_kws & MTREE_HAS_NOCHANGE) != 0)
1385 				archive_entry_set_nlink(entry, st->st_nlink);
1386 			if ((parsed_kws & MTREE_HAS_PERM) == 0 ||
1387 			    (parsed_kws & MTREE_HAS_NOCHANGE) != 0)
1388 				archive_entry_set_perm(entry, st->st_mode);
1389 			if ((parsed_kws & MTREE_HAS_SIZE) == 0 ||
1390 			    (parsed_kws & MTREE_HAS_NOCHANGE) != 0)
1391 				archive_entry_set_size(entry, st->st_size);
1392 			archive_entry_set_ino(entry, st->st_ino);
1393 			archive_entry_set_dev(entry, st->st_dev);
1394 
1395 			archive_entry_linkify(mtree->resolver, &entry,
1396 				&sparse_entry);
1397 		} else if (parsed_kws & MTREE_HAS_OPTIONAL) {
1398 			/*
1399 			 * Couldn't open the entry, stat it or the on-disk type
1400 			 * didn't match.  If this entry is optional, just
1401 			 * ignore it and read the next header entry.
1402 			 */
1403 			*use_next = 1;
1404 			return ARCHIVE_OK;
1405 		}
1406 	}
1407 
1408 	mtree->cur_size = archive_entry_size(entry);
1409 	mtree->offset = 0;
1410 
1411 	return r;
1412 }
1413 
1414 /*
1415  * Each line contains a sequence of keywords.
1416  */
1417 static int
parse_line(struct archive_read * a,struct archive_entry * entry,struct mtree * mtree,struct mtree_entry * mp,int * parsed_kws)1418 parse_line(struct archive_read *a, struct archive_entry *entry,
1419     struct mtree *mtree, struct mtree_entry *mp, int *parsed_kws)
1420 {
1421 	struct mtree_option *iter;
1422 	int r = ARCHIVE_OK, r1;
1423 
1424 	for (iter = mp->options; iter != NULL; iter = iter->next) {
1425 		r1 = parse_keyword(a, mtree, entry, iter, parsed_kws);
1426 		if (r1 < r)
1427 			r = r1;
1428 	}
1429 	if (r == ARCHIVE_OK && (*parsed_kws & MTREE_HAS_TYPE) == 0) {
1430 		archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1431 		    "Missing type keyword in mtree specification");
1432 		return (ARCHIVE_WARN);
1433 	}
1434 	return (r);
1435 }
1436 
1437 /*
1438  * Device entries have one of the following forms:
1439  *  - raw dev_t
1440  *  - format,major,minor[,subdevice]
1441  * When parsing succeeded, `pdev' will contain the appropriate dev_t value.
1442  */
1443 
1444 /* strsep() is not in C90, but strcspn() is. */
1445 /* Taken from http://unixpapa.com/incnote/string.html */
1446 static char *
la_strsep(char ** sp,const char * sep)1447 la_strsep(char **sp, const char *sep)
1448 {
1449 	char *p, *s;
1450 	if (sp == NULL || *sp == NULL || **sp == '\0')
1451 		return(NULL);
1452 	s = *sp;
1453 	p = s + strcspn(s, sep);
1454 	if (*p != '\0')
1455 		*p++ = '\0';
1456 	*sp = p;
1457 	return(s);
1458 }
1459 
1460 static int
parse_device(dev_t * pdev,struct archive * a,char * val)1461 parse_device(dev_t *pdev, struct archive *a, char *val)
1462 {
1463 #define MAX_PACK_ARGS 3
1464 	unsigned long numbers[MAX_PACK_ARGS];
1465 	char *p, *dev;
1466 	int argc;
1467 	pack_t *pack;
1468 	dev_t result;
1469 	const char *error = NULL;
1470 
1471 	memset(pdev, 0, sizeof(*pdev));
1472 	if ((dev = strchr(val, ',')) != NULL) {
1473 		/*
1474 		 * Device's major/minor are given in a specified format.
1475 		 * Decode and pack it accordingly.
1476 		 */
1477 		*dev++ = '\0';
1478 		if ((pack = pack_find(val)) == NULL) {
1479 			archive_set_error(a, ARCHIVE_ERRNO_FILE_FORMAT,
1480 			    "Unknown format `%s'", val);
1481 			return ARCHIVE_WARN;
1482 		}
1483 		argc = 0;
1484 		while ((p = la_strsep(&dev, ",")) != NULL) {
1485 			if (*p == '\0') {
1486 				archive_set_error(a, ARCHIVE_ERRNO_FILE_FORMAT,
1487 				    "Missing number");
1488 				return ARCHIVE_WARN;
1489 			}
1490 			if (argc >= MAX_PACK_ARGS) {
1491 				archive_set_error(a, ARCHIVE_ERRNO_FILE_FORMAT,
1492 				    "Too many arguments");
1493 				return ARCHIVE_WARN;
1494 			}
1495 			numbers[argc++] = (unsigned long)mtree_atol(&p, 0);
1496 		}
1497 		if (argc < 2) {
1498 			archive_set_error(a, ARCHIVE_ERRNO_FILE_FORMAT,
1499 			    "Not enough arguments");
1500 			return ARCHIVE_WARN;
1501 		}
1502 		result = (*pack)(argc, numbers, &error);
1503 		if (error != NULL) {
1504 			archive_set_error(a, ARCHIVE_ERRNO_FILE_FORMAT,
1505 			    "%s", error);
1506 			return ARCHIVE_WARN;
1507 		}
1508 	} else {
1509 		/* file system raw value. */
1510 		result = (dev_t)mtree_atol(&val, 0);
1511 	}
1512 	*pdev = result;
1513 	return ARCHIVE_OK;
1514 #undef MAX_PACK_ARGS
1515 }
1516 
1517 static int
parse_hex_nibble(char c)1518 parse_hex_nibble(char c)
1519 {
1520 	if (c >= '0' && c <= '9')
1521 		return c - '0';
1522 	if (c >= 'a' && c <= 'f')
1523 		return 10 + c - 'a';
1524 #if 0
1525 	/* XXX: Is uppercase something we should support? */
1526 	if (c >= 'A' && c <= 'F')
1527 		return 10 + c - 'A';
1528 #endif
1529 
1530 	return -1;
1531 }
1532 
1533 static int
parse_digest(struct archive_read * a,struct archive_entry * entry,const char * digest,int type)1534 parse_digest(struct archive_read *a, struct archive_entry *entry,
1535     const char *digest, int type)
1536 {
1537 	unsigned char digest_buf[64];
1538 	int high, low;
1539 	size_t i, j, len;
1540 
1541 	switch (type) {
1542 	case ARCHIVE_ENTRY_DIGEST_MD5:
1543 		len = sizeof(entry->digest.md5);
1544 		break;
1545 	case ARCHIVE_ENTRY_DIGEST_RMD160:
1546 		len = sizeof(entry->digest.rmd160);
1547 		break;
1548 	case ARCHIVE_ENTRY_DIGEST_SHA1:
1549 		len = sizeof(entry->digest.sha1);
1550 		break;
1551 	case ARCHIVE_ENTRY_DIGEST_SHA256:
1552 		len = sizeof(entry->digest.sha256);
1553 		break;
1554 	case ARCHIVE_ENTRY_DIGEST_SHA384:
1555 		len = sizeof(entry->digest.sha384);
1556 		break;
1557 	case ARCHIVE_ENTRY_DIGEST_SHA512:
1558 		len = sizeof(entry->digest.sha512);
1559 		break;
1560 	default:
1561 		archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
1562 			"Internal error: Unknown digest type");
1563 		return ARCHIVE_FATAL;
1564 	}
1565 
1566 	if (len > sizeof(digest_buf)) {
1567 		archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
1568 			"Internal error: Digest storage too large");
1569 		return ARCHIVE_FATAL;
1570 	}
1571 
1572 	len *= 2;
1573 
1574 	if (mtree_strnlen(digest, len+1) != len) {
1575 		archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1576 				  "incorrect digest length, ignoring");
1577 		return ARCHIVE_WARN;
1578 	}
1579 
1580 	for (i = 0, j = 0; i < len; i += 2, j++) {
1581 		high = parse_hex_nibble(digest[i]);
1582 		low = parse_hex_nibble(digest[i+1]);
1583 		if (high == -1 || low == -1) {
1584 			archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1585 					  "invalid digest data, ignoring");
1586 			return ARCHIVE_WARN;
1587 		}
1588 
1589 		digest_buf[j] = high << 4 | low;
1590 	}
1591 
1592 	return archive_entry_set_digest(entry, type, digest_buf);
1593 }
1594 
1595 /*
1596  * Parse a single keyword and its value.
1597  */
1598 static int
parse_keyword(struct archive_read * a,struct mtree * mtree,struct archive_entry * entry,struct mtree_option * opt,int * parsed_kws)1599 parse_keyword(struct archive_read *a, struct mtree *mtree,
1600     struct archive_entry *entry, struct mtree_option *opt, int *parsed_kws)
1601 {
1602 	char *val, *key;
1603 
1604 	key = opt->value;
1605 
1606 	if (*key == '\0')
1607 		return (ARCHIVE_OK);
1608 
1609 	if (strcmp(key, "nochange") == 0) {
1610 		*parsed_kws |= MTREE_HAS_NOCHANGE;
1611 		return (ARCHIVE_OK);
1612 	}
1613 	if (strcmp(key, "optional") == 0) {
1614 		*parsed_kws |= MTREE_HAS_OPTIONAL;
1615 		return (ARCHIVE_OK);
1616 	}
1617 	if (strcmp(key, "ignore") == 0) {
1618 		/*
1619 		 * The mtree processing is not recursive, so
1620 		 * recursion will only happen for explicitly listed
1621 		 * entries.
1622 		 */
1623 		return (ARCHIVE_OK);
1624 	}
1625 
1626 	val = strchr(key, '=');
1627 	if (val == NULL) {
1628 		archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1629 		    "Malformed attribute \"%s\" (%d)", key, key[0]);
1630 		return (ARCHIVE_WARN);
1631 	}
1632 
1633 	*val = '\0';
1634 	++val;
1635 
1636 	switch (key[0]) {
1637 	case 'c':
1638 		if (strcmp(key, "content") == 0
1639 		    || strcmp(key, "contents") == 0) {
1640 			parse_escapes(val, NULL);
1641 			archive_strcpy(&mtree->contents_name, val);
1642 			return (ARCHIVE_OK);
1643 		}
1644 		if (strcmp(key, "cksum") == 0)
1645 			return (ARCHIVE_OK);
1646 		break;
1647 	case 'd':
1648 		if (strcmp(key, "device") == 0) {
1649 			/* stat(2) st_rdev field, e.g. the major/minor IDs
1650 			 * of a char/block special file */
1651 			int r;
1652 			dev_t dev;
1653 
1654 			*parsed_kws |= MTREE_HAS_DEVICE;
1655 			r = parse_device(&dev, &a->archive, val);
1656 			if (r == ARCHIVE_OK)
1657 				archive_entry_set_rdev(entry, dev);
1658 			return r;
1659 		}
1660 		break;
1661 	case 'f':
1662 		if (strcmp(key, "flags") == 0) {
1663 			*parsed_kws |= MTREE_HAS_FFLAGS;
1664 			archive_entry_copy_fflags_text(entry, val);
1665 			return (ARCHIVE_OK);
1666 		}
1667 		break;
1668 	case 'g':
1669 		if (strcmp(key, "gid") == 0) {
1670 			*parsed_kws |= MTREE_HAS_GID;
1671 			archive_entry_set_gid(entry, mtree_atol(&val, 10));
1672 			return (ARCHIVE_OK);
1673 		}
1674 		if (strcmp(key, "gname") == 0) {
1675 			*parsed_kws |= MTREE_HAS_GNAME;
1676 			archive_entry_copy_gname(entry, val);
1677 			return (ARCHIVE_OK);
1678 		}
1679 		break;
1680 	case 'i':
1681 		if (strcmp(key, "inode") == 0) {
1682 			archive_entry_set_ino(entry, mtree_atol(&val, 10));
1683 			return (ARCHIVE_OK);
1684 		}
1685 		break;
1686 	case 'l':
1687 		if (strcmp(key, "link") == 0) {
1688 			parse_escapes(val, NULL);
1689 			archive_entry_copy_symlink(entry, val);
1690 			return (ARCHIVE_OK);
1691 		}
1692 		break;
1693 	case 'm':
1694 		if (strcmp(key, "md5") == 0 || strcmp(key, "md5digest") == 0) {
1695 			return parse_digest(a, entry, val,
1696 			    ARCHIVE_ENTRY_DIGEST_MD5);
1697 		}
1698 		if (strcmp(key, "mode") == 0) {
1699 			if (val[0] < '0' || val[0] > '7') {
1700 				archive_set_error(&a->archive,
1701 				    ARCHIVE_ERRNO_FILE_FORMAT,
1702 				    "Symbolic or non-octal mode \"%s\" unsupported", val);
1703 				return (ARCHIVE_WARN);
1704 			}
1705 			*parsed_kws |= MTREE_HAS_PERM;
1706 			archive_entry_set_perm(entry, (mode_t)mtree_atol(&val, 8));
1707 			return (ARCHIVE_OK);
1708 		}
1709 		break;
1710 	case 'n':
1711 		if (strcmp(key, "nlink") == 0) {
1712 			*parsed_kws |= MTREE_HAS_NLINK;
1713 			archive_entry_set_nlink(entry,
1714 				(unsigned int)mtree_atol(&val, 10));
1715 			return (ARCHIVE_OK);
1716 		}
1717 		break;
1718 	case 'r':
1719 		if (strcmp(key, "resdevice") == 0) {
1720 			/* stat(2) st_dev field, e.g. the device ID where the
1721 			 * inode resides */
1722 			int r;
1723 			dev_t dev;
1724 
1725 			r = parse_device(&dev, &a->archive, val);
1726 			if (r == ARCHIVE_OK)
1727 				archive_entry_set_dev(entry, dev);
1728 			return r;
1729 		}
1730 		if (strcmp(key, "rmd160") == 0 ||
1731 		    strcmp(key, "rmd160digest") == 0) {
1732 			return parse_digest(a, entry, val,
1733 			    ARCHIVE_ENTRY_DIGEST_RMD160);
1734 		}
1735 		break;
1736 	case 's':
1737 		if (strcmp(key, "sha1") == 0 ||
1738 		    strcmp(key, "sha1digest") == 0) {
1739 			return parse_digest(a, entry, val,
1740 			    ARCHIVE_ENTRY_DIGEST_SHA1);
1741 		}
1742 		if (strcmp(key, "sha256") == 0 ||
1743 		    strcmp(key, "sha256digest") == 0) {
1744 			return parse_digest(a, entry, val,
1745 			    ARCHIVE_ENTRY_DIGEST_SHA256);
1746 		}
1747 		if (strcmp(key, "sha384") == 0 ||
1748 		    strcmp(key, "sha384digest") == 0) {
1749 			return parse_digest(a, entry, val,
1750 			    ARCHIVE_ENTRY_DIGEST_SHA384);
1751 		}
1752 		if (strcmp(key, "sha512") == 0 ||
1753 		    strcmp(key, "sha512digest") == 0) {
1754 			return parse_digest(a, entry, val,
1755 			    ARCHIVE_ENTRY_DIGEST_SHA512);
1756 		}
1757 		if (strcmp(key, "size") == 0) {
1758 			archive_entry_set_size(entry, mtree_atol(&val, 10));
1759 			return (ARCHIVE_OK);
1760 		}
1761 		break;
1762 	case 't':
1763 		if (strcmp(key, "tags") == 0) {
1764 			/*
1765 			 * Comma delimited list of tags.
1766 			 * Ignore the tags for now, but the interface
1767 			 * should be extended to allow inclusion/exclusion.
1768 			 */
1769 			return (ARCHIVE_OK);
1770 		}
1771 		if (strcmp(key, "time") == 0) {
1772 			int64_t m;
1773 			int64_t my_time_t_max = get_time_t_max();
1774 			int64_t my_time_t_min = get_time_t_min();
1775 			long ns = 0;
1776 
1777 			*parsed_kws |= MTREE_HAS_MTIME;
1778 			m = mtree_atol(&val, 10);
1779 			/* Replicate an old mtree bug:
1780 			 * 123456789.1 represents 123456789
1781 			 * seconds and 1 nanosecond. */
1782 			if (*val == '.') {
1783 				++val;
1784 				ns = (long)mtree_atol(&val, 10);
1785 				if (ns < 0)
1786 					ns = 0;
1787 				else if (ns > 999999999)
1788 					ns = 999999999;
1789 			}
1790 			if (m > my_time_t_max)
1791 				m = my_time_t_max;
1792 			else if (m < my_time_t_min)
1793 				m = my_time_t_min;
1794 			archive_entry_set_mtime(entry, (time_t)m, ns);
1795 			return (ARCHIVE_OK);
1796 		}
1797 		if (strcmp(key, "type") == 0) {
1798 			switch (val[0]) {
1799 			case 'b':
1800 				if (strcmp(val, "block") == 0) {
1801 					*parsed_kws |= MTREE_HAS_TYPE;
1802 					archive_entry_set_filetype(entry,
1803 						AE_IFBLK);
1804 					return (ARCHIVE_OK);
1805 				}
1806 				break;
1807 			case 'c':
1808 				if (strcmp(val, "char") == 0) {
1809 					*parsed_kws |= MTREE_HAS_TYPE;
1810 					archive_entry_set_filetype(entry,
1811 						AE_IFCHR);
1812 					return (ARCHIVE_OK);
1813 				}
1814 				break;
1815 			case 'd':
1816 				if (strcmp(val, "dir") == 0) {
1817 					*parsed_kws |= MTREE_HAS_TYPE;
1818 					archive_entry_set_filetype(entry,
1819 						AE_IFDIR);
1820 					return (ARCHIVE_OK);
1821 				}
1822 				break;
1823 			case 'f':
1824 				if (strcmp(val, "fifo") == 0) {
1825 					*parsed_kws |= MTREE_HAS_TYPE;
1826 					archive_entry_set_filetype(entry,
1827 						AE_IFIFO);
1828 					return (ARCHIVE_OK);
1829 				}
1830 				if (strcmp(val, "file") == 0) {
1831 					*parsed_kws |= MTREE_HAS_TYPE;
1832 					archive_entry_set_filetype(entry,
1833 						AE_IFREG);
1834 					return (ARCHIVE_OK);
1835 				}
1836 				break;
1837 			case 'l':
1838 				if (strcmp(val, "link") == 0) {
1839 					*parsed_kws |= MTREE_HAS_TYPE;
1840 					archive_entry_set_filetype(entry,
1841 						AE_IFLNK);
1842 					return (ARCHIVE_OK);
1843 				}
1844 				break;
1845 			default:
1846 				break;
1847 			}
1848 			archive_set_error(&a->archive,
1849 			    ARCHIVE_ERRNO_FILE_FORMAT,
1850 			    "Unrecognized file type \"%s\"; "
1851 			    "assuming \"file\"", val);
1852 			archive_entry_set_filetype(entry, AE_IFREG);
1853 			return (ARCHIVE_WARN);
1854 		}
1855 		break;
1856 	case 'u':
1857 		if (strcmp(key, "uid") == 0) {
1858 			*parsed_kws |= MTREE_HAS_UID;
1859 			archive_entry_set_uid(entry, mtree_atol(&val, 10));
1860 			return (ARCHIVE_OK);
1861 		}
1862 		if (strcmp(key, "uname") == 0) {
1863 			*parsed_kws |= MTREE_HAS_UNAME;
1864 			archive_entry_copy_uname(entry, val);
1865 			return (ARCHIVE_OK);
1866 		}
1867 		break;
1868 	default:
1869 		break;
1870 	}
1871 	archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
1872 	    "Unrecognized key %s=%s", key, val);
1873 	return (ARCHIVE_WARN);
1874 }
1875 
1876 static int
read_data(struct archive_read * a,const void ** buff,size_t * size,int64_t * offset)1877 read_data(struct archive_read *a, const void **buff, size_t *size,
1878     int64_t *offset)
1879 {
1880 	size_t bytes_to_read;
1881 	ssize_t bytes_read;
1882 	struct mtree *mtree;
1883 
1884 	mtree = (struct mtree *)(a->format->data);
1885 	if (mtree->fd < 0) {
1886 		*buff = NULL;
1887 		*offset = 0;
1888 		*size = 0;
1889 		return (ARCHIVE_EOF);
1890 	}
1891 	if (mtree->buff == NULL) {
1892 		mtree->buffsize = 64 * 1024;
1893 		mtree->buff = malloc(mtree->buffsize);
1894 		if (mtree->buff == NULL) {
1895 			archive_set_error(&a->archive, ENOMEM,
1896 			    "Can't allocate memory");
1897 			return (ARCHIVE_FATAL);
1898 		}
1899 	}
1900 
1901 	*buff = mtree->buff;
1902 	*offset = mtree->offset;
1903 	if ((int64_t)mtree->buffsize > mtree->cur_size - mtree->offset)
1904 		bytes_to_read = (size_t)(mtree->cur_size - mtree->offset);
1905 	else
1906 		bytes_to_read = mtree->buffsize;
1907 	bytes_read = read(mtree->fd, mtree->buff, bytes_to_read);
1908 	if (bytes_read < 0) {
1909 		archive_set_error(&a->archive, errno, "Can't read");
1910 		return (ARCHIVE_WARN);
1911 	}
1912 	if (bytes_read == 0) {
1913 		*size = 0;
1914 		return (ARCHIVE_EOF);
1915 	}
1916 	mtree->offset += bytes_read;
1917 	*size = bytes_read;
1918 	return (ARCHIVE_OK);
1919 }
1920 
1921 /* Skip does nothing except possibly close the contents file. */
1922 static int
skip(struct archive_read * a)1923 skip(struct archive_read *a)
1924 {
1925 	struct mtree *mtree;
1926 
1927 	mtree = (struct mtree *)(a->format->data);
1928 	if (mtree->fd >= 0) {
1929 		close(mtree->fd);
1930 		mtree->fd = -1;
1931 	}
1932 	return (ARCHIVE_OK);
1933 }
1934 
1935 /*
1936  * Since parsing backslash sequences always makes strings shorter,
1937  * we can always do this conversion in-place.
1938  */
1939 static void
parse_escapes(char * src,struct mtree_entry * mentry)1940 parse_escapes(char *src, struct mtree_entry *mentry)
1941 {
1942 	char *dest = src;
1943 	char c;
1944 
1945 	if (mentry != NULL && strcmp(src, ".") == 0)
1946 		mentry->full = 1;
1947 
1948 	while (*src != '\0') {
1949 		c = *src++;
1950 		if (c == '/' && mentry != NULL)
1951 			mentry->full = 1;
1952 		if (c == '\\') {
1953 			switch (src[0]) {
1954 			case '0':
1955 				if (src[1] < '0' || src[1] > '7') {
1956 					c = 0;
1957 					++src;
1958 					break;
1959 				}
1960 				/* FALLTHROUGH */
1961 			case '1':
1962 			case '2':
1963 			case '3':
1964 				if (src[1] >= '0' && src[1] <= '7' &&
1965 				    src[2] >= '0' && src[2] <= '7') {
1966 					c = (src[0] - '0') << 6;
1967 					c |= (src[1] - '0') << 3;
1968 					c |= (src[2] - '0');
1969 					src += 3;
1970 				}
1971 				break;
1972 			case 'a':
1973 				c = '\a';
1974 				++src;
1975 				break;
1976 			case 'b':
1977 				c = '\b';
1978 				++src;
1979 				break;
1980 			case 'f':
1981 				c = '\f';
1982 				++src;
1983 				break;
1984 			case 'n':
1985 				c = '\n';
1986 				++src;
1987 				break;
1988 			case 'r':
1989 				c = '\r';
1990 				++src;
1991 				break;
1992 			case 's':
1993 				c = ' ';
1994 				++src;
1995 				break;
1996 			case 't':
1997 				c = '\t';
1998 				++src;
1999 				break;
2000 			case 'v':
2001 				c = '\v';
2002 				++src;
2003 				break;
2004 			case '\\':
2005 				c = '\\';
2006 				++src;
2007 				break;
2008 			}
2009 		}
2010 		*dest++ = c;
2011 	}
2012 	*dest = '\0';
2013 }
2014 
2015 /* Parse a hex digit. */
2016 static int
parsedigit(char c)2017 parsedigit(char c)
2018 {
2019 	if (c >= '0' && c <= '9')
2020 		return c - '0';
2021 	else if (c >= 'a' && c <= 'f')
2022 		return c - 'a';
2023 	else if (c >= 'A' && c <= 'F')
2024 		return c - 'A';
2025 	else
2026 		return -1;
2027 }
2028 
2029 /*
2030  * Note that this implementation does not (and should not!) obey
2031  * locale settings; you cannot simply substitute strtol here, since
2032  * it does obey locale.
2033  */
2034 static int64_t
mtree_atol(char ** p,int base)2035 mtree_atol(char **p, int base)
2036 {
2037 	int64_t l, limit;
2038 	int digit, last_digit_limit;
2039 
2040 	if (base == 0) {
2041 		if (**p != '0')
2042 			base = 10;
2043 		else if ((*p)[1] == 'x' || (*p)[1] == 'X') {
2044 			*p += 2;
2045 			base = 16;
2046 		} else {
2047 			base = 8;
2048 		}
2049 	}
2050 
2051 	if (**p == '-') {
2052 		limit = INT64_MIN / base;
2053 		last_digit_limit = -(INT64_MIN % base);
2054 		++(*p);
2055 
2056 		l = 0;
2057 		digit = parsedigit(**p);
2058 		while (digit >= 0 && digit < base) {
2059 			if (l < limit || (l == limit && digit >= last_digit_limit))
2060 				return INT64_MIN;
2061 			l = (l * base) - digit;
2062 			digit = parsedigit(*++(*p));
2063 		}
2064 		return l;
2065 	} else {
2066 		limit = INT64_MAX / base;
2067 		last_digit_limit = INT64_MAX % base;
2068 
2069 		l = 0;
2070 		digit = parsedigit(**p);
2071 		while (digit >= 0 && digit < base) {
2072 			if (l > limit || (l == limit && digit > last_digit_limit))
2073 				return INT64_MAX;
2074 			l = (l * base) + digit;
2075 			digit = parsedigit(*++(*p));
2076 		}
2077 		return l;
2078 	}
2079 }
2080 
2081 /*
2082  * Returns length of line (including trailing newline)
2083  * or negative on error.  'start' argument is updated to
2084  * point to first character of line.
2085  */
2086 static ssize_t
readline(struct archive_read * a,struct mtree * mtree,char ** start,ssize_t limit)2087 readline(struct archive_read *a, struct mtree *mtree, char **start,
2088     ssize_t limit)
2089 {
2090 	ssize_t bytes_read;
2091 	ssize_t total_size = 0;
2092 	ssize_t find_off = 0;
2093 	const void *t;
2094 	void *nl;
2095 	char *u;
2096 
2097 	/* Accumulate line in a line buffer. */
2098 	for (;;) {
2099 		/* Read some more. */
2100 		t = __archive_read_ahead(a, 1, &bytes_read);
2101 		if (t == NULL)
2102 			return (0);
2103 		if (bytes_read < 0)
2104 			return (ARCHIVE_FATAL);
2105 		nl = memchr(t, '\n', bytes_read);
2106 		/* If we found '\n', trim the read to end exactly there. */
2107 		if (nl != NULL) {
2108 			bytes_read = ((const char *)nl) - ((const char *)t) + 1;
2109 		}
2110 		if (total_size + bytes_read + 1 > limit) {
2111 			archive_set_error(&a->archive,
2112 			    ARCHIVE_ERRNO_FILE_FORMAT,
2113 			    "Line too long");
2114 			return (ARCHIVE_FATAL);
2115 		}
2116 		if (archive_string_ensure(&mtree->line,
2117 			total_size + bytes_read + 1) == NULL) {
2118 			archive_set_error(&a->archive, ENOMEM,
2119 			    "Can't allocate working buffer");
2120 			return (ARCHIVE_FATAL);
2121 		}
2122 		/* Append new bytes to string. */
2123 		memcpy(mtree->line.s + total_size, t, bytes_read);
2124 		__archive_read_consume(a, bytes_read);
2125 		total_size += bytes_read;
2126 		mtree->line.s[total_size] = '\0';
2127 
2128 		for (u = mtree->line.s + find_off; *u; ++u) {
2129 			if (u[0] == '\n') {
2130 				/* Ends with unescaped newline. */
2131 				*start = mtree->line.s;
2132 				return total_size;
2133 			} else if (u[0] == '#') {
2134 				/* Ends with comment sequence #...\n */
2135 				if (nl == NULL) {
2136 					/* But we've not found the \n yet */
2137 					break;
2138 				}
2139 			} else if (u[0] == '\\') {
2140 				if (u[1] == '\n') {
2141 					/* Trim escaped newline. */
2142 					total_size -= 2;
2143 					mtree->line.s[total_size] = '\0';
2144 					break;
2145 				} else if (u[1] != '\0') {
2146 					/* Skip the two-char escape sequence */
2147 					++u;
2148 				}
2149 			}
2150 		}
2151 		find_off = u - mtree->line.s;
2152 	}
2153 }
2154