Btrfs: snapshot progress
[linux-2.6-block.git] / fs / btrfs / ctree.h
CommitLineData
234b63a0
CM
1#ifndef __BTRFS__
2#define __BTRFS__
eb60ceac 3
e20d96d6 4#include <linux/fs.h>
d6025579 5#include <linux/buffer_head.h>
d6e4a428 6#include <linux/kobject.h>
8ef97622 7#include "bit-radix.h"
e20d96d6 8
e089f05c 9struct btrfs_trans_handle;
79154b1b 10struct btrfs_transaction;
2c90e5d6 11extern struct kmem_cache *btrfs_path_cachep;
e089f05c 12
3768f368 13#define BTRFS_MAGIC "_BtRfS_M"
eb60ceac 14
6407bf6d
CM
15#define BTRFS_ROOT_TREE_OBJECTID 1ULL
16#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
17#define BTRFS_INODE_MAP_OBJECTID 3ULL
18#define BTRFS_FS_TREE_OBJECTID 4ULL
19#define BTRFS_FIRST_FREE_OBJECTID 5ULL
3768f368 20
e20d96d6
CM
21/*
22 * we can actually store much bigger names, but lets not confuse the rest
23 * of linux
24 */
25#define BTRFS_NAME_LEN 255
26
f254e52c
CM
27/* 32 bytes in various csum fields */
28#define BTRFS_CSUM_SIZE 32
29
fec577fb
CM
30/*
31 * the key defines the order in the tree, and so it also defines (optimal)
32 * block layout. objectid corresonds to the inode number. The flags
33 * tells us things about the object, and is a kind of stream selector.
34 * so for a given inode, keys with flags of 1 might refer to the inode
35 * data, flags of 2 may point to file data in the btree and flags == 3
36 * may point to extents.
37 *
38 * offset is the starting byte offset for this key in the stream.
e2fa7227
CM
39 *
40 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
41 * in cpu native order. Otherwise they are identical and their sizes
42 * should be the same (ie both packed)
fec577fb 43 */
e2fa7227
CM
44struct btrfs_disk_key {
45 __le64 objectid;
a8a2ee0c 46 __le64 offset;
f254e52c 47 __le32 flags;
e2fa7227
CM
48} __attribute__ ((__packed__));
49
50struct btrfs_key {
eb60ceac 51 u64 objectid;
a8a2ee0c 52 u64 offset;
f254e52c 53 u32 flags;
eb60ceac
CM
54} __attribute__ ((__packed__));
55
fec577fb
CM
56/*
57 * every tree block (leaf or node) starts with this header.
58 */
bb492bb0 59struct btrfs_header {
f254e52c 60 u8 csum[BTRFS_CSUM_SIZE];
3768f368 61 u8 fsid[16]; /* FS specific uuid */
bb492bb0 62 __le64 blocknr; /* which block this node is supposed to live in */
7f5c1516 63 __le64 generation;
bb492bb0 64 __le64 parentid; /* objectid of the tree root */
bb492bb0
CM
65 __le32 ham;
66 __le16 nritems;
67 __le16 flags;
9a6f11ed 68 u8 level;
eb60ceac
CM
69} __attribute__ ((__packed__));
70
234b63a0 71#define BTRFS_MAX_LEVEL 8
123abc88
CM
72#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
73 sizeof(struct btrfs_header)) / \
74 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
75#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
76#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
eb60ceac 77
e20d96d6 78struct buffer_head;
fec577fb
CM
79/*
80 * the super block basically lists the main trees of the FS
81 * it currently lacks any block count etc etc
82 */
234b63a0 83struct btrfs_super_block {
f254e52c 84 u8 csum[BTRFS_CSUM_SIZE];
87cbda5c 85 /* the first 3 fields must match struct btrfs_header */
3768f368
CM
86 u8 fsid[16]; /* FS specific uuid */
87 __le64 blocknr; /* this block number */
3768f368 88 __le64 magic;
123abc88 89 __le32 blocksize;
3768f368
CM
90 __le64 generation;
91 __le64 root;
92 __le64 total_blocks;
93 __le64 blocks_used;
2e635a27 94 __le64 root_dir_objectid;
cfaa7295
CM
95} __attribute__ ((__packed__));
96
fec577fb 97/*
62e2749e 98 * A leaf is full of items. offset and size tell us where to find
fec577fb
CM
99 * the item in the leaf (relative to the start of the data area)
100 */
0783fcfc 101struct btrfs_item {
e2fa7227 102 struct btrfs_disk_key key;
123abc88 103 __le32 offset;
0783fcfc 104 __le16 size;
eb60ceac
CM
105} __attribute__ ((__packed__));
106
fec577fb
CM
107/*
108 * leaves have an item area and a data area:
109 * [item0, item1....itemN] [free space] [dataN...data1, data0]
110 *
111 * The data is separate from the items to get the keys closer together
112 * during searches.
113 */
234b63a0 114struct btrfs_leaf {
bb492bb0 115 struct btrfs_header header;
123abc88 116 struct btrfs_item items[];
eb60ceac
CM
117} __attribute__ ((__packed__));
118
fec577fb
CM
119/*
120 * all non-leaf blocks are nodes, they hold only keys and pointers to
121 * other blocks
122 */
123abc88
CM
123struct btrfs_key_ptr {
124 struct btrfs_disk_key key;
125 __le64 blockptr;
126} __attribute__ ((__packed__));
127
234b63a0 128struct btrfs_node {
bb492bb0 129 struct btrfs_header header;
123abc88 130 struct btrfs_key_ptr ptrs[];
eb60ceac
CM
131} __attribute__ ((__packed__));
132
fec577fb 133/*
234b63a0
CM
134 * btrfs_paths remember the path taken from the root down to the leaf.
135 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
fec577fb
CM
136 * to any other levels that are present.
137 *
138 * The slots array records the index of the item or block pointer
139 * used while walking the tree.
140 */
234b63a0 141struct btrfs_path {
e20d96d6 142 struct buffer_head *nodes[BTRFS_MAX_LEVEL];
234b63a0 143 int slots[BTRFS_MAX_LEVEL];
eb60ceac 144};
5de08d7d 145
62e2749e
CM
146/*
147 * items in the extent btree are used to record the objectid of the
148 * owner of the block and the number of references
149 */
150struct btrfs_extent_item {
151 __le32 refs;
152 __le64 owner;
153} __attribute__ ((__packed__));
154
1e1d2701 155struct btrfs_inode_timespec {
f254e52c 156 __le64 sec;
1e1d2701
CM
157 __le32 nsec;
158} __attribute__ ((__packed__));
159
160/*
161 * there is no padding here on purpose. If you want to extent the inode,
162 * make a new item type
163 */
164struct btrfs_inode_item {
165 __le64 generation;
166 __le64 size;
167 __le64 nblocks;
168 __le32 nlink;
169 __le32 uid;
170 __le32 gid;
171 __le32 mode;
172 __le32 rdev;
173 __le16 flags;
174 __le16 compat_flags;
175 struct btrfs_inode_timespec atime;
176 struct btrfs_inode_timespec ctime;
177 struct btrfs_inode_timespec mtime;
178 struct btrfs_inode_timespec otime;
179} __attribute__ ((__packed__));
180
181/* inline data is just a blob of bytes */
182struct btrfs_inline_data_item {
183 u8 data;
184} __attribute__ ((__packed__));
185
62e2749e 186struct btrfs_dir_item {
d6e4a428 187 struct btrfs_disk_key location;
62e2749e 188 __le16 flags;
a8a2ee0c 189 __le16 name_len;
62e2749e
CM
190 u8 type;
191} __attribute__ ((__packed__));
192
193struct btrfs_root_item {
d6e4a428
CM
194 struct btrfs_inode_item inode;
195 __le64 root_dirid;
62e2749e
CM
196 __le64 blocknr;
197 __le32 flags;
198 __le64 block_limit;
199 __le64 blocks_used;
200 __le32 refs;
9f5fae2f 201} __attribute__ ((__packed__));
62e2749e 202
9f5fae2f 203struct btrfs_file_extent_item {
71951f35 204 __le64 generation;
9f5fae2f
CM
205 /*
206 * disk space consumed by the extent, checksum blocks are included
207 * in these numbers
208 */
209 __le64 disk_blocknr;
210 __le64 disk_num_blocks;
211 /*
dee26a9f 212 * the logical offset in file blocks (no csums)
9f5fae2f
CM
213 * this extent record is for. This allows a file extent to point
214 * into the middle of an existing extent on disk, sharing it
215 * between two snapshots (useful if some bytes in the middle of the
216 * extent have changed
217 */
218 __le64 offset;
219 /*
220 * the logical number of file blocks (no csums included)
221 */
222 __le64 num_blocks;
223} __attribute__ ((__packed__));
224
f254e52c
CM
225struct btrfs_csum_item {
226 u8 csum[BTRFS_CSUM_SIZE];
227} __attribute__ ((__packed__));
228
9f5fae2f 229struct btrfs_inode_map_item {
c5739bba 230 u32 refs;
9f5fae2f
CM
231} __attribute__ ((__packed__));
232
87cbda5c 233struct crypto_hash;
9f5fae2f 234struct btrfs_fs_info {
62e2749e
CM
235 struct btrfs_root *extent_root;
236 struct btrfs_root *tree_root;
9f5fae2f 237 struct btrfs_root *inode_root;
62e2749e
CM
238 struct btrfs_key current_insert;
239 struct btrfs_key last_insert;
0f7d52f4 240 struct radix_tree_root fs_roots_radix;
8ef97622 241 struct radix_tree_root pending_del_radix;
62e2749e 242 struct radix_tree_root pinned_radix;
9f5fae2f 243 u64 last_inode_alloc;
293ffd5f 244 u64 generation;
5be6f7f1 245 u64 highest_inode;
79154b1b 246 struct btrfs_transaction *running_transaction;
1261ec42 247 struct btrfs_super_block *disk_super;
e20d96d6
CM
248 struct buffer_head *sb_buffer;
249 struct super_block *sb;
d98237b3 250 struct inode *btree_inode;
79154b1b 251 struct mutex trans_mutex;
d561c025 252 struct mutex fs_mutex;
87cbda5c
CM
253 struct crypto_hash *hash_tfm;
254 spinlock_t hash_lock;
d6e4a428 255 struct kobject kobj;
9f5fae2f
CM
256};
257
258/*
259 * in ram representation of the tree. extent_root is used for all allocations
260 * and for the extent tree extent_root root. current_insert is used
261 * only for the extent tree.
262 */
263struct btrfs_root {
e20d96d6
CM
264 struct buffer_head *node;
265 struct buffer_head *commit_root;
62e2749e
CM
266 struct btrfs_root_item root_item;
267 struct btrfs_key root_key;
9f5fae2f 268 struct btrfs_fs_info *fs_info;
0f7d52f4
CM
269 struct inode *inode;
270 u64 objectid;
271 u64 last_trans;
62e2749e 272 u32 blocksize;
9f5fae2f
CM
273 int ref_cows;
274 u32 type;
62e2749e
CM
275};
276
62e2749e
CM
277/* the lower bits in the key flags defines the item type */
278#define BTRFS_KEY_TYPE_MAX 256
279#define BTRFS_KEY_TYPE_MASK (BTRFS_KEY_TYPE_MAX - 1)
1e1d2701 280
7fcde0e3
CM
281#define BTRFS_KEY_OVERFLOW_MAX 128
282#define BTRFS_KEY_OVERFLOW_SHIFT 8
283#define BTRFS_KEY_OVERFLOW_MASK (0x7FULL << BTRFS_KEY_OVERFLOW_SHIFT)
284
1e1d2701
CM
285/*
286 * inode items have the data typically returned from stat and store other
287 * info about object characteristics. There is one for every file and dir in
288 * the FS
289 */
62e2749e 290#define BTRFS_INODE_ITEM_KEY 1
1e1d2701
CM
291
292/*
293 * dir items are the name -> inode pointers in a directory. There is one
294 * for every name in a directory.
295 */
62e2749e 296#define BTRFS_DIR_ITEM_KEY 2
bae45de0 297#define BTRFS_DIR_INDEX_KEY 3
1e1d2701
CM
298/*
299 * inline data is file data that fits in the btree.
300 */
bae45de0 301#define BTRFS_INLINE_DATA_KEY 4
1e1d2701
CM
302/*
303 * extent data is for data that can't fit in the btree. It points to
304 * a (hopefully) huge chunk of disk
305 */
bae45de0 306#define BTRFS_EXTENT_DATA_KEY 5
f254e52c
CM
307/*
308 * csum items have the checksums for data in the extents
309 */
bae45de0 310#define BTRFS_CSUM_ITEM_KEY 6
f254e52c 311
1e1d2701
CM
312/*
313 * root items point to tree roots. There are typically in the root
314 * tree used by the super block to find all the other trees
315 */
bae45de0 316#define BTRFS_ROOT_ITEM_KEY 7
1e1d2701
CM
317/*
318 * extent items are in the extent map tree. These record which blocks
319 * are used, and how many references there are to each block
320 */
bae45de0 321#define BTRFS_EXTENT_ITEM_KEY 8
9f5fae2f
CM
322
323/*
324 * the inode map records which inode numbers are in use and where
325 * they actually live on disk
326 */
bae45de0 327#define BTRFS_INODE_MAP_ITEM_KEY 9
1e1d2701
CM
328/*
329 * string items are for debugging. They just store a short string of
330 * data in the FS
331 */
bae45de0 332#define BTRFS_STRING_ITEM_KEY 10
1e1d2701
CM
333
334static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
335{
336 return le64_to_cpu(i->generation);
337}
338
339static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
340 u64 val)
341{
342 i->generation = cpu_to_le64(val);
343}
344
345static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
346{
347 return le64_to_cpu(i->size);
348}
349
350static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
351{
352 i->size = cpu_to_le64(val);
353}
354
355static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
356{
357 return le64_to_cpu(i->nblocks);
358}
359
360static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
361{
362 i->nblocks = cpu_to_le64(val);
363}
364
365static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
366{
367 return le32_to_cpu(i->nlink);
368}
369
370static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
371{
372 i->nlink = cpu_to_le32(val);
373}
374
375static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
376{
377 return le32_to_cpu(i->uid);
378}
379
380static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
381{
382 i->uid = cpu_to_le32(val);
383}
384
385static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
386{
387 return le32_to_cpu(i->gid);
388}
389
390static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
391{
392 i->gid = cpu_to_le32(val);
393}
394
395static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
396{
397 return le32_to_cpu(i->mode);
398}
399
400static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
401{
402 i->mode = cpu_to_le32(val);
403}
404
405static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
406{
407 return le32_to_cpu(i->rdev);
408}
409
410static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
411{
412 i->rdev = cpu_to_le32(val);
413}
414
415static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
416{
417 return le16_to_cpu(i->flags);
418}
419
420static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
421{
422 i->flags = cpu_to_le16(val);
423}
424
425static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
426{
427 return le16_to_cpu(i->compat_flags);
428}
429
430static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
431 u16 val)
432{
433 i->compat_flags = cpu_to_le16(val);
434}
435
f254e52c 436static inline u64 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
e20d96d6 437{
f254e52c 438 return le64_to_cpu(ts->sec);
e20d96d6
CM
439}
440
441static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
f254e52c 442 u64 val)
e20d96d6 443{
f254e52c 444 ts->sec = cpu_to_le64(val);
e20d96d6
CM
445}
446
447static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
448{
449 return le32_to_cpu(ts->nsec);
450}
451
452static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
453 u32 val)
454{
455 ts->nsec = cpu_to_le32(val);
456}
457
234b63a0 458static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
cf27e1ee
CM
459{
460 return le64_to_cpu(ei->owner);
461}
462
234b63a0 463static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
cf27e1ee
CM
464{
465 ei->owner = cpu_to_le64(val);
466}
467
234b63a0 468static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
cf27e1ee
CM
469{
470 return le32_to_cpu(ei->refs);
471}
472
234b63a0 473static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
cf27e1ee
CM
474{
475 ei->refs = cpu_to_le32(val);
476}
477
234b63a0 478static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
1d4f8a0c 479{
123abc88 480 return le64_to_cpu(n->ptrs[nr].blockptr);
1d4f8a0c
CM
481}
482
234b63a0
CM
483static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
484 u64 val)
1d4f8a0c 485{
123abc88 486 n->ptrs[nr].blockptr = cpu_to_le64(val);
1d4f8a0c
CM
487}
488
123abc88 489static inline u32 btrfs_item_offset(struct btrfs_item *item)
0783fcfc 490{
123abc88 491 return le32_to_cpu(item->offset);
0783fcfc
CM
492}
493
123abc88 494static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
0783fcfc 495{
123abc88 496 item->offset = cpu_to_le32(val);
0783fcfc
CM
497}
498
123abc88 499static inline u32 btrfs_item_end(struct btrfs_item *item)
0783fcfc 500{
123abc88 501 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
0783fcfc
CM
502}
503
504static inline u16 btrfs_item_size(struct btrfs_item *item)
505{
506 return le16_to_cpu(item->size);
507}
508
509static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
510{
511 item->size = cpu_to_le16(val);
512}
513
1d4f6404
CM
514static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d)
515{
516 return le16_to_cpu(d->flags);
517}
518
519static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val)
520{
521 d->flags = cpu_to_le16(val);
522}
523
524static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
525{
526 return d->type;
527}
528
529static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
530{
531 d->type = val;
532}
533
a8a2ee0c
CM
534static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
535{
536 return le16_to_cpu(d->name_len);
537}
538
539static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
1d4f6404 540{
a8a2ee0c 541 d->name_len = cpu_to_le16(val);
1d4f6404
CM
542}
543
e2fa7227
CM
544static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
545 struct btrfs_disk_key *disk)
546{
547 cpu->offset = le64_to_cpu(disk->offset);
548 cpu->flags = le32_to_cpu(disk->flags);
549 cpu->objectid = le64_to_cpu(disk->objectid);
550}
551
552static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
553 struct btrfs_key *cpu)
554{
555 disk->offset = cpu_to_le64(cpu->offset);
556 disk->flags = cpu_to_le32(cpu->flags);
557 disk->objectid = cpu_to_le64(cpu->objectid);
558}
559
62e2749e 560static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
e2fa7227
CM
561{
562 return le64_to_cpu(disk->objectid);
563}
564
62e2749e
CM
565static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
566 u64 val)
e2fa7227
CM
567{
568 disk->objectid = cpu_to_le64(val);
569}
570
62e2749e 571static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
e2fa7227
CM
572{
573 return le64_to_cpu(disk->offset);
574}
575
62e2749e
CM
576static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
577 u64 val)
e2fa7227
CM
578{
579 disk->offset = cpu_to_le64(val);
580}
581
62e2749e 582static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk)
e2fa7227
CM
583{
584 return le32_to_cpu(disk->flags);
585}
586
62e2749e
CM
587static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk,
588 u32 val)
e2fa7227
CM
589{
590 disk->flags = cpu_to_le32(val);
591}
592
7fcde0e3
CM
593static inline u32 btrfs_key_overflow(struct btrfs_key *key)
594{
595 u32 over = key->flags & BTRFS_KEY_OVERFLOW_MASK;
596 return over >> BTRFS_KEY_OVERFLOW_SHIFT;
597}
598
599static inline void btrfs_set_key_overflow(struct btrfs_key *key, u32 over)
600{
0f7d52f4 601 BUG_ON(over >= BTRFS_KEY_OVERFLOW_MAX);
7fcde0e3
CM
602 over = over << BTRFS_KEY_OVERFLOW_SHIFT;
603 key->flags = (key->flags & ~((u64)BTRFS_KEY_OVERFLOW_MASK)) | over;
604}
605
62e2749e
CM
606static inline u32 btrfs_key_type(struct btrfs_key *key)
607{
608 return key->flags & BTRFS_KEY_TYPE_MASK;
609}
610
611static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key)
612{
613 return le32_to_cpu(key->flags) & BTRFS_KEY_TYPE_MASK;
614}
615
616static inline void btrfs_set_key_type(struct btrfs_key *key, u32 type)
617{
618 BUG_ON(type >= BTRFS_KEY_TYPE_MAX);
619 key->flags = (key->flags & ~((u64)BTRFS_KEY_TYPE_MASK)) | type;
620}
621
622static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key, u32 type)
623{
624 u32 flags = btrfs_disk_key_flags(key);
625 BUG_ON(type >= BTRFS_KEY_TYPE_MAX);
626 flags = (flags & ~((u64)BTRFS_KEY_TYPE_MASK)) | type;
627 btrfs_set_disk_key_flags(key, flags);
7fcde0e3
CM
628}
629
630static inline u32 btrfs_disk_key_overflow(struct btrfs_disk_key *key)
631{
632 u32 over = le32_to_cpu(key->flags) & BTRFS_KEY_OVERFLOW_MASK;
633 return over >> BTRFS_KEY_OVERFLOW_SHIFT;
634}
635
636static inline void btrfs_set_disK_key_overflow(struct btrfs_disk_key *key,
637 u32 over)
638{
639 u32 flags = btrfs_disk_key_flags(key);
0f7d52f4 640 BUG_ON(over >= BTRFS_KEY_OVERFLOW_MAX);
7fcde0e3
CM
641 over = over << BTRFS_KEY_OVERFLOW_SHIFT;
642 flags = (flags & ~((u64)BTRFS_KEY_OVERFLOW_MASK)) | over;
643 btrfs_set_disk_key_flags(key, flags);
62e2749e
CM
644}
645
bb492bb0 646static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
7518a238 647{
bb492bb0 648 return le64_to_cpu(h->blocknr);
7518a238
CM
649}
650
bb492bb0 651static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
7518a238 652{
bb492bb0 653 h->blocknr = cpu_to_le64(blocknr);
7518a238
CM
654}
655
7f5c1516
CM
656static inline u64 btrfs_header_generation(struct btrfs_header *h)
657{
658 return le64_to_cpu(h->generation);
659}
660
661static inline void btrfs_set_header_generation(struct btrfs_header *h,
662 u64 val)
663{
664 h->generation = cpu_to_le64(val);
665}
666
bb492bb0 667static inline u64 btrfs_header_parentid(struct btrfs_header *h)
7518a238 668{
bb492bb0 669 return le64_to_cpu(h->parentid);
7518a238
CM
670}
671
bb492bb0
CM
672static inline void btrfs_set_header_parentid(struct btrfs_header *h,
673 u64 parentid)
7518a238 674{
bb492bb0 675 h->parentid = cpu_to_le64(parentid);
7518a238
CM
676}
677
bb492bb0 678static inline u16 btrfs_header_nritems(struct btrfs_header *h)
7518a238 679{
bb492bb0 680 return le16_to_cpu(h->nritems);
7518a238
CM
681}
682
bb492bb0 683static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
7518a238 684{
bb492bb0 685 h->nritems = cpu_to_le16(val);
7518a238
CM
686}
687
bb492bb0 688static inline u16 btrfs_header_flags(struct btrfs_header *h)
7518a238 689{
bb492bb0 690 return le16_to_cpu(h->flags);
7518a238
CM
691}
692
bb492bb0 693static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
7518a238 694{
bb492bb0 695 h->flags = cpu_to_le16(val);
7518a238
CM
696}
697
bb492bb0 698static inline int btrfs_header_level(struct btrfs_header *h)
7518a238 699{
9a6f11ed 700 return h->level;
7518a238
CM
701}
702
bb492bb0 703static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
7518a238 704{
234b63a0 705 BUG_ON(level > BTRFS_MAX_LEVEL);
9a6f11ed 706 h->level = level;
7518a238
CM
707}
708
234b63a0 709static inline int btrfs_is_leaf(struct btrfs_node *n)
7518a238
CM
710{
711 return (btrfs_header_level(&n->header) == 0);
712}
713
3768f368
CM
714static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
715{
716 return le64_to_cpu(item->blocknr);
717}
718
719static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
720{
721 item->blocknr = cpu_to_le64(val);
722}
723
d6e4a428
CM
724static inline u64 btrfs_root_dirid(struct btrfs_root_item *item)
725{
726 return le64_to_cpu(item->root_dirid);
727}
728
729static inline void btrfs_set_root_dirid(struct btrfs_root_item *item, u64 val)
730{
731 item->root_dirid = cpu_to_le64(val);
732}
733
3768f368
CM
734static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
735{
736 return le32_to_cpu(item->refs);
737}
738
739static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
740{
741 item->refs = cpu_to_le32(val);
742}
743
744static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
745{
746 return le64_to_cpu(s->blocknr);
747}
748
749static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
750{
751 s->blocknr = cpu_to_le64(val);
752}
753
0f7d52f4
CM
754static inline u64 btrfs_super_generation(struct btrfs_super_block *s)
755{
756 return le64_to_cpu(s->generation);
757}
758
759static inline void btrfs_set_super_generation(struct btrfs_super_block *s,
760 u64 val)
761{
762 s->generation = cpu_to_le64(val);
763}
764
3768f368
CM
765static inline u64 btrfs_super_root(struct btrfs_super_block *s)
766{
767 return le64_to_cpu(s->root);
768}
769
770static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
771{
772 s->root = cpu_to_le64(val);
773}
774
775static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
776{
777 return le64_to_cpu(s->total_blocks);
778}
779
780static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
781 u64 val)
782{
783 s->total_blocks = cpu_to_le64(val);
784}
785
786static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
787{
788 return le64_to_cpu(s->blocks_used);
789}
790
791static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
792 u64 val)
793{
794 s->blocks_used = cpu_to_le64(val);
795}
796
123abc88 797static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
3768f368 798{
123abc88 799 return le32_to_cpu(s->blocksize);
3768f368
CM
800}
801
802static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
123abc88
CM
803 u32 val)
804{
805 s->blocksize = cpu_to_le32(val);
806}
807
2e635a27
CM
808static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
809{
810 return le64_to_cpu(s->root_dir_objectid);
811}
812
813static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
814 val)
815{
816 s->root_dir_objectid = cpu_to_le64(val);
817}
818
123abc88 819static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
3768f368 820{
123abc88 821 return (u8 *)l->items;
3768f368 822}
9f5fae2f
CM
823
824static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
825 *e)
826{
827 return le64_to_cpu(e->disk_blocknr);
828}
829
830static inline void btrfs_set_file_extent_disk_blocknr(struct
831 btrfs_file_extent_item
832 *e, u64 val)
833{
834 e->disk_blocknr = cpu_to_le64(val);
835}
836
71951f35
CM
837static inline u64 btrfs_file_extent_generation(struct btrfs_file_extent_item *e)
838{
839 return le64_to_cpu(e->generation);
840}
841
842static inline void btrfs_set_file_extent_generation(struct
843 btrfs_file_extent_item *e,
844 u64 val)
845{
846 e->generation = cpu_to_le64(val);
847}
848
9f5fae2f
CM
849static inline u64 btrfs_file_extent_disk_num_blocks(struct
850 btrfs_file_extent_item *e)
851{
852 return le64_to_cpu(e->disk_num_blocks);
853}
854
855static inline void btrfs_set_file_extent_disk_num_blocks(struct
856 btrfs_file_extent_item
857 *e, u64 val)
858{
859 e->disk_num_blocks = cpu_to_le64(val);
860}
861
862static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
863{
864 return le64_to_cpu(e->offset);
865}
866
867static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
868 *e, u64 val)
869{
870 e->offset = cpu_to_le64(val);
871}
872
873static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
874 *e)
875{
876 return le64_to_cpu(e->num_blocks);
877}
878
879static inline void btrfs_set_file_extent_num_blocks(struct
880 btrfs_file_extent_item *e,
881 u64 val)
882{
883 e->num_blocks = cpu_to_le64(val);
884}
885
c5739bba
CM
886static inline u32 btrfs_inode_map_refs(struct btrfs_inode_map_item *m)
887{
888 return le32_to_cpu(m->refs);
889}
890
891static inline void btrfs_set_inode_map_refs(struct btrfs_inode_map_item *m,
892 u32 val)
893{
894 m->refs = cpu_to_le32(val);
895}
896
e20d96d6
CM
897static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
898{
899 return sb->s_fs_info;
900}
901
d6025579
CM
902static inline void btrfs_check_bounds(void *vptr, size_t len,
903 void *vcontainer, size_t container_len)
904{
905 char *ptr = vptr;
906 char *container = vcontainer;
907 WARN_ON(ptr < container);
908 WARN_ON(ptr + len > container + container_len);
909}
910
911static inline void btrfs_memcpy(struct btrfs_root *root,
912 void *dst_block,
913 void *dst, const void *src, size_t nr)
914{
915 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
916 memcpy(dst, src, nr);
917}
918
919static inline void btrfs_memmove(struct btrfs_root *root,
920 void *dst_block,
921 void *dst, void *src, size_t nr)
922{
923 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
924 memmove(dst, src, nr);
925}
926
927static inline void btrfs_mark_buffer_dirty(struct buffer_head *bh)
928{
929 WARN_ON(!atomic_read(&bh->b_count));
930 mark_buffer_dirty(bh);
931}
932
4beb1b8b
CM
933/* helper function to cast into the data area of the leaf. */
934#define btrfs_item_ptr(leaf, slot, type) \
123abc88
CM
935 ((type *)(btrfs_leaf_data(leaf) + \
936 btrfs_item_offset((leaf)->items + (slot))))
4beb1b8b 937
dee26a9f 938/* extent-item.c */
c5739bba
CM
939int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
940 struct btrfs_root *root);
e20d96d6 941struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
e089f05c 942 struct btrfs_root *root);
dee26a9f
CM
943int btrfs_alloc_extent(struct btrfs_trans_handle *trans, struct btrfs_root
944 *root, u64 num_blocks, u64 search_start, u64
945 search_end, u64 owner, struct btrfs_key *ins);
e089f05c 946int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
e20d96d6 947 struct buffer_head *buf);
e089f05c
CM
948int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
949 *root, u64 blocknr, u64 num_blocks, int pin);
dee26a9f
CM
950int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
951 btrfs_root *root);
952/* ctree.c */
e089f05c
CM
953int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
954 *root, struct btrfs_key *key, struct btrfs_path *p, int
955 ins_len, int cow);
234b63a0 956void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
2c90e5d6
CM
957struct btrfs_path *btrfs_alloc_path(void);
958void btrfs_free_path(struct btrfs_path *p);
234b63a0 959void btrfs_init_path(struct btrfs_path *p);
e089f05c
CM
960int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
961 struct btrfs_path *path);
962int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
963 *root, struct btrfs_key *key, void *data, u32 data_size);
964int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
965 *root, struct btrfs_path *path, struct btrfs_key
966 *cpu_key, u32 data_size);
234b63a0 967int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
123abc88 968int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
e089f05c 969int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
e20d96d6 970 *root, struct buffer_head *snap);
dee26a9f 971/* root-item.c */
e089f05c
CM
972int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
973 struct btrfs_key *key);
974int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
975 *root, struct btrfs_key *key, struct btrfs_root_item
976 *item);
977int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
978 *root, struct btrfs_key *key, struct btrfs_root_item
979 *item);
980int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
981 btrfs_root_item *item, struct btrfs_key *key);
dee26a9f 982/* dir-item.c */
e089f05c 983int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
d6e4a428
CM
984 *root, const char *name, int name_len, u64 dir,
985 struct btrfs_key *location, u8 type);
e089f05c 986int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
e20d96d6
CM
987 *root, struct btrfs_path *path, u64 dir,
988 const char *name, int name_len, int mod);
5f26f772
CM
989int btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
990 struct btrfs_root *root,
991 struct btrfs_path *path, u64 dir,
992 u64 objectid, int mod);
1d4f6404 993int btrfs_match_dir_item_name(struct btrfs_root *root, struct btrfs_path *path,
7f5c1516 994 const char *name, int name_len);
dee26a9f 995/* inode-map.c */
9f5fae2f
CM
996int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
997 struct btrfs_root *fs_root,
998 u64 dirid, u64 *objectid);
999int btrfs_insert_inode_map(struct btrfs_trans_handle *trans,
1000 struct btrfs_root *root,
1001 u64 objectid, struct btrfs_key *location);
1002int btrfs_lookup_inode_map(struct btrfs_trans_handle *trans,
1003 struct btrfs_root *root, struct btrfs_path *path,
1004 u64 objectid, int mod);
5be6f7f1
CM
1005int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1006
dee26a9f 1007/* inode-item.c */
293ffd5f
CM
1008int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1009 *root, u64 objectid, struct btrfs_inode_item
1010 *inode_item);
1011int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
d6e4a428
CM
1012 *root, struct btrfs_path *path,
1013 struct btrfs_key *location, int mod);
dee26a9f
CM
1014
1015/* file-item.c */
1016int btrfs_alloc_file_extent(struct btrfs_trans_handle *trans,
1017 struct btrfs_root *root,
1018 u64 objectid, u64 offset,
1019 u64 num_blocks, u64 hint_block,
1020 u64 *result);
1021int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1022 struct btrfs_root *root,
1023 struct btrfs_path *path, u64 objectid,
9773a788 1024 u64 blocknr, int mod);
f254e52c
CM
1025int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
1026 struct btrfs_root *root,
1027 u64 objectid, u64 offset,
1028 char *data, size_t len);
1029int btrfs_csum_verify_file_block(struct btrfs_root *root,
1030 u64 objectid, u64 offset,
1031 char *data, size_t len);
d6e4a428
CM
1032/* super.c */
1033extern struct subsystem btrfs_subsys;
1034
eb60ceac 1035#endif