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
|
/*
* Creation Date: <2000/09/03 23:04:27 samuel>
* Time-stamp: <2000/09/04 01:23:55 samuel>
*
* <hfs_mdb.h>
*
* HFS Master Directory Block (MDB)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation
*
*/
#ifndef _H_HFS_MDB
#define _H_HFS_MDB
#include "libc/byteorder.h"
typedef unsigned char hfs_char_t;
typedef unsigned char hfs_ushort_t[2];
typedef unsigned char hfs_uint_t[4];
static inline unsigned short hfs_get_ushort(hfs_ushort_t addr)
{
return __be16_to_cpu(*((unsigned short *)(addr)));
}
static inline unsigned int hfs_get_uint(hfs_uint_t addr)
{
return __be32_to_cpu(*((unsigned int *)(addr)));
}
/*
* The HFS Master Directory Block (MDB).
*
* Also known as the Volume Information Block (VIB), this structure is
* the HFS equivalent of a superblock.
*
* Reference: _Inside Macintosh: Files_ pages 2-59 through 2-62
*
* modified for HFS Extended
*/
typedef struct hfs_mdb {
hfs_ushort_t drSigWord; /* Signature word indicating fs type */
hfs_uint_t drCrDate; /* fs creation date/time */
hfs_uint_t drLsMod; /* fs modification date/time */
hfs_ushort_t drAtrb; /* fs attributes */
hfs_ushort_t drNmFls; /* number of files in root directory */
hfs_ushort_t drVBMSt; /* location (in 512-byte blocks)
of the volume bitmap */
hfs_ushort_t drAllocPtr; /* location (in allocation blocks)
to begin next allocation search */
hfs_ushort_t drNmAlBlks; /* number of allocation blocks */
hfs_uint_t drAlBlkSiz; /* bytes in an allocation block */
hfs_uint_t drClpSiz; /* clumpsize, the number of bytes to
allocate when extending a file */
hfs_ushort_t drAlBlSt; /* location (in 512-byte blocks)
of the first allocation block */
hfs_uint_t drNxtCNID; /* CNID to assign to the next
file or directory created */
hfs_ushort_t drFreeBks; /* number of free allocation blocks */
hfs_char_t drVN[28]; /* the volume label */
hfs_uint_t drVolBkUp; /* fs backup date/time */
hfs_ushort_t drVSeqNum; /* backup sequence number */
hfs_uint_t drWrCnt; /* fs write count */
hfs_uint_t drXTClpSiz; /* clumpsize for the extents B-tree */
hfs_uint_t drCTClpSiz; /* clumpsize for the catalog B-tree */
hfs_ushort_t drNmRtDirs; /* number of directories in
the root directory */
hfs_uint_t drFilCnt; /* number of files in the fs */
hfs_uint_t drDirCnt; /* number of directories in the fs */
hfs_char_t drFndrInfo[32]; /* data used by the Finder */
hfs_ushort_t drEmbedSigWord; /* embedded volume signature */
hfs_uint_t drEmbedExtent; /* starting block number (xdrStABN)
and number of allocation blocks
(xdrNumABlks) occupied by embedded
volume */
hfs_uint_t drXTFlSize; /* bytes in the extents B-tree */
hfs_char_t drXTExtRec[12]; /* extents B-tree's first 3 extents */
hfs_uint_t drCTFlSize; /* bytes in the catalog B-tree */
hfs_char_t drCTExtRec[12]; /* catalog B-tree's first 3 extents */
} hfs_mdb_t;
#define HFS_PLUS_SIGNATURE 0x482b /* 'H+' */
#define HFS_SIGNATURE 0x4244 /* HFS / embedded HFS+ */
typedef struct hfs_plus_mdb
{
ushort signature;
ushort version;
uint attributes;
uint lastMountedVersion;
uint reserved;
uint createDate;
uint modifyDate;
uint backupDate;
uint checkedDate;
uint fileCount;
uint folderCount;
uint blockSize;
uint totalBlocks;
uint freeBlocks;
uint nextAllocation;
uint rsrcClumpSize;
uint dataClumpSize;
/* ... there are more fields here ... */
} hfs_plus_mdb_t;
#endif /* _H_HFS_MDB */
|