2005-01-02 05:21:15 +00:00
|
|
|
/*-
|
2007-01-09 08:05:56 +00:00
|
|
|
* Copyright (c) 2003-2007 Tim Kientzle
|
2005-01-02 05:21:15 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
2007-01-09 08:05:56 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2005-01-02 05:21:15 +00:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "archive_platform.h"
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2006-11-10 06:39:46 +00:00
|
|
|
#ifdef HAVE_ERRNO_H
|
2005-01-02 05:21:15 +00:00
|
|
|
#include <errno.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#endif
|
2005-01-02 05:21:15 +00:00
|
|
|
/* #include <stdint.h> */ /* See archive_platform.h */
|
|
|
|
#include <stdio.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#ifdef HAVE_STDLIB_H
|
2005-01-02 05:21:15 +00:00
|
|
|
#include <stdlib.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
2005-01-02 05:21:15 +00:00
|
|
|
#include <string.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#endif
|
2005-02-12 22:48:38 +00:00
|
|
|
#include <time.h>
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
#include "archive.h"
|
|
|
|
#include "archive_entry.h"
|
|
|
|
#include "archive_private.h"
|
2007-03-03 07:37:37 +00:00
|
|
|
#include "archive_read_private.h"
|
2005-01-02 05:21:15 +00:00
|
|
|
#include "archive_string.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An overview of ISO 9660 format:
|
|
|
|
*
|
|
|
|
* Each disk is laid out as follows:
|
|
|
|
* * 32k reserved for private use
|
|
|
|
* * Volume descriptor table. Each volume descriptor
|
|
|
|
* is 2k and specifies basic format information.
|
|
|
|
* The "Primary Volume Descriptor" (PVD) is defined by the
|
|
|
|
* standard and should always be present; other volume
|
|
|
|
* descriptors include various vendor-specific extensions.
|
|
|
|
* * Files and directories. Each file/dir is specified by
|
|
|
|
* an "extent" (starting sector and length in bytes).
|
|
|
|
* Dirs are just files with directory records packed one
|
|
|
|
* after another. The PVD contains a single dir entry
|
|
|
|
* specifying the location of the root directory. Everything
|
|
|
|
* else follows from there.
|
|
|
|
*
|
|
|
|
* This module works by first reading the volume descriptors, then
|
2005-01-20 04:16:55 +00:00
|
|
|
* building a list of directory entries, sorted by starting
|
2005-01-02 05:21:15 +00:00
|
|
|
* sector. At each step, I look for the earliest dir entry that
|
|
|
|
* hasn't yet been read, seek forward to that location and read
|
|
|
|
* that entry. If it's a dir, I slurp in the new dir entries and
|
|
|
|
* add them to the heap; if it's a regular file, I return the
|
|
|
|
* corresponding archive_entry and wait for the client to request
|
|
|
|
* the file body. This strategy allows us to read most compliant
|
|
|
|
* CDs with a single pass through the data, as required by libarchive.
|
|
|
|
*/
|
|
|
|
|
2006-11-26 05:39:28 +00:00
|
|
|
/* Structure of on-disk primary volume descriptor. */
|
|
|
|
#define PVD_type_offset 0
|
|
|
|
#define PVD_type_size 1
|
|
|
|
#define PVD_id_offset (PVD_type_offset + PVD_type_size)
|
|
|
|
#define PVD_id_size 5
|
|
|
|
#define PVD_version_offset (PVD_id_offset + PVD_id_size)
|
|
|
|
#define PVD_version_size 1
|
|
|
|
#define PVD_reserved1_offset (PVD_version_offset + PVD_version_size)
|
|
|
|
#define PVD_reserved1_size 1
|
|
|
|
#define PVD_system_id_offset (PVD_reserved1_offset + PVD_reserved1_size)
|
|
|
|
#define PVD_system_id_size 32
|
|
|
|
#define PVD_volume_id_offset (PVD_system_id_offset + PVD_system_id_size)
|
|
|
|
#define PVD_volume_id_size 32
|
|
|
|
#define PVD_reserved2_offset (PVD_volume_id_offset + PVD_volume_id_size)
|
|
|
|
#define PVD_reserved2_size 8
|
|
|
|
#define PVD_volume_space_size_offset (PVD_reserved2_offset + PVD_reserved2_size)
|
|
|
|
#define PVD_volume_space_size_size 8
|
|
|
|
#define PVD_reserved3_offset (PVD_volume_space_size_offset + PVD_volume_space_size_size)
|
|
|
|
#define PVD_reserved3_size 32
|
|
|
|
#define PVD_volume_set_size_offset (PVD_reserved3_offset + PVD_reserved3_size)
|
|
|
|
#define PVD_volume_set_size_size 4
|
|
|
|
#define PVD_volume_sequence_number_offset (PVD_volume_set_size_offset + PVD_volume_set_size_size)
|
|
|
|
#define PVD_volume_sequence_number_size 4
|
|
|
|
#define PVD_logical_block_size_offset (PVD_volume_sequence_number_offset + PVD_volume_sequence_number_size)
|
|
|
|
#define PVD_logical_block_size_size 4
|
|
|
|
#define PVD_path_table_size_offset (PVD_logical_block_size_offset + PVD_logical_block_size_size)
|
|
|
|
#define PVD_path_table_size_size 8
|
|
|
|
#define PVD_type_1_path_table_offset (PVD_path_table_size_offset + PVD_path_table_size_size)
|
|
|
|
#define PVD_type_1_path_table_size 4
|
|
|
|
#define PVD_opt_type_1_path_table_offset (PVD_type_1_path_table_offset + PVD_type_1_path_table_size)
|
|
|
|
#define PVD_opt_type_1_path_table_size 4
|
|
|
|
#define PVD_type_m_path_table_offset (PVD_opt_type_1_path_table_offset + PVD_opt_type_1_path_table_size)
|
|
|
|
#define PVD_type_m_path_table_size 4
|
|
|
|
#define PVD_opt_type_m_path_table_offset (PVD_type_m_path_table_offset + PVD_type_m_path_table_size)
|
|
|
|
#define PVD_opt_type_m_path_table_size 4
|
|
|
|
#define PVD_root_directory_record_offset (PVD_opt_type_m_path_table_offset + PVD_opt_type_m_path_table_size)
|
|
|
|
#define PVD_root_directory_record_size 34
|
|
|
|
#define PVD_volume_set_id_offset (PVD_root_directory_record_offset + PVD_root_directory_record_size)
|
|
|
|
#define PVD_volume_set_id_size 128
|
|
|
|
#define PVD_publisher_id_offset (PVD_volume_set_id_offset + PVD_volume_set_id_size)
|
|
|
|
#define PVD_publisher_id_size 128
|
|
|
|
#define PVD_preparer_id_offset (PVD_publisher_id_offset + PVD_publisher_id_size)
|
|
|
|
#define PVD_preparer_id_size 128
|
|
|
|
#define PVD_application_id_offset (PVD_preparer_id_offset + PVD_preparer_id_size)
|
|
|
|
#define PVD_application_id_size 128
|
|
|
|
#define PVD_copyright_file_id_offset (PVD_application_id_offset + PVD_application_id_size)
|
|
|
|
#define PVD_copyright_file_id_size 37
|
|
|
|
#define PVD_abstract_file_id_offset (PVD_copyright_file_id_offset + PVD_copyright_file_id_size)
|
|
|
|
#define PVD_abstract_file_id_size 37
|
|
|
|
#define PVD_bibliographic_file_id_offset (PVD_abstract_file_id_offset + PVD_abstract_file_id_size)
|
|
|
|
#define PVD_bibliographic_file_id_size 37
|
|
|
|
#define PVD_creation_date_offset (PVD_bibliographic_file_id_offset + PVD_bibliographic_file_id_size)
|
|
|
|
#define PVD_creation_date_size 17
|
|
|
|
#define PVD_modification_date_offset (PVD_creation_date_offset + PVD_creation_date_size)
|
|
|
|
#define PVD_modification_date_size 17
|
|
|
|
#define PVD_expiration_date_offset (PVD_modification_date_offset + PVD_modification_date_size)
|
|
|
|
#define PVD_expiration_date_size 17
|
|
|
|
#define PVD_effective_date_offset (PVD_expiration_date_offset + PVD_expiration_date_size)
|
|
|
|
#define PVD_effective_date_size 17
|
|
|
|
#define PVD_file_structure_version_offset (PVD_effective_date_offset + PVD_effective_date_size)
|
|
|
|
#define PVD_file_structure_version_size 1
|
|
|
|
#define PVD_reserved4_offset (PVD_file_structure_version_offset + PVD_file_structure_version_size)
|
|
|
|
#define PVD_reserved4_size 1
|
|
|
|
#define PVD_application_data_offset (PVD_reserved4_offset + PVD_reserved4_size)
|
|
|
|
#define PVD_application_data_size 512
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
/* Structure of an on-disk directory record. */
|
2006-11-26 05:39:28 +00:00
|
|
|
/* Note: ISO9660 stores each multi-byte integer twice, once in
|
|
|
|
* each byte order. The sizes here are the size of just one
|
|
|
|
* of the two integers. (This is why the offset of a field isn't
|
|
|
|
* the same as the offset+size of the previous field.) */
|
|
|
|
#define DR_length_offset 0
|
|
|
|
#define DR_length_size 1
|
|
|
|
#define DR_ext_attr_length_offset 1
|
|
|
|
#define DR_ext_attr_length_size 1
|
|
|
|
#define DR_extent_offset 2
|
|
|
|
#define DR_extent_size 4
|
|
|
|
#define DR_size_offset 10
|
|
|
|
#define DR_size_size 4
|
|
|
|
#define DR_date_offset 18
|
|
|
|
#define DR_date_size 7
|
|
|
|
#define DR_flags_offset 25
|
|
|
|
#define DR_flags_size 1
|
|
|
|
#define DR_file_unit_size_offset 26
|
|
|
|
#define DR_file_unit_size_size 1
|
|
|
|
#define DR_interleave_offset 27
|
|
|
|
#define DR_interleave_size 1
|
|
|
|
#define DR_volume_sequence_number_offset 28
|
|
|
|
#define DR_volume_sequence_number_size 2
|
|
|
|
#define DR_name_len_offset 32
|
|
|
|
#define DR_name_len_size 1
|
|
|
|
#define DR_name_offset 33
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Our private data.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* In-memory storage for a directory record. */
|
2005-01-03 05:51:33 +00:00
|
|
|
struct file_info {
|
|
|
|
struct file_info *parent;
|
2005-01-03 01:24:13 +00:00
|
|
|
int refcount;
|
2005-01-02 05:21:15 +00:00
|
|
|
uint64_t offset; /* Offset on disk. */
|
|
|
|
uint64_t size; /* File size in bytes. */
|
2005-01-20 04:16:55 +00:00
|
|
|
uint64_t ce_offset; /* Offset of CE */
|
|
|
|
uint64_t ce_size; /* Size of CE */
|
2005-01-02 05:21:15 +00:00
|
|
|
time_t mtime; /* File last modified time. */
|
2005-01-03 05:51:33 +00:00
|
|
|
time_t atime; /* File last accessed time. */
|
|
|
|
time_t ctime; /* File creation time. */
|
2007-12-30 04:58:22 +00:00
|
|
|
uint64_t rdev; /* Device number */
|
2005-01-03 01:24:13 +00:00
|
|
|
mode_t mode;
|
2005-01-03 05:51:33 +00:00
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
2005-02-12 22:48:38 +00:00
|
|
|
ino_t inode;
|
2005-01-03 05:51:33 +00:00
|
|
|
int nlinks;
|
|
|
|
char *name; /* Null-terminated filename. */
|
2005-01-08 19:56:07 +00:00
|
|
|
struct archive_string symlink;
|
2005-01-02 05:21:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct iso9660 {
|
|
|
|
int magic;
|
|
|
|
#define ISO9660_MAGIC 0x96609660
|
|
|
|
struct archive_string pathname;
|
2005-01-23 03:02:14 +00:00
|
|
|
char seenRockridge; /* Set true if RR extensions are used. */
|
2005-02-12 22:48:38 +00:00
|
|
|
unsigned char suspOffset;
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2005-01-03 01:24:13 +00:00
|
|
|
uint64_t previous_offset;
|
|
|
|
uint64_t previous_size;
|
|
|
|
struct archive_string previous_pathname;
|
|
|
|
|
2005-01-02 05:21:15 +00:00
|
|
|
/* TODO: Make this a heap for fast inserts and deletions. */
|
2005-01-03 05:51:33 +00:00
|
|
|
struct file_info **pending_files;
|
2005-01-02 05:21:15 +00:00
|
|
|
int pending_files_allocated;
|
|
|
|
int pending_files_used;
|
|
|
|
|
|
|
|
uint64_t current_position;
|
|
|
|
ssize_t logical_block_size;
|
|
|
|
|
2005-01-03 01:24:13 +00:00
|
|
|
off_t entry_sparse_offset;
|
2006-11-27 16:30:32 +00:00
|
|
|
int64_t entry_bytes_remaining;
|
2005-01-02 05:21:15 +00:00
|
|
|
};
|
|
|
|
|
2005-01-20 04:16:55 +00:00
|
|
|
static void add_entry(struct iso9660 *iso9660, struct file_info *file);
|
2007-03-03 07:37:37 +00:00
|
|
|
static int archive_read_format_iso9660_bid(struct archive_read *);
|
|
|
|
static int archive_read_format_iso9660_cleanup(struct archive_read *);
|
|
|
|
static int archive_read_format_iso9660_read_data(struct archive_read *,
|
2005-01-02 05:21:15 +00:00
|
|
|
const void **, size_t *, off_t *);
|
2007-03-03 07:37:37 +00:00
|
|
|
static int archive_read_format_iso9660_read_data_skip(struct archive_read *);
|
|
|
|
static int archive_read_format_iso9660_read_header(struct archive_read *,
|
2005-01-02 05:21:15 +00:00
|
|
|
struct archive_entry *);
|
2005-01-03 05:51:33 +00:00
|
|
|
static const char *build_pathname(struct archive_string *, struct file_info *);
|
2008-12-06 06:50:09 +00:00
|
|
|
#ifdef DEBUG
|
2006-11-26 05:39:28 +00:00
|
|
|
static void dump_isodirrec(FILE *, const unsigned char *isodirrec);
|
2008-12-06 06:50:09 +00:00
|
|
|
#endif
|
2005-11-06 23:38:01 +00:00
|
|
|
static time_t time_from_tm(struct tm *);
|
2006-11-26 05:39:28 +00:00
|
|
|
static time_t isodate17(const unsigned char *);
|
|
|
|
static time_t isodate7(const unsigned char *);
|
|
|
|
static int isPVD(struct iso9660 *, const unsigned char *);
|
2005-01-03 05:51:33 +00:00
|
|
|
static struct file_info *next_entry(struct iso9660 *);
|
2007-03-03 07:37:37 +00:00
|
|
|
static int next_entry_seek(struct archive_read *a, struct iso9660 *iso9660,
|
2005-01-20 04:16:55 +00:00
|
|
|
struct file_info **pfile);
|
|
|
|
static struct file_info *
|
|
|
|
parse_file_info(struct iso9660 *iso9660,
|
2006-11-26 05:39:28 +00:00
|
|
|
struct file_info *parent, const unsigned char *isodirrec);
|
2005-01-03 05:51:33 +00:00
|
|
|
static void parse_rockridge(struct iso9660 *iso9660,
|
2005-01-20 04:16:55 +00:00
|
|
|
struct file_info *file, const unsigned char *start,
|
|
|
|
const unsigned char *end);
|
2005-01-03 05:51:33 +00:00
|
|
|
static void release_file(struct iso9660 *, struct file_info *);
|
2006-11-27 16:30:32 +00:00
|
|
|
static unsigned toi(const void *p, int n);
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
int
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_read_support_format_iso9660(struct archive *_a)
|
2005-01-02 05:21:15 +00:00
|
|
|
{
|
2007-03-03 07:37:37 +00:00
|
|
|
struct archive_read *a = (struct archive_read *)_a;
|
2005-01-02 05:21:15 +00:00
|
|
|
struct iso9660 *iso9660;
|
|
|
|
int r;
|
|
|
|
|
2006-11-10 06:39:46 +00:00
|
|
|
iso9660 = (struct iso9660 *)malloc(sizeof(*iso9660));
|
2005-09-21 04:25:06 +00:00
|
|
|
if (iso9660 == NULL) {
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_set_error(&a->archive, ENOMEM, "Can't allocate iso9660 data");
|
2005-09-21 04:25:06 +00:00
|
|
|
return (ARCHIVE_FATAL);
|
|
|
|
}
|
2005-01-02 05:21:15 +00:00
|
|
|
memset(iso9660, 0, sizeof(*iso9660));
|
|
|
|
iso9660->magic = ISO9660_MAGIC;
|
|
|
|
|
|
|
|
r = __archive_read_register_format(a,
|
|
|
|
iso9660,
|
|
|
|
archive_read_format_iso9660_bid,
|
|
|
|
archive_read_format_iso9660_read_header,
|
|
|
|
archive_read_format_iso9660_read_data,
|
2006-11-27 16:30:32 +00:00
|
|
|
archive_read_format_iso9660_read_data_skip,
|
2005-01-02 05:21:15 +00:00
|
|
|
archive_read_format_iso9660_cleanup);
|
|
|
|
|
|
|
|
if (r != ARCHIVE_OK) {
|
|
|
|
free(iso9660);
|
|
|
|
return (r);
|
|
|
|
}
|
|
|
|
return (ARCHIVE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_read_format_iso9660_bid(struct archive_read *a)
|
2005-01-02 05:21:15 +00:00
|
|
|
{
|
|
|
|
struct iso9660 *iso9660;
|
|
|
|
ssize_t bytes_read;
|
|
|
|
const void *h;
|
2007-04-02 00:29:52 +00:00
|
|
|
const unsigned char *p;
|
2007-12-30 04:58:22 +00:00
|
|
|
int bid;
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2007-05-29 01:00:21 +00:00
|
|
|
iso9660 = (struct iso9660 *)(a->format->data);
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Skip the first 32k (reserved area) and get the first
|
|
|
|
* 8 sectors of the volume descriptor table. Of course,
|
|
|
|
* if the I/O layer gives us more, we'll take it.
|
|
|
|
*/
|
2008-12-06 06:45:15 +00:00
|
|
|
h = __archive_read_ahead(a, 32768 + 8*2048, &bytes_read);
|
|
|
|
if (h == NULL)
|
2007-12-30 04:58:22 +00:00
|
|
|
return (-1);
|
2007-04-02 00:29:52 +00:00
|
|
|
p = (const unsigned char *)h;
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
/* Skip the reserved area. */
|
|
|
|
bytes_read -= 32768;
|
|
|
|
p += 32768;
|
|
|
|
|
|
|
|
/* Check each volume descriptor to locate the PVD. */
|
|
|
|
for (; bytes_read > 2048; bytes_read -= 2048, p += 2048) {
|
2007-12-30 04:58:22 +00:00
|
|
|
bid = isPVD(iso9660, p);
|
|
|
|
if (bid > 0)
|
|
|
|
return (bid);
|
2007-04-02 00:29:52 +00:00
|
|
|
if (*p == '\177') /* End-of-volume-descriptor marker. */
|
2005-01-03 01:24:13 +00:00
|
|
|
break;
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We didn't find a valid PVD; return a bid of zero. */
|
2007-12-30 04:58:22 +00:00
|
|
|
return (0);
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-11-26 05:39:28 +00:00
|
|
|
isPVD(struct iso9660 *iso9660, const unsigned char *h)
|
2005-01-02 05:21:15 +00:00
|
|
|
{
|
2005-01-20 04:16:55 +00:00
|
|
|
struct file_info *file;
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
if (h[0] != 1)
|
|
|
|
return (0);
|
|
|
|
if (memcmp(h+1, "CD001", 5) != 0)
|
|
|
|
return (0);
|
|
|
|
|
2006-11-26 05:39:28 +00:00
|
|
|
iso9660->logical_block_size = toi(h + PVD_logical_block_size_offset, 2);
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
/* Store the root directory in the pending list. */
|
2006-11-26 05:39:28 +00:00
|
|
|
file = parse_file_info(iso9660, NULL, h + PVD_root_directory_record_offset);
|
2005-01-20 04:16:55 +00:00
|
|
|
add_entry(iso9660, file);
|
2005-01-02 05:21:15 +00:00
|
|
|
return (48);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_read_format_iso9660_read_header(struct archive_read *a,
|
2005-01-02 05:21:15 +00:00
|
|
|
struct archive_entry *entry)
|
|
|
|
{
|
|
|
|
struct iso9660 *iso9660;
|
2005-01-03 05:51:33 +00:00
|
|
|
struct file_info *file;
|
2005-01-20 04:16:55 +00:00
|
|
|
int r;
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2007-05-29 01:00:21 +00:00
|
|
|
iso9660 = (struct iso9660 *)(a->format->data);
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2007-03-03 07:37:37 +00:00
|
|
|
if (!a->archive.archive_format) {
|
|
|
|
a->archive.archive_format = ARCHIVE_FORMAT_ISO9660;
|
|
|
|
a->archive.archive_format_name = "ISO9660";
|
2005-01-23 03:02:14 +00:00
|
|
|
}
|
|
|
|
|
2005-01-02 05:21:15 +00:00
|
|
|
/* Get the next entry that appears after the current offset. */
|
2005-01-20 04:16:55 +00:00
|
|
|
r = next_entry_seek(a, iso9660, &file);
|
|
|
|
if (r != ARCHIVE_OK)
|
|
|
|
return (r);
|
2005-01-03 01:24:13 +00:00
|
|
|
|
2005-01-03 05:51:33 +00:00
|
|
|
iso9660->entry_bytes_remaining = file->size;
|
2005-01-03 01:24:13 +00:00
|
|
|
iso9660->entry_sparse_offset = 0; /* Offset for sparse-file-aware clients. */
|
|
|
|
|
|
|
|
/* Set up the entry structure with information about this entry. */
|
2007-05-29 01:00:21 +00:00
|
|
|
archive_entry_set_mode(entry, file->mode);
|
|
|
|
archive_entry_set_uid(entry, file->uid);
|
|
|
|
archive_entry_set_gid(entry, file->gid);
|
|
|
|
archive_entry_set_nlink(entry, file->nlinks);
|
|
|
|
archive_entry_set_ino(entry, file->inode);
|
|
|
|
archive_entry_set_mtime(entry, file->mtime, 0);
|
|
|
|
archive_entry_set_ctime(entry, file->ctime, 0);
|
|
|
|
archive_entry_set_atime(entry, file->atime, 0);
|
2007-12-30 04:58:22 +00:00
|
|
|
/* N.B.: Rock Ridge supports 64-bit device numbers. */
|
|
|
|
archive_entry_set_rdev(entry, (dev_t)file->rdev);
|
2007-05-29 01:00:21 +00:00
|
|
|
archive_entry_set_size(entry, iso9660->entry_bytes_remaining);
|
2005-01-03 01:24:13 +00:00
|
|
|
archive_string_empty(&iso9660->pathname);
|
|
|
|
archive_entry_set_pathname(entry,
|
2005-01-03 05:51:33 +00:00
|
|
|
build_pathname(&iso9660->pathname, file));
|
2005-01-08 19:56:07 +00:00
|
|
|
if (file->symlink.s != NULL)
|
2007-03-01 06:22:34 +00:00
|
|
|
archive_entry_copy_symlink(entry, file->symlink.s);
|
2005-01-03 01:24:13 +00:00
|
|
|
|
|
|
|
/* If this entry points to the same data as the previous
|
|
|
|
* entry, convert this into a hardlink to that entry.
|
|
|
|
* But don't bother for zero-length files. */
|
2005-01-03 05:51:33 +00:00
|
|
|
if (file->offset == iso9660->previous_offset
|
|
|
|
&& file->size == iso9660->previous_size
|
|
|
|
&& file->size > 0) {
|
2005-01-03 01:24:13 +00:00
|
|
|
archive_entry_set_hardlink(entry,
|
|
|
|
iso9660->previous_pathname.s);
|
|
|
|
iso9660->entry_bytes_remaining = 0;
|
|
|
|
iso9660->entry_sparse_offset = 0;
|
2005-01-03 05:51:33 +00:00
|
|
|
release_file(iso9660, file);
|
2005-01-03 01:24:13 +00:00
|
|
|
return (ARCHIVE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the offset is before our current position, we can't
|
|
|
|
* seek backwards to extract it, so issue a warning. */
|
2005-01-03 05:51:33 +00:00
|
|
|
if (file->offset < iso9660->current_position) {
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
|
2005-01-03 01:24:13 +00:00
|
|
|
"Ignoring out-of-order file");
|
|
|
|
iso9660->entry_bytes_remaining = 0;
|
|
|
|
iso9660->entry_sparse_offset = 0;
|
2005-01-03 05:51:33 +00:00
|
|
|
release_file(iso9660, file);
|
2005-01-03 01:24:13 +00:00
|
|
|
return (ARCHIVE_WARN);
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
|
|
|
|
2005-01-03 05:51:33 +00:00
|
|
|
iso9660->previous_size = file->size;
|
|
|
|
iso9660->previous_offset = file->offset;
|
2005-01-03 01:24:13 +00:00
|
|
|
archive_strcpy(&iso9660->previous_pathname, iso9660->pathname.s);
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
/* If this is a directory, read in all of the entries right now. */
|
2007-05-29 01:00:21 +00:00
|
|
|
if (archive_entry_filetype(entry) == AE_IFDIR) {
|
2006-03-21 16:55:46 +00:00
|
|
|
while (iso9660->entry_bytes_remaining > 0) {
|
2005-01-02 05:21:15 +00:00
|
|
|
const void *block;
|
2005-01-03 01:24:13 +00:00
|
|
|
const unsigned char *p;
|
2005-01-02 05:21:15 +00:00
|
|
|
ssize_t step = iso9660->logical_block_size;
|
|
|
|
if (step > iso9660->entry_bytes_remaining)
|
|
|
|
step = iso9660->entry_bytes_remaining;
|
2008-12-06 06:45:15 +00:00
|
|
|
block = __archive_read_ahead(a, step, NULL);
|
|
|
|
if (block == NULL) {
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
|
2005-01-02 05:21:15 +00:00
|
|
|
"Failed to read full block when scanning ISO9660 directory list");
|
2005-01-03 05:51:33 +00:00
|
|
|
release_file(iso9660, file);
|
2005-01-02 05:21:15 +00:00
|
|
|
return (ARCHIVE_FATAL);
|
|
|
|
}
|
2008-12-06 06:45:15 +00:00
|
|
|
__archive_read_consume(a, step);
|
|
|
|
iso9660->current_position += step;
|
|
|
|
iso9660->entry_bytes_remaining -= step;
|
2006-11-10 06:39:46 +00:00
|
|
|
for (p = (const unsigned char *)block;
|
2008-12-06 06:45:15 +00:00
|
|
|
*p != 0 && p < (const unsigned char *)block + step;
|
2005-01-03 01:24:13 +00:00
|
|
|
p += *p) {
|
2005-01-20 04:16:55 +00:00
|
|
|
struct file_info *child;
|
|
|
|
|
2005-01-02 05:21:15 +00:00
|
|
|
/* Skip '.' entry. */
|
2006-11-26 05:39:28 +00:00
|
|
|
if (*(p + DR_name_len_offset) == 1
|
|
|
|
&& *(p + DR_name_offset) == '\0')
|
2005-01-02 05:21:15 +00:00
|
|
|
continue;
|
|
|
|
/* Skip '..' entry. */
|
2006-11-26 05:39:28 +00:00
|
|
|
if (*(p + DR_name_len_offset) == 1
|
|
|
|
&& *(p + DR_name_offset) == '\001')
|
2005-01-02 05:21:15 +00:00
|
|
|
continue;
|
2006-11-26 05:39:28 +00:00
|
|
|
child = parse_file_info(iso9660, file, p);
|
2005-01-20 04:16:55 +00:00
|
|
|
add_entry(iso9660, child);
|
2005-11-08 07:41:03 +00:00
|
|
|
if (iso9660->seenRockridge) {
|
2007-03-03 07:37:37 +00:00
|
|
|
a->archive.archive_format =
|
2005-11-08 07:41:03 +00:00
|
|
|
ARCHIVE_FORMAT_ISO9660_ROCKRIDGE;
|
2007-03-03 07:37:37 +00:00
|
|
|
a->archive.archive_format_name =
|
2005-11-08 07:41:03 +00:00
|
|
|
"ISO9660 with Rockridge extensions";
|
|
|
|
}
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-03 05:51:33 +00:00
|
|
|
release_file(iso9660, file);
|
2005-01-02 05:21:15 +00:00
|
|
|
return (ARCHIVE_OK);
|
|
|
|
}
|
|
|
|
|
2006-11-27 16:30:32 +00:00
|
|
|
static int
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_read_format_iso9660_read_data_skip(struct archive_read *a)
|
2006-11-27 16:30:32 +00:00
|
|
|
{
|
|
|
|
/* Because read_next_header always does an explicit skip
|
|
|
|
* to the next entry, we don't need to do anything here. */
|
|
|
|
(void)a; /* UNUSED */
|
|
|
|
return (ARCHIVE_OK);
|
|
|
|
}
|
|
|
|
|
2005-01-02 05:21:15 +00:00
|
|
|
static int
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_read_format_iso9660_read_data(struct archive_read *a,
|
2005-01-02 05:21:15 +00:00
|
|
|
const void **buff, size_t *size, off_t *offset)
|
|
|
|
{
|
|
|
|
ssize_t bytes_read;
|
|
|
|
struct iso9660 *iso9660;
|
|
|
|
|
2007-05-29 01:00:21 +00:00
|
|
|
iso9660 = (struct iso9660 *)(a->format->data);
|
2005-01-03 01:24:13 +00:00
|
|
|
if (iso9660->entry_bytes_remaining <= 0) {
|
2005-01-02 05:21:15 +00:00
|
|
|
*buff = NULL;
|
|
|
|
*size = 0;
|
2005-01-03 01:24:13 +00:00
|
|
|
*offset = iso9660->entry_sparse_offset;
|
2005-01-02 05:21:15 +00:00
|
|
|
return (ARCHIVE_EOF);
|
|
|
|
}
|
2005-01-03 01:24:13 +00:00
|
|
|
|
2008-12-06 06:45:15 +00:00
|
|
|
*buff = __archive_read_ahead(a, 1, &bytes_read);
|
2005-09-24 21:15:00 +00:00
|
|
|
if (bytes_read == 0)
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
|
2005-09-24 21:15:00 +00:00
|
|
|
"Truncated input file");
|
2008-12-06 06:45:15 +00:00
|
|
|
if (buff == NULL)
|
2005-01-03 01:24:13 +00:00
|
|
|
return (ARCHIVE_FATAL);
|
|
|
|
if (bytes_read > iso9660->entry_bytes_remaining)
|
|
|
|
bytes_read = iso9660->entry_bytes_remaining;
|
|
|
|
*size = bytes_read;
|
|
|
|
*offset = iso9660->entry_sparse_offset;
|
|
|
|
iso9660->entry_sparse_offset += bytes_read;
|
|
|
|
iso9660->entry_bytes_remaining -= bytes_read;
|
|
|
|
iso9660->current_position += bytes_read;
|
2008-12-06 06:45:15 +00:00
|
|
|
__archive_read_consume(a, bytes_read);
|
2005-01-03 01:24:13 +00:00
|
|
|
return (ARCHIVE_OK);
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2007-03-03 07:37:37 +00:00
|
|
|
archive_read_format_iso9660_cleanup(struct archive_read *a)
|
2005-01-02 05:21:15 +00:00
|
|
|
{
|
|
|
|
struct iso9660 *iso9660;
|
2005-01-03 05:51:33 +00:00
|
|
|
struct file_info *file;
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2007-05-29 01:00:21 +00:00
|
|
|
iso9660 = (struct iso9660 *)(a->format->data);
|
2005-01-03 05:51:33 +00:00
|
|
|
while ((file = next_entry(iso9660)) != NULL)
|
|
|
|
release_file(iso9660, file);
|
|
|
|
archive_string_free(&iso9660->pathname);
|
|
|
|
archive_string_free(&iso9660->previous_pathname);
|
2007-05-29 01:00:21 +00:00
|
|
|
if (iso9660->pending_files)
|
|
|
|
free(iso9660->pending_files);
|
2005-01-02 05:21:15 +00:00
|
|
|
free(iso9660);
|
2007-05-29 01:00:21 +00:00
|
|
|
(a->format->data) = NULL;
|
2005-01-02 05:21:15 +00:00
|
|
|
return (ARCHIVE_OK);
|
|
|
|
}
|
|
|
|
|
2005-01-03 05:51:33 +00:00
|
|
|
/*
|
|
|
|
* This routine parses a single ISO directory record, makes sense
|
|
|
|
* of any extensions, and stores the result in memory.
|
|
|
|
*/
|
2005-01-20 04:16:55 +00:00
|
|
|
static struct file_info *
|
|
|
|
parse_file_info(struct iso9660 *iso9660, struct file_info *parent,
|
2006-11-26 05:39:28 +00:00
|
|
|
const unsigned char *isodirrec)
|
2005-01-02 05:21:15 +00:00
|
|
|
{
|
2005-01-03 05:51:33 +00:00
|
|
|
struct file_info *file;
|
2006-11-26 05:39:28 +00:00
|
|
|
size_t name_len;
|
|
|
|
int flags;
|
2005-01-03 05:51:33 +00:00
|
|
|
|
|
|
|
/* TODO: Sanity check that name_len doesn't exceed length, etc. */
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2005-01-03 05:51:33 +00:00
|
|
|
/* Create a new file entry and copy data from the ISO dir record. */
|
2006-11-10 06:39:46 +00:00
|
|
|
file = (struct file_info *)malloc(sizeof(*file));
|
2005-09-21 04:25:06 +00:00
|
|
|
if (file == NULL)
|
|
|
|
return (NULL);
|
2005-01-08 19:56:07 +00:00
|
|
|
memset(file, 0, sizeof(*file));
|
2005-01-03 05:51:33 +00:00
|
|
|
file->parent = parent;
|
2005-01-03 01:24:13 +00:00
|
|
|
if (parent != NULL)
|
|
|
|
parent->refcount++;
|
2006-11-26 05:39:28 +00:00
|
|
|
file->offset = toi(isodirrec + DR_extent_offset, DR_extent_size)
|
2005-01-02 05:21:15 +00:00
|
|
|
* iso9660->logical_block_size;
|
2006-11-26 05:39:28 +00:00
|
|
|
file->size = toi(isodirrec + DR_size_offset, DR_size_size);
|
|
|
|
file->mtime = isodate7(isodirrec + DR_date_offset);
|
2005-01-03 05:51:33 +00:00
|
|
|
file->ctime = file->atime = file->mtime;
|
2006-11-26 05:39:28 +00:00
|
|
|
name_len = (size_t)*(const unsigned char *)(isodirrec + DR_name_len_offset);
|
|
|
|
file->name = (char *)malloc(name_len + 1);
|
2005-09-21 04:25:06 +00:00
|
|
|
if (file->name == NULL) {
|
|
|
|
free(file);
|
|
|
|
return (NULL);
|
|
|
|
}
|
2006-11-26 05:39:28 +00:00
|
|
|
memcpy(file->name, isodirrec + DR_name_offset, name_len);
|
|
|
|
file->name[name_len] = '\0';
|
|
|
|
flags = *(isodirrec + DR_flags_offset);
|
|
|
|
if (flags & 0x02)
|
2007-05-29 01:00:21 +00:00
|
|
|
file->mode = AE_IFDIR | 0700;
|
2005-01-03 01:24:13 +00:00
|
|
|
else
|
2007-05-29 01:00:21 +00:00
|
|
|
file->mode = AE_IFREG | 0400;
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2005-01-03 05:51:33 +00:00
|
|
|
/* Rockridge extensions overwrite information from above. */
|
2005-01-20 04:16:55 +00:00
|
|
|
{
|
|
|
|
const unsigned char *rr_start, *rr_end;
|
|
|
|
rr_end = (const unsigned char *)isodirrec
|
2006-11-26 05:39:28 +00:00
|
|
|
+ *(isodirrec + DR_length_offset);
|
|
|
|
rr_start = (const unsigned char *)(isodirrec + DR_name_offset
|
|
|
|
+ name_len);
|
|
|
|
if ((name_len & 1) == 0)
|
2005-01-20 04:16:55 +00:00
|
|
|
rr_start++;
|
2005-02-12 22:48:38 +00:00
|
|
|
rr_start += iso9660->suspOffset;
|
2005-01-20 04:16:55 +00:00
|
|
|
parse_rockridge(iso9660, file, rr_start, rr_end);
|
|
|
|
}
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2008-12-06 06:50:09 +00:00
|
|
|
#ifdef DEBUG
|
2005-01-03 01:24:13 +00:00
|
|
|
/* DEBUGGING: Warn about attributes I don't yet fully support. */
|
2006-11-26 05:39:28 +00:00
|
|
|
if ((flags & ~0x02) != 0) {
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n ** Unrecognized flag: ");
|
2005-01-03 05:51:33 +00:00
|
|
|
dump_isodirrec(stderr, isodirrec);
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n");
|
2006-11-26 05:39:28 +00:00
|
|
|
} else if (toi(isodirrec + DR_volume_sequence_number_offset, 2) != 1) {
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n ** Unrecognized sequence number: ");
|
2005-01-03 05:51:33 +00:00
|
|
|
dump_isodirrec(stderr, isodirrec);
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n");
|
2006-11-26 05:39:28 +00:00
|
|
|
} else if (*(isodirrec + DR_file_unit_size_offset) != 0) {
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n ** Unexpected file unit size: ");
|
2005-01-03 05:51:33 +00:00
|
|
|
dump_isodirrec(stderr, isodirrec);
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n");
|
2006-11-26 05:39:28 +00:00
|
|
|
} else if (*(isodirrec + DR_interleave_offset) != 0) {
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n ** Unexpected interleave: ");
|
2005-01-03 05:51:33 +00:00
|
|
|
dump_isodirrec(stderr, isodirrec);
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n");
|
2006-11-26 05:39:28 +00:00
|
|
|
} else if (*(isodirrec + DR_ext_attr_length_offset) != 0) {
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n ** Unexpected extended attribute length: ");
|
2005-01-03 05:51:33 +00:00
|
|
|
dump_isodirrec(stderr, isodirrec);
|
2005-01-03 01:24:13 +00:00
|
|
|
fprintf(stderr, "\n");
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
2008-12-06 06:50:09 +00:00
|
|
|
#endif
|
2005-01-02 05:21:15 +00:00
|
|
|
|
2005-01-20 04:16:55 +00:00
|
|
|
return (file);
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
|
|
|
|
2005-01-03 01:24:13 +00:00
|
|
|
static void
|
2005-01-20 04:16:55 +00:00
|
|
|
add_entry(struct iso9660 *iso9660, struct file_info *file)
|
2005-01-03 01:24:13 +00:00
|
|
|
{
|
2005-01-20 04:16:55 +00:00
|
|
|
/* Expand our pending files list as necessary. */
|
|
|
|
if (iso9660->pending_files_used >= iso9660->pending_files_allocated) {
|
|
|
|
struct file_info **new_pending_files;
|
|
|
|
int new_size = iso9660->pending_files_allocated * 2;
|
2005-01-03 05:51:33 +00:00
|
|
|
|
2008-05-26 17:00:24 +00:00
|
|
|
if (iso9660->pending_files_allocated < 1024)
|
2005-01-20 04:16:55 +00:00
|
|
|
new_size = 1024;
|
2008-05-26 17:00:24 +00:00
|
|
|
/* Overflow might keep us from growing the list. */
|
|
|
|
if (new_size <= iso9660->pending_files_allocated)
|
|
|
|
__archive_errx(1, "Out of memory");
|
2006-11-10 06:39:46 +00:00
|
|
|
new_pending_files = (struct file_info **)malloc(new_size * sizeof(new_pending_files[0]));
|
2005-09-21 04:25:06 +00:00
|
|
|
if (new_pending_files == NULL)
|
|
|
|
__archive_errx(1, "Out of memory");
|
2005-01-20 04:16:55 +00:00
|
|
|
memcpy(new_pending_files, iso9660->pending_files,
|
|
|
|
iso9660->pending_files_allocated * sizeof(new_pending_files[0]));
|
|
|
|
if (iso9660->pending_files != NULL)
|
|
|
|
free(iso9660->pending_files);
|
|
|
|
iso9660->pending_files = new_pending_files;
|
|
|
|
iso9660->pending_files_allocated = new_size;
|
|
|
|
}
|
2005-01-03 05:51:33 +00:00
|
|
|
|
2005-01-20 04:16:55 +00:00
|
|
|
iso9660->pending_files[iso9660->pending_files_used++] = file;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
parse_rockridge(struct iso9660 *iso9660, struct file_info *file,
|
|
|
|
const unsigned char *p, const unsigned char *end)
|
|
|
|
{
|
|
|
|
(void)iso9660; /* UNUSED */
|
2005-01-03 05:51:33 +00:00
|
|
|
|
|
|
|
while (p + 4 < end /* Enough space for another entry. */
|
|
|
|
&& p[0] >= 'A' && p[0] <= 'Z' /* Sanity-check 1st char of name. */
|
|
|
|
&& p[1] >= 'A' && p[1] <= 'Z' /* Sanity-check 2nd char of name. */
|
|
|
|
&& p + p[2] <= end) { /* Sanity-check length. */
|
|
|
|
const unsigned char *data = p + 4;
|
|
|
|
int data_length = p[2] - 4;
|
2005-01-20 04:16:55 +00:00
|
|
|
int version = p[3];
|
2005-01-03 05:51:33 +00:00
|
|
|
|
2005-01-20 04:16:55 +00:00
|
|
|
/*
|
|
|
|
* Yes, each 'if' here does test p[0] again.
|
|
|
|
* Otherwise, the fall-through handling to catch
|
|
|
|
* unsupported extensions doesn't work.
|
|
|
|
*/
|
2005-01-03 05:51:33 +00:00
|
|
|
switch(p[0]) {
|
2005-01-20 04:16:55 +00:00
|
|
|
case 'C':
|
|
|
|
if (p[0] == 'C' && p[1] == 'E' && version == 1) {
|
|
|
|
/*
|
|
|
|
* CE extension comprises:
|
|
|
|
* 8 byte sector containing extension
|
|
|
|
* 8 byte offset w/in above sector
|
|
|
|
* 8 byte length of continuation
|
|
|
|
*/
|
|
|
|
file->ce_offset = toi(data, 4)
|
|
|
|
* iso9660->logical_block_size
|
|
|
|
+ toi(data + 8, 4);
|
|
|
|
file->ce_size = toi(data + 16, 4);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
2005-01-03 05:51:33 +00:00
|
|
|
case 'N':
|
2005-01-08 19:56:07 +00:00
|
|
|
if (p[0] == 'N' && p[1] == 'M' && version == 1
|
|
|
|
&& *data == 0) {
|
|
|
|
/* NM extension with flag byte == 0 */
|
2005-01-03 05:51:33 +00:00
|
|
|
/*
|
|
|
|
* NM extension comprises:
|
|
|
|
* one byte flag
|
|
|
|
* rest is long name
|
|
|
|
*/
|
|
|
|
/* TODO: Obey flags. */
|
|
|
|
char *old_name = file->name;
|
2005-01-08 19:56:07 +00:00
|
|
|
|
|
|
|
data++; /* Skip flag byte. */
|
|
|
|
data_length--;
|
2006-11-10 06:39:46 +00:00
|
|
|
file->name = (char *)malloc(data_length + 1);
|
2005-01-03 05:51:33 +00:00
|
|
|
if (file->name != NULL) {
|
|
|
|
free(old_name);
|
2005-01-08 19:56:07 +00:00
|
|
|
memcpy(file->name, data, data_length);
|
|
|
|
file->name[data_length] = '\0';
|
|
|
|
} else
|
2005-01-03 05:51:33 +00:00
|
|
|
file->name = old_name;
|
2005-01-08 19:56:07 +00:00
|
|
|
break;
|
2005-01-03 05:51:33 +00:00
|
|
|
}
|
2005-01-08 19:56:07 +00:00
|
|
|
/* FALLTHROUGH */
|
2005-01-03 05:51:33 +00:00
|
|
|
case 'P':
|
2005-02-12 22:48:38 +00:00
|
|
|
if (p[0] == 'P' && p[1] == 'D' && version == 1) {
|
|
|
|
/*
|
|
|
|
* PD extension is padding;
|
|
|
|
* contents are always ignored.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
2007-12-30 04:58:22 +00:00
|
|
|
if (p[0] == 'P' && p[1] == 'N' && version == 1) {
|
|
|
|
if (data_length == 16) {
|
|
|
|
file->rdev = toi(data,4);
|
|
|
|
file->rdev <<= 32;
|
|
|
|
file->rdev |= toi(data + 8, 4);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-01-08 19:56:07 +00:00
|
|
|
if (p[0] == 'P' && p[1] == 'X' && version == 1) {
|
2005-01-03 05:51:33 +00:00
|
|
|
/*
|
|
|
|
* PX extension comprises:
|
|
|
|
* 8 bytes for mode,
|
|
|
|
* 8 bytes for nlinks,
|
|
|
|
* 8 bytes for uid,
|
2005-02-12 22:48:38 +00:00
|
|
|
* 8 bytes for gid,
|
|
|
|
* 8 bytes for inode.
|
2005-01-03 05:51:33 +00:00
|
|
|
*/
|
|
|
|
if (data_length == 32) {
|
|
|
|
file->mode = toi(data, 4);
|
|
|
|
file->nlinks = toi(data + 8, 4);
|
|
|
|
file->uid = toi(data + 16, 4);
|
|
|
|
file->gid = toi(data + 24, 4);
|
2005-02-12 22:48:38 +00:00
|
|
|
file->inode = toi(data + 32, 4);
|
2005-01-03 05:51:33 +00:00
|
|
|
}
|
2005-01-08 19:56:07 +00:00
|
|
|
break;
|
2005-01-03 05:51:33 +00:00
|
|
|
}
|
2005-01-08 19:56:07 +00:00
|
|
|
/* FALLTHROUGH */
|
2005-01-03 05:51:33 +00:00
|
|
|
case 'R':
|
2005-01-08 19:56:07 +00:00
|
|
|
if (p[0] == 'R' && p[1] == 'R' && version == 1) {
|
2005-01-23 03:02:14 +00:00
|
|
|
iso9660->seenRockridge = 1;
|
2005-01-03 05:51:33 +00:00
|
|
|
/*
|
|
|
|
* RR extension comprises:
|
2005-01-23 03:02:14 +00:00
|
|
|
* one byte flag value
|
2005-01-03 05:51:33 +00:00
|
|
|
*/
|
|
|
|
/* TODO: Handle RR extension. */
|
2005-01-08 19:56:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 'S':
|
|
|
|
if (p[0] == 'S' && p[1] == 'L' && version == 1
|
|
|
|
&& *data == 0) {
|
|
|
|
int cont = 1;
|
|
|
|
/* SL extension with flags == 0 */
|
|
|
|
/* TODO: handle non-zero flag values. */
|
|
|
|
data++; /* Skip flag byte. */
|
|
|
|
data_length--;
|
|
|
|
while (data_length > 0) {
|
|
|
|
unsigned char flag = *data++;
|
|
|
|
unsigned char nlen = *data++;
|
|
|
|
data_length -= 2;
|
|
|
|
|
|
|
|
if (cont == 0)
|
|
|
|
archive_strcat(&file->symlink, "/");
|
|
|
|
cont = 0;
|
|
|
|
|
|
|
|
switch(flag) {
|
|
|
|
case 0x01: /* Continue */
|
2005-09-24 21:15:00 +00:00
|
|
|
archive_strncat(&file->symlink,
|
|
|
|
(const char *)data, nlen);
|
2005-01-08 19:56:07 +00:00
|
|
|
cont = 1;
|
|
|
|
break;
|
|
|
|
case 0x02: /* Current */
|
|
|
|
archive_strcat(&file->symlink, ".");
|
|
|
|
break;
|
|
|
|
case 0x04: /* Parent */
|
|
|
|
archive_strcat(&file->symlink, "..");
|
|
|
|
break;
|
|
|
|
case 0x08: /* Root */
|
|
|
|
case 0x10: /* Volume root */
|
|
|
|
archive_string_empty(&file->symlink);
|
|
|
|
break;
|
|
|
|
case 0x20: /* Hostname */
|
|
|
|
archive_strcat(&file->symlink, "hostname");
|
|
|
|
break;
|
|
|
|
case 0:
|
2005-09-24 21:15:00 +00:00
|
|
|
archive_strncat(&file->symlink,
|
|
|
|
(const char *)data, nlen);
|
2005-01-08 19:56:07 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* TODO: issue a warning ? */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
data += nlen;
|
|
|
|
data_length -= nlen;
|
|
|
|
}
|
|
|
|
break;
|
2005-01-03 05:51:33 +00:00
|
|
|
}
|
2005-02-12 22:48:38 +00:00
|
|
|
if (p[0] == 'S' && p[1] == 'P'
|
|
|
|
&& version == 1 && data_length == 7
|
|
|
|
&& data[0] == (unsigned char)'\xbe'
|
|
|
|
&& data[1] == (unsigned char)'\xef') {
|
|
|
|
/*
|
|
|
|
* SP extension stores the suspOffset
|
|
|
|
* (Number of bytes to skip between
|
|
|
|
* filename and SUSP records.)
|
|
|
|
* It is mandatory by the SUSP standard
|
|
|
|
* (IEEE 1281).
|
|
|
|
*
|
|
|
|
* It allows SUSP to coexist with
|
|
|
|
* non-SUSP uses of the System
|
|
|
|
* Use Area by placing non-SUSP data
|
|
|
|
* before SUSP data.
|
|
|
|
*
|
|
|
|
* TODO: Add a check for 'SP' in
|
|
|
|
* first directory entry, disable all SUSP
|
|
|
|
* processing if not found.
|
|
|
|
*/
|
|
|
|
iso9660->suspOffset = data[2];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (p[0] == 'S' && p[1] == 'T'
|
|
|
|
&& data_length == 0 && version == 1) {
|
|
|
|
/*
|
|
|
|
* ST extension marks end of this
|
|
|
|
* block of SUSP entries.
|
|
|
|
*
|
|
|
|
* It allows SUSP to coexist with
|
|
|
|
* non-SUSP uses of the System
|
|
|
|
* Use Area by placing non-SUSP data
|
|
|
|
* after SUSP data.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
2005-01-03 05:51:33 +00:00
|
|
|
case 'T':
|
2005-01-08 19:56:07 +00:00
|
|
|
if (p[0] == 'T' && p[1] == 'F' && version == 1) {
|
2005-01-03 05:51:33 +00:00
|
|
|
char flag = data[0];
|
|
|
|
/*
|
|
|
|
* TF extension comprises:
|
|
|
|
* one byte flag
|
|
|
|
* create time (optional)
|
|
|
|
* modify time (optional)
|
|
|
|
* access time (optional)
|
|
|
|
* attribute time (optional)
|
|
|
|
* Time format and presence of fields
|
|
|
|
* is controlled by flag bits.
|
|
|
|
*/
|
|
|
|
data++;
|
|
|
|
if (flag & 0x80) {
|
|
|
|
/* Use 17-byte time format. */
|
|
|
|
if (flag & 1) /* Create time. */
|
|
|
|
data += 17;
|
|
|
|
if (flag & 2) { /* Modify time. */
|
|
|
|
file->mtime = isodate17(data);
|
|
|
|
data += 17;
|
|
|
|
}
|
|
|
|
if (flag & 4) { /* Access time. */
|
|
|
|
file->atime = isodate17(data);
|
|
|
|
data += 17;
|
|
|
|
}
|
|
|
|
if (flag & 8) { /* Attribute time. */
|
|
|
|
file->ctime = isodate17(data);
|
|
|
|
data += 17;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Use 7-byte time format. */
|
|
|
|
if (flag & 1) /* Create time. */
|
|
|
|
data += 7;
|
|
|
|
if (flag & 2) { /* Modify time. */
|
|
|
|
file->mtime = isodate7(data);
|
|
|
|
data += 7;
|
|
|
|
}
|
|
|
|
if (flag & 4) { /* Access time. */
|
|
|
|
file->atime = isodate7(data);
|
|
|
|
data += 7;
|
|
|
|
}
|
|
|
|
if (flag & 8) { /* Attribute time. */
|
|
|
|
file->ctime = isodate7(data);
|
|
|
|
data += 7;
|
|
|
|
}
|
|
|
|
}
|
2005-01-08 19:56:07 +00:00
|
|
|
break;
|
2005-01-03 05:51:33 +00:00
|
|
|
}
|
2005-01-08 19:56:07 +00:00
|
|
|
/* FALLTHROUGH */
|
2005-01-03 05:51:33 +00:00
|
|
|
default:
|
2005-01-20 04:16:55 +00:00
|
|
|
/* The FALLTHROUGHs above leave us here for
|
2005-01-08 19:56:07 +00:00
|
|
|
* any unsupported extension. */
|
2008-12-06 06:50:09 +00:00
|
|
|
#ifdef DEBUG
|
2005-01-03 05:51:33 +00:00
|
|
|
{
|
|
|
|
const unsigned char *t;
|
|
|
|
fprintf(stderr, "\nUnsupported RRIP extension for %s\n", file->name);
|
|
|
|
fprintf(stderr, " %c%c(%d):", p[0], p[1], data_length);
|
|
|
|
for (t = data; t < data + data_length && t < data + 16; t++)
|
|
|
|
fprintf(stderr, " %02x", *t);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
2008-12-06 06:50:09 +00:00
|
|
|
#endif
|
|
|
|
break;
|
2005-01-03 05:51:33 +00:00
|
|
|
}
|
|
|
|
|
2005-01-03 01:24:13 +00:00
|
|
|
|
2005-01-03 05:51:33 +00:00
|
|
|
|
|
|
|
p += p[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
release_file(struct iso9660 *iso9660, struct file_info *file)
|
|
|
|
{
|
|
|
|
struct file_info *parent;
|
|
|
|
|
|
|
|
if (file->refcount == 0) {
|
|
|
|
parent = file->parent;
|
|
|
|
if (file->name)
|
|
|
|
free(file->name);
|
2005-01-08 19:56:07 +00:00
|
|
|
archive_string_free(&file->symlink);
|
2005-01-03 05:51:33 +00:00
|
|
|
free(file);
|
2005-01-03 01:24:13 +00:00
|
|
|
if (parent != NULL) {
|
|
|
|
parent->refcount--;
|
2005-01-03 05:51:33 +00:00
|
|
|
release_file(iso9660, parent);
|
2005-01-03 01:24:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-20 04:16:55 +00:00
|
|
|
static int
|
2007-03-03 07:37:37 +00:00
|
|
|
next_entry_seek(struct archive_read *a, struct iso9660 *iso9660,
|
2005-01-20 04:16:55 +00:00
|
|
|
struct file_info **pfile)
|
|
|
|
{
|
|
|
|
struct file_info *file;
|
|
|
|
uint64_t offset;
|
|
|
|
|
|
|
|
*pfile = NULL;
|
|
|
|
for (;;) {
|
|
|
|
*pfile = file = next_entry(iso9660);
|
|
|
|
if (file == NULL)
|
|
|
|
return (ARCHIVE_EOF);
|
|
|
|
|
|
|
|
/* CE area precedes actual file data? Ignore it. */
|
|
|
|
if (file->ce_offset > file->offset) {
|
2008-12-06 06:50:09 +00:00
|
|
|
/* fprintf(stderr, " *** Discarding CE data.\n"); */
|
2005-01-20 04:16:55 +00:00
|
|
|
file->ce_offset = 0;
|
|
|
|
file->ce_size = 0;
|
|
|
|
}
|
|
|
|
|
2008-05-26 17:00:24 +00:00
|
|
|
/* Don't waste time seeking for zero-length bodies. */
|
|
|
|
if (file->size == 0) {
|
|
|
|
file->offset = iso9660->current_position;
|
|
|
|
}
|
|
|
|
|
2005-01-20 04:16:55 +00:00
|
|
|
/* If CE exists, find and read it now. */
|
|
|
|
if (file->ce_offset > 0)
|
|
|
|
offset = file->ce_offset;
|
|
|
|
else
|
|
|
|
offset = file->offset;
|
|
|
|
|
|
|
|
/* Seek forward to the start of the entry. */
|
2007-03-31 22:59:43 +00:00
|
|
|
if (iso9660->current_position < offset) {
|
2007-01-04 12:45:00 +00:00
|
|
|
off_t step = offset - iso9660->current_position;
|
|
|
|
off_t bytes_read;
|
2008-12-06 06:45:15 +00:00
|
|
|
bytes_read = __archive_read_skip(a, step);
|
2007-03-31 22:59:43 +00:00
|
|
|
if (bytes_read < 0)
|
|
|
|
return (bytes_read);
|
|
|
|
iso9660->current_position = offset;
|
2005-01-20 04:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We found body of file; handle it now. */
|
|
|
|
if (offset == file->offset)
|
|
|
|
return (ARCHIVE_OK);
|
|
|
|
|
|
|
|
/* Found CE? Process it and push the file back onto list. */
|
|
|
|
if (offset == file->ce_offset) {
|
|
|
|
const void *p;
|
|
|
|
ssize_t size = file->ce_size;
|
|
|
|
const unsigned char *rr_start;
|
|
|
|
|
|
|
|
file->ce_offset = 0;
|
|
|
|
file->ce_size = 0;
|
2008-12-06 06:45:15 +00:00
|
|
|
p = __archive_read_ahead(a, size, NULL);
|
|
|
|
if (p == NULL)
|
|
|
|
return (ARCHIVE_FATAL);
|
2005-01-20 04:16:55 +00:00
|
|
|
rr_start = (const unsigned char *)p;
|
|
|
|
parse_rockridge(iso9660, file, rr_start,
|
2008-12-06 06:45:15 +00:00
|
|
|
rr_start + size);
|
|
|
|
__archive_read_consume(a, size);
|
|
|
|
iso9660->current_position += size;
|
2005-01-20 04:16:55 +00:00
|
|
|
add_entry(iso9660, file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-03 05:51:33 +00:00
|
|
|
static struct file_info *
|
2005-01-02 05:21:15 +00:00
|
|
|
next_entry(struct iso9660 *iso9660)
|
|
|
|
{
|
2005-01-03 01:24:13 +00:00
|
|
|
int least_index;
|
|
|
|
uint64_t least_end_offset;
|
2005-01-02 05:21:15 +00:00
|
|
|
int i;
|
2005-01-03 05:51:33 +00:00
|
|
|
struct file_info *r;
|
2005-01-02 05:21:15 +00:00
|
|
|
|
|
|
|
if (iso9660->pending_files_used < 1)
|
|
|
|
return (NULL);
|
|
|
|
|
2005-01-03 01:24:13 +00:00
|
|
|
/* Assume the first file in the list is the earliest on disk. */
|
|
|
|
least_index = 0;
|
|
|
|
least_end_offset = iso9660->pending_files[0]->offset
|
|
|
|
+ iso9660->pending_files[0]->size;
|
|
|
|
|
|
|
|
/* Now, try to find an earlier one. */
|
2006-03-21 16:55:46 +00:00
|
|
|
for (i = 0; i < iso9660->pending_files_used; i++) {
|
2005-01-03 01:24:13 +00:00
|
|
|
/* Use the position of the file *end* as our comparison. */
|
|
|
|
uint64_t end_offset = iso9660->pending_files[i]->offset
|
|
|
|
+ iso9660->pending_files[i]->size;
|
2005-01-20 04:16:55 +00:00
|
|
|
if (iso9660->pending_files[i]->ce_offset > 0
|
|
|
|
&& iso9660->pending_files[i]->ce_offset < iso9660->pending_files[i]->offset)
|
|
|
|
end_offset = iso9660->pending_files[i]->ce_offset
|
|
|
|
+ iso9660->pending_files[i]->ce_size;
|
2005-01-03 01:24:13 +00:00
|
|
|
if (least_end_offset > end_offset) {
|
2005-01-02 05:21:15 +00:00
|
|
|
least_index = i;
|
2005-01-03 01:24:13 +00:00
|
|
|
least_end_offset = end_offset;
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
r = iso9660->pending_files[least_index];
|
|
|
|
iso9660->pending_files[least_index]
|
|
|
|
= iso9660->pending_files[--iso9660->pending_files_used];
|
|
|
|
return (r);
|
|
|
|
}
|
|
|
|
|
2006-11-27 16:30:32 +00:00
|
|
|
static unsigned int
|
2005-01-02 05:21:15 +00:00
|
|
|
toi(const void *p, int n)
|
|
|
|
{
|
|
|
|
const unsigned char *v = (const unsigned char *)p;
|
|
|
|
if (n > 1)
|
|
|
|
return v[0] + 256 * toi(v + 1, n - 1);
|
|
|
|
if (n == 1)
|
|
|
|
return v[0];
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static time_t
|
2006-11-26 05:39:28 +00:00
|
|
|
isodate7(const unsigned char *v)
|
2005-01-02 05:21:15 +00:00
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
int offset;
|
2005-11-06 23:38:01 +00:00
|
|
|
memset(&tm, 0, sizeof(tm));
|
2005-01-02 05:21:15 +00:00
|
|
|
tm.tm_year = v[0];
|
|
|
|
tm.tm_mon = v[1] - 1;
|
|
|
|
tm.tm_mday = v[2];
|
|
|
|
tm.tm_hour = v[3];
|
|
|
|
tm.tm_min = v[4];
|
|
|
|
tm.tm_sec = v[5];
|
2006-11-26 05:39:28 +00:00
|
|
|
/* v[6] is the signed timezone offset, in 1/4-hour increments. */
|
|
|
|
offset = ((const signed char *)v)[6];
|
2005-01-03 05:51:33 +00:00
|
|
|
if (offset > -48 && offset < 52) {
|
|
|
|
tm.tm_hour -= offset / 4;
|
|
|
|
tm.tm_min -= (offset % 4) * 15;
|
|
|
|
}
|
2005-11-06 23:38:01 +00:00
|
|
|
return (time_from_tm(&tm));
|
2005-01-03 05:51:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static time_t
|
2006-11-26 05:39:28 +00:00
|
|
|
isodate17(const unsigned char *v)
|
2005-01-03 05:51:33 +00:00
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
int offset;
|
2005-11-06 23:38:01 +00:00
|
|
|
memset(&tm, 0, sizeof(tm));
|
2005-01-03 05:51:33 +00:00
|
|
|
tm.tm_year = (v[0] - '0') * 1000 + (v[1] - '0') * 100
|
|
|
|
+ (v[2] - '0') * 10 + (v[3] - '0')
|
|
|
|
- 1900;
|
|
|
|
tm.tm_mon = (v[4] - '0') * 10 + (v[5] - '0');
|
|
|
|
tm.tm_mday = (v[6] - '0') * 10 + (v[7] - '0');
|
|
|
|
tm.tm_hour = (v[8] - '0') * 10 + (v[9] - '0');
|
|
|
|
tm.tm_min = (v[10] - '0') * 10 + (v[11] - '0');
|
|
|
|
tm.tm_sec = (v[12] - '0') * 10 + (v[13] - '0');
|
2006-11-26 05:39:28 +00:00
|
|
|
/* v[16] is the signed timezone offset, in 1/4-hour increments. */
|
|
|
|
offset = ((const signed char *)v)[16];
|
2005-01-03 05:51:33 +00:00
|
|
|
if (offset > -48 && offset < 52) {
|
|
|
|
tm.tm_hour -= offset / 4;
|
|
|
|
tm.tm_min -= (offset % 4) * 15;
|
|
|
|
}
|
2005-11-06 23:38:01 +00:00
|
|
|
return (time_from_tm(&tm));
|
|
|
|
}
|
|
|
|
|
|
|
|
static time_t
|
|
|
|
time_from_tm(struct tm *t)
|
|
|
|
{
|
|
|
|
#if HAVE_TIMEGM
|
2008-05-26 17:00:24 +00:00
|
|
|
/* Use platform timegm() if available. */
|
2005-11-06 23:38:01 +00:00
|
|
|
return (timegm(t));
|
2008-02-19 06:02:01 +00:00
|
|
|
#else
|
2008-05-26 17:00:24 +00:00
|
|
|
/* Else use direct calculation using POSIX assumptions. */
|
|
|
|
/* First, fix up tm_yday based on the year/month/day. */
|
|
|
|
mktime(t);
|
|
|
|
/* Then we can compute timegm() from first principles. */
|
|
|
|
return (t->tm_sec + t->tm_min * 60 + t->tm_hour * 3600
|
|
|
|
+ t->tm_yday * 86400 + (t->tm_year - 70) * 31536000
|
|
|
|
+ ((t->tm_year - 69) / 4) * 86400 -
|
|
|
|
((t->tm_year - 1) / 100) * 86400
|
|
|
|
+ ((t->tm_year + 299) / 400) * 86400);
|
2005-11-06 23:38:01 +00:00
|
|
|
#endif
|
2005-01-02 05:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
2005-01-03 05:51:33 +00:00
|
|
|
build_pathname(struct archive_string *as, struct file_info *file)
|
2005-01-02 05:21:15 +00:00
|
|
|
{
|
2005-01-03 05:51:33 +00:00
|
|
|
if (file->parent != NULL && file->parent->name[0] != '\0') {
|
|
|
|
build_pathname(as, file->parent);
|
2005-01-02 05:21:15 +00:00
|
|
|
archive_strcat(as, "/");
|
|
|
|
}
|
2005-01-03 05:51:33 +00:00
|
|
|
if (file->name[0] == '\0')
|
|
|
|
archive_strcat(as, ".");
|
|
|
|
else
|
|
|
|
archive_strcat(as, file->name);
|
2005-01-02 05:21:15 +00:00
|
|
|
return (as->s);
|
|
|
|
}
|
2005-01-03 01:24:13 +00:00
|
|
|
|
2008-12-06 06:50:09 +00:00
|
|
|
#ifdef DEBUG
|
2005-01-03 01:24:13 +00:00
|
|
|
static void
|
2006-11-26 05:39:28 +00:00
|
|
|
dump_isodirrec(FILE *out, const unsigned char *isodirrec)
|
2005-01-03 01:24:13 +00:00
|
|
|
{
|
2006-11-26 05:39:28 +00:00
|
|
|
fprintf(out, " l %d,",
|
|
|
|
toi(isodirrec + DR_length_offset, DR_length_size));
|
|
|
|
fprintf(out, " a %d,",
|
|
|
|
toi(isodirrec + DR_ext_attr_length_offset, DR_ext_attr_length_size));
|
|
|
|
fprintf(out, " ext 0x%x,",
|
|
|
|
toi(isodirrec + DR_extent_offset, DR_extent_size));
|
|
|
|
fprintf(out, " s %d,",
|
|
|
|
toi(isodirrec + DR_size_offset, DR_extent_size));
|
|
|
|
fprintf(out, " f 0x%02x,",
|
|
|
|
toi(isodirrec + DR_flags_offset, DR_flags_size));
|
|
|
|
fprintf(out, " u %d,",
|
|
|
|
toi(isodirrec + DR_file_unit_size_offset, DR_file_unit_size_size));
|
|
|
|
fprintf(out, " ilv %d,",
|
|
|
|
toi(isodirrec + DR_interleave_offset, DR_interleave_size));
|
|
|
|
fprintf(out, " seq %d,",
|
|
|
|
toi(isodirrec + DR_volume_sequence_number_offset, DR_volume_sequence_number_size));
|
|
|
|
fprintf(out, " nl %d:",
|
|
|
|
toi(isodirrec + DR_name_len_offset, DR_name_len_size));
|
|
|
|
fprintf(out, " `%.*s'",
|
|
|
|
toi(isodirrec + DR_name_len_offset, DR_name_len_size), isodirrec + DR_name_offset);
|
2005-01-03 01:24:13 +00:00
|
|
|
}
|
2008-12-06 06:50:09 +00:00
|
|
|
#endif
|