2 * linux/fs/hfsplus/btree.c
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
8 * Handle opening/closing btree
11 #include <linux/slab.h>
12 #include <linux/pagemap.h>
13 #include <linux/log2.h>
15 #include "hfsplus_fs.h"
16 #include "hfsplus_raw.h"
19 /* Get a reference to a B*Tree and do some initial checks */
20 struct hfs_btree
*hfs_btree_open(struct super_block
*sb
, u32 id
)
22 struct hfs_btree
*tree
;
23 struct hfs_btree_header_rec
*head
;
24 struct address_space
*mapping
;
29 tree
= kzalloc(sizeof(*tree
), GFP_KERNEL
);
33 mutex_init(&tree
->tree_lock
);
34 spin_lock_init(&tree
->hash_lock
);
37 inode
= hfsplus_iget(sb
, id
);
42 if (!HFSPLUS_I(tree
->inode
)->first_blocks
) {
44 "hfs: invalid btree extent records (0 size).\n");
48 mapping
= tree
->inode
->i_mapping
;
49 page
= read_mapping_page(mapping
, 0, NULL
);
54 head
= (struct hfs_btree_header_rec
*)(kmap(page
) +
55 sizeof(struct hfs_bnode_desc
));
56 tree
->root
= be32_to_cpu(head
->root
);
57 tree
->leaf_count
= be32_to_cpu(head
->leaf_count
);
58 tree
->leaf_head
= be32_to_cpu(head
->leaf_head
);
59 tree
->leaf_tail
= be32_to_cpu(head
->leaf_tail
);
60 tree
->node_count
= be32_to_cpu(head
->node_count
);
61 tree
->free_nodes
= be32_to_cpu(head
->free_nodes
);
62 tree
->attributes
= be32_to_cpu(head
->attributes
);
63 tree
->node_size
= be16_to_cpu(head
->node_size
);
64 tree
->max_key_len
= be16_to_cpu(head
->max_key_len
);
65 tree
->depth
= be16_to_cpu(head
->depth
);
67 /* Verify the tree and set the correct compare function */
69 case HFSPLUS_EXT_CNID
:
70 if (tree
->max_key_len
!= HFSPLUS_EXT_KEYLEN
- sizeof(u16
)) {
71 printk(KERN_ERR
"hfs: invalid extent max_key_len %d\n",
75 if (tree
->attributes
& HFS_TREE_VARIDXKEYS
) {
76 printk(KERN_ERR
"hfs: invalid extent btree flag\n");
80 tree
->keycmp
= hfsplus_ext_cmp_key
;
82 case HFSPLUS_CAT_CNID
:
83 if (tree
->max_key_len
!= HFSPLUS_CAT_KEYLEN
- sizeof(u16
)) {
84 printk(KERN_ERR
"hfs: invalid catalog max_key_len %d\n",
88 if (!(tree
->attributes
& HFS_TREE_VARIDXKEYS
)) {
89 printk(KERN_ERR
"hfs: invalid catalog btree flag\n");
93 if (test_bit(HFSPLUS_SB_HFSX
, &HFSPLUS_SB(sb
)->flags
) &&
94 (head
->key_type
== HFSPLUS_KEY_BINARY
))
95 tree
->keycmp
= hfsplus_cat_bin_cmp_key
;
97 tree
->keycmp
= hfsplus_cat_case_cmp_key
;
98 set_bit(HFSPLUS_SB_CASEFOLD
, &HFSPLUS_SB(sb
)->flags
);
102 printk(KERN_ERR
"hfs: unknown B*Tree requested\n");
106 if (!(tree
->attributes
& HFS_TREE_BIGKEYS
)) {
107 printk(KERN_ERR
"hfs: invalid btree flag\n");
111 size
= tree
->node_size
;
112 if (!is_power_of_2(size
))
114 if (!tree
->node_count
)
117 tree
->node_size_shift
= ffs(size
) - 1;
119 tree
->pages_per_bnode
=
120 (tree
->node_size
+ PAGE_CACHE_SIZE
- 1) >>
124 page_cache_release(page
);
128 page_cache_release(page
);
130 tree
->inode
->i_mapping
->a_ops
= &hfsplus_aops
;
137 /* Release resources used by a btree */
138 void hfs_btree_close(struct hfs_btree
*tree
)
140 struct hfs_bnode
*node
;
146 for (i
= 0; i
< NODE_HASH_SIZE
; i
++) {
147 while ((node
= tree
->node_hash
[i
])) {
148 tree
->node_hash
[i
] = node
->next_hash
;
149 if (atomic_read(&node
->refcnt
))
150 printk(KERN_CRIT
"hfs: node %d:%d "
151 "still has %d user(s)!\n",
152 node
->tree
->cnid
, node
->this,
153 atomic_read(&node
->refcnt
));
154 hfs_bnode_free(node
);
155 tree
->node_hash_cnt
--;
162 void hfs_btree_write(struct hfs_btree
*tree
)
164 struct hfs_btree_header_rec
*head
;
165 struct hfs_bnode
*node
;
168 node
= hfs_bnode_find(tree
, 0);
172 /* Load the header */
173 page
= node
->page
[0];
174 head
= (struct hfs_btree_header_rec
*)(kmap(page
) +
175 sizeof(struct hfs_bnode_desc
));
177 head
->root
= cpu_to_be32(tree
->root
);
178 head
->leaf_count
= cpu_to_be32(tree
->leaf_count
);
179 head
->leaf_head
= cpu_to_be32(tree
->leaf_head
);
180 head
->leaf_tail
= cpu_to_be32(tree
->leaf_tail
);
181 head
->node_count
= cpu_to_be32(tree
->node_count
);
182 head
->free_nodes
= cpu_to_be32(tree
->free_nodes
);
183 head
->attributes
= cpu_to_be32(tree
->attributes
);
184 head
->depth
= cpu_to_be16(tree
->depth
);
187 set_page_dirty(page
);
191 static struct hfs_bnode
*hfs_bmap_new_bmap(struct hfs_bnode
*prev
, u32 idx
)
193 struct hfs_btree
*tree
= prev
->tree
;
194 struct hfs_bnode
*node
;
195 struct hfs_bnode_desc desc
;
198 node
= hfs_bnode_create(tree
, idx
);
204 cnid
= cpu_to_be32(idx
);
205 hfs_bnode_write(prev
, &cnid
, offsetof(struct hfs_bnode_desc
, next
), 4);
207 node
->type
= HFS_NODE_MAP
;
209 hfs_bnode_clear(node
, 0, tree
->node_size
);
212 desc
.type
= HFS_NODE_MAP
;
214 desc
.num_recs
= cpu_to_be16(1);
216 hfs_bnode_write(node
, &desc
, 0, sizeof(desc
));
217 hfs_bnode_write_u16(node
, 14, 0x8000);
218 hfs_bnode_write_u16(node
, tree
->node_size
- 2, 14);
219 hfs_bnode_write_u16(node
, tree
->node_size
- 4, tree
->node_size
- 6);
224 struct hfs_bnode
*hfs_bmap_alloc(struct hfs_btree
*tree
)
226 struct hfs_bnode
*node
, *next_node
;
235 while (!tree
->free_nodes
) {
236 struct inode
*inode
= tree
->inode
;
237 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
241 res
= hfsplus_file_extend(inode
);
244 hip
->phys_size
= inode
->i_size
=
245 (loff_t
)hip
->alloc_blocks
<<
246 HFSPLUS_SB(tree
->sb
)->alloc_blksz_shift
;
248 hip
->alloc_blocks
<< HFSPLUS_SB(tree
->sb
)->fs_shift
;
249 inode_set_bytes(inode
, inode
->i_size
);
250 count
= inode
->i_size
>> tree
->node_size_shift
;
251 tree
->free_nodes
= count
- tree
->node_count
;
252 tree
->node_count
= count
;
256 node
= hfs_bnode_find(tree
, nidx
);
259 len
= hfs_brec_lenoff(node
, 2, &off16
);
262 off
+= node
->page_offset
;
263 pagep
= node
->page
+ (off
>> PAGE_CACHE_SHIFT
);
265 off
&= ~PAGE_CACHE_MASK
;
272 for (m
= 0x80, i
= 0; i
< 8; m
>>= 1, i
++) {
276 set_page_dirty(*pagep
);
279 mark_inode_dirty(tree
->inode
);
281 return hfs_bnode_create(tree
,
286 if (++off
>= PAGE_CACHE_SIZE
) {
288 data
= kmap(*++pagep
);
297 dprint(DBG_BNODE_MOD
, "hfs: create new bmap node.\n");
298 next_node
= hfs_bmap_new_bmap(node
, idx
);
300 next_node
= hfs_bnode_find(tree
, nidx
);
302 if (IS_ERR(next_node
))
306 len
= hfs_brec_lenoff(node
, 0, &off16
);
308 off
+= node
->page_offset
;
309 pagep
= node
->page
+ (off
>> PAGE_CACHE_SHIFT
);
311 off
&= ~PAGE_CACHE_MASK
;
315 void hfs_bmap_free(struct hfs_bnode
*node
)
317 struct hfs_btree
*tree
;
323 dprint(DBG_BNODE_MOD
, "btree_free_node: %u\n", node
->this);
327 node
= hfs_bnode_find(tree
, 0);
330 len
= hfs_brec_lenoff(node
, 2, &off
);
331 while (nidx
>= len
* 8) {
339 printk(KERN_CRIT
"hfs: unable to free bnode %u. "
344 node
= hfs_bnode_find(tree
, i
);
347 if (node
->type
!= HFS_NODE_MAP
) {
349 printk(KERN_CRIT
"hfs: invalid bmap found! "
351 node
->this, node
->type
);
355 len
= hfs_brec_lenoff(node
, 0, &off
);
357 off
+= node
->page_offset
+ nidx
/ 8;
358 page
= node
->page
[off
>> PAGE_CACHE_SHIFT
];
360 off
&= ~PAGE_CACHE_MASK
;
361 m
= 1 << (~nidx
& 7);
364 printk(KERN_CRIT
"hfs: trying to free free bnode "
366 node
->this, node
->type
);
371 data
[off
] = byte
& ~m
;
372 set_page_dirty(page
);
376 mark_inode_dirty(tree
->inode
);