Update btrfs-progs to better match the kernel
[platform/upstream/btrfs-progs.git] / ctree.h
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18
19 #ifndef __BTRFS__
20 #define __BTRFS__
21
22 #include "list.h"
23 #include "kerncompat.h"
24 #include "radix-tree.h"
25 #include "extent-cache.h"
26 struct btrfs_root;
27 struct btrfs_trans_handle;
28 #define BTRFS_MAGIC "_B2RfS_M"
29
30 #define BTRFS_ROOT_TREE_OBJECTID 1ULL
31 #define BTRFS_EXTENT_TREE_OBJECTID 2ULL
32 #define BTRFS_FS_TREE_OBJECTID 3ULL
33 #define BTRFS_ROOT_TREE_DIR_OBJECTID 4ULL
34 #define BTRFS_FIRST_FREE_OBJECTID 5ULL
35
36 /*
37  * we can actually store much bigger names, but lets not confuse the rest
38  * of linux
39  */
40 #define BTRFS_NAME_LEN 255
41
42 /* 32 bytes in various csum fields */
43 #define BTRFS_CSUM_SIZE 32
44 /* four bytes for CRC32 */
45 #define BTRFS_CRC32_SIZE 4
46
47 #define BTRFS_FT_UNKNOWN        0
48 #define BTRFS_FT_REG_FILE       1
49 #define BTRFS_FT_DIR            2
50 #define BTRFS_FT_CHRDEV         3
51 #define BTRFS_FT_BLKDEV         4
52 #define BTRFS_FT_FIFO           5
53 #define BTRFS_FT_SOCK           6
54 #define BTRFS_FT_SYMLINK        7
55 #define BTRFS_FT_XATTR          8
56 #define BTRFS_FT_MAX            9
57
58 /*
59  * the key defines the order in the tree, and so it also defines (optimal)
60  * block layout.  objectid corresonds to the inode number.  The flags
61  * tells us things about the object, and is a kind of stream selector.
62  * so for a given inode, keys with flags of 1 might refer to the inode
63  * data, flags of 2 may point to file data in the btree and flags == 3
64  * may point to extents.
65  *
66  * offset is the starting byte offset for this key in the stream.
67  *
68  * btrfs_disk_key is in disk byte order.  struct btrfs_key is always
69  * in cpu native order.  Otherwise they are identical and their sizes
70  * should be the same (ie both packed)
71  */
72 struct btrfs_disk_key {
73         __le64 objectid;
74         u8 type;
75         __le64 offset;
76 } __attribute__ ((__packed__));
77
78 struct btrfs_key {
79         u64 objectid;
80         u8 type;
81         u64 offset;
82 } __attribute__ ((__packed__));
83
84 /*
85  * every tree block (leaf or node) starts with this header.
86  */
87 struct btrfs_header {
88         u8 csum[BTRFS_CSUM_SIZE];
89         u8 fsid[16]; /* FS specific uuid */
90         __le64 bytenr; /* which block this node is supposed to live in */
91         __le64 generation;
92         __le64 owner;
93         __le32 nritems;
94         __le16 flags;
95         u8 level;
96 } __attribute__ ((__packed__));
97
98 #define BTRFS_MAX_LEVEL 8
99 #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
100                                 sizeof(struct btrfs_header)) / \
101                                (sizeof(struct btrfs_disk_key) + sizeof(u64)))
102 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
103 #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
104 #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
105                                         sizeof(struct btrfs_item) - \
106                                         sizeof(struct btrfs_file_extent_item))
107 struct btrfs_buffer;
108 /*
109  * the super block basically lists the main trees of the FS
110  * it currently lacks any block count etc etc
111  */
112 struct btrfs_super_block {
113         u8 csum[BTRFS_CSUM_SIZE];
114         /* the first 3 fields must match struct btrfs_header */
115         u8 fsid[16];    /* FS specific uuid */
116         __le64 bytenr; /* this block number */
117         __le64 magic;
118         __le64 generation;
119         __le64 root;
120         __le64 total_bytes;
121         __le64 bytes_used;
122         __le64 root_dir_objectid;
123         __le32 sectorsize;
124         __le32 nodesize;
125         __le32 leafsize;
126         __le32 stripesize;
127         u8 root_level;
128 } __attribute__ ((__packed__));
129
130 /*
131  * A leaf is full of items. offset and size tell us where to find
132  * the item in the leaf (relative to the start of the data area)
133  */
134 struct btrfs_item {
135         struct btrfs_disk_key key;
136         __le32 offset;
137         __le32 size;
138 } __attribute__ ((__packed__));
139
140 /*
141  * leaves have an item area and a data area:
142  * [item0, item1....itemN] [free space] [dataN...data1, data0]
143  *
144  * The data is separate from the items to get the keys closer together
145  * during searches.
146  */
147 struct btrfs_leaf {
148         struct btrfs_header header;
149         struct btrfs_item items[];
150 } __attribute__ ((__packed__));
151
152 /*
153  * all non-leaf blocks are nodes, they hold only keys and pointers to
154  * other blocks
155  */
156 struct btrfs_key_ptr {
157         struct btrfs_disk_key key;
158         __le64 blockptr;
159 } __attribute__ ((__packed__));
160
161 struct btrfs_node {
162         struct btrfs_header header;
163         struct btrfs_key_ptr ptrs[];
164 } __attribute__ ((__packed__));
165
166 /*
167  * btrfs_paths remember the path taken from the root down to the leaf.
168  * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
169  * to any other levels that are present.
170  *
171  * The slots array records the index of the item or block pointer
172  * used while walking the tree.
173  */
174 struct btrfs_path {
175         struct btrfs_buffer *nodes[BTRFS_MAX_LEVEL];
176         int slots[BTRFS_MAX_LEVEL];
177 };
178
179 /*
180  * items in the extent btree are used to record the objectid of the
181  * owner of the block and the number of references
182  */
183 struct btrfs_extent_item {
184         __le32 refs;
185         __le64 owner;
186 } __attribute__ ((__packed__));
187
188 struct btrfs_inode_timespec {
189         __le64 sec;
190         __le32 nsec;
191 } __attribute__ ((__packed__));
192
193 /*
194  * there is no padding here on purpose.  If you want to extent the inode,
195  * make a new item type
196  */
197 struct btrfs_inode_item {
198         __le64 generation;
199         __le64 size;
200         __le64 nblocks;
201         __le64 block_group;
202         __le32 nlink;
203         __le32 uid;
204         __le32 gid;
205         __le32 mode;
206         __le32 rdev;
207         __le16 flags;
208         __le16 compat_flags;
209         struct btrfs_inode_timespec atime;
210         struct btrfs_inode_timespec ctime;
211         struct btrfs_inode_timespec mtime;
212         struct btrfs_inode_timespec otime;
213 } __attribute__ ((__packed__));
214
215 /* inline data is just a blob of bytes */
216 struct btrfs_inline_data_item {
217         u8 data;
218 } __attribute__ ((__packed__));
219
220 struct btrfs_dir_item {
221         struct btrfs_disk_key location;
222         __le16 data_len;
223         __le16 name_len;
224         u8 type;
225 } __attribute__ ((__packed__));
226
227 struct btrfs_root_item {
228         struct btrfs_inode_item inode;
229         __le64 root_dirid;
230         __le64 bytenr;
231         __le64 byte_limit;
232         __le64 bytes_used;
233         __le32 flags;
234         __le32 refs;
235         struct btrfs_disk_key drop_progress;
236         u8 drop_level;
237         u8 level;
238 } __attribute__ ((__packed__));
239
240 #define BTRFS_FILE_EXTENT_REG 0
241 #define BTRFS_FILE_EXTENT_INLINE 1
242
243 struct btrfs_file_extent_item {
244         __le64 generation;
245         u8 type;
246         /*
247          * disk space consumed by the extent, checksum blocks are included
248          * in these numbers
249          */
250         __le64 disk_bytenr;
251         __le64 disk_num_bytes;
252         /*
253          * the logical offset in file blocks (no csums)
254          * this extent record is for.  This allows a file extent to point
255          * into the middle of an existing extent on disk, sharing it
256          * between two snapshots (useful if some bytes in the middle of the
257          * extent have changed
258          */
259         __le64 offset;
260         /*
261          * the logical number of file blocks (no csums included)
262          */
263         __le64 num_bytes;
264 } __attribute__ ((__packed__));
265
266 struct btrfs_csum_item {
267         u8 csum[BTRFS_CSUM_SIZE];
268 } __attribute__ ((__packed__));
269
270 /* tag for the radix tree of block groups in ram */
271 #define BTRFS_BLOCK_GROUP_DIRTY 0
272 #define BTRFS_BLOCK_GROUP_SIZE (256 * 1024 * 1024)
273
274
275 #define BTRFS_BLOCK_GROUP_DATA 1
276 struct btrfs_block_group_item {
277         __le64 used;
278         u8 flags;
279 } __attribute__ ((__packed__));
280
281 struct btrfs_block_group_cache {
282         struct cache_extent cache;
283         struct btrfs_key key;
284         struct btrfs_block_group_item item;
285         int dirty;
286 };
287
288 struct btrfs_fs_info {
289         struct btrfs_root *fs_root;
290         struct btrfs_root *extent_root;
291         struct btrfs_root *tree_root;
292         struct btrfs_key last_insert;
293         struct cache_tree extent_cache;
294         struct cache_tree block_group_cache;
295         struct cache_tree pending_tree;
296         struct cache_tree pinned_tree;
297         struct cache_tree del_pending;
298         struct list_head trans;
299         struct list_head cache;
300         u64 last_inode_alloc;
301         u64 last_inode_alloc_dirid;
302         u64 generation;
303         int cache_size;
304         int fp;
305         struct btrfs_trans_handle *running_transaction;
306         struct btrfs_super_block *disk_super;
307 };
308
309 /*
310  * in ram representation of the tree.  extent_root is used for all allocations
311  * and for the extent tree extent_root root.
312  */
313 struct btrfs_root {
314         struct btrfs_buffer *node;
315         struct btrfs_buffer *commit_root;
316         struct btrfs_root_item root_item;
317         struct btrfs_key root_key;
318         struct btrfs_fs_info *fs_info;
319
320         /* data allocations are done in sectorsize units */
321         u32 sectorsize;
322
323         /* node allocations are done in nodesize units */
324         u32 nodesize;
325
326         /* leaf allocations are done in leafsize units */
327         u32 leafsize;
328
329         /* leaf allocations are done in leafsize units */
330         u32 stripesize;
331
332         int ref_cows;
333         u32 type;
334 };
335
336 /* the lower bits in the key flags defines the item type */
337 #define BTRFS_KEY_TYPE_MAX      256
338 #define BTRFS_KEY_TYPE_SHIFT    24
339 #define BTRFS_KEY_TYPE_MASK     (((u32)BTRFS_KEY_TYPE_MAX - 1) << \
340                                   BTRFS_KEY_TYPE_SHIFT)
341
342 /*
343  * inode items have the data typically returned from stat and store other
344  * info about object characteristics.  There is one for every file and dir in
345  * the FS
346  */
347 #define BTRFS_INODE_ITEM_KEY            1
348 #define BTRFS_XATTR_ITEM_KEY            2
349
350 /* reserve 3-15 close to the inode for later flexibility */
351
352 /*
353  * dir items are the name -> inode pointers in a directory.  There is one
354  * for every name in a directory.
355  */
356 #define BTRFS_DIR_ITEM_KEY      16
357 #define BTRFS_DIR_INDEX_KEY     17
358 /*
359  * extent data is for file data
360  */
361 #define BTRFS_EXTENT_DATA_KEY   18
362 /*
363  * csum items have the checksums for data in the extents
364  */
365 #define BTRFS_CSUM_ITEM_KEY     19
366
367 /* reserve 20-31 for other file stuff */
368
369 /*
370  * root items point to tree roots.  There are typically in the root
371  * tree used by the super block to find all the other trees
372  */
373 #define BTRFS_ROOT_ITEM_KEY     32
374 /*
375  * extent items are in the extent map tree.  These record which blocks
376  * are used, and how many references there are to each block
377  */
378 #define BTRFS_EXTENT_ITEM_KEY   33
379
380 /*
381  * block groups give us hints into the extent allocation trees.  Which
382  * blocks are free etc etc
383  */
384 #define BTRFS_BLOCK_GROUP_ITEM_KEY 34
385
386 /*
387  * string items are for debugging.  They just store a short string of
388  * data in the FS
389  */
390 #define BTRFS_STRING_ITEM_KEY   253
391
392
393 static inline u64 btrfs_block_group_used(struct btrfs_block_group_item *bi)
394 {
395         return le64_to_cpu(bi->used);
396 }
397
398 static inline void btrfs_set_block_group_used(struct
399                                                    btrfs_block_group_item *bi,
400                                                    u64 val)
401 {
402         bi->used = cpu_to_le64(val);
403 }
404
405 static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
406 {
407         return le64_to_cpu(i->generation);
408 }
409
410 static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
411                                               u64 val)
412 {
413         i->generation = cpu_to_le64(val);
414 }
415
416 static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
417 {
418         return le64_to_cpu(i->size);
419 }
420
421 static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
422 {
423         i->size = cpu_to_le64(val);
424 }
425
426 static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
427 {
428         return le64_to_cpu(i->nblocks);
429 }
430
431 static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
432 {
433         i->nblocks = cpu_to_le64(val);
434 }
435
436 static inline u64 btrfs_inode_block_group(struct btrfs_inode_item *i)
437 {
438         return le64_to_cpu(i->block_group);
439 }
440
441 static inline void btrfs_set_inode_block_group(struct btrfs_inode_item *i,
442                                                 u64 val)
443 {
444         i->block_group = cpu_to_le64(val);
445 }
446
447 static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
448 {
449         return le32_to_cpu(i->nlink);
450 }
451
452 static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
453 {
454         i->nlink = cpu_to_le32(val);
455 }
456
457 static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
458 {
459         return le32_to_cpu(i->uid);
460 }
461
462 static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
463 {
464         i->uid = cpu_to_le32(val);
465 }
466
467 static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
468 {
469         return le32_to_cpu(i->gid);
470 }
471
472 static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
473 {
474         i->gid = cpu_to_le32(val);
475 }
476
477 static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
478 {
479         return le32_to_cpu(i->mode);
480 }
481
482 static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
483 {
484         i->mode = cpu_to_le32(val);
485 }
486
487 static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
488 {
489         return le32_to_cpu(i->rdev);
490 }
491
492 static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
493 {
494         i->rdev = cpu_to_le32(val);
495 }
496
497 static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
498 {
499         return le16_to_cpu(i->flags);
500 }
501
502 static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
503 {
504         i->flags = cpu_to_le16(val);
505 }
506
507 static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
508 {
509         return le16_to_cpu(i->compat_flags);
510 }
511
512 static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
513                                                 u16 val)
514 {
515         i->compat_flags = cpu_to_le16(val);
516 }
517
518 static inline u64 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
519 {
520         return le64_to_cpu(ts->sec);
521 }
522
523 static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
524                                           u64 val)
525 {
526         ts->sec = cpu_to_le64(val);
527 }
528
529 static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
530 {
531         return le32_to_cpu(ts->nsec);
532 }
533
534 static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
535                                           u32 val)
536 {
537         ts->nsec = cpu_to_le32(val);
538 }
539
540 static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
541 {
542         return le32_to_cpu(ei->refs);
543 }
544
545 static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
546 {
547         ei->refs = cpu_to_le32(val);
548 }
549
550 static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
551 {
552         return le64_to_cpu(ei->owner);
553 }
554
555 static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
556 {
557         ei->owner = cpu_to_le64(val);
558 }
559
560 static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
561 {
562         return le64_to_cpu(n->ptrs[nr].blockptr);
563 }
564
565
566 static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
567                                            u64 val)
568 {
569         n->ptrs[nr].blockptr = cpu_to_le64(val);
570 }
571
572 static inline u32 btrfs_item_offset(struct btrfs_item *item)
573 {
574         return le32_to_cpu(item->offset);
575 }
576
577 static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
578 {
579         item->offset = cpu_to_le32(val);
580 }
581
582 static inline u32 btrfs_item_end(struct btrfs_item *item)
583 {
584         return le32_to_cpu(item->offset) + le32_to_cpu(item->size);
585 }
586
587 static inline u32 btrfs_item_size(struct btrfs_item *item)
588 {
589         return le32_to_cpu(item->size);
590 }
591
592 static inline void btrfs_set_item_size(struct btrfs_item *item, u32 val)
593 {
594         item->size = cpu_to_le32(val);
595 }
596
597 static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
598 {
599         return d->type;
600 }
601
602 static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
603 {
604         d->type = val;
605 }
606
607 static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
608 {
609         return le16_to_cpu(d->name_len);
610 }
611
612 static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
613 {
614         d->name_len = cpu_to_le16(val);
615 }
616
617 static inline u16 btrfs_dir_data_len(struct btrfs_dir_item *d)
618 {
619         return le16_to_cpu(d->data_len);
620 }
621
622 static inline void btrfs_set_dir_data_len(struct btrfs_dir_item *d, u16 val)
623 {
624         d->data_len = cpu_to_le16(val);
625 }
626
627 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
628                                          struct btrfs_disk_key *disk)
629 {
630         cpu->offset = le64_to_cpu(disk->offset);
631         cpu->type = le32_to_cpu(disk->type);
632         cpu->objectid = le64_to_cpu(disk->objectid);
633 }
634
635 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
636                                          struct btrfs_key *cpu)
637 {
638         disk->offset = cpu_to_le64(cpu->offset);
639         disk->type = cpu_to_le32(cpu->type);
640         disk->objectid = cpu_to_le64(cpu->objectid);
641 }
642
643 static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
644 {
645         return le64_to_cpu(disk->objectid);
646 }
647
648 static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
649                                                u64 val)
650 {
651         disk->objectid = cpu_to_le64(val);
652 }
653
654 static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
655 {
656         return le64_to_cpu(disk->offset);
657 }
658
659 static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
660                                              u64 val)
661 {
662         disk->offset = cpu_to_le64(val);
663 }
664
665 static inline u8 btrfs_disk_key_type(struct btrfs_disk_key *key)
666 {
667         return key->type;
668 }
669
670 static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key, u8 val)
671 {
672         key->type = val;
673 }
674
675 static inline u32 btrfs_key_type(struct btrfs_key *key)
676 {
677         return key->type;
678 }
679
680 static inline void btrfs_set_key_type(struct btrfs_key *key, u32 val)
681 {
682         key->type = val;
683 }
684
685 static inline u64 btrfs_header_bytenr(struct btrfs_header *h)
686 {
687         return le64_to_cpu(h->bytenr);
688 }
689
690 static inline void btrfs_set_header_bytenr(struct btrfs_header *h, u64 bytenr)
691 {
692         h->bytenr = cpu_to_le64(bytenr);
693 }
694
695 static inline u64 btrfs_header_generation(struct btrfs_header *h)
696 {
697         return le64_to_cpu(h->generation);
698 }
699
700 static inline void btrfs_set_header_generation(struct btrfs_header *h,
701                                                u64 val)
702 {
703         h->generation = cpu_to_le64(val);
704 }
705
706 static inline u64 btrfs_header_owner(struct btrfs_header *h)
707 {
708         return le64_to_cpu(h->owner);
709 }
710
711 static inline void btrfs_set_header_owner(struct btrfs_header *h,
712                                                u64 val)
713 {
714         h->owner = cpu_to_le64(val);
715 }
716
717 static inline u32 btrfs_header_nritems(struct btrfs_header *h)
718 {
719         return le32_to_cpu(h->nritems);
720 }
721
722 static inline void btrfs_set_header_nritems(struct btrfs_header *h, u32 val)
723 {
724         h->nritems = cpu_to_le32(val);
725 }
726
727 static inline u16 btrfs_header_flags(struct btrfs_header *h)
728 {
729         return le16_to_cpu(h->flags);
730 }
731
732 static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
733 {
734         h->flags = cpu_to_le16(val);
735 }
736
737 static inline int btrfs_header_level(struct btrfs_header *h)
738 {
739         return h->level;
740 }
741
742 static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
743 {
744         BUG_ON(level > BTRFS_MAX_LEVEL);
745         h->level = level;
746 }
747
748 static inline int btrfs_is_leaf(struct btrfs_node *n)
749 {
750         return (btrfs_header_level(&n->header) == 0);
751 }
752
753 static inline u64 btrfs_root_bytenr(struct btrfs_root_item *item)
754 {
755         return le64_to_cpu(item->bytenr);
756 }
757
758 static inline void btrfs_set_root_bytenr(struct btrfs_root_item *item, u64 val)
759 {
760         item->bytenr = cpu_to_le64(val);
761 }
762
763 static inline u64 btrfs_root_byte_limit(struct btrfs_root_item *item)
764 {
765         return le64_to_cpu(item->byte_limit);
766 }
767
768 static inline void btrfs_set_root_byte_limit(struct btrfs_root_item *item,
769                                              u64 val)
770 {
771         item->byte_limit = cpu_to_le64(val);
772 }
773
774 static inline u8 btrfs_root_level(struct btrfs_root_item *item)
775 {
776         return item->level;
777 }
778
779 static inline void btrfs_set_root_level(struct btrfs_root_item *item, u8 val)
780 {
781         item->level = val;
782 }
783
784 static inline u64 btrfs_root_dirid(struct btrfs_root_item *item)
785 {
786         return le64_to_cpu(item->root_dirid);
787 }
788
789 static inline void btrfs_set_root_dirid(struct btrfs_root_item *item, u64 val)
790 {
791         item->root_dirid = cpu_to_le64(val);
792 }
793
794 static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
795 {
796         return le32_to_cpu(item->refs);
797 }
798
799 static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
800 {
801         item->refs = cpu_to_le32(val);
802 }
803
804 static inline u32 btrfs_root_flags(struct btrfs_root_item *item)
805 {
806         return le32_to_cpu(item->flags);
807 }
808
809 static inline void btrfs_set_root_flags(struct btrfs_root_item *item, u32 val)
810 {
811         item->flags = cpu_to_le32(val);
812 }
813
814 static inline void btrfs_set_root_bytes_used(struct btrfs_root_item *item,
815                                               u64 val)
816 {
817         item->bytes_used = cpu_to_le64(val);
818 }
819
820 static inline u64 btrfs_root_bytes_used(struct btrfs_root_item *item)
821 {
822         return le64_to_cpu(item->bytes_used);
823 }
824
825 static inline u64 btrfs_super_bytenr(struct btrfs_super_block *s)
826 {
827         return le64_to_cpu(s->bytenr);
828 }
829
830 static inline void btrfs_set_super_bytenr(struct btrfs_super_block *s, u64 val)
831 {
832         s->bytenr = cpu_to_le64(val);
833 }
834
835 static inline u64 btrfs_super_generation(struct btrfs_super_block *s)
836 {
837         return le64_to_cpu(s->generation);
838 }
839
840 static inline void btrfs_set_super_generation(struct btrfs_super_block *s,
841                                               u64 val)
842 {
843         s->generation = cpu_to_le64(val);
844 }
845
846 static inline u8 btrfs_super_root_level(struct btrfs_super_block *s)
847 {
848         return s->root_level;
849 }
850
851 static inline void btrfs_set_super_root_level(struct btrfs_super_block *s,
852                                               u8 val)
853 {
854         s->root_level = val;
855 }
856
857 static inline u64 btrfs_super_root(struct btrfs_super_block *s)
858 {
859         return le64_to_cpu(s->root);
860 }
861
862 static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
863 {
864         s->root = cpu_to_le64(val);
865 }
866
867 static inline u64 btrfs_super_total_bytes(struct btrfs_super_block *s)
868 {
869         return le64_to_cpu(s->total_bytes);
870 }
871
872 static inline void btrfs_set_super_total_bytes(struct btrfs_super_block *s,
873                                                 u64 val)
874 {
875         s->total_bytes = cpu_to_le64(val);
876 }
877
878 static inline u64 btrfs_super_bytes_used(struct btrfs_super_block *s)
879 {
880         return le64_to_cpu(s->bytes_used);
881 }
882
883 static inline void btrfs_set_super_bytes_used(struct btrfs_super_block *s,
884                                                 u64 val)
885 {
886         s->bytes_used = cpu_to_le64(val);
887 }
888
889 static inline u32 btrfs_super_sectorsize(struct btrfs_super_block *s)
890 {
891         return le32_to_cpu(s->sectorsize);
892 }
893
894 static inline void btrfs_set_super_sectorsize(struct btrfs_super_block *s,
895                                                 u32 val)
896 {
897         s->sectorsize = cpu_to_le32(val);
898 }
899
900 static inline u32 btrfs_super_nodesize(struct btrfs_super_block *s)
901 {
902         return le32_to_cpu(s->nodesize);
903 }
904
905 static inline void btrfs_set_super_nodesize(struct btrfs_super_block *s,
906                                                 u32 val)
907 {
908         s->nodesize = cpu_to_le32(val);
909 }
910
911 static inline u32 btrfs_super_leafsize(struct btrfs_super_block *s)
912 {
913         return le32_to_cpu(s->leafsize);
914 }
915
916 static inline void btrfs_set_super_leafsize(struct btrfs_super_block *s,
917                                                 u32 val)
918 {
919         s->leafsize = cpu_to_le32(val);
920 }
921
922 static inline u32 btrfs_super_stripesize(struct btrfs_super_block *s)
923 {
924         return le32_to_cpu(s->stripesize);
925 }
926
927 static inline void btrfs_set_super_stripesize(struct btrfs_super_block *s,
928                                                 u32 val)
929 {
930         s->stripesize = cpu_to_le32(val);
931 }
932
933 static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
934 {
935         return le64_to_cpu(s->root_dir_objectid);
936 }
937
938 static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
939                                             val)
940 {
941         s->root_dir_objectid = cpu_to_le64(val);
942 }
943
944 static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
945 {
946         return (u8 *)l->items;
947 }
948
949 static inline int btrfs_file_extent_type(struct btrfs_file_extent_item *e)
950 {
951         return e->type;
952 }
953 static inline void btrfs_set_file_extent_type(struct btrfs_file_extent_item *e,
954                                               u8 val)
955 {
956         e->type = val;
957 }
958
959 static inline char *btrfs_file_extent_inline_start(struct
960                                                    btrfs_file_extent_item *e)
961 {
962         return (char *)(&e->disk_bytenr);
963 }
964
965 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
966 {
967         return (unsigned long)(&((struct
968                   btrfs_file_extent_item *)NULL)->disk_bytenr) + datasize;
969 }
970
971 static inline u32 btrfs_file_extent_inline_len(struct btrfs_item *e)
972 {
973         struct btrfs_file_extent_item *fe = NULL;
974         return btrfs_item_size(e) - (unsigned long)(&fe->disk_bytenr);
975 }
976
977 static inline u64 btrfs_file_extent_disk_bytenr(struct btrfs_file_extent_item
978                                                  *e)
979 {
980         return le64_to_cpu(e->disk_bytenr);
981 }
982
983 static inline void btrfs_set_file_extent_disk_bytenr(struct
984                                                       btrfs_file_extent_item
985                                                       *e, u64 val)
986 {
987         e->disk_bytenr = cpu_to_le64(val);
988 }
989
990 static inline u64 btrfs_file_extent_generation(struct btrfs_file_extent_item *e)
991 {
992         return le64_to_cpu(e->generation);
993 }
994
995 static inline void btrfs_set_file_extent_generation(struct
996                                                     btrfs_file_extent_item *e,
997                                                     u64 val)
998 {
999         e->generation = cpu_to_le64(val);
1000 }
1001
1002 static inline u64 btrfs_file_extent_disk_num_bytes(struct
1003                                                     btrfs_file_extent_item *e)
1004 {
1005         return le64_to_cpu(e->disk_num_bytes);
1006 }
1007
1008 static inline void btrfs_set_file_extent_disk_num_bytes(struct
1009                                                          btrfs_file_extent_item
1010                                                          *e, u64 val)
1011 {
1012         e->disk_num_bytes = cpu_to_le64(val);
1013 }
1014
1015 static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
1016 {
1017         return le64_to_cpu(e->offset);
1018 }
1019
1020 static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
1021                                                 *e, u64 val)
1022 {
1023         e->offset = cpu_to_le64(val);
1024 }
1025
1026 static inline u64 btrfs_file_extent_num_bytes(struct btrfs_file_extent_item
1027                                                *e)
1028 {
1029         return le64_to_cpu(e->num_bytes);
1030 }
1031
1032 static inline void btrfs_set_file_extent_num_bytes(struct
1033                                                     btrfs_file_extent_item *e,
1034                                                     u64 val)
1035 {
1036         e->num_bytes = cpu_to_le64(val);
1037 }
1038
1039 /* helper function to cast into the data area of the leaf. */
1040 #define btrfs_item_ptr(leaf, slot, type) \
1041         ((type *)(btrfs_leaf_data(leaf) + \
1042         btrfs_item_offset((leaf)->items + (slot))))
1043 #define btrfs_item_ptr_offset(leaf, slot) \
1044         ((unsigned long)(btrfs_leaf_data(leaf) + \
1045         btrfs_item_offset_nr(leaf, slot)))
1046
1047 static inline u32 btrfs_level_size(struct btrfs_root *root, int level)
1048 {
1049         if (level == 0)
1050                 return root->leafsize;
1051         return root->nodesize;
1052 }
1053 int btrfs_comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2);
1054 struct btrfs_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1055                                             struct btrfs_root *root,
1056                                             u32 blocksize);
1057 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1058                   struct btrfs_buffer *buf);
1059 int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
1060                        struct btrfs_root *root);
1061 int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1062                       *root, u64 bytenr, u64 num_bytes, int pin);
1063 int btrfs_cow_block(struct btrfs_trans_handle *trans,
1064                     struct btrfs_root *root, struct btrfs_buffer *buf,
1065                     struct btrfs_buffer *parent, int parent_slot,
1066                     struct btrfs_buffer **cow_ret);
1067 int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1068                       *root, struct btrfs_path *path, u32 data_size);
1069 int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1070                         struct btrfs_root *root,
1071                         struct btrfs_path *path,
1072                         u32 new_size, int from_end);
1073 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1074                       *root, struct btrfs_key *key, struct btrfs_path *p, int
1075                       ins_len, int cow);
1076 void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
1077 void btrfs_init_path(struct btrfs_path *p);
1078 int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1079                    struct btrfs_path *path);
1080 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1081                       *root, struct btrfs_key *key, void *data, u32 data_size);
1082 int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
1083                             *root, struct btrfs_path *path, struct btrfs_key
1084                             *cpu_key, u32 data_size);
1085 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
1086 int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
1087 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
1088                         *root, struct btrfs_buffer *snap);
1089 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
1090                                btrfs_root *root);
1091 int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1092                    struct btrfs_key *key);
1093 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1094                       *root, struct btrfs_key *key, struct btrfs_root_item
1095                       *item);
1096 int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1097                       *root, struct btrfs_key *key, struct btrfs_root_item
1098                       *item);
1099 int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1100                          btrfs_root_item *item, struct btrfs_key *key);
1101 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
1102                           *root, char *name, int name_len, u64 dir,
1103                           struct btrfs_key *location, u8 type);
1104 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1105                           struct btrfs_root *root, struct btrfs_path *path,
1106                           u64 dir, char *name, int name_len, int mod);
1107 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1108                               struct btrfs_path *path,
1109                               const char *name, int name_len);
1110 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1111                               struct btrfs_root *root,
1112                               struct btrfs_path *path,
1113                               struct btrfs_dir_item *di);
1114 int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1115                              struct btrfs_root *fs_root,
1116                              u64 dirid, u64 *objectid);
1117 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1118                        *root, u64 objectid, struct btrfs_inode_item
1119                        *inode_item);
1120 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1121                        *root, struct btrfs_path *path, u64 objectid, int mod);
1122 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1123                                     struct btrfs_root *root);
1124 int btrfs_free_block_groups(struct btrfs_fs_info *info);
1125 int btrfs_read_block_groups(struct btrfs_root *root);
1126 int btrfs_insert_block_group(struct btrfs_trans_handle *trans,
1127                              struct btrfs_root *root,
1128                              struct btrfs_key *key,
1129                              struct btrfs_block_group_item *bi);
1130 /* file-item.c */
1131 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
1132                              struct btrfs_root *root,
1133                              u64 objectid, u64 pos, u64 offset,
1134                              u64 disk_num_bytes, u64 num_bytes);
1135 int btrfs_insert_inline_file_extent(struct btrfs_trans_handle *trans,
1136                                     struct btrfs_root *root, u64 objectid,
1137                                     u64 offset, char *buffer, size_t size);
1138 int btrfs_lookup_csum(struct btrfs_trans_handle *trans, struct btrfs_root
1139                       *root, struct btrfs_path *path, u64 objectid,
1140                       u64 offset, int cow, struct btrfs_csum_item **item_ret);
1141 int btrfs_csum_file_block(struct btrfs_trans_handle *trans, struct btrfs_root
1142                           *root, struct btrfs_inode_item *inode,
1143                           u64 objectid, u64 offset, char *data, size_t len);
1144 #endif