]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libarchive/archive_read_support_format_mtree.c
Merge OpenBSM alpha 5 from OpenBSM vendor branch to head, both
[FreeBSD/FreeBSD.git] / lib / libarchive / archive_read_support_format_mtree.c
1 /*-
2  * Copyright (c) 2003-2007 Tim Kientzle
3  * Copyright (c) 2008 Joerg Sonnenberger
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "archive_platform.h"
28 __FBSDID("$FreeBSD$");
29
30 #ifdef HAVE_SYS_STAT_H
31 #include <sys/stat.h>
32 #endif
33 #ifdef HAVE_ERRNO_H
34 #include <errno.h>
35 #endif
36 #ifdef HAVE_FCNTL_H
37 #include <fcntl.h>
38 #endif
39 #include <stddef.h>
40 /* #include <stdint.h> */ /* See archive_platform.h */
41 #ifdef HAVE_STDLIB_H
42 #include <stdlib.h>
43 #endif
44 #ifdef HAVE_STRING_H
45 #include <string.h>
46 #endif
47
48 #include "archive.h"
49 #include "archive_entry.h"
50 #include "archive_private.h"
51 #include "archive_read_private.h"
52 #include "archive_string.h"
53
54 #ifndef O_BINARY
55 #define O_BINARY 0
56 #endif
57
58 #define MTREE_HAS_DEVICE        0x0001
59 #define MTREE_HAS_FFLAGS        0x0002
60 #define MTREE_HAS_GID           0x0004
61 #define MTREE_HAS_GNAME         0x0008
62 #define MTREE_HAS_MTIME         0x0010
63 #define MTREE_HAS_NLINK         0x0020
64 #define MTREE_HAS_PERM          0x0040
65 #define MTREE_HAS_SIZE          0x0080
66 #define MTREE_HAS_TYPE          0x0100
67 #define MTREE_HAS_UID           0x0200
68 #define MTREE_HAS_UNAME         0x0400
69
70 #define MTREE_HAS_OPTIONAL      0x0800
71
72 struct mtree_option {
73         struct mtree_option *next;
74         char *value;
75 };
76
77 struct mtree_entry {
78         struct mtree_entry *next;
79         struct mtree_option *options;
80         char *name;
81         char full;
82         char used;
83 };
84
85 struct mtree {
86         struct archive_string    line;
87         size_t                   buffsize;
88         char                    *buff;
89         off_t                    offset;
90         int                      fd;
91         int                      filetype;
92         int                      archive_format;
93         const char              *archive_format_name;
94         struct mtree_entry      *entries;
95         struct mtree_entry      *this_entry;
96         struct archive_string    current_dir;
97         struct archive_string    contents_name;
98
99         struct archive_entry_linkresolver *resolver;
100
101         off_t                    cur_size, cur_offset;
102 };
103
104 static int      cleanup(struct archive_read *);
105 static int      mtree_bid(struct archive_read *);
106 static int      parse_file(struct archive_read *, struct archive_entry *,
107                     struct mtree *, struct mtree_entry *, int *);
108 static void     parse_escapes(char *, struct mtree_entry *);
109 static int      parse_line(struct archive_read *, struct archive_entry *,
110                     struct mtree *, struct mtree_entry *, int *);
111 static int      parse_keyword(struct archive_read *, struct mtree *,
112                     struct archive_entry *, struct mtree_option *, int *);
113 static int      read_data(struct archive_read *a,
114                     const void **buff, size_t *size, off_t *offset);
115 static ssize_t  readline(struct archive_read *, struct mtree *, char **, ssize_t);
116 static int      skip(struct archive_read *a);
117 static int      read_header(struct archive_read *,
118                     struct archive_entry *);
119 static int64_t  mtree_atol10(char **);
120 static int64_t  mtree_atol8(char **);
121 static int64_t  mtree_atol(char **);
122
123 static void
124 free_options(struct mtree_option *head)
125 {
126         struct mtree_option *next;
127
128         for (; head != NULL; head = next) {
129                 next = head->next;
130                 free(head->value);
131                 free(head);
132         }
133 }
134
135 int
136 archive_read_support_format_mtree(struct archive *_a)
137 {
138         struct archive_read *a = (struct archive_read *)_a;
139         struct mtree *mtree;
140         int r;
141
142         mtree = (struct mtree *)malloc(sizeof(*mtree));
143         if (mtree == NULL) {
144                 archive_set_error(&a->archive, ENOMEM,
145                     "Can't allocate mtree data");
146                 return (ARCHIVE_FATAL);
147         }
148         memset(mtree, 0, sizeof(*mtree));
149         mtree->fd = -1;
150
151         r = __archive_read_register_format(a, mtree,
152             mtree_bid, read_header, read_data, skip, cleanup);
153
154         if (r != ARCHIVE_OK)
155                 free(mtree);
156         return (ARCHIVE_OK);
157 }
158
159 static int
160 cleanup(struct archive_read *a)
161 {
162         struct mtree *mtree;
163         struct mtree_entry *p, *q;
164
165         mtree = (struct mtree *)(a->format->data);
166
167         p = mtree->entries;
168         while (p != NULL) {
169                 q = p->next;
170                 free(p->name);
171                 free_options(p->options);
172                 free(p);
173                 p = q;
174         }
175         archive_string_free(&mtree->line);
176         archive_string_free(&mtree->current_dir);
177         archive_string_free(&mtree->contents_name);
178         archive_entry_linkresolver_free(mtree->resolver);
179
180         free(mtree->buff);
181         free(mtree);
182         (a->format->data) = NULL;
183         return (ARCHIVE_OK);
184 }
185
186
187 static int
188 mtree_bid(struct archive_read *a)
189 {
190         const char *signature = "#mtree";
191         const char *p;
192
193         /* Now let's look at the actual header and see if it matches. */
194         p = __archive_read_ahead(a, strlen(signature), NULL);
195         if (p == NULL)
196                 return (-1);
197
198         if (strncmp(p, signature, strlen(signature)) == 0)
199                 return (8 * strlen(signature));
200         return (0);
201 }
202
203 /*
204  * The extended mtree format permits multiple lines specifying
205  * attributes for each file.  For those entries, only the last line
206  * is actually used.  Practically speaking, that means we have
207  * to read the entire mtree file into memory up front.
208  *
209  * The parsing is done in two steps.  First, it is decided if a line
210  * changes the global defaults and if it is, processed accordingly.
211  * Otherwise, the options of the line are merged with the current
212  * global options.
213  */
214 static int
215 add_option(struct archive_read *a, struct mtree_option **global,
216     const char *value, size_t len)
217 {
218         struct mtree_option *option;
219
220         if ((option = malloc(sizeof(*option))) == NULL) {
221                 archive_set_error(&a->archive, errno, "Can't allocate memory");
222                 return (ARCHIVE_FATAL);
223         }
224         if ((option->value = malloc(len + 1)) == NULL) {
225                 free(option);
226                 archive_set_error(&a->archive, errno, "Can't allocate memory");
227                 return (ARCHIVE_FATAL);
228         }
229         memcpy(option->value, value, len);
230         option->value[len] = '\0';
231         option->next = *global;
232         *global = option;
233         return (ARCHIVE_OK);
234 }
235
236 static void
237 remove_option(struct mtree_option **global, const char *value, size_t len)
238 {
239         struct mtree_option *iter, *last;
240
241         last = NULL;
242         for (iter = *global; iter != NULL; last = iter, iter = iter->next) {
243                 if (strncmp(iter->value, value, len) == 0 &&
244                     (iter->value[len] == '\0' ||
245                      iter->value[len] == '='))
246                         break;
247         }
248         if (iter == NULL)
249                 return;
250         if (last == NULL)
251                 *global = iter->next;
252         else
253                 last->next = iter->next;
254
255         free(iter->value);
256         free(iter);
257 }
258
259 static int
260 process_global_set(struct archive_read *a,
261     struct mtree_option **global, const char *line)
262 {
263         const char *next, *eq;
264         size_t len;
265         int r;
266
267         line += 4;
268         for (;;) {
269                 next = line + strspn(line, " \t\r\n");
270                 if (*next == '\0')
271                         return (ARCHIVE_OK);
272                 line = next;
273                 next = line + strcspn(line, " \t\r\n");
274                 eq = strchr(line, '=');
275                 if (eq > next)
276                         len = next - line;
277                 else
278                         len = eq - line;
279
280                 remove_option(global, line, len);
281                 r = add_option(a, global, line, next - line);
282                 if (r != ARCHIVE_OK)
283                         return (r);
284                 line = next;
285         }
286 }
287
288 static int
289 process_global_unset(struct archive_read *a,
290     struct mtree_option **global, const char *line)
291 {
292         const char *next;
293         size_t len;
294
295         line += 6;
296         if (strchr(line, '=') != NULL) {
297                 archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
298                     "/unset shall not contain `='");
299                 return ARCHIVE_FATAL;
300         }
301
302         for (;;) {
303                 next = line + strspn(line, " \t\r\n");
304                 if (*next == '\0')
305                         return (ARCHIVE_OK);
306                 line = next;
307                 len = strcspn(line, " \t\r\n");
308
309                 if (len == 3 && strncmp(line, "all", 3) == 0) {
310                         free_options(*global);
311                         *global = NULL;
312                 } else {
313                         remove_option(global, line, len);
314                 }
315
316                 line += len;
317         }
318 }
319
320 static int
321 process_add_entry(struct archive_read *a, struct mtree *mtree,
322     struct mtree_option **global, const char *line,
323     struct mtree_entry **last_entry)
324 {
325         struct mtree_entry *entry;
326         struct mtree_option *iter;
327         const char *next, *eq;
328         size_t len;
329         int r;
330
331         if ((entry = malloc(sizeof(*entry))) == NULL) {
332                 archive_set_error(&a->archive, errno, "Can't allocate memory");
333                 return (ARCHIVE_FATAL);
334         }
335         entry->next = NULL;
336         entry->options = NULL;
337         entry->name = NULL;
338         entry->used = 0;
339         entry->full = 0;
340
341         /* Add this entry to list. */
342         if (*last_entry == NULL)
343                 mtree->entries = entry;
344         else
345                 (*last_entry)->next = entry;
346         *last_entry = entry;
347
348         len = strcspn(line, " \t\r\n");
349         if ((entry->name = malloc(len + 1)) == NULL) {
350                 archive_set_error(&a->archive, errno, "Can't allocate memory");
351                 return (ARCHIVE_FATAL);
352         }
353
354         memcpy(entry->name, line, len);
355         entry->name[len] = '\0';
356         parse_escapes(entry->name, entry);
357
358         line += len;
359         for (iter = *global; iter != NULL; iter = iter->next) {
360                 r = add_option(a, &entry->options, iter->value,
361                     strlen(iter->value));
362                 if (r != ARCHIVE_OK)
363                         return (r);
364         }
365
366         for (;;) {
367                 next = line + strspn(line, " \t\r\n");
368                 if (*next == '\0')
369                         return (ARCHIVE_OK);
370                 line = next;
371                 next = line + strcspn(line, " \t\r\n");
372                 eq = strchr(line, '=');
373                 if (eq > next)
374                         len = next - line;
375                 else
376                         len = eq - line;
377
378                 remove_option(&entry->options, line, len);
379                 r = add_option(a, &entry->options, line, next - line);
380                 if (r != ARCHIVE_OK)
381                         return (r);
382                 line = next;
383         }
384 }
385
386 static int
387 read_mtree(struct archive_read *a, struct mtree *mtree)
388 {
389         ssize_t len;
390         uintmax_t counter;
391         char *p;
392         struct mtree_option *global;
393         struct mtree_entry *last_entry;
394         int r;
395
396         mtree->archive_format = ARCHIVE_FORMAT_MTREE;
397         mtree->archive_format_name = "mtree";
398
399         global = NULL;
400         last_entry = NULL;
401         r = ARCHIVE_OK;
402
403         for (counter = 1; ; ++counter) {
404                 len = readline(a, mtree, &p, 256);
405                 if (len == 0) {
406                         mtree->this_entry = mtree->entries;
407                         return (ARCHIVE_OK);
408                 }
409                 if (len < 0)
410                         return (len);
411                 /* Leading whitespace is never significant, ignore it. */
412                 while (*p == ' ' || *p == '\t') {
413                         ++p;
414                         --len;
415                 }
416                 /* Skip content lines and blank lines. */
417                 if (*p == '#')
418                         continue;
419                 if (*p == '\r' || *p == '\n' || *p == '\0')
420                         continue;
421                 if (*p != '/') {
422                         r = process_add_entry(a, mtree, &global, p,
423                             &last_entry);
424                 } else if (strncmp(p, "/set", 4) == 0) {
425                         if (p[4] != ' ' && p[4] != '\t')
426                                 break;
427                         r = process_global_set(a, &global, p);
428                 } else if (strncmp(p, "/unset", 6) == 0) {
429                         if (p[6] != ' ' && p[6] != '\t')
430                                 break;
431                         r = process_global_unset(a, &global, p);
432                 } else
433                         break;
434
435                 if (r != ARCHIVE_OK)
436                         return r;
437         }
438
439         archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
440             "Can't parse line %ju", counter);
441         return ARCHIVE_FATAL;
442 }
443
444 /*
445  * Read in the entire mtree file into memory on the first request.
446  * Then use the next unused file to satisfy each header request.
447  */
448 static int
449 read_header(struct archive_read *a, struct archive_entry *entry)
450 {
451         struct mtree *mtree;
452         char *p;
453         int r, use_next;
454
455         mtree = (struct mtree *)(a->format->data);
456
457         if (mtree->fd >= 0) {
458                 close(mtree->fd);
459                 mtree->fd = -1;
460         }
461
462         if (mtree->entries == NULL) {
463                 mtree->resolver = archive_entry_linkresolver_new();
464                 if (mtree->resolver == NULL)
465                         return ARCHIVE_FATAL;
466                 archive_entry_linkresolver_set_strategy(mtree->resolver,
467                     ARCHIVE_FORMAT_MTREE);
468                 r = read_mtree(a, mtree);
469                 if (r != ARCHIVE_OK)
470                         return (r);
471         }
472
473         a->archive.archive_format = mtree->archive_format;
474         a->archive.archive_format_name = mtree->archive_format_name;
475
476         for (;;) {
477                 if (mtree->this_entry == NULL)
478                         return (ARCHIVE_EOF);
479                 if (strcmp(mtree->this_entry->name, "..") == 0) {
480                         mtree->this_entry->used = 1;
481                         if (archive_strlen(&mtree->current_dir) > 0) {
482                                 /* Roll back current path. */
483                                 p = mtree->current_dir.s
484                                     + mtree->current_dir.length - 1;
485                                 while (p >= mtree->current_dir.s && *p != '/')
486                                         --p;
487                                 if (p >= mtree->current_dir.s)
488                                         --p;
489                                 mtree->current_dir.length
490                                     = p - mtree->current_dir.s + 1;
491                         }
492                 }
493                 if (!mtree->this_entry->used) {
494                         use_next = 0;
495                         r = parse_file(a, entry, mtree, mtree->this_entry, &use_next);
496                         if (use_next == 0)
497                                 return (r);
498                 }
499                 mtree->this_entry = mtree->this_entry->next;
500         }
501 }
502
503 /*
504  * A single file can have multiple lines contribute specifications.
505  * Parse as many lines as necessary, then pull additional information
506  * from a backing file on disk as necessary.
507  */
508 static int
509 parse_file(struct archive_read *a, struct archive_entry *entry,
510     struct mtree *mtree, struct mtree_entry *mentry, int *use_next)
511 {
512         const char *path;
513         struct stat st_storage, *st;
514         struct mtree_entry *mp;
515         struct archive_entry *sparse_entry;
516         int r = ARCHIVE_OK, r1, parsed_kws, mismatched_type;
517
518         mentry->used = 1;
519
520         /* Initialize reasonable defaults. */
521         mtree->filetype = AE_IFREG;
522         archive_entry_set_size(entry, 0);
523
524         /* Parse options from this line. */
525         parsed_kws = 0;
526         r = parse_line(a, entry, mtree, mentry, &parsed_kws);
527
528         if (mentry->full) {
529                 archive_entry_copy_pathname(entry, mentry->name);
530                 /*
531                  * "Full" entries are allowed to have multiple lines
532                  * and those lines aren't required to be adjacent.  We
533                  * don't support multiple lines for "relative" entries
534                  * nor do we make any attempt to merge data from
535                  * separate "relative" and "full" entries.  (Merging
536                  * "relative" and "full" entries would require dealing
537                  * with pathname canonicalization, which is a very
538                  * tricky subject.)
539                  */
540                 for (mp = mentry->next; mp != NULL; mp = mp->next) {
541                         if (mp->full && !mp->used
542                             && strcmp(mentry->name, mp->name) == 0) {
543                                 /* Later lines override earlier ones. */
544                                 mp->used = 1;
545                                 r1 = parse_line(a, entry, mtree, mp,
546                                     &parsed_kws);
547                                 if (r1 < r)
548                                         r = r1;
549                         }
550                 }
551         } else {
552                 /*
553                  * Relative entries require us to construct
554                  * the full path and possibly update the
555                  * current directory.
556                  */
557                 size_t n = archive_strlen(&mtree->current_dir);
558                 if (n > 0)
559                         archive_strcat(&mtree->current_dir, "/");
560                 archive_strcat(&mtree->current_dir, mentry->name);
561                 archive_entry_copy_pathname(entry, mtree->current_dir.s);
562                 if (archive_entry_filetype(entry) != AE_IFDIR)
563                         mtree->current_dir.length = n;
564         }
565
566         /*
567          * Try to open and stat the file to get the real size
568          * and other file info.  It would be nice to avoid
569          * this here so that getting a listing of an mtree
570          * wouldn't require opening every referenced contents
571          * file.  But then we wouldn't know the actual
572          * contents size, so I don't see a really viable way
573          * around this.  (Also, we may want to someday pull
574          * other unspecified info from the contents file on
575          * disk.)
576          */
577         mtree->fd = -1;
578         if (archive_strlen(&mtree->contents_name) > 0)
579                 path = mtree->contents_name.s;
580         else
581                 path = archive_entry_pathname(entry);
582
583         if (archive_entry_filetype(entry) == AE_IFREG ||
584             archive_entry_filetype(entry) == AE_IFDIR) {
585                 mtree->fd = open(path,
586                     O_RDONLY | O_BINARY);
587                 if (mtree->fd == -1 &&
588                     (errno != ENOENT ||
589                      archive_strlen(&mtree->contents_name) > 0)) {
590                         archive_set_error(&a->archive, errno,
591                             "Can't open %s", path);
592                         r = ARCHIVE_WARN;
593                 }
594         }
595
596         st = &st_storage;
597         if (mtree->fd >= 0) {
598                 if (fstat(mtree->fd, st) == -1) {
599                         archive_set_error(&a->archive, errno,
600                             "Could not fstat %s", path);
601                         r = ARCHIVE_WARN;
602                         /* If we can't stat it, don't keep it open. */
603                         close(mtree->fd);
604                         mtree->fd = -1;
605                         st = NULL;
606                 }
607         } else if (lstat(path, st) == -1) {
608                 st = NULL;
609         }
610
611         /*
612          * If there is a contents file on disk, use that size;
613          * otherwise leave it as-is (it might have been set from
614          * the mtree size= keyword).
615          */
616         if (st != NULL) {
617                 mismatched_type = 0;
618                 if ((st->st_mode & S_IFMT) == S_IFREG &&
619                     archive_entry_filetype(entry) != AE_IFREG)
620                         mismatched_type = 1;
621                 if ((st->st_mode & S_IFMT) == S_IFLNK &&
622                     archive_entry_filetype(entry) != AE_IFLNK)
623                         mismatched_type = 1;
624                 if ((st->st_mode & S_IFSOCK) == S_IFSOCK &&
625                     archive_entry_filetype(entry) != AE_IFSOCK)
626                         mismatched_type = 1;
627                 if ((st->st_mode & S_IFMT) == S_IFCHR &&
628                     archive_entry_filetype(entry) != AE_IFCHR)
629                         mismatched_type = 1;
630                 if ((st->st_mode & S_IFMT) == S_IFBLK &&
631                     archive_entry_filetype(entry) != AE_IFBLK)
632                         mismatched_type = 1;
633                 if ((st->st_mode & S_IFMT) == S_IFDIR &&
634                     archive_entry_filetype(entry) != AE_IFDIR)
635                         mismatched_type = 1;
636                 if ((st->st_mode & S_IFMT) == S_IFIFO &&
637                     archive_entry_filetype(entry) != AE_IFIFO)
638                         mismatched_type = 1;
639
640                 if (mismatched_type) {
641                         if ((parsed_kws & MTREE_HAS_OPTIONAL) == 0) {
642                                 archive_set_error(&a->archive,
643                                     ARCHIVE_ERRNO_MISC,
644                                     "mtree specification has different type for %s",
645                                     archive_entry_pathname(entry));
646                                 r = ARCHIVE_WARN;
647                         } else {
648                                 *use_next = 1;
649                         }
650                         /* Don't hold a non-regular file open. */
651                         if (mtree->fd >= 0)
652                                 close(mtree->fd);
653                         mtree->fd = -1;
654                         st = NULL;
655                         return r;
656                 }
657         }
658
659         if (st != NULL) {
660                 if ((parsed_kws & MTREE_HAS_DEVICE) == 0 &&
661                     (archive_entry_filetype(entry) == AE_IFCHR ||
662                      archive_entry_filetype(entry) == AE_IFBLK))
663                         archive_entry_set_rdev(entry, st->st_rdev);
664                 if ((parsed_kws & (MTREE_HAS_GID | MTREE_HAS_GNAME)) == 0)
665                         archive_entry_set_gid(entry, st->st_gid);
666                 if ((parsed_kws & (MTREE_HAS_UID | MTREE_HAS_UNAME)) == 0)
667                         archive_entry_set_uid(entry, st->st_uid);
668                 if ((parsed_kws & MTREE_HAS_MTIME) == 0) {
669 #if HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC
670                         archive_entry_set_mtime(entry, st->st_mtime,
671                             st->st_mtimespec.tv_nsec);
672 #elif HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
673                         archive_entry_set_mtime(entry, st->st_mtime,
674                             st->st_mtim.tv_nsec);
675 #else
676                         archive_entry_set_mtime(entry, st->st_mtime, 0);
677 #endif
678                 }
679                 if ((parsed_kws & MTREE_HAS_NLINK) == 0)
680                         archive_entry_set_nlink(entry, st->st_nlink);
681                 if ((parsed_kws & MTREE_HAS_PERM) == 0)
682                         archive_entry_set_perm(entry, st->st_mode);
683                 if ((parsed_kws & MTREE_HAS_SIZE) == 0)
684                         archive_entry_set_size(entry, st->st_size);
685                 archive_entry_set_ino(entry, st->st_ino);
686                 archive_entry_set_dev(entry, st->st_dev);
687
688                 archive_entry_linkify(mtree->resolver, &entry, &sparse_entry);
689         } else if (parsed_kws & MTREE_HAS_OPTIONAL) {
690                 /*
691                  * Couldn't open the entry, stat it or the on-disk type
692                  * didn't match.  If this entry is optional, just ignore it
693                  * and read the next header entry.
694                  */
695                 *use_next = 1;
696                 return ARCHIVE_OK;
697         }
698
699         mtree->cur_size = archive_entry_size(entry);
700         mtree->offset = 0;
701
702         return r;
703 }
704
705 /*
706  * Each line contains a sequence of keywords.
707  */
708 static int
709 parse_line(struct archive_read *a, struct archive_entry *entry,
710     struct mtree *mtree, struct mtree_entry *mp, int *parsed_kws)
711 {
712         struct mtree_option *iter;
713         int r = ARCHIVE_OK, r1;
714
715         for (iter = mp->options; iter != NULL; iter = iter->next) {
716                 r1 = parse_keyword(a, mtree, entry, iter, parsed_kws);
717                 if (r1 < r)
718                         r = r1;
719         }
720         if ((*parsed_kws & MTREE_HAS_TYPE) == 0) {
721                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
722                     "Missing type keyword in mtree specification");
723                 return (ARCHIVE_WARN);
724         }
725         return (r);
726 }
727
728 /*
729  * Device entries have one of the following forms:
730  * raw dev_t
731  * format,major,minor[,subdevice]
732  *
733  * Just use major and minor, no translation etc is done
734  * between formats.
735  */
736 static int
737 parse_device(struct archive *a, struct archive_entry *entry, char *val)
738 {
739         char *comma1, *comma2;
740
741         comma1 = strchr(val, ',');
742         if (comma1 == NULL) {
743                 archive_entry_set_dev(entry, mtree_atol10(&val));
744                 return (ARCHIVE_OK);
745         }
746         ++comma1;
747         comma2 = strchr(comma1, ',');
748         if (comma2 == NULL) {
749                 archive_set_error(a, ARCHIVE_ERRNO_FILE_FORMAT,
750                     "Malformed device attribute");
751                 return (ARCHIVE_WARN);
752         }
753         ++comma2;
754         archive_entry_set_rdevmajor(entry, mtree_atol(&comma1));
755         archive_entry_set_rdevminor(entry, mtree_atol(&comma2));
756         return (ARCHIVE_OK);
757 }
758
759 /*
760  * Parse a single keyword and its value.
761  */
762 static int
763 parse_keyword(struct archive_read *a, struct mtree *mtree,
764     struct archive_entry *entry, struct mtree_option *option, int *parsed_kws)
765 {
766         char *val, *key;
767
768         key = option->value;
769
770         if (*key == '\0')
771                 return (ARCHIVE_OK);
772
773         if (strcmp(key, "optional") == 0) {
774                 *parsed_kws |= MTREE_HAS_OPTIONAL;
775                 return (ARCHIVE_OK);
776         }
777         if (strcmp(key, "ignore") == 0) {
778                 /*
779                  * The mtree processing is not recursive, so
780                  * recursion will only happen for explicitly listed
781                  * entries.
782                  */
783                 return (ARCHIVE_OK);
784         }
785
786         val = strchr(key, '=');
787         if (val == NULL) {
788                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
789                     "Malformed attribute \"%s\" (%d)", key, key[0]);
790                 return (ARCHIVE_WARN);
791         }
792
793         *val = '\0';
794         ++val;
795
796         switch (key[0]) {
797         case 'c':
798                 if (strcmp(key, "content") == 0
799                     || strcmp(key, "contents") == 0) {
800                         parse_escapes(val, NULL);
801                         archive_strcpy(&mtree->contents_name, val);
802                         break;
803                 }
804                 if (strcmp(key, "cksum") == 0)
805                         break;
806         case 'd':
807                 if (strcmp(key, "device") == 0) {
808                         *parsed_kws |= MTREE_HAS_DEVICE;
809                         return parse_device(&a->archive, entry, val);
810                 }
811         case 'f':
812                 if (strcmp(key, "flags") == 0) {
813                         *parsed_kws |= MTREE_HAS_FFLAGS;
814                         archive_entry_copy_fflags_text(entry, val);
815                         break;
816                 }
817         case 'g':
818                 if (strcmp(key, "gid") == 0) {
819                         *parsed_kws |= MTREE_HAS_GID;
820                         archive_entry_set_gid(entry, mtree_atol10(&val));
821                         break;
822                 }
823                 if (strcmp(key, "gname") == 0) {
824                         *parsed_kws |= MTREE_HAS_GNAME;
825                         archive_entry_copy_gname(entry, val);
826                         break;
827                 }
828         case 'l':
829                 if (strcmp(key, "link") == 0) {
830                         archive_entry_copy_symlink(entry, val);
831                         break;
832                 }
833         case 'm':
834                 if (strcmp(key, "md5") == 0 || strcmp(key, "md5digest") == 0)
835                         break;
836                 if (strcmp(key, "mode") == 0) {
837                         if (val[0] >= '0' && val[0] <= '9') {
838                                 *parsed_kws |= MTREE_HAS_PERM;
839                                 archive_entry_set_perm(entry,
840                                     mtree_atol8(&val));
841                         } else {
842                                 archive_set_error(&a->archive,
843                                     ARCHIVE_ERRNO_FILE_FORMAT,
844                                     "Symbolic mode \"%s\" unsupported", val);
845                                 return ARCHIVE_WARN;
846                         }
847                         break;
848                 }
849         case 'n':
850                 if (strcmp(key, "nlink") == 0) {
851                         *parsed_kws |= MTREE_HAS_NLINK;
852                         archive_entry_set_nlink(entry, mtree_atol10(&val));
853                         break;
854                 }
855         case 'r':
856                 if (strcmp(key, "rmd160") == 0 ||
857                     strcmp(key, "rmd160digest") == 0)
858                         break;
859         case 's':
860                 if (strcmp(key, "sha1") == 0 || strcmp(key, "sha1digest") == 0)
861                         break;
862                 if (strcmp(key, "sha256") == 0 ||
863                     strcmp(key, "sha256digest") == 0)
864                         break;
865                 if (strcmp(key, "sha384") == 0 ||
866                     strcmp(key, "sha384digest") == 0)
867                         break;
868                 if (strcmp(key, "sha512") == 0 ||
869                     strcmp(key, "sha512digest") == 0)
870                         break;
871                 if (strcmp(key, "size") == 0) {
872                         archive_entry_set_size(entry, mtree_atol10(&val));
873                         break;
874                 }
875         case 't':
876                 if (strcmp(key, "tags") == 0) {
877                         /*
878                          * Comma delimited list of tags.
879                          * Ignore the tags for now, but the interface
880                          * should be extended to allow inclusion/exclusion.
881                          */
882                         break;
883                 }
884                 if (strcmp(key, "time") == 0) {
885                         *parsed_kws |= MTREE_HAS_MTIME;
886                         archive_entry_set_mtime(entry, mtree_atol10(&val), 0);
887                         break;
888                 }
889                 if (strcmp(key, "type") == 0) {
890                         *parsed_kws |= MTREE_HAS_TYPE;
891                         switch (val[0]) {
892                         case 'b':
893                                 if (strcmp(val, "block") == 0) {
894                                         mtree->filetype = AE_IFBLK;
895                                         break;
896                                 }
897                         case 'c':
898                                 if (strcmp(val, "char") == 0) {
899                                         mtree->filetype = AE_IFCHR;
900                                         break;
901                                 }
902                         case 'd':
903                                 if (strcmp(val, "dir") == 0) {
904                                         mtree->filetype = AE_IFDIR;
905                                         break;
906                                 }
907                         case 'f':
908                                 if (strcmp(val, "fifo") == 0) {
909                                         mtree->filetype = AE_IFIFO;
910                                         break;
911                                 }
912                                 if (strcmp(val, "file") == 0) {
913                                         mtree->filetype = AE_IFREG;
914                                         break;
915                                 }
916                         case 'l':
917                                 if (strcmp(val, "link") == 0) {
918                                         mtree->filetype = AE_IFLNK;
919                                         break;
920                                 }
921                         default:
922                                 archive_set_error(&a->archive,
923                                     ARCHIVE_ERRNO_FILE_FORMAT,
924                                     "Unrecognized file type \"%s\"", val);
925                                 return (ARCHIVE_WARN);
926                         }
927                         archive_entry_set_filetype(entry, mtree->filetype);
928                         break;
929                 }
930         case 'u':
931                 if (strcmp(key, "uid") == 0) {
932                         *parsed_kws |= MTREE_HAS_UID;
933                         archive_entry_set_uid(entry, mtree_atol10(&val));
934                         break;
935                 }
936                 if (strcmp(key, "uname") == 0) {
937                         *parsed_kws |= MTREE_HAS_UNAME;
938                         archive_entry_copy_uname(entry, val);
939                         break;
940                 }
941         default:
942                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
943                     "Unrecognized key %s=%s", key, val);
944                 return (ARCHIVE_WARN);
945         }
946         return (ARCHIVE_OK);
947 }
948
949 static int
950 read_data(struct archive_read *a, const void **buff, size_t *size, off_t *offset)
951 {
952         size_t bytes_to_read;
953         ssize_t bytes_read;
954         struct mtree *mtree;
955
956         mtree = (struct mtree *)(a->format->data);
957         if (mtree->fd < 0) {
958                 *buff = NULL;
959                 *offset = 0;
960                 *size = 0;
961                 return (ARCHIVE_EOF);
962         }
963         if (mtree->buff == NULL) {
964                 mtree->buffsize = 64 * 1024;
965                 mtree->buff = malloc(mtree->buffsize);
966                 if (mtree->buff == NULL) {
967                         archive_set_error(&a->archive, ENOMEM,
968                             "Can't allocate memory");
969                 }
970                 return (ARCHIVE_FATAL);
971         }
972
973         *buff = mtree->buff;
974         *offset = mtree->offset;
975         if ((off_t)mtree->buffsize > mtree->cur_size - mtree->offset)
976                 bytes_to_read = mtree->cur_size - mtree->offset;
977         else
978                 bytes_to_read = mtree->buffsize;
979         bytes_read = read(mtree->fd, mtree->buff, bytes_to_read);
980         if (bytes_read < 0) {
981                 archive_set_error(&a->archive, errno, "Can't read");
982                 return (ARCHIVE_WARN);
983         }
984         if (bytes_read == 0) {
985                 *size = 0;
986                 return (ARCHIVE_EOF);
987         }
988         mtree->offset += bytes_read;
989         *size = bytes_read;
990         return (ARCHIVE_OK);
991 }
992
993 /* Skip does nothing except possibly close the contents file. */
994 static int
995 skip(struct archive_read *a)
996 {
997         struct mtree *mtree;
998
999         mtree = (struct mtree *)(a->format->data);
1000         if (mtree->fd >= 0) {
1001                 close(mtree->fd);
1002                 mtree->fd = -1;
1003         }
1004         return (ARCHIVE_OK);
1005 }
1006
1007 /*
1008  * Since parsing backslash sequences always makes strings shorter,
1009  * we can always do this conversion in-place.
1010  */
1011 static void
1012 parse_escapes(char *src, struct mtree_entry *mentry)
1013 {
1014         char *dest = src;
1015         char c;
1016
1017         /*
1018          * The current directory is somewhat special, it should be archived
1019          * only once as it will confuse extraction otherwise.
1020          */
1021         if (strcmp(src, ".") == 0)
1022                 mentry->full = 1;
1023
1024         while (*src != '\0') {
1025                 c = *src++;
1026                 if (c == '/' && mentry != NULL)
1027                         mentry->full = 1;
1028                 if (c == '\\') {
1029                         switch (src[0]) {
1030                         case '0':
1031                                 if (src[1] < '0' || src[1] > '7') {
1032                                         c = 0;
1033                                         ++src;
1034                                         break;
1035                                 }
1036                                 /* FALLTHROUGH */
1037                         case '1':
1038                         case '2':
1039                         case '3':
1040                                 if (src[1] >= '0' && src[1] <= '7' &&
1041                                     src[2] >= '0' && src[2] <= '7') {
1042                                         c = (src[0] - '0') << 6;
1043                                         c |= (src[1] - '0') << 3;
1044                                         c |= (src[2] - '0');
1045                                         src += 3;
1046                                 }
1047                                 break;
1048                         case 'a':
1049                                 c = '\a';
1050                                 ++src;
1051                                 break;
1052                         case 'b':
1053                                 c = '\b';
1054                                 ++src;
1055                                 break;
1056                         case 'f':
1057                                 c = '\f';
1058                                 ++src;
1059                                 break;
1060                         case 'n':
1061                                 c = '\n';
1062                                 ++src;
1063                                 break;
1064                         case 'r':
1065                                 c = '\r';
1066                                 ++src;
1067                                 break;
1068                         case 's':
1069                                 c = ' ';
1070                                 ++src;
1071                                 break;
1072                         case 't':
1073                                 c = '\t';
1074                                 ++src;
1075                                 break;
1076                         case 'v':
1077                                 c = '\v';
1078                                 ++src;
1079                                 break;
1080                         }
1081                 }
1082                 *dest++ = c;
1083         }
1084         *dest = '\0';
1085 }
1086
1087 /*
1088  * Note that this implementation does not (and should not!) obey
1089  * locale settings; you cannot simply substitute strtol here, since
1090  * it does obey locale.
1091  */
1092 static int64_t
1093 mtree_atol8(char **p)
1094 {
1095         int64_t l, limit, last_digit_limit;
1096         int digit, base;
1097
1098         base = 8;
1099         limit = INT64_MAX / base;
1100         last_digit_limit = INT64_MAX % base;
1101
1102         l = 0;
1103         digit = **p - '0';
1104         while (digit >= 0 && digit < base) {
1105                 if (l>limit || (l == limit && digit > last_digit_limit)) {
1106                         l = INT64_MAX; /* Truncate on overflow. */
1107                         break;
1108                 }
1109                 l = (l * base) + digit;
1110                 digit = *++(*p) - '0';
1111         }
1112         return (l);
1113 }
1114
1115 /*
1116  * Note that this implementation does not (and should not!) obey
1117  * locale settings; you cannot simply substitute strtol here, since
1118  * it does obey locale.
1119  */
1120 static int64_t
1121 mtree_atol10(char **p)
1122 {
1123         int64_t l, limit, last_digit_limit;
1124         int base, digit, sign;
1125
1126         base = 10;
1127         limit = INT64_MAX / base;
1128         last_digit_limit = INT64_MAX % base;
1129
1130         if (**p == '-') {
1131                 sign = -1;
1132                 ++(*p);
1133         } else
1134                 sign = 1;
1135
1136         l = 0;
1137         digit = **p - '0';
1138         while (digit >= 0 && digit < base) {
1139                 if (l > limit || (l == limit && digit > last_digit_limit)) {
1140                         l = UINT64_MAX; /* Truncate on overflow. */
1141                         break;
1142                 }
1143                 l = (l * base) + digit;
1144                 digit = *++(*p) - '0';
1145         }
1146         return (sign < 0) ? -l : l;
1147 }
1148
1149 /*
1150  * Note that this implementation does not (and should not!) obey
1151  * locale settings; you cannot simply substitute strtol here, since
1152  * it does obey locale.
1153  */
1154 static int64_t
1155 mtree_atol16(char **p)
1156 {
1157         int64_t l, limit, last_digit_limit;
1158         int base, digit, sign;
1159
1160         base = 16;
1161         limit = INT64_MAX / base;
1162         last_digit_limit = INT64_MAX % base;
1163
1164         if (**p == '-') {
1165                 sign = -1;
1166                 ++(*p);
1167         } else
1168                 sign = 1;
1169
1170         l = 0;
1171         if (**p >= '0' && **p <= '9')
1172                 digit = **p - '0';
1173         else if (**p >= 'a' && **p <= 'f')
1174                 digit = **p - 'a' + 10;
1175         else if (**p >= 'A' && **p <= 'F')
1176                 digit = **p - 'A' + 10;
1177         else
1178                 digit = -1;
1179         while (digit >= 0 && digit < base) {
1180                 if (l > limit || (l == limit && digit > last_digit_limit)) {
1181                         l = UINT64_MAX; /* Truncate on overflow. */
1182                         break;
1183                 }
1184                 l = (l * base) + digit;
1185                 if (**p >= '0' && **p <= '9')
1186                         digit = **p - '0';
1187                 else if (**p >= 'a' && **p <= 'f')
1188                         digit = **p - 'a' + 10;
1189                 else if (**p >= 'A' && **p <= 'F')
1190                         digit = **p - 'A' + 10;
1191                 else
1192                         digit = -1;
1193         }
1194         return (sign < 0) ? -l : l;
1195 }
1196
1197 static int64_t
1198 mtree_atol(char **p)
1199 {
1200         if (**p != '0')
1201                 return mtree_atol10(p);
1202         if ((*p)[1] == 'x' || (*p)[1] == 'X') {
1203                 *p += 2;
1204                 return mtree_atol16(p);
1205         }
1206         return mtree_atol8(p);
1207 }
1208
1209 /*
1210  * Returns length of line (including trailing newline)
1211  * or negative on error.  'start' argument is updated to
1212  * point to first character of line.
1213  */
1214 static ssize_t
1215 readline(struct archive_read *a, struct mtree *mtree, char **start, ssize_t limit)
1216 {
1217         ssize_t bytes_read;
1218         ssize_t total_size = 0;
1219         const void *t;
1220         const char *s;
1221         void *p;
1222         char *u;
1223
1224         /* Accumulate line in a line buffer. */
1225         for (;;) {
1226                 /* Read some more. */
1227                 t = __archive_read_ahead(a, 1, &bytes_read);
1228                 if (t == NULL)
1229                         return (0);
1230                 if (bytes_read < 0)
1231                         return (ARCHIVE_FATAL);
1232                 s = t;  /* Start of line? */
1233                 p = memchr(t, '\n', bytes_read);
1234                 /* If we found '\n', trim the read. */
1235                 if (p != NULL) {
1236                         bytes_read = 1 + ((const char *)p) - s;
1237                 }
1238                 if (total_size + bytes_read + 1 > limit) {
1239                         archive_set_error(&a->archive,
1240                             ARCHIVE_ERRNO_FILE_FORMAT,
1241                             "Line too long");
1242                         return (ARCHIVE_FATAL);
1243                 }
1244                 if (archive_string_ensure(&mtree->line,
1245                         total_size + bytes_read + 1) == NULL) {
1246                         archive_set_error(&a->archive, ENOMEM,
1247                             "Can't allocate working buffer");
1248                         return (ARCHIVE_FATAL);
1249                 }
1250                 memcpy(mtree->line.s + total_size, t, bytes_read);
1251                 __archive_read_consume(a, bytes_read);
1252                 total_size += bytes_read;
1253                 /* Null terminate. */
1254                 mtree->line.s[total_size] = '\0';
1255                 /* If we found an unescaped '\n', clean up and return. */
1256                 if (p == NULL)
1257                         continue;
1258                 for (u = mtree->line.s; *u; ++u) {
1259                         if (u[0] == '\n') {
1260                                 *start = mtree->line.s;
1261                                 return total_size;
1262                         }
1263                         if (u[0] == '#') {
1264                                 if (p == NULL)
1265                                         break;
1266                                 *start = mtree->line.s;
1267                                 return total_size;
1268                         }
1269                         if (u[0] != '\\')
1270                                 continue;
1271                         if (u[1] == '\\') {
1272                                 ++u;
1273                                 continue;
1274                         }
1275                         if (u[1] == '\n') {
1276                                 memmove(u, u + 1,
1277                                     total_size - (u - mtree->line.s) + 1);
1278                                 --total_size;
1279                                 continue;    
1280                         }
1281                 }
1282         }
1283 }