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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
|
/*
* linux/fs/hfs/hfs.h
*
* Copyright (C) 1995-1997 Paul H. Hargrove
* This file may be distributed under the terms of the GNU Public License.
*
* "XXX" in a comment is a note to myself to consider changing something.
*/
#ifndef _HFS_H
#define _HFS_H
#include <linux/hfs_sysdep.h>
#define HFS_NEW(X) ((X) = hfs_malloc(sizeof(*(X))))
#define HFS_DELETE(X) do { hfs_free((X), sizeof(*(X))); (X) = NULL; } \
while (0)
/* offsets to various blocks */
#define HFS_DD_BLK 0 /* Driver Descriptor block */
#define HFS_PMAP_BLK 1 /* First block of partition map */
#define HFS_MDB_BLK 2 /* Block (w/i partition) of MDB */
/* magic numbers for various disk blocks */
#define HFS_DRVR_DESC_MAGIC 0x4552 /* "ER": driver descriptor map */
#define HFS_OLD_PMAP_MAGIC 0x5453 /* "TS": old-type partition map */
#define HFS_NEW_PMAP_MAGIC 0x504D /* "PM": new-type partition map */
#define HFS_SUPER_MAGIC 0x4244 /* "BD": HFS MDB (super block) */
#define HFS_MFS_SUPER_MAGIC 0xD2D7 /* MFS MDB (super block) */
/* magic numbers for various internal structures */
#define HFS_FILE_MAGIC 0x4801
#define HFS_DIR_MAGIC 0x4802
#define HFS_MDB_MAGIC 0x4803
#define HFS_EXT_MAGIC 0x4804 /* XXX currently unused */
#define HFS_BREC_MAGIC 0x4811 /* XXX currently unused */
#define HFS_BTREE_MAGIC 0x4812
#define HFS_BNODE_MAGIC 0x4813
/* various FIXED size parameters */
#define HFS_SECTOR_SIZE 512 /* size of an HFS sector */
#define HFS_SECTOR_SIZE_BITS 9 /* log_2(HFS_SECTOR_SIZE) */
#define HFS_NAMELEN 31 /* maximum length of an HFS filename */
#define HFS_NAMEMAX (3*31) /* max size of ENCODED filename */
#define HFS_BM_MAXBLOCKS (16) /* max number of bitmap blocks */
#define HFS_BM_BPB (8*HFS_SECTOR_SIZE) /* number of bits per bitmap block */
#define HFS_MAX_VALENCE 32767U
#define HFS_FORK_MAX (0x7FFFFFFF)
/* Meanings of the drAtrb field of the MDB,
* Reference: _Inside Macintosh: Files_ p. 2-61
*/
#define HFS_SB_ATTRIB_HLOCK 0x0080
#define HFS_SB_ATTRIB_CLEAN 0x0100
#define HFS_SB_ATTRIB_SPARED 0x0200
#define HFS_SB_ATTRIB_SLOCK 0x8000
/* 2**16 - 1 */
#define HFS_USHRT_MAX 65535
/* Some special File ID numbers */
#define HFS_POR_CNID 1 /* Parent Of the Root */
#define HFS_ROOT_CNID 2 /* ROOT directory */
#define HFS_EXT_CNID 3 /* EXTents B-tree */
#define HFS_CAT_CNID 4 /* CATalog B-tree */
#define HFS_BAD_CNID 5 /* BAD blocks file */
#define HFS_ALLOC_CNID 6 /* ALLOCation file (HFS+) */
#define HFS_START_CNID 7 /* STARTup file (HFS+) */
#define HFS_ATTR_CNID 8 /* ATTRibutes file (HFS+) */
#define HFS_EXCH_CNID 15 /* ExchangeFiles temp id */
/* values for hfs_cat_rec.cdrType */
#define HFS_CDR_DIR 0x01 /* folder (directory) */
#define HFS_CDR_FIL 0x02 /* file */
#define HFS_CDR_THD 0x03 /* folder (directory) thread */
#define HFS_CDR_FTH 0x04 /* file thread */
/* legal values for hfs_ext_key.FkType and hfs_file.fork */
#define HFS_FK_DATA 0x00
#define HFS_FK_RSRC 0xFF
/* bits in hfs_fil_entry.Flags */
#define HFS_FIL_LOCK 0x01 /* locked */
#define HFS_FIL_THD 0x02 /* file thread */
#define HFS_FIL_DOPEN 0x04 /* data fork open */
#define HFS_FIL_ROPEN 0x08 /* resource fork open */
#define HFS_FIL_DIR 0x10 /* directory (always clear) */
#define HFS_FIL_RSRV1 0x20 /* reserved */
#define HFS_FIL_NOCOPY 0x40 /* copy-protected file */
#define HFS_FIL_USED 0x80 /* open */
/* bits in hfs_dir_entry.Flags. dirflags is 16 bits. */
#define HFS_DIR_LOCK 0x01 /* locked */
#define HFS_DIR_THD 0x02 /* directory thread */
#define HFS_DIR_INEXPFOLDER 0x04 /* in a shared area */
#define HFS_DIR_MOUNTED 0x08 /* mounted */
#define HFS_DIR_DIR 0x10 /* directory (always set) */
#define HFS_DIR_EXPFOLDER 0x20 /* share point */
#define HFS_DIR_RSRV1 0x40 /* reserved */
#define HFS_DIR_RSRV2 0x80 /* reserved */
/* Access types used when requesting access to a B-node */
#define HFS_LOCK_NONE 0x0000 /* Illegal */
#define HFS_LOCK_READ 0x0001 /* read-only access */
#define HFS_LOCK_RESRV 0x0002 /* might potentially modify */
#define HFS_LOCK_WRITE 0x0003 /* will modify now (exclusive access) */
#define HFS_LOCK_MASK 0x000f
/* Flags field of the hfs_path_elem */
#define HFS_BPATH_FIRST 0x0100
#define HFS_BPATH_OVERFLOW 0x0200
#define HFS_BPATH_UNDERFLOW 0x0400
#define HFS_BPATH_MASK 0x0f00
/* Flags for hfs_bfind() */
#define HFS_BFIND_EXACT 0x0010
#define HFS_BFIND_LOCK 0x0020
/* Modes for hfs_bfind() */
#define HFS_BFIND_WRITE (HFS_LOCK_RESRV|HFS_BFIND_EXACT|HFS_BFIND_LOCK)
#define HFS_BFIND_READ_EQ (HFS_LOCK_READ|HFS_BFIND_EXACT)
#define HFS_BFIND_READ_LE (HFS_LOCK_READ)
#define HFS_BFIND_INSERT (HFS_LOCK_RESRV|HFS_BPATH_FIRST|HFS_BPATH_OVERFLOW)
#define HFS_BFIND_DELETE \
(HFS_LOCK_RESRV|HFS_BFIND_EXACT|HFS_BPATH_FIRST|HFS_BPATH_UNDERFLOW)
/*======== HFS structures as they appear on the disk ========*/
/* Pascal-style string of up to 31 characters */
struct hfs_name {
hfs_byte_t Len;
hfs_byte_t Name[31];
} __attribute__((packed));
typedef struct {
hfs_word_t v;
hfs_word_t h;
} hfs_point_t;
typedef struct {
hfs_word_t top;
hfs_word_t left;
hfs_word_t bottom;
hfs_word_t right;
} hfs_rect_t;
typedef struct {
hfs_lword_t fdType;
hfs_lword_t fdCreator;
hfs_word_t fdFlags;
hfs_point_t fdLocation;
hfs_word_t fdFldr;
} __attribute__((packed)) hfs_finfo_t;
typedef struct {
hfs_word_t fdIconID;
hfs_byte_t fdUnused[8];
hfs_word_t fdComment;
hfs_lword_t fdPutAway;
} __attribute__((packed)) hfs_fxinfo_t;
typedef struct {
hfs_rect_t frRect;
hfs_word_t frFlags;
hfs_point_t frLocation;
hfs_word_t frView;
} __attribute__((packed)) hfs_dinfo_t;
typedef struct {
hfs_point_t frScroll;
hfs_lword_t frOpenChain;
hfs_word_t frUnused;
hfs_word_t frComment;
hfs_lword_t frPutAway;
} __attribute__((packed)) hfs_dxinfo_t;
union hfs_finder_info {
struct {
hfs_finfo_t finfo;
hfs_fxinfo_t fxinfo;
} file;
struct {
hfs_dinfo_t dinfo;
hfs_dxinfo_t dxinfo;
} dir;
};
/* A btree record key on disk */
struct hfs_bkey {
hfs_byte_t KeyLen; /* number of bytes in the key */
hfs_byte_t value[1]; /* (KeyLen) bytes of key */
} __attribute__((packed));
/* Cast to a pointer to a generic bkey */
#define HFS_BKEY(X) (((void)((X)->KeyLen)), ((struct hfs_bkey *)(X)))
/* The key used in the catalog b-tree: */
struct hfs_cat_key {
hfs_byte_t KeyLen; /* number of bytes in the key */
hfs_byte_t Resrv1; /* padding */
hfs_lword_t ParID; /* CNID of the parent dir */
struct hfs_name CName; /* The filename of the entry */
} __attribute__((packed));
/* The key used in the extents b-tree: */
struct hfs_ext_key {
hfs_byte_t KeyLen; /* number of bytes in the key */
hfs_byte_t FkType; /* HFS_FK_{DATA,RSRC} */
hfs_lword_t FNum; /* The File ID of the file */
hfs_word_t FABN; /* allocation blocks number*/
} __attribute__((packed));
/*======== Data structures kept in memory ========*/
/*
* struct hfs_mdb
*
* The fields from the MDB of an HFS filesystem
*/
struct hfs_mdb {
int magic; /* A magic number */
unsigned char vname[28]; /* The volume name */
hfs_sysmdb sys_mdb; /* superblock */
hfs_buffer buf; /* The hfs_buffer
holding the real
superblock (aka VIB
or MDB) */
hfs_buffer alt_buf; /* The hfs_buffer holding
the alternate superblock */
hfs_buffer bitmap[16]; /* The hfs_buffer holding the
allocation bitmap */
struct hfs_btree * ext_tree; /* Information about
the extents b-tree */
struct hfs_btree * cat_tree; /* Information about
the catalog b-tree */
hfs_u32 file_count; /* The number of
regular files in
the filesystem */
hfs_u32 dir_count; /* The number of
directories in the
filesystem */
hfs_u32 next_id; /* The next available
file id number */
hfs_u32 clumpablks; /* The number of allocation
blocks to try to add when
extending a file */
hfs_u32 write_count; /* The number of MDB
writes (a sort of
version number) */
hfs_u32 fs_start; /* The first 512-byte
block represented
in the bitmap */
hfs_u32 create_date; /* In network byte-order */
hfs_u32 modify_date; /* In network byte-order */
hfs_u32 backup_date; /* In network byte-order */
hfs_u16 root_files; /* The number of
regular
(non-directory)
files in the root
directory */
hfs_u16 root_dirs; /* The number of
directories in the
root directory */
hfs_u16 fs_ablocks; /* The number of
allocation blocks
in the filesystem */
hfs_u16 free_ablocks; /* The number of unused
allocation blocks
in the filesystem */
hfs_u32 alloc_blksz; /* The number of
512-byte blocks per
"allocation block" */
hfs_u16 attrib; /* Attribute word */
hfs_wait_queue rename_wait;
int rename_lock;
hfs_wait_queue bitmap_wait;
int bitmap_lock;
struct list_head entry_dirty;
};
/*
* struct hfs_extent
*
* The offset to allocation block mapping for a given file is
* contained in a series of these structures. Each (struct
* hfs_extent) records up to three runs of contiguous allocation
* blocks. An allocation block is a contiguous group of physical
* blocks.
*/
struct hfs_extent {
int magic; /* A magic number */
unsigned short start; /* Where in the file this record
begins (in allocation blocks) */
unsigned short end; /* Where in the file this record
ends (in allocation blocks) */
unsigned short block[3]; /* The allocation block on disk which
begins this extent */
unsigned short length[3]; /* The number of allocation blocks
in this extent */
struct hfs_extent *next; /* Next extent record for this file */
struct hfs_extent *prev; /* Previous extent record for this file */
int count; /* Number of times it is used */
};
/*
* struct hfs_dir
*
* This structure holds information specific
* to a directory in an HFS filesystem.
*/
struct hfs_dir {
int magic; /* A magic number */
hfs_u16 flags;
hfs_u16 dirs; /* Number of directories in this one */
hfs_u16 files; /* Number of files in this directory */
int readers;
hfs_wait_queue read_wait;
int writers;
hfs_wait_queue write_wait;
};
/*
* struct hfs_fork
*
* This structure holds the information
* specific to a single fork of a file.
*/
struct hfs_fork {
struct hfs_cat_entry *entry; /* The file this fork is part of */
struct hfs_extent first; /* The first extent record for
this fork */
struct hfs_extent *cache; /* The most-recently accessed
extent record for this fork */
hfs_u32 lsize; /* The logical size in bytes */
hfs_u32 psize; /* The phys size (512-byte blocks) */
hfs_u8 fork; /* Which fork is this? */
};
/*
* struct hfs_file
*
* This structure holds information specific
* to a file in an HFS filesystem.
*/
struct hfs_file {
int magic;
struct hfs_fork data_fork;
struct hfs_fork rsrc_fork;
hfs_u16 clumpablks;
hfs_u8 flags;
};
/*
* struct hfs_file
*
* This structure holds information about a
* file or directory in an HFS filesystem.
*
* 'wait' must remain 1st and 'hash' 2nd since we do some pointer arithmetic.
*/
struct hfs_cat_entry {
hfs_wait_queue wait;
struct list_head hash;
struct list_head list;
struct hfs_mdb *mdb;
hfs_sysentry sys_entry;
struct hfs_cat_key key;
union hfs_finder_info info;
hfs_u32 cnid; /* In network byte-order */
hfs_u32 create_date; /* In network byte-order */
hfs_u32 modify_date; /* In network byte-order */
hfs_u32 backup_date; /* In network byte-order */
unsigned short count;
unsigned long state;
hfs_u8 type;
union {
struct hfs_dir dir;
struct hfs_file file;
} u;
};
/* hfs entry state bits */
#define HFS_DIRTY 1
#define HFS_KEYDIRTY 2
#define HFS_LOCK 4
#define HFS_DELETED 8
/*
* struct hfs_bnode_ref
*
* A pointer to a (struct hfs_bnode) and the type of lock held on it.
*/
struct hfs_bnode_ref {
struct hfs_bnode *bn;
int lock_type;
};
/*
* struct hfs_belem
*
* An element of the path from the root of a B-tree to a leaf.
* Includes the reference to a (struct hfs_bnode), the index of
* the appropriate record in that node, and some flags.
*/
struct hfs_belem {
struct hfs_bnode_ref bnr;
int record;
int flags;
};
/*
* struct hfs_brec
*
* The structure returned by hfs_bfind() to describe the requested record.
*/
struct hfs_brec {
int keep_flags;
struct hfs_btree *tree;
struct hfs_belem *top;
struct hfs_belem *bottom;
struct hfs_belem elem[9];
struct hfs_bkey *key;
void *data; /* The actual data */
};
/*================ Function prototypes ================*/
/* bdelete.c */
extern int hfs_bdelete(struct hfs_btree *, const struct hfs_bkey *);
/* bfind.c */
extern void hfs_brec_relse(struct hfs_brec *, struct hfs_belem *);
extern int hfs_bsucc(struct hfs_brec *, int);
extern int hfs_bfind(struct hfs_brec *, struct hfs_btree *,
const struct hfs_bkey *, int);
/* binsert.c */
extern int hfs_binsert(struct hfs_btree *, const struct hfs_bkey *,
const void *, hfs_u16);
/* bitmap.c */
extern hfs_u16 hfs_vbm_count_free(const struct hfs_mdb *, hfs_u16);
extern hfs_u16 hfs_vbm_search_free(const struct hfs_mdb *, hfs_u16 *);
extern int hfs_set_vbm_bits(struct hfs_mdb *, hfs_u16, hfs_u16);
extern int hfs_clear_vbm_bits(struct hfs_mdb *, hfs_u16, hfs_u16);
/* bitops.c */
extern hfs_u32 hfs_find_zero_bit(const hfs_u32 *, hfs_u32, hfs_u32);
extern hfs_u32 hfs_count_zero_bits(const hfs_u32 *, hfs_u32, hfs_u32);
/* btree.c */
extern struct hfs_btree *hfs_btree_init(struct hfs_mdb *, ino_t,
hfs_byte_t *, hfs_u32, hfs_u32);
extern void hfs_btree_free(struct hfs_btree *);
extern void hfs_btree_commit(struct hfs_btree *, hfs_byte_t *, hfs_lword_t);
/* catalog.c */
extern void hfs_cat_init(void);
extern void hfs_cat_put(struct hfs_cat_entry *);
extern void hfs_cat_mark_dirty(struct hfs_cat_entry *);
extern struct hfs_cat_entry *hfs_cat_get(struct hfs_mdb *,
const struct hfs_cat_key *);
extern void hfs_cat_invalidate(struct hfs_mdb *);
extern void hfs_cat_commit(struct hfs_mdb *);
extern void hfs_cat_free(void);
extern int hfs_cat_compare(const struct hfs_cat_key *,
const struct hfs_cat_key *);
extern void hfs_cat_build_key(hfs_u32, const struct hfs_name *,
struct hfs_cat_key *);
extern struct hfs_cat_entry *hfs_cat_parent(struct hfs_cat_entry *);
extern int hfs_cat_open(struct hfs_cat_entry *, struct hfs_brec *);
extern int hfs_cat_next(struct hfs_cat_entry *, struct hfs_brec *,
hfs_u16, hfs_u32 *, hfs_u8 *);
extern void hfs_cat_close(struct hfs_cat_entry *, struct hfs_brec *);
extern int hfs_cat_create(struct hfs_cat_entry *, struct hfs_cat_key *,
hfs_u8, hfs_u32, hfs_u32, struct hfs_cat_entry **);
extern int hfs_cat_mkdir(struct hfs_cat_entry *, struct hfs_cat_key *,
struct hfs_cat_entry **);
extern int hfs_cat_delete(struct hfs_cat_entry *, struct hfs_cat_entry *, int);
extern int hfs_cat_move(struct hfs_cat_entry *, struct hfs_cat_entry *,
struct hfs_cat_entry *, struct hfs_cat_key *,
struct hfs_cat_entry **);
/* extent.c */
extern int hfs_ext_compare(const struct hfs_ext_key *,
const struct hfs_ext_key *);
extern void hfs_extent_in(struct hfs_fork *, const hfs_byte_t *);
extern void hfs_extent_out(const struct hfs_fork *, hfs_byte_t *);
extern int hfs_extent_map(struct hfs_fork *, int, int);
extern void hfs_extent_adj(struct hfs_fork *);
extern void hfs_extent_free(struct hfs_fork *);
/* file.c */
extern int hfs_get_block(struct inode *, long, struct buffer_head *, int);
/* mdb.c */
extern struct hfs_mdb *hfs_mdb_get(hfs_sysmdb, int, hfs_s32);
extern void hfs_mdb_commit(struct hfs_mdb *, int);
extern void hfs_mdb_put(struct hfs_mdb *, int);
/* part_tbl.c */
extern int hfs_part_find(hfs_sysmdb, int, int, hfs_s32 *, hfs_s32 *);
/* string.c */
extern unsigned int hfs_strhash(const unsigned char *, unsigned int);
extern int hfs_strcmp(const unsigned char *, unsigned int,
const unsigned char *, unsigned int);
extern int hfs_streq(const unsigned char *, unsigned int,
const unsigned char *, unsigned int);
extern void hfs_tolower(unsigned char *, int);
static __inline__ struct dentry
*hfs_lookup_dentry(struct dentry *base, const char *name, const int len)
{
struct qstr this;
this.name = name;
this.len = len;
this.hash = hfs_strhash(name, len);
return d_lookup(base, &this);
}
/* drop a dentry for one of the special directories.
* it's in the form of base/name/dentry. */
static __inline__ void hfs_drop_special(struct dentry *base,
const struct hfs_name *name,
struct dentry *dentry)
{
struct dentry *dparent, *de;
dparent = hfs_lookup_dentry(base, name->Name, name->Len);
if (dparent) {
de = hfs_lookup_dentry(dparent, dentry->d_name.name,
dentry->d_name.len);
if (de) {
if (!de->d_inode)
d_drop(de);
dput(de);
}
dput(dparent);
}
}
extern struct dentry_operations hfs_dentry_operations;
#endif
|