1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
/* $Id: fsw_iso9660.h 29125 2010-05-06 09:43:05Z vboxsync $ */
/** @file
* fsw_iso9660.h - ISO9660 file system driver header.
*/
/*-
* Copyright (c) 2006 Christoph Pfisterer
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * 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.
*
* * Neither the name of Christoph Pfisterer nor the names of the
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "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 COPYRIGHT
* OWNER OR CONTRIBUTORS 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.
*/
#ifndef _FSW_ISO9660_H_
#define _FSW_ISO9660_H_
#define VOLSTRUCTNAME fsw_iso9660_volume
#define DNODESTRUCTNAME fsw_iso9660_dnode
#include "fsw_core.h"
//! Block size for ISO9660 volumes.
#define ISO9660_BLOCKSIZE 2048
#define ISO9660_BLOCKSIZE_BITS 11
//! Block number where the ISO9660 superblock resides.
#define ISO9660_SUPERBLOCK_BLOCKNO 16
//Slice - we already have shifted blockIO by 16
//but we should use ParentBlockIo
//#define ISO9660_SUPERBLOCK_BLOCKNO 0
#pragma pack(1)
typedef struct {
fsw_u16 lsb;
fsw_u16 msb;
} iso9660_u16;
typedef struct {
fsw_u32 lsb;
fsw_u32 msb;
} iso9660_u32;
#define ISOINT(lsbmsbvalue) ((lsbmsbvalue).lsb)
struct iso9660_dirrec {
fsw_u8 dirrec_length;
fsw_u8 ear_length;
iso9660_u32 extent_location;
iso9660_u32 data_length;
fsw_u8 recording_datetime[7];
fsw_u8 file_flags;
fsw_u8 file_unit_size;
fsw_u8 interleave_gap_size;
iso9660_u16 volume_sequence_number;
fsw_u8 file_identifier_length;
char file_identifier[1];
};
//#if sizeof(struct fsw_iso9660_dirrec) != 34
//#fail Structure fsw_iso9660_dirrec has wrong size
//#endif
struct iso9660_volume_descriptor {
fsw_u8 volume_descriptor_type;
char standard_identifier[5];
fsw_u8 volume_descriptor_version;
};
struct iso9660_primary_volume_descriptor {
fsw_u8 volume_descriptor_type;
char standard_identifier[5];
fsw_u8 volume_descriptor_version;
fsw_u8 unused1;
char system_identifier[32];
char volume_identifier[32];
fsw_u8 unused2[8];
iso9660_u32 volume_space_size;
fsw_u8 unused3[4];
fsw_u8 escape[3];
fsw_u8 unused4[25];
iso9660_u16 volume_set_size;
iso9660_u16 volume_sequence_number;
iso9660_u16 logical_block_size;
iso9660_u32 path_table_size;
fsw_u32 location_type_l_path_table;
fsw_u32 location_optional_type_l_path_table;
fsw_u32 location_type_m_path_table;
fsw_u32 location_optional_type_m_path_table;
struct iso9660_dirrec root_directory;
char volume_set_identifier[128];
char publisher_identifier[128];
char data_preparer_identifier[128];
char application_identifier[128];
char copyright_file_identifier[37];
char abstract_file_identifier[37];
char bibliographic_file_identifier[37];
char volume_creation_datetime[17];
char volume_modification_datetime[17];
char volume_expiration_datetime[17];
char volume_effective_datetime[17];
fsw_u8 file_structure_version;
fsw_u8 reserved1;
fsw_u8 application_use[512];
fsw_u8 reserved2[653];
};
//#if sizeof(struct fsw_iso9660_volume_descriptor) != 2048
//#fail Structure fsw_iso9660_volume_descriptor has wrong size
//#endif
#pragma pack()
struct iso9660_dirrec_buffer {
fsw_u32 ino;
struct fsw_string name;
struct iso9660_dirrec dirrec;
char dirrec_buffer[222];
};
/**
* ISO9660: Volume structure with ISO9660-specific data.
*/
struct fsw_iso9660_volume {
struct fsw_volume g; //!< Generic volume structure
/*Note: don't move g!*/
int fJoliet;
/*Joliet specific fields*/
int fRockRidge;
/*Rock Ridge specific fields*/
int rr_susp_skip;
struct iso9660_primary_volume_descriptor *primary_voldesc; //!< Full Primary Volume Descriptor
};
/**
* ISO9660: Dnode structure with ISO9660-specific data.
*/
struct fsw_iso9660_dnode {
struct fsw_dnode g; //!< Generic dnode structure
struct iso9660_dirrec dirrec; //!< Fixed part of the directory record (i.e. w/o name)
};
struct fsw_rock_ridge_susp_entry
{
fsw_u8 sig[2];
fsw_u8 len;
fsw_u8 ver;
};
struct fsw_rock_ridge_susp_sp
{
struct fsw_rock_ridge_susp_entry e;
fsw_u8 magic[2];
fsw_u8 skip;
};
struct fsw_rock_ridge_susp_nm
{
struct fsw_rock_ridge_susp_entry e;
fsw_u8 flags;
fsw_u8 name[1];
};
#define RR_NM_CONT (1<<0)
#define RR_NM_CURR (1<<1)
#define RR_NM_PARE (1<<2)
union fsw_rock_ridge_susp_ce
{
struct X{
struct fsw_rock_ridge_susp_entry e;
iso9660_u32 block_loc;
iso9660_u32 offset;
iso9660_u32 len;
} X;
fsw_u8 raw[28];
};
#endif
|