Btrfs: variable block size support
[deliverable/linux.git] / fs / btrfs / ctree.h
... / ...
CommitLineData
1#ifndef __BTRFS__
2#define __BTRFS__
3
4#include "list.h"
5#include "kerncompat.h"
6
7#define BTRFS_MAGIC "_BtRfS_M"
8
9#define BTRFS_ROOT_TREE_OBJECTID 1
10#define BTRFS_EXTENT_TREE_OBJECTID 2
11#define BTRFS_FS_TREE_OBJECTID 3
12
13/*
14 * the key defines the order in the tree, and so it also defines (optimal)
15 * block layout. objectid corresonds to the inode number. The flags
16 * tells us things about the object, and is a kind of stream selector.
17 * so for a given inode, keys with flags of 1 might refer to the inode
18 * data, flags of 2 may point to file data in the btree and flags == 3
19 * may point to extents.
20 *
21 * offset is the starting byte offset for this key in the stream.
22 *
23 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
24 * in cpu native order. Otherwise they are identical and their sizes
25 * should be the same (ie both packed)
26 */
27struct btrfs_disk_key {
28 __le64 objectid;
29 __le32 flags;
30 __le64 offset;
31} __attribute__ ((__packed__));
32
33struct btrfs_key {
34 u64 objectid;
35 u32 flags;
36 u64 offset;
37} __attribute__ ((__packed__));
38
39/*
40 * every tree block (leaf or node) starts with this header.
41 */
42struct btrfs_header {
43 u8 fsid[16]; /* FS specific uuid */
44 __le64 blocknr; /* which block this node is supposed to live in */
45 __le64 parentid; /* objectid of the tree root */
46 __le32 csum;
47 __le32 ham;
48 __le16 nritems;
49 __le16 flags;
50 /* generation flags to be added */
51} __attribute__ ((__packed__));
52
53#define BTRFS_MAX_LEVEL 8
54#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
55 sizeof(struct btrfs_header)) / \
56 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
57#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
58#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
59
60struct btrfs_buffer;
61
62struct btrfs_root_item {
63 __le64 blocknr;
64 __le32 flags;
65 __le64 block_limit;
66 __le64 blocks_used;
67 __le32 refs;
68};
69
70/*
71 * in ram representation of the tree. extent_root is used for all allocations
72 * and for the extent tree extent_root root. current_insert is used
73 * only for the extent tree.
74 */
75struct btrfs_root {
76 struct btrfs_buffer *node;
77 struct btrfs_buffer *commit_root;
78 struct btrfs_root *extent_root;
79 struct btrfs_root *tree_root;
80 struct btrfs_key current_insert;
81 struct btrfs_key last_insert;
82 int fp;
83 struct radix_tree_root cache_radix;
84 struct radix_tree_root pinned_radix;
85 struct list_head trans;
86 struct list_head cache;
87 int cache_size;
88 int ref_cows;
89 struct btrfs_root_item root_item;
90 struct btrfs_key root_key;
91 u32 blocksize;
92};
93
94/*
95 * the super block basically lists the main trees of the FS
96 * it currently lacks any block count etc etc
97 */
98struct btrfs_super_block {
99 u8 fsid[16]; /* FS specific uuid */
100 __le64 blocknr; /* this block number */
101 __le32 csum;
102 __le64 magic;
103 __le32 blocksize;
104 __le64 generation;
105 __le64 root;
106 __le64 total_blocks;
107 __le64 blocks_used;
108} __attribute__ ((__packed__));
109
110/*
111 * A leaf is full of items. The exact type of item is defined by
112 * the key flags parameter. offset and size tell us where to find
113 * the item in the leaf (relative to the start of the data area)
114 */
115struct btrfs_item {
116 struct btrfs_disk_key key;
117 __le32 offset;
118 __le16 size;
119} __attribute__ ((__packed__));
120
121/*
122 * leaves have an item area and a data area:
123 * [item0, item1....itemN] [free space] [dataN...data1, data0]
124 *
125 * The data is separate from the items to get the keys closer together
126 * during searches.
127 */
128struct btrfs_leaf {
129 struct btrfs_header header;
130 struct btrfs_item items[];
131} __attribute__ ((__packed__));
132
133/*
134 * all non-leaf blocks are nodes, they hold only keys and pointers to
135 * other blocks
136 */
137struct btrfs_key_ptr {
138 struct btrfs_disk_key key;
139 __le64 blockptr;
140} __attribute__ ((__packed__));
141
142struct btrfs_node {
143 struct btrfs_header header;
144 struct btrfs_key_ptr ptrs[];
145} __attribute__ ((__packed__));
146
147/*
148 * items in the extent btree are used to record the objectid of the
149 * owner of the block and the number of references
150 */
151struct btrfs_extent_item {
152 __le32 refs;
153 __le64 owner;
154} __attribute__ ((__packed__));
155
156/*
157 * btrfs_paths remember the path taken from the root down to the leaf.
158 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
159 * to any other levels that are present.
160 *
161 * The slots array records the index of the item or block pointer
162 * used while walking the tree.
163 */
164struct btrfs_path {
165 struct btrfs_buffer *nodes[BTRFS_MAX_LEVEL];
166 int slots[BTRFS_MAX_LEVEL];
167};
168
169static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
170{
171 return le64_to_cpu(ei->owner);
172}
173
174static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
175{
176 ei->owner = cpu_to_le64(val);
177}
178
179static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
180{
181 return le32_to_cpu(ei->refs);
182}
183
184static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
185{
186 ei->refs = cpu_to_le32(val);
187}
188
189static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
190{
191 return le64_to_cpu(n->ptrs[nr].blockptr);
192}
193
194static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
195 u64 val)
196{
197 n->ptrs[nr].blockptr = cpu_to_le64(val);
198}
199
200static inline u32 btrfs_item_offset(struct btrfs_item *item)
201{
202 return le32_to_cpu(item->offset);
203}
204
205static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
206{
207 item->offset = cpu_to_le32(val);
208}
209
210static inline u32 btrfs_item_end(struct btrfs_item *item)
211{
212 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
213}
214
215static inline u16 btrfs_item_size(struct btrfs_item *item)
216{
217 return le16_to_cpu(item->size);
218}
219
220static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
221{
222 item->size = cpu_to_le16(val);
223}
224
225static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
226 struct btrfs_disk_key *disk)
227{
228 cpu->offset = le64_to_cpu(disk->offset);
229 cpu->flags = le32_to_cpu(disk->flags);
230 cpu->objectid = le64_to_cpu(disk->objectid);
231}
232
233static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
234 struct btrfs_key *cpu)
235{
236 disk->offset = cpu_to_le64(cpu->offset);
237 disk->flags = cpu_to_le32(cpu->flags);
238 disk->objectid = cpu_to_le64(cpu->objectid);
239}
240
241static inline u64 btrfs_key_objectid(struct btrfs_disk_key *disk)
242{
243 return le64_to_cpu(disk->objectid);
244}
245
246static inline void btrfs_set_key_objectid(struct btrfs_disk_key *disk,
247 u64 val)
248{
249 disk->objectid = cpu_to_le64(val);
250}
251
252static inline u64 btrfs_key_offset(struct btrfs_disk_key *disk)
253{
254 return le64_to_cpu(disk->offset);
255}
256
257static inline void btrfs_set_key_offset(struct btrfs_disk_key *disk,
258 u64 val)
259{
260 disk->offset = cpu_to_le64(val);
261}
262
263static inline u32 btrfs_key_flags(struct btrfs_disk_key *disk)
264{
265 return le32_to_cpu(disk->flags);
266}
267
268static inline void btrfs_set_key_flags(struct btrfs_disk_key *disk,
269 u32 val)
270{
271 disk->flags = cpu_to_le32(val);
272}
273
274static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
275{
276 return le64_to_cpu(h->blocknr);
277}
278
279static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
280{
281 h->blocknr = cpu_to_le64(blocknr);
282}
283
284static inline u64 btrfs_header_parentid(struct btrfs_header *h)
285{
286 return le64_to_cpu(h->parentid);
287}
288
289static inline void btrfs_set_header_parentid(struct btrfs_header *h,
290 u64 parentid)
291{
292 h->parentid = cpu_to_le64(parentid);
293}
294
295static inline u16 btrfs_header_nritems(struct btrfs_header *h)
296{
297 return le16_to_cpu(h->nritems);
298}
299
300static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
301{
302 h->nritems = cpu_to_le16(val);
303}
304
305static inline u16 btrfs_header_flags(struct btrfs_header *h)
306{
307 return le16_to_cpu(h->flags);
308}
309
310static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
311{
312 h->flags = cpu_to_le16(val);
313}
314
315static inline int btrfs_header_level(struct btrfs_header *h)
316{
317 return btrfs_header_flags(h) & (BTRFS_MAX_LEVEL - 1);
318}
319
320static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
321{
322 u16 flags;
323 BUG_ON(level > BTRFS_MAX_LEVEL);
324 flags = btrfs_header_flags(h) & ~(BTRFS_MAX_LEVEL - 1);
325 btrfs_set_header_flags(h, flags | level);
326}
327
328static inline int btrfs_is_leaf(struct btrfs_node *n)
329{
330 return (btrfs_header_level(&n->header) == 0);
331}
332
333static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
334{
335 return le64_to_cpu(item->blocknr);
336}
337
338static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
339{
340 item->blocknr = cpu_to_le64(val);
341}
342
343static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
344{
345 return le32_to_cpu(item->refs);
346}
347
348static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
349{
350 item->refs = cpu_to_le32(val);
351}
352
353static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
354{
355 return le64_to_cpu(s->blocknr);
356}
357
358static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
359{
360 s->blocknr = cpu_to_le64(val);
361}
362
363static inline u64 btrfs_super_root(struct btrfs_super_block *s)
364{
365 return le64_to_cpu(s->root);
366}
367
368static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
369{
370 s->root = cpu_to_le64(val);
371}
372
373static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
374{
375 return le64_to_cpu(s->total_blocks);
376}
377
378static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
379 u64 val)
380{
381 s->total_blocks = cpu_to_le64(val);
382}
383
384static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
385{
386 return le64_to_cpu(s->blocks_used);
387}
388
389static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
390 u64 val)
391{
392 s->blocks_used = cpu_to_le64(val);
393}
394
395static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
396{
397 return le32_to_cpu(s->blocksize);
398}
399
400static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
401 u32 val)
402{
403 s->blocksize = cpu_to_le32(val);
404}
405
406static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
407{
408 return (u8 *)l->items;
409}
410
411/* helper function to cast into the data area of the leaf. */
412#define btrfs_item_ptr(leaf, slot, type) \
413 ((type *)(btrfs_leaf_data(leaf) + \
414 btrfs_item_offset((leaf)->items + (slot))))
415
416struct btrfs_buffer *btrfs_alloc_free_block(struct btrfs_root *root);
417int btrfs_inc_ref(struct btrfs_root *root, struct btrfs_buffer *buf);
418int btrfs_free_extent(struct btrfs_root *root, u64 blocknr, u64 num_blocks);
419int btrfs_search_slot(struct btrfs_root *root, struct btrfs_key *key,
420 struct btrfs_path *p, int ins_len, int cow);
421void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
422void btrfs_init_path(struct btrfs_path *p);
423int btrfs_del_item(struct btrfs_root *root, struct btrfs_path *path);
424int btrfs_insert_item(struct btrfs_root *root, struct btrfs_key *key,
425 void *data, int data_size);
426int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
427int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
428int btrfs_drop_snapshot(struct btrfs_root *root, struct btrfs_buffer *snap);
429int btrfs_finish_extent_commit(struct btrfs_root *root);
430int btrfs_del_root(struct btrfs_root *root, struct btrfs_key *key);
431int btrfs_insert_root(struct btrfs_root *root, struct btrfs_key *key,
432 struct btrfs_root_item *item);
433int btrfs_update_root(struct btrfs_root *root, struct btrfs_key *key,
434 struct btrfs_root_item *item);
435int btrfs_find_last_root(struct btrfs_root *root, u64 objectid,
436 struct btrfs_root_item *item, struct btrfs_key *key);
437#endif
This page took 0.025327 seconds and 5 git commands to generate.