]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libarchive/archive_read_support_format_iso9660.c
Strip ";1" and trailing "." from ISO9660 entries.
[FreeBSD/FreeBSD.git] / lib / libarchive / archive_read_support_format_iso9660.c
1 /*-
2  * Copyright (c) 2003-2007 Tim Kientzle
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "archive_platform.h"
27 __FBSDID("$FreeBSD$");
28
29 #ifdef HAVE_ERRNO_H
30 #include <errno.h>
31 #endif
32 /* #include <stdint.h> */ /* See archive_platform.h */
33 #include <stdio.h>
34 #ifdef HAVE_STDLIB_H
35 #include <stdlib.h>
36 #endif
37 #ifdef HAVE_STRING_H
38 #include <string.h>
39 #endif
40 #include <time.h>
41
42 #include "archive.h"
43 #include "archive_entry.h"
44 #include "archive_private.h"
45 #include "archive_read_private.h"
46 #include "archive_string.h"
47
48 /*
49  * An overview of ISO 9660 format:
50  *
51  * Each disk is laid out as follows:
52  *   * 32k reserved for private use
53  *   * Volume descriptor table.  Each volume descriptor
54  *     is 2k and specifies basic format information.
55  *     The "Primary Volume Descriptor" (PVD) is defined by the
56  *     standard and should always be present; other volume
57  *     descriptors include various vendor-specific extensions.
58  *   * Files and directories.  Each file/dir is specified by
59  *     an "extent" (starting sector and length in bytes).
60  *     Dirs are just files with directory records packed one
61  *     after another.  The PVD contains a single dir entry
62  *     specifying the location of the root directory.  Everything
63  *     else follows from there.
64  *
65  * This module works by first reading the volume descriptors, then
66  * building a list of directory entries, sorted by starting
67  * sector.  At each step, I look for the earliest dir entry that
68  * hasn't yet been read, seek forward to that location and read
69  * that entry.  If it's a dir, I slurp in the new dir entries and
70  * add them to the heap; if it's a regular file, I return the
71  * corresponding archive_entry and wait for the client to request
72  * the file body.  This strategy allows us to read most compliant
73  * CDs with a single pass through the data, as required by libarchive.
74  */
75
76 /* Structure of on-disk primary volume descriptor. */
77 #define PVD_type_offset 0
78 #define PVD_type_size 1
79 #define PVD_id_offset (PVD_type_offset + PVD_type_size)
80 #define PVD_id_size 5
81 #define PVD_version_offset (PVD_id_offset + PVD_id_size)
82 #define PVD_version_size 1
83 #define PVD_reserved1_offset (PVD_version_offset + PVD_version_size)
84 #define PVD_reserved1_size 1
85 #define PVD_system_id_offset (PVD_reserved1_offset + PVD_reserved1_size)
86 #define PVD_system_id_size 32
87 #define PVD_volume_id_offset (PVD_system_id_offset + PVD_system_id_size)
88 #define PVD_volume_id_size 32
89 #define PVD_reserved2_offset (PVD_volume_id_offset + PVD_volume_id_size)
90 #define PVD_reserved2_size 8
91 #define PVD_volume_space_size_offset (PVD_reserved2_offset + PVD_reserved2_size)
92 #define PVD_volume_space_size_size 8
93 #define PVD_reserved3_offset (PVD_volume_space_size_offset + PVD_volume_space_size_size)
94 #define PVD_reserved3_size 32
95 #define PVD_volume_set_size_offset (PVD_reserved3_offset + PVD_reserved3_size)
96 #define PVD_volume_set_size_size 4
97 #define PVD_volume_sequence_number_offset (PVD_volume_set_size_offset + PVD_volume_set_size_size)
98 #define PVD_volume_sequence_number_size 4
99 #define PVD_logical_block_size_offset (PVD_volume_sequence_number_offset + PVD_volume_sequence_number_size)
100 #define PVD_logical_block_size_size 4
101 #define PVD_path_table_size_offset (PVD_logical_block_size_offset + PVD_logical_block_size_size)
102 #define PVD_path_table_size_size 8
103 #define PVD_type_1_path_table_offset (PVD_path_table_size_offset + PVD_path_table_size_size)
104 #define PVD_type_1_path_table_size 4
105 #define PVD_opt_type_1_path_table_offset (PVD_type_1_path_table_offset + PVD_type_1_path_table_size)
106 #define PVD_opt_type_1_path_table_size 4
107 #define PVD_type_m_path_table_offset (PVD_opt_type_1_path_table_offset + PVD_opt_type_1_path_table_size)
108 #define PVD_type_m_path_table_size 4
109 #define PVD_opt_type_m_path_table_offset (PVD_type_m_path_table_offset + PVD_type_m_path_table_size)
110 #define PVD_opt_type_m_path_table_size 4
111 #define PVD_root_directory_record_offset (PVD_opt_type_m_path_table_offset + PVD_opt_type_m_path_table_size)
112 #define PVD_root_directory_record_size 34
113 #define PVD_volume_set_id_offset (PVD_root_directory_record_offset + PVD_root_directory_record_size)
114 #define PVD_volume_set_id_size 128
115 #define PVD_publisher_id_offset (PVD_volume_set_id_offset + PVD_volume_set_id_size)
116 #define PVD_publisher_id_size 128
117 #define PVD_preparer_id_offset (PVD_publisher_id_offset + PVD_publisher_id_size)
118 #define PVD_preparer_id_size 128
119 #define PVD_application_id_offset (PVD_preparer_id_offset + PVD_preparer_id_size)
120 #define PVD_application_id_size 128
121 #define PVD_copyright_file_id_offset (PVD_application_id_offset + PVD_application_id_size)
122 #define PVD_copyright_file_id_size 37
123 #define PVD_abstract_file_id_offset (PVD_copyright_file_id_offset + PVD_copyright_file_id_size)
124 #define PVD_abstract_file_id_size 37
125 #define PVD_bibliographic_file_id_offset (PVD_abstract_file_id_offset + PVD_abstract_file_id_size)
126 #define PVD_bibliographic_file_id_size 37
127 #define PVD_creation_date_offset (PVD_bibliographic_file_id_offset + PVD_bibliographic_file_id_size)
128 #define PVD_creation_date_size 17
129 #define PVD_modification_date_offset (PVD_creation_date_offset + PVD_creation_date_size)
130 #define PVD_modification_date_size 17
131 #define PVD_expiration_date_offset (PVD_modification_date_offset + PVD_modification_date_size)
132 #define PVD_expiration_date_size 17
133 #define PVD_effective_date_offset (PVD_expiration_date_offset + PVD_expiration_date_size)
134 #define PVD_effective_date_size 17
135 #define PVD_file_structure_version_offset (PVD_effective_date_offset + PVD_effective_date_size)
136 #define PVD_file_structure_version_size 1
137 #define PVD_reserved4_offset (PVD_file_structure_version_offset + PVD_file_structure_version_size)
138 #define PVD_reserved4_size 1
139 #define PVD_application_data_offset (PVD_reserved4_offset + PVD_reserved4_size)
140 #define PVD_application_data_size 512
141 #define PVD_reserved5_offset (PVD_application_data_offset + PVD_application_data_size)
142 #define PVD_reserved5_size (2048 - PVD_reserved5_offset)
143
144 /* TODO: It would make future maintenance easier to just hardcode the
145  * above values.  In particular, ECMA119 states the offsets as part of
146  * the standard.  That would eliminate the need for the following check.*/
147 #if PVD_reserved5_offset != 1395
148 #error PVD offset and size definitions are wrong.
149 #endif
150
151 /* Structure of an on-disk directory record. */
152 /* Note:  ISO9660 stores each multi-byte integer twice, once in
153  * each byte order.  The sizes here are the size of just one
154  * of the two integers.  (This is why the offset of a field isn't
155  * the same as the offset+size of the previous field.) */
156 #define DR_length_offset 0
157 #define DR_length_size 1
158 #define DR_ext_attr_length_offset 1
159 #define DR_ext_attr_length_size 1
160 #define DR_extent_offset 2
161 #define DR_extent_size 4
162 #define DR_size_offset 10
163 #define DR_size_size 4
164 #define DR_date_offset 18
165 #define DR_date_size 7
166 #define DR_flags_offset 25
167 #define DR_flags_size 1
168 #define DR_file_unit_size_offset 26
169 #define DR_file_unit_size_size 1
170 #define DR_interleave_offset 27
171 #define DR_interleave_size 1
172 #define DR_volume_sequence_number_offset 28
173 #define DR_volume_sequence_number_size 2
174 #define DR_name_len_offset 32
175 #define DR_name_len_size 1
176 #define DR_name_offset 33
177
178 /*
179  * Our private data.
180  */
181
182 /* In-memory storage for a directory record. */
183 struct file_info {
184         struct file_info        *parent;
185         int              refcount;
186         uint64_t         offset;  /* Offset on disk. */
187         uint64_t         size;  /* File size in bytes. */
188         uint64_t         ce_offset; /* Offset of CE */
189         uint64_t         ce_size; /* Size of CE */
190         time_t           birthtime; /* File created time. */
191         time_t           mtime; /* File last modified time. */
192         time_t           atime; /* File last accessed time. */
193         time_t           ctime; /* File attribute change time. */
194         uint64_t         rdev; /* Device number */
195         mode_t           mode;
196         uid_t            uid;
197         gid_t            gid;
198         ino_t            inode;
199         int              nlinks;
200         struct archive_string name; /* Pathname */
201         char             name_continues; /* Non-zero if name continues */
202         struct archive_string symlink;
203         char             symlink_continues; /* Non-zero if link continues */
204 };
205
206
207 struct iso9660 {
208         int     magic;
209 #define ISO9660_MAGIC   0x96609660
210         struct archive_string pathname;
211         char    seenRockridge; /* Set true if RR extensions are used. */
212         unsigned char   suspOffset;
213
214         uint64_t        previous_offset;
215         uint64_t        previous_size;
216         struct archive_string previous_pathname;
217
218         /* TODO: Make this a heap for fast inserts and deletions. */
219         struct file_info **pending_files;
220         int     pending_files_allocated;
221         int     pending_files_used;
222
223         uint64_t current_position;
224         ssize_t logical_block_size;
225         uint64_t volume_size; /* Total size of volume in bytes. */
226
227         off_t   entry_sparse_offset;
228         int64_t entry_bytes_remaining;
229 };
230
231 static void     add_entry(struct iso9660 *iso9660, struct file_info *file);
232 static int      archive_read_format_iso9660_bid(struct archive_read *);
233 static int      archive_read_format_iso9660_cleanup(struct archive_read *);
234 static int      archive_read_format_iso9660_read_data(struct archive_read *,
235                     const void **, size_t *, off_t *);
236 static int      archive_read_format_iso9660_read_data_skip(struct archive_read *);
237 static int      archive_read_format_iso9660_read_header(struct archive_read *,
238                     struct archive_entry *);
239 static const char *build_pathname(struct archive_string *, struct file_info *);
240 #if DEBUG
241 static void     dump_isodirrec(FILE *, const unsigned char *isodirrec);
242 #endif
243 static time_t   time_from_tm(struct tm *);
244 static time_t   isodate17(const unsigned char *);
245 static time_t   isodate7(const unsigned char *);
246 static int      isPVD(struct iso9660 *, const unsigned char *);
247 static struct file_info *next_entry(struct iso9660 *);
248 static int      next_entry_seek(struct archive_read *a, struct iso9660 *iso9660,
249                     struct file_info **pfile);
250 static struct file_info *
251                 parse_file_info(struct iso9660 *iso9660,
252                     struct file_info *parent, const unsigned char *isodirrec);
253 static void     parse_rockridge(struct iso9660 *iso9660,
254                     struct file_info *file, const unsigned char *start,
255                     const unsigned char *end);
256 static void     parse_rockridge_NM1(struct file_info *,
257                     const unsigned char *, int);
258 static void     parse_rockridge_SL1(struct file_info *,
259                     const unsigned char *, int);
260 static void     parse_rockridge_TF1(struct file_info *,
261                     const unsigned char *, int);
262 static void     release_file(struct iso9660 *, struct file_info *);
263 static unsigned toi(const void *p, int n);
264
265 int
266 archive_read_support_format_iso9660(struct archive *_a)
267 {
268         struct archive_read *a = (struct archive_read *)_a;
269         struct iso9660 *iso9660;
270         int r;
271
272         iso9660 = (struct iso9660 *)malloc(sizeof(*iso9660));
273         if (iso9660 == NULL) {
274                 archive_set_error(&a->archive, ENOMEM, "Can't allocate iso9660 data");
275                 return (ARCHIVE_FATAL);
276         }
277         memset(iso9660, 0, sizeof(*iso9660));
278         iso9660->magic = ISO9660_MAGIC;
279
280         r = __archive_read_register_format(a,
281             iso9660,
282             archive_read_format_iso9660_bid,
283             archive_read_format_iso9660_read_header,
284             archive_read_format_iso9660_read_data,
285             archive_read_format_iso9660_read_data_skip,
286             archive_read_format_iso9660_cleanup);
287
288         if (r != ARCHIVE_OK) {
289                 free(iso9660);
290                 return (r);
291         }
292         return (ARCHIVE_OK);
293 }
294
295
296 static int
297 archive_read_format_iso9660_bid(struct archive_read *a)
298 {
299         struct iso9660 *iso9660;
300         ssize_t bytes_read;
301         const void *h;
302         const unsigned char *p;
303         int bid;
304
305         iso9660 = (struct iso9660 *)(a->format->data);
306
307         /*
308          * Skip the first 32k (reserved area) and get the first
309          * 8 sectors of the volume descriptor table.  Of course,
310          * if the I/O layer gives us more, we'll take it.
311          */
312         h = __archive_read_ahead(a, 32768 + 8*2048, &bytes_read);
313         if (h == NULL)
314             return (-1);
315         p = (const unsigned char *)h;
316
317         /* Skip the reserved area. */
318         bytes_read -= 32768;
319         p += 32768;
320
321         /* Check each volume descriptor to locate the PVD. */
322         for (; bytes_read > 2048; bytes_read -= 2048, p += 2048) {
323                 bid = isPVD(iso9660, p);
324                 if (bid > 0)
325                         return (bid);
326                 if (*p == '\177') /* End-of-volume-descriptor marker. */
327                         break;
328         }
329
330         /* We didn't find a valid PVD; return a bid of zero. */
331         return (0);
332 }
333
334 static int
335 isPVD(struct iso9660 *iso9660, const unsigned char *h)
336 {
337         struct file_info *file;
338         int i;
339
340         /* Type of the Primary Volume Descriptor must be 1. */
341         if (h[PVD_type_offset] != 1)
342                 return (0);
343
344         /* ID must be "CD001" */
345         if (memcmp(h + PVD_id_offset, "CD001", 5) != 0)
346                 return (0);
347
348         /* PVD version must be 1. */
349         if (h[PVD_version_offset] != 1)
350                 return (0);
351
352         /* Reserved field must be 0. */
353         if (h[PVD_reserved1_offset] != 0)
354                 return (0);
355
356         /* Reserved field must be 0. */
357         for (i = 0; i < PVD_reserved2_size; ++i)
358                 if (h[PVD_reserved2_offset + i] != 0)
359                         return (0);
360
361         /* Reserved field must be 0. */
362         for (i = 0; i < PVD_reserved3_size; ++i)
363                 if (h[PVD_reserved3_offset + i] != 0)
364                         return (0);
365
366         /* Logical block size must be > 0. */
367         /* I've looked at Ecma 119 and can't find any stronger
368          * restriction on this field. */
369         iso9660->logical_block_size = toi(h + PVD_logical_block_size_offset, 2);
370         if (iso9660->logical_block_size <= 0)
371                 return (0);
372
373         iso9660->volume_size = iso9660->logical_block_size
374             * (uint64_t)toi(h + PVD_volume_space_size_offset, 4);
375
376         /* File structure version must be 1 for ISO9660/ECMA119. */
377         if (h[PVD_file_structure_version_offset] != 1)
378                 return (0);
379
380
381         /* Reserved field must be 0. */
382         for (i = 0; i < PVD_reserved4_size; ++i)
383                 if (h[PVD_reserved4_offset + i] != 0)
384                         return (0);
385
386         /* Reserved field must be 0. */
387         for (i = 0; i < PVD_reserved5_size; ++i)
388                 if (h[PVD_reserved5_offset + i] != 0)
389                         return (0);
390
391         /* XXX TODO: Check other values for sanity; reject more
392          * malformed PVDs. XXX */
393
394         /* Store the root directory in the pending list. */
395         file = parse_file_info(iso9660, NULL, h + PVD_root_directory_record_offset);
396         add_entry(iso9660, file);
397         return (48);
398 }
399
400 static int
401 archive_read_format_iso9660_read_header(struct archive_read *a,
402     struct archive_entry *entry)
403 {
404         struct iso9660 *iso9660;
405         struct file_info *file;
406         int r;
407
408         iso9660 = (struct iso9660 *)(a->format->data);
409
410         if (!a->archive.archive_format) {
411                 a->archive.archive_format = ARCHIVE_FORMAT_ISO9660;
412                 a->archive.archive_format_name = "ISO9660";
413         }
414
415         /* Get the next entry that appears after the current offset. */
416         r = next_entry_seek(a, iso9660, &file);
417         if (r != ARCHIVE_OK)
418                 return (r);
419
420         iso9660->entry_bytes_remaining = file->size;
421         iso9660->entry_sparse_offset = 0; /* Offset for sparse-file-aware clients. */
422
423         if (file->offset + file->size > iso9660->volume_size) {
424                 archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
425                     "File is beyond end-of-media: %s", file->name);
426                 iso9660->entry_bytes_remaining = 0;
427                 iso9660->entry_sparse_offset = 0;
428                 release_file(iso9660, file);
429                 return (ARCHIVE_WARN);
430         }
431
432         /* Set up the entry structure with information about this entry. */
433         archive_entry_set_mode(entry, file->mode);
434         archive_entry_set_uid(entry, file->uid);
435         archive_entry_set_gid(entry, file->gid);
436         archive_entry_set_nlink(entry, file->nlinks);
437         archive_entry_set_ino(entry, file->inode);
438         archive_entry_set_birthtime(entry, file->birthtime, 0);
439         archive_entry_set_mtime(entry, file->mtime, 0);
440         archive_entry_set_ctime(entry, file->ctime, 0);
441         archive_entry_set_atime(entry, file->atime, 0);
442         /* N.B.: Rock Ridge supports 64-bit device numbers. */
443         archive_entry_set_rdev(entry, (dev_t)file->rdev);
444         archive_entry_set_size(entry, iso9660->entry_bytes_remaining);
445         archive_string_empty(&iso9660->pathname);
446         archive_entry_set_pathname(entry,
447             build_pathname(&iso9660->pathname, file));
448         if (file->symlink.s != NULL)
449                 archive_entry_copy_symlink(entry, file->symlink.s);
450
451         /* If this entry points to the same data as the previous
452          * entry, convert this into a hardlink to that entry.
453          * But don't bother for zero-length files. */
454         if (file->offset == iso9660->previous_offset
455             && file->size == iso9660->previous_size
456             && file->size > 0) {
457                 archive_entry_set_hardlink(entry,
458                     iso9660->previous_pathname.s);
459                 iso9660->entry_bytes_remaining = 0;
460                 iso9660->entry_sparse_offset = 0;
461                 release_file(iso9660, file);
462                 return (ARCHIVE_OK);
463         }
464
465         /* If the offset is before our current position, we can't
466          * seek backwards to extract it, so issue a warning. */
467         if (file->offset < iso9660->current_position) {
468                 archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
469                     "Ignoring out-of-order file");
470                 iso9660->entry_bytes_remaining = 0;
471                 iso9660->entry_sparse_offset = 0;
472                 release_file(iso9660, file);
473                 return (ARCHIVE_WARN);
474         }
475
476         iso9660->previous_size = file->size;
477         iso9660->previous_offset = file->offset;
478         archive_strcpy(&iso9660->previous_pathname, iso9660->pathname.s);
479
480         /* If this is a directory, read in all of the entries right now. */
481         if (archive_entry_filetype(entry) == AE_IFDIR) {
482                 while (iso9660->entry_bytes_remaining > 0) {
483                         const void *block;
484                         const unsigned char *p;
485                         ssize_t step = iso9660->logical_block_size;
486                         if (step > iso9660->entry_bytes_remaining)
487                                 step = iso9660->entry_bytes_remaining;
488                         block = __archive_read_ahead(a, step, NULL);
489                         if (block == NULL) {
490                                 archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
491             "Failed to read full block when scanning ISO9660 directory list");
492                                 release_file(iso9660, file);
493                                 return (ARCHIVE_FATAL);
494                         }
495                         __archive_read_consume(a, step);
496                         iso9660->current_position += step;
497                         iso9660->entry_bytes_remaining -= step;
498                         for (p = (const unsigned char *)block;
499                              *p != 0 && p < (const unsigned char *)block + step;
500                              p += *p) {
501                                 struct file_info *child;
502
503                                 /* Skip '.' entry. */
504                                 if (*(p + DR_name_len_offset) == 1
505                                     && *(p + DR_name_offset) == '\0')
506                                         continue;
507                                 /* Skip '..' entry. */
508                                 if (*(p + DR_name_len_offset) == 1
509                                     && *(p + DR_name_offset) == '\001')
510                                         continue;
511                                 child = parse_file_info(iso9660, file, p);
512                                 add_entry(iso9660, child);
513                                 if (iso9660->seenRockridge) {
514                                         a->archive.archive_format =
515                                             ARCHIVE_FORMAT_ISO9660_ROCKRIDGE;
516                                         a->archive.archive_format_name =
517                                             "ISO9660 with Rockridge extensions";
518                                 }
519                         }
520                 }
521         }
522
523         release_file(iso9660, file);
524         return (ARCHIVE_OK);
525 }
526
527 static int
528 archive_read_format_iso9660_read_data_skip(struct archive_read *a)
529 {
530         /* Because read_next_header always does an explicit skip
531          * to the next entry, we don't need to do anything here. */
532         (void)a; /* UNUSED */
533         return (ARCHIVE_OK);
534 }
535
536 static int
537 archive_read_format_iso9660_read_data(struct archive_read *a,
538     const void **buff, size_t *size, off_t *offset)
539 {
540         ssize_t bytes_read;
541         struct iso9660 *iso9660;
542
543         iso9660 = (struct iso9660 *)(a->format->data);
544         if (iso9660->entry_bytes_remaining <= 0) {
545                 *buff = NULL;
546                 *size = 0;
547                 *offset = iso9660->entry_sparse_offset;
548                 return (ARCHIVE_EOF);
549         }
550
551         *buff = __archive_read_ahead(a, 1, &bytes_read);
552         if (bytes_read == 0)
553                 archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
554                     "Truncated input file");
555         if (buff == NULL)
556                 return (ARCHIVE_FATAL);
557         if (bytes_read > iso9660->entry_bytes_remaining)
558                 bytes_read = iso9660->entry_bytes_remaining;
559         *size = bytes_read;
560         *offset = iso9660->entry_sparse_offset;
561         iso9660->entry_sparse_offset += bytes_read;
562         iso9660->entry_bytes_remaining -= bytes_read;
563         iso9660->current_position += bytes_read;
564         __archive_read_consume(a, bytes_read);
565         return (ARCHIVE_OK);
566 }
567
568 static int
569 archive_read_format_iso9660_cleanup(struct archive_read *a)
570 {
571         struct iso9660 *iso9660;
572         struct file_info *file;
573
574         iso9660 = (struct iso9660 *)(a->format->data);
575         while ((file = next_entry(iso9660)) != NULL)
576                 release_file(iso9660, file);
577         archive_string_free(&iso9660->pathname);
578         archive_string_free(&iso9660->previous_pathname);
579         if (iso9660->pending_files)
580                 free(iso9660->pending_files);
581         free(iso9660);
582         (a->format->data) = NULL;
583         return (ARCHIVE_OK);
584 }
585
586 /*
587  * This routine parses a single ISO directory record, makes sense
588  * of any extensions, and stores the result in memory.
589  */
590 static struct file_info *
591 parse_file_info(struct iso9660 *iso9660, struct file_info *parent,
592     const unsigned char *isodirrec)
593 {
594         struct file_info *file;
595         size_t name_len;
596         const unsigned char *rr_start, *rr_end;
597         const char *p;
598         int flags;
599
600         /* TODO: Sanity check that name_len doesn't exceed length, etc. */
601
602         /* Create a new file entry and copy data from the ISO dir record. */
603         file = (struct file_info *)malloc(sizeof(*file));
604         if (file == NULL)
605                 return (NULL);
606         memset(file, 0, sizeof(*file));
607         file->parent = parent;
608         if (parent != NULL)
609                 parent->refcount++;
610         file->offset = toi(isodirrec + DR_extent_offset, DR_extent_size)
611             * iso9660->logical_block_size;
612         file->size = toi(isodirrec + DR_size_offset, DR_size_size);
613         file->mtime = isodate7(isodirrec + DR_date_offset);
614         file->ctime = file->atime = file->mtime;
615
616         name_len = (size_t)*(const unsigned char *)(isodirrec + DR_name_len_offset);
617         p = isodirrec + DR_name_offset;
618         /* Rockridge extensions (if any) follow name.  Compute this
619          * before fidgeting the name_len below. */
620         rr_start = p + name_len + (name_len & 1 ? 0 : 1) + iso9660->suspOffset;
621         rr_end = (const unsigned char *)isodirrec
622             + *(isodirrec + DR_length_offset);
623
624         /* Chop off trailing ';1' from files. */
625         if (name_len > 2 && p[name_len - 1] == '1' && p[name_len - 2] == ';')
626                 name_len -= 2;
627         /* Chop off trailing '.' from filenames. */
628         if (name_len > 1 && p[name_len - 1] == '.')
629                 --name_len;
630         archive_strncpy(&file->name, p, name_len);
631
632         flags = *(isodirrec + DR_flags_offset);
633         if (flags & 0x02)
634                 file->mode = AE_IFDIR | 0700;
635         else
636                 file->mode = AE_IFREG | 0400;
637
638         /* Rockridge extensions overwrite information from above. */
639         parse_rockridge(iso9660, file, rr_start, rr_end);
640
641 #if DEBUG
642         /* DEBUGGING: Warn about attributes I don't yet fully support. */
643         if ((flags & ~0x02) != 0) {
644                 fprintf(stderr, "\n ** Unrecognized flag: ");
645                 dump_isodirrec(stderr, isodirrec);
646                 fprintf(stderr, "\n");
647         } else if (toi(isodirrec + DR_volume_sequence_number_offset, 2) != 1) {
648                 fprintf(stderr, "\n ** Unrecognized sequence number: ");
649                 dump_isodirrec(stderr, isodirrec);
650                 fprintf(stderr, "\n");
651         } else if (*(isodirrec + DR_file_unit_size_offset) != 0) {
652                 fprintf(stderr, "\n ** Unexpected file unit size: ");
653                 dump_isodirrec(stderr, isodirrec);
654                 fprintf(stderr, "\n");
655         } else if (*(isodirrec + DR_interleave_offset) != 0) {
656                 fprintf(stderr, "\n ** Unexpected interleave: ");
657                 dump_isodirrec(stderr, isodirrec);
658                 fprintf(stderr, "\n");
659         } else if (*(isodirrec + DR_ext_attr_length_offset) != 0) {
660                 fprintf(stderr, "\n ** Unexpected extended attribute length: ");
661                 dump_isodirrec(stderr, isodirrec);
662                 fprintf(stderr, "\n");
663         }
664 #endif
665         return (file);
666 }
667
668 static void
669 add_entry(struct iso9660 *iso9660, struct file_info *file)
670 {
671         /* Expand our pending files list as necessary. */
672         if (iso9660->pending_files_used >= iso9660->pending_files_allocated) {
673                 struct file_info **new_pending_files;
674                 int new_size = iso9660->pending_files_allocated * 2;
675
676                 if (iso9660->pending_files_allocated < 1024)
677                         new_size = 1024;
678                 /* Overflow might keep us from growing the list. */
679                 if (new_size <= iso9660->pending_files_allocated)
680                         __archive_errx(1, "Out of memory");
681                 new_pending_files = (struct file_info **)malloc(new_size * sizeof(new_pending_files[0]));
682                 if (new_pending_files == NULL)
683                         __archive_errx(1, "Out of memory");
684                 memcpy(new_pending_files, iso9660->pending_files,
685                     iso9660->pending_files_allocated * sizeof(new_pending_files[0]));
686                 if (iso9660->pending_files != NULL)
687                         free(iso9660->pending_files);
688                 iso9660->pending_files = new_pending_files;
689                 iso9660->pending_files_allocated = new_size;
690         }
691
692         iso9660->pending_files[iso9660->pending_files_used++] = file;
693 }
694
695 static void
696 parse_rockridge(struct iso9660 *iso9660, struct file_info *file,
697     const unsigned char *p, const unsigned char *end)
698 {
699         (void)iso9660; /* UNUSED */
700         file->name_continues = 0;
701         file->symlink_continues = 0;
702
703         while (p + 4 < end  /* Enough space for another entry. */
704             && p[0] >= 'A' && p[0] <= 'Z' /* Sanity-check 1st char of name. */
705             && p[1] >= 'A' && p[1] <= 'Z' /* Sanity-check 2nd char of name. */
706             && p[2] >= 4 /* Sanity-check length. */
707             && p + p[2] <= end) { /* Sanity-check length. */
708                 const unsigned char *data = p + 4;
709                 int data_length = p[2] - 4;
710                 int version = p[3];
711
712                 /*
713                  * Yes, each 'if' here does test p[0] again.
714                  * Otherwise, the fall-through handling to catch
715                  * unsupported extensions doesn't work.
716                  */
717                 switch(p[0]) {
718                 case 'C':
719                         if (p[0] == 'C' && p[1] == 'E') {
720                                 if (version == 1 && data_length == 24) {
721                                         /*
722                                          * CE extension comprises:
723                                          *   8 byte sector containing extension
724                                          *   8 byte offset w/in above sector
725                                          *   8 byte length of continuation
726                                          */
727                                         file->ce_offset = (uint64_t)toi(data, 4)
728                                             * iso9660->logical_block_size
729                                             + toi(data + 8, 4);
730                                         file->ce_size = toi(data + 16, 4);
731                                         /* If the result is rediculous,
732                                          * ignore it. */
733                                         if (file->ce_offset + file->ce_size
734                                             > iso9660->volume_size) {
735                                                 file->ce_offset = 0;
736                                                 file->ce_size = 0;
737                                         }
738                                 }
739                                 break;
740                         }
741                         /* FALLTHROUGH */
742                 case 'N':
743                         if (p[0] == 'N' && p[1] == 'M') {
744                                 if (version == 1)
745                                         parse_rockridge_NM1(file,
746                                             data, data_length);
747                                 break;
748                         }
749                         /* FALLTHROUGH */
750                 case 'P':
751                         if (p[0] == 'P' && p[1] == 'D') {
752                                 /*
753                                  * PD extension is padding;
754                                  * contents are always ignored.
755                                  */
756                                 break;
757                         }
758                         if (p[0] == 'P' && p[1] == 'N') {
759                                 if (version == 1 && data_length == 16) {
760                                         file->rdev = toi(data,4);
761                                         file->rdev <<= 32;
762                                         file->rdev |= toi(data + 8, 4);
763                                 }
764                                 break;
765                         }
766                         if (p[0] == 'P' && p[1] == 'X') {
767                                 /*
768                                  * PX extension comprises:
769                                  *   8 bytes for mode,
770                                  *   8 bytes for nlinks,
771                                  *   8 bytes for uid,
772                                  *   8 bytes for gid,
773                                  *   8 bytes for inode.
774                                  */
775                                 if (version == 1) {
776                                         if (data_length >= 8)
777                                                 file->mode
778                                                     = toi(data, 4);
779                                         if (data_length >= 16)
780                                                 file->nlinks
781                                                     = toi(data + 8, 4);
782                                         if (data_length >= 24)
783                                                 file->uid
784                                                     = toi(data + 16, 4);
785                                         if (data_length >= 32)
786                                                 file->gid
787                                                     = toi(data + 24, 4);
788                                         if (data_length >= 40)
789                                                 file->inode
790                                                     = toi(data + 32, 4);
791                                 }
792                                 break;
793                         }
794                         /* FALLTHROUGH */
795                 case 'R':
796                         if (p[0] == 'R' && p[1] == 'R' && version == 1) {
797                                 iso9660->seenRockridge = 1;
798                                 /*
799                                  * RR extension comprises:
800                                  *    one byte flag value
801                                  */
802                                 /* TODO: Handle RR extension. */
803                                 break;
804                         }
805                         /* FALLTHROUGH */
806                 case 'S':
807                         if (p[0] == 'S' && p[1] == 'L') {
808                                 if (version == 1)
809                                         parse_rockridge_SL1(file,
810                                             data, data_length);
811                                 break;
812                         }
813                         if (p[0] == 'S' && p[1] == 'P'
814                             && version == 1 && data_length == 3
815                             && data[0] == (unsigned char)'\xbe'
816                             && data[1] == (unsigned char)'\xef') {
817                                 /*
818                                  * SP extension stores the suspOffset
819                                  * (Number of bytes to skip between
820                                  * filename and SUSP records.)
821                                  * It is mandatory by the SUSP standard
822                                  * (IEEE 1281).
823                                  *
824                                  * It allows SUSP to coexist with
825                                  * non-SUSP uses of the System
826                                  * Use Area by placing non-SUSP data
827                                  * before SUSP data.
828                                  *
829                                  * TODO: Add a check for 'SP' in
830                                  * first directory entry, disable all SUSP
831                                  * processing if not found.
832                                  */
833                                 iso9660->suspOffset = data[2];
834                                 break;
835                         }
836                         if (p[0] == 'S' && p[1] == 'T'
837                             && data_length == 0 && version == 1) {
838                                 /*
839                                  * ST extension marks end of this
840                                  * block of SUSP entries.
841                                  *
842                                  * It allows SUSP to coexist with
843                                  * non-SUSP uses of the System
844                                  * Use Area by placing non-SUSP data
845                                  * after SUSP data.
846                                  */
847                                 return;
848                         }
849                 case 'T':
850                         if (p[0] == 'T' && p[1] == 'F') {
851                                 if (version == 1)
852                                         parse_rockridge_TF1(file,
853                                             data, data_length);
854                                 break;
855                         }
856                         /* FALLTHROUGH */
857                 default:
858                         /* The FALLTHROUGHs above leave us here for
859                          * any unsupported extension. */
860 #if DEBUG
861                         {
862                                 const unsigned char *t;
863                                 fprintf(stderr, "\nUnsupported RRIP extension for %s\n", file->name.s);
864                                 fprintf(stderr, " %c%c(%d):", p[0], p[1], data_length);
865                                 for (t = data; t < data + data_length && t < data + 16; t++)
866                                         fprintf(stderr, " %02x", *t);
867                                 fprintf(stderr, "\n");
868                         }
869 #endif
870                         break;
871                 }
872
873
874
875                 p += p[2];
876         }
877 }
878
879 static void
880 parse_rockridge_NM1(struct file_info *file, const unsigned char *data,
881     int data_length)
882 {
883         if (!file->name_continues)
884                 archive_string_empty(&file->name);
885         file->name_continues = 0;
886         if (data_length < 1)
887                 return;
888         /*
889          * NM version 1 extension comprises:
890          *   1 byte flag, value is one of:
891          *     = 0: remainder is name
892          *     = 1: remainder is name, next NM entry continues name
893          *     = 2: "."
894          *     = 4: ".."
895          *     = 32: Implementation specific
896          *     All other values are reserved.
897          */
898         switch(data[0]) {
899         case 0:
900                 if (data_length < 2)
901                         return;
902                 archive_strncat(&file->name, data + 1, data_length - 1);
903                 break;
904         case 1:
905                 if (data_length < 2)
906                         return;
907                 archive_strncat(&file->name, data + 1, data_length - 1);
908                 file->name_continues = 1;
909                 break;
910         case 2:
911                 archive_strcat(&file->name, ".");
912                 break;
913         case 4:
914                 archive_strcat(&file->name, "..");
915                 break;
916         default:
917                 return;
918         }
919
920 }
921
922 static void
923 parse_rockridge_TF1(struct file_info *file, const unsigned char *data,
924     int data_length)
925 {
926         char flag;
927         /*
928          * TF extension comprises:
929          *   one byte flag
930          *   create time (optional)
931          *   modify time (optional)
932          *   access time (optional)
933          *   attribute time (optional)
934          *  Time format and presence of fields
935          *  is controlled by flag bits.
936          */
937         if (data_length < 1)
938                 return;
939         flag = data[0];
940         ++data;
941         --data_length;
942         if (flag & 0x80) {
943                 /* Use 17-byte time format. */
944                 if ((flag & 1) && data_length >= 17) {
945                         /* Create time. */
946                         file->birthtime = isodate17(data);
947                         data += 17;
948                         data_length -= 17;
949                 }
950                 if ((flag & 2) && data_length >= 17) {
951                         /* Modify time. */
952                         file->mtime = isodate17(data);
953                         data += 17;
954                         data_length -= 17;
955                 }
956                 if ((flag & 4) && data_length >= 17) {
957                         /* Access time. */
958                         file->atime = isodate17(data);
959                         data += 17;
960                         data_length -= 17;
961                 }
962                 if ((flag & 8) && data_length >= 17) {
963                         /* Attribute change time. */
964                         file->ctime = isodate17(data);
965                         data += 17;
966                         data_length -= 17;
967                 }
968         } else {
969                 /* Use 7-byte time format. */
970                 if ((flag & 1) && data_length >= 7) {
971                         /* Create time. */
972                         file->birthtime = isodate17(data);
973                         data += 7;
974                         data_length -= 7;
975                 }
976                 if ((flag & 2) && data_length >= 7) {
977                         /* Modify time. */
978                         file->mtime = isodate7(data);
979                         data += 7;
980                         data_length -= 7;
981                 }
982                 if ((flag & 4) && data_length >= 7) {
983                         /* Access time. */
984                         file->atime = isodate7(data);
985                         data += 7;
986                         data_length -= 7;
987                 }
988                 if ((flag & 8) && data_length >= 7) {
989                         /* Attribute change time. */
990                         file->ctime = isodate7(data);
991                         data += 7;
992                         data_length -= 7;
993                 }
994         }
995 }
996
997 static void
998 parse_rockridge_SL1(struct file_info *file, const unsigned char *data,
999     int data_length)
1000 {
1001         int component_continues = 1;
1002
1003         if (!file->symlink_continues)
1004                 archive_string_empty(&file->symlink);
1005         else
1006                 archive_strcat(&file->symlink, "/");
1007         file->symlink_continues = 0;
1008
1009         /*
1010          * Defined flag values:
1011          *  0: This is the last SL record for this symbolic link
1012          *  1: this symbolic link field continues in next SL entry
1013          *  All other values are reserved.
1014          */
1015         if (data_length < 1)
1016                 return;
1017         switch(*data) {
1018         case 0:
1019                 break;
1020         case 1:
1021                 file->symlink_continues = 1;
1022                 break;
1023         default:
1024                 return;
1025         }
1026         ++data;  /* Skip flag byte. */
1027         --data_length;
1028
1029         /*
1030          * SL extension body stores "components".
1031          * Basically, this is a complicated way of storing
1032          * a POSIX path.  It also interferes with using
1033          * symlinks for storing non-path data. <sigh>
1034          *
1035          * Each component is 2 bytes (flag and length)
1036          * possibly followed by name data.
1037          */
1038         while (data_length >= 2) {
1039                 unsigned char flag = *data++;
1040                 unsigned char nlen = *data++;
1041                 data_length -= 2;
1042
1043                 if (!component_continues)
1044                         archive_strcat(&file->symlink, "/");
1045                 component_continues = 0;
1046
1047                 switch(flag) {
1048                 case 0: /* Usual case, this is text. */
1049                         if (data_length < nlen)
1050                                 return;
1051                         archive_strncat(&file->symlink,
1052                             (const char *)data, nlen);
1053                         break;
1054                 case 0x01: /* Text continues in next component. */
1055                         if (data_length < nlen)
1056                                 return;
1057                         archive_strncat(&file->symlink,
1058                             (const char *)data, nlen);
1059                         component_continues = 1;
1060                         break;
1061                 case 0x02: /* Current dir. */
1062                         archive_strcat(&file->symlink, ".");
1063                         break;
1064                 case 0x04: /* Parent dir. */
1065                         archive_strcat(&file->symlink, "..");
1066                         break;
1067                 case 0x08: /* Root of filesystem. */
1068                         archive_string_empty(&file->symlink);
1069                         archive_strcat(&file->symlink, "/");
1070                         break;
1071                 case 0x10: /* Undefined (historically "volume root" */
1072                         archive_string_empty(&file->symlink);
1073                         archive_strcat(&file->symlink, "ROOT");
1074                         break;
1075                 case 0x20: /* Undefined (historically "hostname") */
1076                         archive_strcat(&file->symlink, "hostname");
1077                         break;
1078                 default:
1079                         /* TODO: issue a warning ? */
1080                         return;
1081                 }
1082                 data += nlen;
1083                 data_length -= nlen;
1084         }
1085 }
1086
1087
1088 static void
1089 release_file(struct iso9660 *iso9660, struct file_info *file)
1090 {
1091         struct file_info *parent;
1092
1093         if (file->refcount == 0) {
1094                 parent = file->parent;
1095                 archive_string_free(&file->name);
1096                 archive_string_free(&file->symlink);
1097                 free(file);
1098                 if (parent != NULL) {
1099                         parent->refcount--;
1100                         release_file(iso9660, parent);
1101                 }
1102         }
1103 }
1104
1105 static int
1106 next_entry_seek(struct archive_read *a, struct iso9660 *iso9660,
1107     struct file_info **pfile)
1108 {
1109         struct file_info *file;
1110         uint64_t offset;
1111
1112         *pfile = NULL;
1113         for (;;) {
1114                 *pfile = file = next_entry(iso9660);
1115                 if (file == NULL)
1116                         return (ARCHIVE_EOF);
1117
1118                 /* CE area precedes actual file data? Ignore it. */
1119                 if (file->ce_offset > file->offset) {
1120                         /* fprintf(stderr, " *** Discarding CE data.\n"); */
1121                         file->ce_offset = 0;
1122                         file->ce_size = 0;
1123                 }
1124
1125                 /* Don't waste time seeking for zero-length bodies. */
1126                 if (file->size == 0) {
1127                         file->offset = iso9660->current_position;
1128                 }
1129
1130                 /* If CE exists, find and read it now. */
1131                 if (file->ce_offset > 0)
1132                         offset = file->ce_offset;
1133                 else
1134                         offset = file->offset;
1135
1136                 /* Seek forward to the start of the entry. */
1137                 if (iso9660->current_position < offset) {
1138                         off_t step = offset - iso9660->current_position;
1139                         off_t bytes_read;
1140                         bytes_read = __archive_read_skip(a, step);
1141                         if (bytes_read < 0)
1142                                 return (bytes_read);
1143                         iso9660->current_position = offset;
1144                 }
1145
1146                 /* We found body of file; handle it now. */
1147                 if (offset == file->offset)
1148                         return (ARCHIVE_OK);
1149
1150                 /* Found CE?  Process it and push the file back onto list. */
1151                 if (offset == file->ce_offset) {
1152                         const void *p;
1153                         ssize_t size = file->ce_size;
1154                         const unsigned char *rr_start;
1155
1156                         file->ce_offset = 0;
1157                         file->ce_size = 0;
1158                         p = __archive_read_ahead(a, size, NULL);
1159                         if (p == NULL)
1160                                 return (ARCHIVE_FATAL);
1161                         rr_start = (const unsigned char *)p;
1162                         parse_rockridge(iso9660, file, rr_start,
1163                             rr_start + size);
1164                         __archive_read_consume(a, size);
1165                         iso9660->current_position += size;
1166                         add_entry(iso9660, file);
1167                 }
1168         }
1169 }
1170
1171 static struct file_info *
1172 next_entry(struct iso9660 *iso9660)
1173 {
1174         int least_index;
1175         uint64_t least_end_offset;
1176         int i;
1177         struct file_info *r;
1178
1179         if (iso9660->pending_files_used < 1)
1180                 return (NULL);
1181
1182         /* Assume the first file in the list is the earliest on disk. */
1183         least_index = 0;
1184         least_end_offset = iso9660->pending_files[0]->offset
1185             + iso9660->pending_files[0]->size;
1186
1187         /* Now, try to find an earlier one. */
1188         for (i = 0; i < iso9660->pending_files_used; i++) {
1189                 /* Use the position of the file *end* as our comparison. */
1190                 uint64_t end_offset = iso9660->pending_files[i]->offset
1191                     + iso9660->pending_files[i]->size;
1192                 if (iso9660->pending_files[i]->ce_offset > 0
1193                     && iso9660->pending_files[i]->ce_offset < iso9660->pending_files[i]->offset)
1194                         end_offset = iso9660->pending_files[i]->ce_offset
1195                     + iso9660->pending_files[i]->ce_size;
1196                 if (least_end_offset > end_offset) {
1197                         least_index = i;
1198                         least_end_offset = end_offset;
1199                 }
1200         }
1201         r = iso9660->pending_files[least_index];
1202         iso9660->pending_files[least_index]
1203             = iso9660->pending_files[--iso9660->pending_files_used];
1204         return (r);
1205 }
1206
1207 static unsigned int
1208 toi(const void *p, int n)
1209 {
1210         const unsigned char *v = (const unsigned char *)p;
1211         if (n > 1)
1212                 return v[0] + 256 * toi(v + 1, n - 1);
1213         if (n == 1)
1214                 return v[0];
1215         return (0);
1216 }
1217
1218 static time_t
1219 isodate7(const unsigned char *v)
1220 {
1221         struct tm tm;
1222         int offset;
1223         memset(&tm, 0, sizeof(tm));
1224         tm.tm_year = v[0];
1225         tm.tm_mon = v[1] - 1;
1226         tm.tm_mday = v[2];
1227         tm.tm_hour = v[3];
1228         tm.tm_min = v[4];
1229         tm.tm_sec = v[5];
1230         /* v[6] is the signed timezone offset, in 1/4-hour increments. */
1231         offset = ((const signed char *)v)[6];
1232         if (offset > -48 && offset < 52) {
1233                 tm.tm_hour -= offset / 4;
1234                 tm.tm_min -= (offset % 4) * 15;
1235         }
1236         return (time_from_tm(&tm));
1237 }
1238
1239 static time_t
1240 isodate17(const unsigned char *v)
1241 {
1242         struct tm tm;
1243         int offset;
1244         memset(&tm, 0, sizeof(tm));
1245         tm.tm_year = (v[0] - '0') * 1000 + (v[1] - '0') * 100
1246             + (v[2] - '0') * 10 + (v[3] - '0')
1247             - 1900;
1248         tm.tm_mon = (v[4] - '0') * 10 + (v[5] - '0');
1249         tm.tm_mday = (v[6] - '0') * 10 + (v[7] - '0');
1250         tm.tm_hour = (v[8] - '0') * 10 + (v[9] - '0');
1251         tm.tm_min = (v[10] - '0') * 10 + (v[11] - '0');
1252         tm.tm_sec = (v[12] - '0') * 10 + (v[13] - '0');
1253         /* v[16] is the signed timezone offset, in 1/4-hour increments. */
1254         offset = ((const signed char *)v)[16];
1255         if (offset > -48 && offset < 52) {
1256                 tm.tm_hour -= offset / 4;
1257                 tm.tm_min -= (offset % 4) * 15;
1258         }
1259         return (time_from_tm(&tm));
1260 }
1261
1262 static time_t
1263 time_from_tm(struct tm *t)
1264 {
1265 #if HAVE_TIMEGM
1266         /* Use platform timegm() if available. */
1267         return (timegm(t));
1268 #else
1269         /* Else use direct calculation using POSIX assumptions. */
1270         /* First, fix up tm_yday based on the year/month/day. */
1271         mktime(t);
1272         /* Then we can compute timegm() from first principles. */
1273         return (t->tm_sec + t->tm_min * 60 + t->tm_hour * 3600
1274             + t->tm_yday * 86400 + (t->tm_year - 70) * 31536000
1275             + ((t->tm_year - 69) / 4) * 86400 -
1276             ((t->tm_year - 1) / 100) * 86400
1277             + ((t->tm_year + 299) / 400) * 86400);
1278 #endif
1279 }
1280
1281 static const char *
1282 build_pathname(struct archive_string *as, struct file_info *file)
1283 {
1284         if (file->parent != NULL && archive_strlen(&file->parent->name) > 0) {
1285                 build_pathname(as, file->parent);
1286                 archive_strcat(as, "/");
1287         }
1288         if (archive_strlen(&file->name) == 0)
1289                 archive_strcat(as, ".");
1290         else
1291                 archive_string_concat(as, &file->name);
1292         return (as->s);
1293 }
1294
1295 #if DEBUG
1296 static void
1297 dump_isodirrec(FILE *out, const unsigned char *isodirrec)
1298 {
1299         fprintf(out, " l %d,",
1300             toi(isodirrec + DR_length_offset, DR_length_size));
1301         fprintf(out, " a %d,",
1302             toi(isodirrec + DR_ext_attr_length_offset, DR_ext_attr_length_size));
1303         fprintf(out, " ext 0x%x,",
1304             toi(isodirrec + DR_extent_offset, DR_extent_size));
1305         fprintf(out, " s %d,",
1306             toi(isodirrec + DR_size_offset, DR_extent_size));
1307         fprintf(out, " f 0x%02x,",
1308             toi(isodirrec + DR_flags_offset, DR_flags_size));
1309         fprintf(out, " u %d,",
1310             toi(isodirrec + DR_file_unit_size_offset, DR_file_unit_size_size));
1311         fprintf(out, " ilv %d,",
1312             toi(isodirrec + DR_interleave_offset, DR_interleave_size));
1313         fprintf(out, " seq %d,",
1314             toi(isodirrec + DR_volume_sequence_number_offset, DR_volume_sequence_number_size));
1315         fprintf(out, " nl %d:",
1316             toi(isodirrec + DR_name_len_offset, DR_name_len_size));
1317         fprintf(out, " `%.*s'",
1318             toi(isodirrec + DR_name_len_offset, DR_name_len_size), isodirrec + DR_name_offset);
1319 }
1320 #endif