hfsplus_fs.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. /*
  2. * linux/include/linux/hfsplus_fs.h
  3. *
  4. * Copyright (C) 1999
  5. * Brad Boyer (flar@pants.nu)
  6. * (C) 2003 Ardis Technologies <roman@ardistech.com>
  7. *
  8. */
  9. #ifndef _LINUX_HFSPLUS_FS_H
  10. #define _LINUX_HFSPLUS_FS_H
  11. #include <linux/fs.h>
  12. #include <linux/mutex.h>
  13. #include <linux/buffer_head.h>
  14. #include "hfsplus_raw.h"
  15. #define DBG_BNODE_REFS 0x00000001
  16. #define DBG_BNODE_MOD 0x00000002
  17. #define DBG_CAT_MOD 0x00000004
  18. #define DBG_INODE 0x00000008
  19. #define DBG_SUPER 0x00000010
  20. #define DBG_EXTENT 0x00000020
  21. #define DBG_BITMAP 0x00000040
  22. //#define DBG_MASK (DBG_EXTENT|DBG_INODE|DBG_BNODE_MOD)
  23. //#define DBG_MASK (DBG_BNODE_MOD|DBG_CAT_MOD|DBG_INODE)
  24. //#define DBG_MASK (DBG_CAT_MOD|DBG_BNODE_REFS|DBG_INODE|DBG_EXTENT)
  25. #define DBG_MASK (0)
  26. #define dprint(flg, fmt, args...) \
  27. if (flg & DBG_MASK) printk(fmt , ## args)
  28. /* Runtime config options */
  29. #define HFSPLUS_DEF_CR_TYPE 0x3F3F3F3F /* '????' */
  30. #define HFSPLUS_TYPE_DATA 0x00
  31. #define HFSPLUS_TYPE_RSRC 0xFF
  32. typedef int (*btree_keycmp)(const hfsplus_btree_key *, const hfsplus_btree_key *);
  33. #define NODE_HASH_SIZE 256
  34. /* An HFS+ BTree held in memory */
  35. struct hfs_btree {
  36. struct super_block *sb;
  37. struct inode *inode;
  38. btree_keycmp keycmp;
  39. u32 cnid;
  40. u32 root;
  41. u32 leaf_count;
  42. u32 leaf_head;
  43. u32 leaf_tail;
  44. u32 node_count;
  45. u32 free_nodes;
  46. u32 attributes;
  47. unsigned int node_size;
  48. unsigned int node_size_shift;
  49. unsigned int max_key_len;
  50. unsigned int depth;
  51. //unsigned int map1_size, map_size;
  52. struct semaphore tree_lock;
  53. unsigned int pages_per_bnode;
  54. spinlock_t hash_lock;
  55. struct hfs_bnode *node_hash[NODE_HASH_SIZE];
  56. int node_hash_cnt;
  57. };
  58. struct page;
  59. /* An HFS+ BTree node in memory */
  60. struct hfs_bnode {
  61. struct hfs_btree *tree;
  62. u32 prev;
  63. u32 this;
  64. u32 next;
  65. u32 parent;
  66. u16 num_recs;
  67. u8 type;
  68. u8 height;
  69. struct hfs_bnode *next_hash;
  70. unsigned long flags;
  71. wait_queue_head_t lock_wq;
  72. atomic_t refcnt;
  73. unsigned int page_offset;
  74. struct page *page[0];
  75. };
  76. #define HFS_BNODE_LOCK 0
  77. #define HFS_BNODE_ERROR 1
  78. #define HFS_BNODE_NEW 2
  79. #define HFS_BNODE_DIRTY 3
  80. #define HFS_BNODE_DELETED 4
  81. /*
  82. * HFS+ superblock info (built from Volume Header on disk)
  83. */
  84. struct hfsplus_vh;
  85. struct hfs_btree;
  86. struct hfsplus_sb_info {
  87. struct buffer_head *s_vhbh;
  88. struct hfsplus_vh *s_vhdr;
  89. struct hfs_btree *ext_tree;
  90. struct hfs_btree *cat_tree;
  91. struct hfs_btree *attr_tree;
  92. struct inode *alloc_file;
  93. struct inode *hidden_dir;
  94. struct nls_table *nls;
  95. /* Runtime variables */
  96. u32 blockoffset;
  97. u32 sect_count;
  98. int fs_shift;
  99. /* Stuff in host order from Vol Header */
  100. u32 alloc_blksz;
  101. int alloc_blksz_shift;
  102. u32 total_blocks;
  103. u32 free_blocks;
  104. u32 next_alloc;
  105. u32 next_cnid;
  106. u32 file_count;
  107. u32 folder_count;
  108. u32 data_clump_blocks, rsrc_clump_blocks;
  109. /* Config options */
  110. u32 creator;
  111. u32 type;
  112. umode_t umask;
  113. uid_t uid;
  114. gid_t gid;
  115. int part, session;
  116. unsigned long flags;
  117. struct hlist_head rsrc_inodes;
  118. };
  119. #define HFSPLUS_SB_WRITEBACKUP 0x0001
  120. #define HFSPLUS_SB_NODECOMPOSE 0x0002
  121. #define HFSPLUS_SB_FORCE 0x0004
  122. #define HFSPLUS_SB_HFSX 0x0008
  123. #define HFSPLUS_SB_CASEFOLD 0x0010
  124. struct hfsplus_inode_info {
  125. struct mutex extents_lock;
  126. u32 clump_blocks, alloc_blocks;
  127. sector_t fs_blocks;
  128. /* Allocation extents from catalog record or volume header */
  129. hfsplus_extent_rec first_extents;
  130. u32 first_blocks;
  131. hfsplus_extent_rec cached_extents;
  132. u32 cached_start, cached_blocks;
  133. atomic_t opencnt;
  134. struct inode *rsrc_inode;
  135. unsigned long flags;
  136. __be32 create_date;
  137. /* Device number in hfsplus_permissions in catalog */
  138. u32 dev;
  139. /* BSD system and user file flags */
  140. u8 rootflags;
  141. u8 userflags;
  142. struct list_head open_dir_list;
  143. loff_t phys_size;
  144. struct inode vfs_inode;
  145. };
  146. #define HFSPLUS_FLG_RSRC 0x0001
  147. #define HFSPLUS_FLG_EXT_DIRTY 0x0002
  148. #define HFSPLUS_FLG_EXT_NEW 0x0004
  149. #define HFSPLUS_IS_DATA(inode) (!(HFSPLUS_I(inode).flags & HFSPLUS_FLG_RSRC))
  150. #define HFSPLUS_IS_RSRC(inode) (HFSPLUS_I(inode).flags & HFSPLUS_FLG_RSRC)
  151. struct hfs_find_data {
  152. /* filled by caller */
  153. hfsplus_btree_key *search_key;
  154. hfsplus_btree_key *key;
  155. /* filled by find */
  156. struct hfs_btree *tree;
  157. struct hfs_bnode *bnode;
  158. /* filled by findrec */
  159. int record;
  160. int keyoffset, keylength;
  161. int entryoffset, entrylength;
  162. };
  163. struct hfsplus_readdir_data {
  164. struct list_head list;
  165. struct file *file;
  166. struct hfsplus_cat_key key;
  167. };
  168. #define hfs_btree_open hfsplus_btree_open
  169. #define hfs_btree_close hfsplus_btree_close
  170. #define hfs_btree_write hfsplus_btree_write
  171. #define hfs_bmap_alloc hfsplus_bmap_alloc
  172. #define hfs_bmap_free hfsplus_bmap_free
  173. #define hfs_bnode_read hfsplus_bnode_read
  174. #define hfs_bnode_read_u16 hfsplus_bnode_read_u16
  175. #define hfs_bnode_read_u8 hfsplus_bnode_read_u8
  176. #define hfs_bnode_read_key hfsplus_bnode_read_key
  177. #define hfs_bnode_write hfsplus_bnode_write
  178. #define hfs_bnode_write_u16 hfsplus_bnode_write_u16
  179. #define hfs_bnode_clear hfsplus_bnode_clear
  180. #define hfs_bnode_copy hfsplus_bnode_copy
  181. #define hfs_bnode_move hfsplus_bnode_move
  182. #define hfs_bnode_dump hfsplus_bnode_dump
  183. #define hfs_bnode_unlink hfsplus_bnode_unlink
  184. #define hfs_bnode_findhash hfsplus_bnode_findhash
  185. #define hfs_bnode_find hfsplus_bnode_find
  186. #define hfs_bnode_unhash hfsplus_bnode_unhash
  187. #define hfs_bnode_free hfsplus_bnode_free
  188. #define hfs_bnode_create hfsplus_bnode_create
  189. #define hfs_bnode_get hfsplus_bnode_get
  190. #define hfs_bnode_put hfsplus_bnode_put
  191. #define hfs_brec_lenoff hfsplus_brec_lenoff
  192. #define hfs_brec_keylen hfsplus_brec_keylen
  193. #define hfs_brec_insert hfsplus_brec_insert
  194. #define hfs_brec_remove hfsplus_brec_remove
  195. #define hfs_find_init hfsplus_find_init
  196. #define hfs_find_exit hfsplus_find_exit
  197. #define __hfs_brec_find __hplusfs_brec_find
  198. #define hfs_brec_find hfsplus_brec_find
  199. #define hfs_brec_read hfsplus_brec_read
  200. #define hfs_brec_goto hfsplus_brec_goto
  201. #define hfs_part_find hfsplus_part_find
  202. /*
  203. * definitions for ext2 flag ioctls (linux really needs a generic
  204. * interface for this).
  205. */
  206. /* ext2 ioctls (EXT2_IOC_GETFLAGS and EXT2_IOC_SETFLAGS) to support
  207. * chattr/lsattr */
  208. #define HFSPLUS_IOC_EXT2_GETFLAGS FS_IOC_GETFLAGS
  209. #define HFSPLUS_IOC_EXT2_SETFLAGS FS_IOC_SETFLAGS
  210. /*
  211. * Functions in any *.c used in other files
  212. */
  213. /* bitmap.c */
  214. int hfsplus_block_allocate(struct super_block *, u32, u32, u32 *);
  215. int hfsplus_block_free(struct super_block *, u32, u32);
  216. /* btree.c */
  217. struct hfs_btree *hfs_btree_open(struct super_block *, u32);
  218. void hfs_btree_close(struct hfs_btree *);
  219. void hfs_btree_write(struct hfs_btree *);
  220. struct hfs_bnode *hfs_bmap_alloc(struct hfs_btree *);
  221. void hfs_bmap_free(struct hfs_bnode *);
  222. /* bnode.c */
  223. void hfs_bnode_read(struct hfs_bnode *, void *, int, int);
  224. u16 hfs_bnode_read_u16(struct hfs_bnode *, int);
  225. u8 hfs_bnode_read_u8(struct hfs_bnode *, int);
  226. void hfs_bnode_read_key(struct hfs_bnode *, void *, int);
  227. void hfs_bnode_write(struct hfs_bnode *, void *, int, int);
  228. void hfs_bnode_write_u16(struct hfs_bnode *, int, u16);
  229. void hfs_bnode_clear(struct hfs_bnode *, int, int);
  230. void hfs_bnode_copy(struct hfs_bnode *, int,
  231. struct hfs_bnode *, int, int);
  232. void hfs_bnode_move(struct hfs_bnode *, int, int, int);
  233. void hfs_bnode_dump(struct hfs_bnode *);
  234. void hfs_bnode_unlink(struct hfs_bnode *);
  235. struct hfs_bnode *hfs_bnode_findhash(struct hfs_btree *, u32);
  236. struct hfs_bnode *hfs_bnode_find(struct hfs_btree *, u32);
  237. void hfs_bnode_unhash(struct hfs_bnode *);
  238. void hfs_bnode_free(struct hfs_bnode *);
  239. struct hfs_bnode *hfs_bnode_create(struct hfs_btree *, u32);
  240. void hfs_bnode_get(struct hfs_bnode *);
  241. void hfs_bnode_put(struct hfs_bnode *);
  242. /* brec.c */
  243. u16 hfs_brec_lenoff(struct hfs_bnode *, u16, u16 *);
  244. u16 hfs_brec_keylen(struct hfs_bnode *, u16);
  245. int hfs_brec_insert(struct hfs_find_data *, void *, int);
  246. int hfs_brec_remove(struct hfs_find_data *);
  247. /* bfind.c */
  248. int hfs_find_init(struct hfs_btree *, struct hfs_find_data *);
  249. void hfs_find_exit(struct hfs_find_data *);
  250. int __hfs_brec_find(struct hfs_bnode *, struct hfs_find_data *);
  251. int hfs_brec_find(struct hfs_find_data *);
  252. int hfs_brec_read(struct hfs_find_data *, void *, int);
  253. int hfs_brec_goto(struct hfs_find_data *, int);
  254. /* catalog.c */
  255. int hfsplus_cat_case_cmp_key(const hfsplus_btree_key *, const hfsplus_btree_key *);
  256. int hfsplus_cat_bin_cmp_key(const hfsplus_btree_key *, const hfsplus_btree_key *);
  257. void hfsplus_cat_build_key(struct super_block *sb, hfsplus_btree_key *, u32, struct qstr *);
  258. int hfsplus_find_cat(struct super_block *, u32, struct hfs_find_data *);
  259. int hfsplus_create_cat(u32, struct inode *, struct qstr *, struct inode *);
  260. int hfsplus_delete_cat(u32, struct inode *, struct qstr *);
  261. int hfsplus_rename_cat(u32, struct inode *, struct qstr *,
  262. struct inode *, struct qstr *);
  263. /* dir.c */
  264. extern const struct inode_operations hfsplus_dir_inode_operations;
  265. extern const struct file_operations hfsplus_dir_operations;
  266. /* extents.c */
  267. int hfsplus_ext_cmp_key(const hfsplus_btree_key *, const hfsplus_btree_key *);
  268. void hfsplus_ext_write_extent(struct inode *);
  269. int hfsplus_get_block(struct inode *, sector_t, struct buffer_head *, int);
  270. int hfsplus_free_fork(struct super_block *, u32, struct hfsplus_fork_raw *, int);
  271. int hfsplus_file_extend(struct inode *);
  272. void hfsplus_file_truncate(struct inode *);
  273. /* inode.c */
  274. extern const struct address_space_operations hfsplus_aops;
  275. extern const struct address_space_operations hfsplus_btree_aops;
  276. extern const struct dentry_operations hfsplus_dentry_operations;
  277. void hfsplus_inode_read_fork(struct inode *, struct hfsplus_fork_raw *);
  278. void hfsplus_inode_write_fork(struct inode *, struct hfsplus_fork_raw *);
  279. int hfsplus_cat_read_inode(struct inode *, struct hfs_find_data *);
  280. int hfsplus_cat_write_inode(struct inode *);
  281. struct inode *hfsplus_new_inode(struct super_block *, int);
  282. void hfsplus_delete_inode(struct inode *);
  283. /* ioctl.c */
  284. int hfsplus_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
  285. unsigned long arg);
  286. int hfsplus_setxattr(struct dentry *dentry, const char *name,
  287. const void *value, size_t size, int flags);
  288. ssize_t hfsplus_getxattr(struct dentry *dentry, const char *name,
  289. void *value, size_t size);
  290. ssize_t hfsplus_listxattr(struct dentry *dentry, char *buffer, size_t size);
  291. /* options.c */
  292. int hfsplus_parse_options(char *, struct hfsplus_sb_info *);
  293. void hfsplus_fill_defaults(struct hfsplus_sb_info *);
  294. int hfsplus_show_options(struct seq_file *, struct vfsmount *);
  295. /* super.c */
  296. struct inode *hfsplus_iget(struct super_block *, unsigned long);
  297. /* tables.c */
  298. extern u16 hfsplus_case_fold_table[];
  299. extern u16 hfsplus_decompose_table[];
  300. extern u16 hfsplus_compose_table[];
  301. /* unicode.c */
  302. int hfsplus_strcasecmp(const struct hfsplus_unistr *, const struct hfsplus_unistr *);
  303. int hfsplus_strcmp(const struct hfsplus_unistr *, const struct hfsplus_unistr *);
  304. int hfsplus_uni2asc(struct super_block *, const struct hfsplus_unistr *, char *, int *);
  305. int hfsplus_asc2uni(struct super_block *, struct hfsplus_unistr *, const char *, int);
  306. int hfsplus_hash_dentry(struct dentry *dentry, struct qstr *str);
  307. int hfsplus_compare_dentry(struct dentry *dentry, struct qstr *s1, struct qstr *s2);
  308. /* wrapper.c */
  309. int hfsplus_read_wrapper(struct super_block *);
  310. int hfs_part_find(struct super_block *, sector_t *, sector_t *);
  311. /* access macros */
  312. /*
  313. static inline struct hfsplus_sb_info *HFSPLUS_SB(struct super_block *sb)
  314. {
  315. return sb->s_fs_info;
  316. }
  317. static inline struct hfsplus_inode_info *HFSPLUS_I(struct inode *inode)
  318. {
  319. return list_entry(inode, struct hfsplus_inode_info, vfs_inode);
  320. }
  321. */
  322. #define HFSPLUS_SB(super) (*(struct hfsplus_sb_info *)(super)->s_fs_info)
  323. #define HFSPLUS_I(inode) (*list_entry(inode, struct hfsplus_inode_info, vfs_inode))
  324. #if 1
  325. #define hfsplus_kmap(p) ({ struct page *__p = (p); kmap(__p); })
  326. #define hfsplus_kunmap(p) ({ struct page *__p = (p); kunmap(__p); __p; })
  327. #else
  328. #define hfsplus_kmap(p) kmap(p)
  329. #define hfsplus_kunmap(p) kunmap(p)
  330. #endif
  331. #define sb_bread512(sb, sec, data) ({ \
  332. struct buffer_head *__bh; \
  333. sector_t __block; \
  334. loff_t __start; \
  335. int __offset; \
  336. \
  337. __start = (loff_t)(sec) << HFSPLUS_SECTOR_SHIFT;\
  338. __block = __start >> (sb)->s_blocksize_bits; \
  339. __offset = __start & ((sb)->s_blocksize - 1); \
  340. __bh = sb_bread((sb), __block); \
  341. if (likely(__bh != NULL)) \
  342. data = (void *)(__bh->b_data + __offset);\
  343. else \
  344. data = NULL; \
  345. __bh; \
  346. })
  347. /* time macros */
  348. #define __hfsp_mt2ut(t) (be32_to_cpu(t) - 2082844800U)
  349. #define __hfsp_ut2mt(t) (cpu_to_be32(t + 2082844800U))
  350. /* compatibility */
  351. #define hfsp_mt2ut(t) (struct timespec){ .tv_sec = __hfsp_mt2ut(t) }
  352. #define hfsp_ut2mt(t) __hfsp_ut2mt((t).tv_sec)
  353. #define hfsp_now2mt() __hfsp_ut2mt(get_seconds())
  354. #define kdev_t_to_nr(x) (x)
  355. #endif