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 enum {
36 TAGID_PRI_VOL = 1,
37 TAGID_ANCHOR = 2,
38 TAGID_VOL = 3,
39 TAGID_IMP_VOL = 4,
40 TAGID_PARTITION = 5,
41 TAGID_LOGVOL = 6,
42 TAGID_UNALLOC_SPACE = 7,
43 TAGID_TERM = 8,
44 TAGID_LOGVOL_INTEGRITY = 9,
45 TAGID_FSD = 256,
46 TAGID_FID = 257,
47 TAGID_FENTRY = 261
48 };
49
50
51 struct desc_tag {
52 uint16_t id;
53 uint16_t descriptor_ver;
54 uint8_t cksum;
55 uint8_t reserved;
56 uint16_t serial_num;
57 uint16_t desc_crc;
58 uint16_t desc_crc_len;
59 uint32_t tag_loc;
60 } __packed;
61
62
63 struct lb_addr {
64 uint32_t lb_num;
65 uint16_t part_num;
66 } __packed;
67
68
69 struct extent_ad {
70 uint32_t len;
71 uint32_t loc;
72 } __packed;
73
74
75 struct short_ad {
76 uint32_t len;
77 uint32_t pos;
78 } __packed;
79
80
81 struct long_ad {
82 uint32_t len;
83 struct lb_addr loc;
84 uint16_t ad_flags;
85 uint32_t ad_id;
86 } __packed;
87
88
89 struct ext_ad {
90 uint32_t ex_len;
91 uint32_t rec_len;
92 uint32_t inf_len;
93 struct lb_addr ex_loc;
94 uint8_t reserved[2];
95 } __packed;
96
97 union icb {
98 struct short_ad s_ad;
99 struct long_ad l_ad;
100 struct ext_ad e_ad;
101 };
102
103
104 struct charspec {
105 uint8_t type;
106 uint8_t inf[63];
107 } __packed;
108
109
110 struct timestamp {
111 uint16_t type_tz;
112 uint16_t year;
113 uint8_t month;
114 uint8_t day;
115 uint8_t hour;
116 uint8_t minute;
117 uint8_t second;
118 uint8_t centisec;
119 uint8_t hund_usec;
120 uint8_t usec;
121 } __packed;
122
123
124 #define UDF_REGID_ID_SIZE 23
125 struct regid {
126 uint8_t flags;
127 uint8_t id[UDF_REGID_ID_SIZE];
128 uint8_t id_suffix[8];
129 } __packed;
130
131
132 struct icb_tag {
133 uint32_t prev_num_dirs;
134 uint16_t strat_type;
135 uint8_t strat_param[2];
136 uint16_t max_num_entries;
137 uint8_t reserved;
138 uint8_t file_type;
139 struct lb_addr parent_icb;
140 uint16_t flags;
141 } __packed;
142
143 #define UDF_ICB_TYPE_VAT_150 0x00
144 #define UDF_ICB_TYPE_DIR 0x04
145 #define UDF_ICB_TYPE_FILE 0x05
146 #define UDF_ICB_TYPE_BLKDEV 0x06
147 #define UDF_ICB_TYPE_CHRDEV 0x07
148 #define UDF_ICB_TYPE_FIFO 0x09
149 #define UDF_ICB_TYPE_SOCKET 0x0a
150 #define UDF_ICB_TYPE_SYMLINK 0x0c
151 #define UDF_ICB_TYPE_VAT_250 0xf8
152 #define UDF_ICB_TAG_FLAGS_SETUID 0x40
153 #define UDF_ICB_TAG_FLAGS_SETGID 0x80
154 #define UDF_ICB_TAG_FLAGS_STICKY 0x100
155
156
157 struct anchor_vdp {
158 struct desc_tag tag;
159 struct extent_ad main_vds_ex;
160 struct extent_ad reserve_vds_ex;
161 } __packed;
162
163
164 struct vol_desc_ptr {
165 struct desc_tag tag;
166 uint32_t vds_number;
167 struct extent_ad next_vds_ex;
168 } __packed;
169
170
171 struct pri_vol_desc {
172 struct desc_tag tag;
173 uint32_t seq_num;
174 uint32_t pdv_num;
175 char vol_id[32];
176 uint16_t vds_num;
177 uint16_t max_vol_seq;
178 uint16_t ichg_lvl;
179 uint16_t max_ichg_lvl;
180 uint32_t charset_list;
181 uint32_t max_charset_list;
182 char volset_id[128];
183 struct charspec desc_charset;
184 struct charspec explanatory_charset;
185 struct extent_ad vol_abstract;
186 struct extent_ad vol_copyright;
187 struct regid app_id;
188 struct timestamp time;
189 struct regid imp_id;
190 uint8_t imp_use[64];
191 uint32_t prev_vds_lov;
192 uint16_t flags;
193 uint8_t reserved[22];
194 } __packed;
195
196
197 struct logvol_desc {
198 struct desc_tag tag;
199 uint32_t seq_num;
200 struct charspec desc_charset;
201 char logvol_id[128];
202 uint32_t lb_size;
203 struct regid domain_id;
204 union {
205 struct long_ad fsd_loc;
206 uint8_t logvol_content_use[16];
207 } _lvd_use;
208 uint32_t mt_l;
209 uint32_t n_pm;
210 struct regid imp_id;
211 uint8_t imp_use[128];
212 struct extent_ad integrity_seq_id;
213 uint8_t maps[1];
214 } __packed;
215
216
217 struct part_map_1 {
218 uint8_t type;
219 uint8_t len;
220 uint16_t vol_seq_num;
221 uint16_t part_num;
222 } __packed;
223
224 #define UDF_PMAP_TYPE1_SIZE 6
225
226
227 struct part_map_2 {
228 uint8_t type;
229 uint8_t len;
230 uint8_t part_id[62];
231 } __packed;
232
233 #define UDF_PMAP_TYPE2_SIZE 64
234
235
236 struct part_map_virt {
237 uint8_t type;
238 uint8_t len;
239 uint8_t reserved[2];
240 struct regid id;
241 uint16_t vol_seq_num;
242 uint16_t part_num;
243 uint8_t reserved1[24];
244 } __packed;
245
246
247 struct part_map_spare {
248 uint8_t type;
249 uint8_t len;
250 uint8_t reserved[2];
251 struct regid id;
252 uint16_t vol_seq_num;
253 uint16_t part_num;
254 uint16_t packet_len;
255 uint8_t n_st;
256 uint8_t reserved1;
257 uint32_t st_size;
258 uint32_t st_loc[1];
259 } __packed;
260
261 union udf_pmap {
262 struct part_map_1 pm1;
263 struct part_map_2 pm2;
264 struct part_map_virt pmv;
265 struct part_map_spare pms;
266 };
267
268
269 struct spare_map_entry {
270 uint32_t org;
271 uint32_t map;
272 } __packed;
273
274
275 struct udf_sparing_table {
276 struct desc_tag tag;
277 struct regid id;
278 uint16_t rt_l;
279 uint8_t reserved[2];
280 uint32_t seq_num;
281 struct spare_map_entry entries[1];
282 } __packed;
283
284
285 struct part_desc {
286 struct desc_tag tag;
287 uint32_t seq_num;
288 uint16_t flags;
289 uint16_t part_num;
290 struct regid contents;
291 uint8_t contents_use[128];
292 uint32_t access_type;
293 uint32_t start_loc;
294 uint32_t part_len;
295 struct regid imp_id;
296 uint8_t imp_use[128];
297 uint8_t reserved[156];
298 } __packed;
299
300
301 struct fileset_desc {
302 struct desc_tag tag;
303 struct timestamp time;
304 uint16_t ichg_lvl;
305 uint16_t max_ichg_lvl;
306 uint32_t charset_list;
307 uint32_t max_charset_list;
308 uint32_t fileset_num;
309 uint32_t fileset_desc_num;
310 struct charspec logvol_id_charset;
311 char logvol_id[128];
312 struct charspec fileset_charset;
313 char fileset_id[32];
314 char copyright_file_id[32];
315 char abstract_file_id[32];
316 struct long_ad rootdir_icb;
317 struct regid domain_id;
318 struct long_ad next_ex;
319 struct long_ad streamdir_icb;
320 uint8_t reserved[32];
321 } __packed;
322
323
324 struct fileid_desc {
325 struct desc_tag tag;
326 uint16_t file_num;
327 uint8_t file_char;
328 uint8_t l_fi;
329 struct long_ad icb;
330 uint16_t l_iu;
331 uint8_t data[1];
332 } __packed;
333 #define UDF_FID_SIZE 38
334 #define UDF_FILE_CHAR_VIS (1 << 0)
335 #define UDF_FILE_CHAR_DIR (1 << 1)
336 #define UDF_FILE_CHAR_DEL (1 << 2)
337 #define UDF_FILE_CHAR_PAR (1 << 3)
338 #define UDF_FILE_CHAR_META (1 << 4)
339
340
341 struct file_entry {
342 struct desc_tag tag;
343 struct icb_tag icbtag;
344 uint32_t uid;
345 uint32_t gid;
346 uint32_t perm;
347 uint16_t link_cnt;
348 uint8_t rec_format;
349 uint8_t rec_disp_attr;
350 uint32_t rec_len;
351 uint64_t inf_len;
352 uint64_t logblks_rec;
353 struct timestamp atime;
354 struct timestamp mtime;
355 struct timestamp attrtime;
356 uint32_t ckpoint;
357 struct long_ad ex_attr_icb;
358 struct regid imp_id;
359 uint64_t unique_id;
360 uint32_t l_ea;
361 uint32_t l_ad;
362 uint8_t data[1];
363 } __packed;
364 #define UDF_FENTRY_SIZE 176
365 #define UDF_FENTRY_PERM_USER_MASK 0x07
366 #define UDF_FENTRY_PERM_GRP_MASK 0xE0
367 #define UDF_FENTRY_PERM_OWNER_MASK 0x1C00
368
369 union dscrptr {
370 struct desc_tag tag;
371 struct anchor_vdp avdp;
372 struct vol_desc_ptr vdp;
373 struct pri_vol_desc pvd;
374 struct logvol_desc lvd;
375 struct part_desc pd;
376 struct fileset_desc fsd;
377 struct fileid_desc fid;
378 struct file_entry fe;
379 };
380
381
382
383 #define GETICB(ad_type, fentry, offset) \
384 (struct ad_type *)&fentry->data[offset]
385
386 #define GETICBLEN(ad_type, icb) letoh32(((struct ad_type *)(icb))->len)