blob: 96cec6352f12dde649d55265a7f6b44308dc520a [file] [log] [blame]
Chris Mason234b63a2007-03-13 10:46:10 -04001#ifndef __BTRFS__
2#define __BTRFS__
Chris Masoneb60cea2007-02-02 09:18:22 -05003
Chris Masone20d96d2007-03-22 12:13:20 -04004#include <linux/radix-tree.h>
5#include <linux/fs.h>
6
Chris Masone089f052007-03-16 16:20:31 -04007struct btrfs_trans_handle;
Chris Mason79154b12007-03-22 15:59:16 -04008struct btrfs_transaction;
Chris Masone089f052007-03-16 16:20:31 -04009
Chris Mason3768f362007-03-13 16:47:54 -040010#define BTRFS_MAGIC "_BtRfS_M"
Chris Masoneb60cea2007-02-02 09:18:22 -050011
Chris Mason3768f362007-03-13 16:47:54 -040012#define BTRFS_ROOT_TREE_OBJECTID 1
13#define BTRFS_EXTENT_TREE_OBJECTID 2
Chris Mason9f5fae22007-03-20 14:38:32 -040014#define BTRFS_INODE_MAP_OBJECTID 3
15#define BTRFS_FS_TREE_OBJECTID 4
Chris Mason3768f362007-03-13 16:47:54 -040016
Chris Masonfec577f2007-02-26 10:40:21 -050017/*
Chris Masone20d96d2007-03-22 12:13:20 -040018 * we can actually store much bigger names, but lets not confuse the rest
19 * of linux
20 */
21#define BTRFS_NAME_LEN 255
22
23/*
Chris Masonfec577f2007-02-26 10:40:21 -050024 * the key defines the order in the tree, and so it also defines (optimal)
25 * block layout. objectid corresonds to the inode number. The flags
26 * tells us things about the object, and is a kind of stream selector.
27 * so for a given inode, keys with flags of 1 might refer to the inode
28 * data, flags of 2 may point to file data in the btree and flags == 3
29 * may point to extents.
30 *
31 * offset is the starting byte offset for this key in the stream.
Chris Masone2fa7222007-03-12 16:22:34 -040032 *
33 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
34 * in cpu native order. Otherwise they are identical and their sizes
35 * should be the same (ie both packed)
Chris Masonfec577f2007-02-26 10:40:21 -050036 */
Chris Masone2fa7222007-03-12 16:22:34 -040037struct btrfs_disk_key {
38 __le64 objectid;
Chris Masona1516c82007-03-14 14:26:53 -040039 __le32 flags;
Chris Masona8a2ee02007-03-16 08:46:49 -040040 __le64 offset;
Chris Masone2fa7222007-03-12 16:22:34 -040041} __attribute__ ((__packed__));
42
43struct btrfs_key {
Chris Masoneb60cea2007-02-02 09:18:22 -050044 u64 objectid;
Chris Masona1516c82007-03-14 14:26:53 -040045 u32 flags;
Chris Masona8a2ee02007-03-16 08:46:49 -040046 u64 offset;
Chris Masoneb60cea2007-02-02 09:18:22 -050047} __attribute__ ((__packed__));
48
Chris Masonfec577f2007-02-26 10:40:21 -050049/*
50 * every tree block (leaf or node) starts with this header.
51 */
Chris Masonbb492bb2007-03-12 12:29:44 -040052struct btrfs_header {
Chris Mason3768f362007-03-13 16:47:54 -040053 u8 fsid[16]; /* FS specific uuid */
Chris Masonbb492bb2007-03-12 12:29:44 -040054 __le64 blocknr; /* which block this node is supposed to live in */
Chris Mason7f5c1512007-03-23 15:56:19 -040055 __le64 generation;
Chris Masonbb492bb2007-03-12 12:29:44 -040056 __le64 parentid; /* objectid of the tree root */
57 __le32 csum;
58 __le32 ham;
59 __le16 nritems;
60 __le16 flags;
Chris Masonfec577f2007-02-26 10:40:21 -050061 /* generation flags to be added */
Chris Masoneb60cea2007-02-02 09:18:22 -050062} __attribute__ ((__packed__));
63
Chris Mason234b63a2007-03-13 10:46:10 -040064#define BTRFS_MAX_LEVEL 8
Chris Mason123abc82007-03-14 14:14:43 -040065#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
66 sizeof(struct btrfs_header)) / \
67 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
68#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
69#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
Chris Masoneb60cea2007-02-02 09:18:22 -050070
Chris Masone20d96d2007-03-22 12:13:20 -040071struct buffer_head;
Chris Masonfec577f2007-02-26 10:40:21 -050072/*
Chris Masonfec577f2007-02-26 10:40:21 -050073 * the super block basically lists the main trees of the FS
74 * it currently lacks any block count etc etc
75 */
Chris Mason234b63a2007-03-13 10:46:10 -040076struct btrfs_super_block {
Chris Mason3768f362007-03-13 16:47:54 -040077 u8 fsid[16]; /* FS specific uuid */
78 __le64 blocknr; /* this block number */
79 __le32 csum;
80 __le64 magic;
Chris Mason123abc82007-03-14 14:14:43 -040081 __le32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -040082 __le64 generation;
83 __le64 root;
84 __le64 total_blocks;
85 __le64 blocks_used;
Chris Mason2e635a22007-03-21 11:12:56 -040086 __le64 root_dir_objectid;
Chris Masoncfaa7292007-02-21 17:04:57 -050087} __attribute__ ((__packed__));
88
Chris Masonfec577f2007-02-26 10:40:21 -050089/*
Chris Mason62e27492007-03-15 12:56:47 -040090 * A leaf is full of items. offset and size tell us where to find
Chris Masonfec577f2007-02-26 10:40:21 -050091 * the item in the leaf (relative to the start of the data area)
92 */
Chris Mason0783fcf2007-03-12 20:12:07 -040093struct btrfs_item {
Chris Masone2fa7222007-03-12 16:22:34 -040094 struct btrfs_disk_key key;
Chris Mason123abc82007-03-14 14:14:43 -040095 __le32 offset;
Chris Mason0783fcf2007-03-12 20:12:07 -040096 __le16 size;
Chris Masoneb60cea2007-02-02 09:18:22 -050097} __attribute__ ((__packed__));
98
Chris Masonfec577f2007-02-26 10:40:21 -050099/*
100 * leaves have an item area and a data area:
101 * [item0, item1....itemN] [free space] [dataN...data1, data0]
102 *
103 * The data is separate from the items to get the keys closer together
104 * during searches.
105 */
Chris Mason234b63a2007-03-13 10:46:10 -0400106struct btrfs_leaf {
Chris Masonbb492bb2007-03-12 12:29:44 -0400107 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400108 struct btrfs_item items[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500109} __attribute__ ((__packed__));
110
Chris Masonfec577f2007-02-26 10:40:21 -0500111/*
112 * all non-leaf blocks are nodes, they hold only keys and pointers to
113 * other blocks
114 */
Chris Mason123abc82007-03-14 14:14:43 -0400115struct btrfs_key_ptr {
116 struct btrfs_disk_key key;
117 __le64 blockptr;
118} __attribute__ ((__packed__));
119
Chris Mason234b63a2007-03-13 10:46:10 -0400120struct btrfs_node {
Chris Masonbb492bb2007-03-12 12:29:44 -0400121 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400122 struct btrfs_key_ptr ptrs[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500123} __attribute__ ((__packed__));
124
Chris Masonfec577f2007-02-26 10:40:21 -0500125/*
Chris Mason234b63a2007-03-13 10:46:10 -0400126 * btrfs_paths remember the path taken from the root down to the leaf.
127 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
Chris Masonfec577f2007-02-26 10:40:21 -0500128 * to any other levels that are present.
129 *
130 * The slots array records the index of the item or block pointer
131 * used while walking the tree.
132 */
Chris Mason234b63a2007-03-13 10:46:10 -0400133struct btrfs_path {
Chris Masone20d96d2007-03-22 12:13:20 -0400134 struct buffer_head *nodes[BTRFS_MAX_LEVEL];
Chris Mason234b63a2007-03-13 10:46:10 -0400135 int slots[BTRFS_MAX_LEVEL];
Chris Masoneb60cea2007-02-02 09:18:22 -0500136};
Chris Mason5de08d72007-02-24 06:24:44 -0500137
Chris Mason62e27492007-03-15 12:56:47 -0400138/*
139 * items in the extent btree are used to record the objectid of the
140 * owner of the block and the number of references
141 */
142struct btrfs_extent_item {
143 __le32 refs;
144 __le64 owner;
145} __attribute__ ((__packed__));
146
Chris Mason1e1d2702007-03-15 19:03:33 -0400147struct btrfs_inode_timespec {
148 __le32 sec;
149 __le32 nsec;
150} __attribute__ ((__packed__));
151
152/*
153 * there is no padding here on purpose. If you want to extent the inode,
154 * make a new item type
155 */
156struct btrfs_inode_item {
157 __le64 generation;
158 __le64 size;
159 __le64 nblocks;
160 __le32 nlink;
161 __le32 uid;
162 __le32 gid;
163 __le32 mode;
164 __le32 rdev;
165 __le16 flags;
166 __le16 compat_flags;
167 struct btrfs_inode_timespec atime;
168 struct btrfs_inode_timespec ctime;
169 struct btrfs_inode_timespec mtime;
170 struct btrfs_inode_timespec otime;
171} __attribute__ ((__packed__));
172
173/* inline data is just a blob of bytes */
174struct btrfs_inline_data_item {
175 u8 data;
176} __attribute__ ((__packed__));
177
Chris Mason62e27492007-03-15 12:56:47 -0400178struct btrfs_dir_item {
179 __le64 objectid;
180 __le16 flags;
Chris Masona8a2ee02007-03-16 08:46:49 -0400181 __le16 name_len;
Chris Mason62e27492007-03-15 12:56:47 -0400182 u8 type;
183} __attribute__ ((__packed__));
184
185struct btrfs_root_item {
186 __le64 blocknr;
187 __le32 flags;
188 __le64 block_limit;
189 __le64 blocks_used;
190 __le32 refs;
Chris Mason9f5fae22007-03-20 14:38:32 -0400191} __attribute__ ((__packed__));
192
193struct btrfs_file_extent_item {
194 /*
195 * disk space consumed by the extent, checksum blocks are included
196 * in these numbers
197 */
198 __le64 disk_blocknr;
199 __le64 disk_num_blocks;
200 /*
201 * the logical offset in file bytes (no csums)
202 * this extent record is for. This allows a file extent to point
203 * into the middle of an existing extent on disk, sharing it
204 * between two snapshots (useful if some bytes in the middle of the
205 * extent have changed
206 */
207 __le64 offset;
208 /*
209 * the logical number of file blocks (no csums included)
210 */
211 __le64 num_blocks;
212} __attribute__ ((__packed__));
213
214struct btrfs_inode_map_item {
215 struct btrfs_disk_key key;
216} __attribute__ ((__packed__));
217
218struct btrfs_fs_info {
219 struct btrfs_root *fs_root;
220 struct btrfs_root *extent_root;
221 struct btrfs_root *tree_root;
222 struct btrfs_root *inode_root;
223 struct btrfs_key current_insert;
224 struct btrfs_key last_insert;
Chris Mason9f5fae22007-03-20 14:38:32 -0400225 struct radix_tree_root pinned_radix;
Chris Mason9f5fae22007-03-20 14:38:32 -0400226 u64 last_inode_alloc;
227 u64 last_inode_alloc_dirid;
Chris Mason293ffd52007-03-20 15:57:25 -0400228 u64 generation;
Chris Mason79154b12007-03-22 15:59:16 -0400229 struct btrfs_transaction *running_transaction;
Chris Mason1261ec42007-03-20 20:35:03 -0400230 struct btrfs_super_block *disk_super;
Chris Masone20d96d2007-03-22 12:13:20 -0400231 struct buffer_head *sb_buffer;
232 struct super_block *sb;
Chris Mason79154b12007-03-22 15:59:16 -0400233 struct mutex trans_mutex;
Chris Mason62e27492007-03-15 12:56:47 -0400234};
235
236/*
237 * in ram representation of the tree. extent_root is used for all allocations
238 * and for the extent tree extent_root root. current_insert is used
239 * only for the extent tree.
240 */
241struct btrfs_root {
Chris Masone20d96d2007-03-22 12:13:20 -0400242 struct buffer_head *node;
243 struct buffer_head *commit_root;
Chris Mason62e27492007-03-15 12:56:47 -0400244 struct btrfs_root_item root_item;
245 struct btrfs_key root_key;
Chris Mason9f5fae22007-03-20 14:38:32 -0400246 struct btrfs_fs_info *fs_info;
Chris Mason62e27492007-03-15 12:56:47 -0400247 u32 blocksize;
Chris Mason9f5fae22007-03-20 14:38:32 -0400248 int ref_cows;
249 u32 type;
Chris Mason62e27492007-03-15 12:56:47 -0400250};
251
Chris Mason62e27492007-03-15 12:56:47 -0400252/* the lower bits in the key flags defines the item type */
253#define BTRFS_KEY_TYPE_MAX 256
254#define BTRFS_KEY_TYPE_MASK (BTRFS_KEY_TYPE_MAX - 1)
Chris Mason1e1d2702007-03-15 19:03:33 -0400255
256/*
257 * inode items have the data typically returned from stat and store other
258 * info about object characteristics. There is one for every file and dir in
259 * the FS
260 */
Chris Mason62e27492007-03-15 12:56:47 -0400261#define BTRFS_INODE_ITEM_KEY 1
Chris Mason1e1d2702007-03-15 19:03:33 -0400262
263/*
264 * dir items are the name -> inode pointers in a directory. There is one
265 * for every name in a directory.
266 */
Chris Mason62e27492007-03-15 12:56:47 -0400267#define BTRFS_DIR_ITEM_KEY 2
Chris Mason1e1d2702007-03-15 19:03:33 -0400268/*
269 * inline data is file data that fits in the btree.
270 */
271#define BTRFS_INLINE_DATA_KEY 3
272/*
273 * extent data is for data that can't fit in the btree. It points to
274 * a (hopefully) huge chunk of disk
275 */
276#define BTRFS_EXTENT_DATA_KEY 4
277/*
278 * root items point to tree roots. There are typically in the root
279 * tree used by the super block to find all the other trees
280 */
281#define BTRFS_ROOT_ITEM_KEY 5
282/*
283 * extent items are in the extent map tree. These record which blocks
284 * are used, and how many references there are to each block
285 */
286#define BTRFS_EXTENT_ITEM_KEY 6
Chris Mason9f5fae22007-03-20 14:38:32 -0400287
288/*
289 * the inode map records which inode numbers are in use and where
290 * they actually live on disk
291 */
292#define BTRFS_INODE_MAP_ITEM_KEY 7
Chris Mason1e1d2702007-03-15 19:03:33 -0400293/*
294 * string items are for debugging. They just store a short string of
295 * data in the FS
296 */
Chris Mason9f5fae22007-03-20 14:38:32 -0400297#define BTRFS_STRING_ITEM_KEY 8
Chris Mason1e1d2702007-03-15 19:03:33 -0400298
299static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
300{
301 return le64_to_cpu(i->generation);
302}
303
304static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
305 u64 val)
306{
307 i->generation = cpu_to_le64(val);
308}
309
310static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
311{
312 return le64_to_cpu(i->size);
313}
314
315static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
316{
317 i->size = cpu_to_le64(val);
318}
319
320static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
321{
322 return le64_to_cpu(i->nblocks);
323}
324
325static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
326{
327 i->nblocks = cpu_to_le64(val);
328}
329
330static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
331{
332 return le32_to_cpu(i->nlink);
333}
334
335static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
336{
337 i->nlink = cpu_to_le32(val);
338}
339
340static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
341{
342 return le32_to_cpu(i->uid);
343}
344
345static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
346{
347 i->uid = cpu_to_le32(val);
348}
349
350static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
351{
352 return le32_to_cpu(i->gid);
353}
354
355static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
356{
357 i->gid = cpu_to_le32(val);
358}
359
360static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
361{
362 return le32_to_cpu(i->mode);
363}
364
365static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
366{
367 i->mode = cpu_to_le32(val);
368}
369
370static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
371{
372 return le32_to_cpu(i->rdev);
373}
374
375static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
376{
377 i->rdev = cpu_to_le32(val);
378}
379
380static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
381{
382 return le16_to_cpu(i->flags);
383}
384
385static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
386{
387 i->flags = cpu_to_le16(val);
388}
389
390static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
391{
392 return le16_to_cpu(i->compat_flags);
393}
394
395static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
396 u16 val)
397{
398 i->compat_flags = cpu_to_le16(val);
399}
400
Chris Masone20d96d2007-03-22 12:13:20 -0400401static inline u32 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
402{
403 return le32_to_cpu(ts->sec);
404}
405
406static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
407 u32 val)
408{
409 ts->sec = cpu_to_le32(val);
410}
411
412static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
413{
414 return le32_to_cpu(ts->nsec);
415}
416
417static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
418 u32 val)
419{
420 ts->nsec = cpu_to_le32(val);
421}
422
423
Chris Mason62e27492007-03-15 12:56:47 -0400424
Chris Mason234b63a2007-03-13 10:46:10 -0400425static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400426{
427 return le64_to_cpu(ei->owner);
428}
429
Chris Mason234b63a2007-03-13 10:46:10 -0400430static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400431{
432 ei->owner = cpu_to_le64(val);
433}
434
Chris Mason234b63a2007-03-13 10:46:10 -0400435static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400436{
437 return le32_to_cpu(ei->refs);
438}
439
Chris Mason234b63a2007-03-13 10:46:10 -0400440static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400441{
442 ei->refs = cpu_to_le32(val);
443}
444
Chris Mason234b63a2007-03-13 10:46:10 -0400445static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400446{
Chris Mason123abc82007-03-14 14:14:43 -0400447 return le64_to_cpu(n->ptrs[nr].blockptr);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400448}
449
Chris Mason234b63a2007-03-13 10:46:10 -0400450static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
451 u64 val)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400452{
Chris Mason123abc82007-03-14 14:14:43 -0400453 n->ptrs[nr].blockptr = cpu_to_le64(val);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400454}
455
Chris Mason123abc82007-03-14 14:14:43 -0400456static inline u32 btrfs_item_offset(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400457{
Chris Mason123abc82007-03-14 14:14:43 -0400458 return le32_to_cpu(item->offset);
Chris Mason0783fcf2007-03-12 20:12:07 -0400459}
460
Chris Mason123abc82007-03-14 14:14:43 -0400461static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
Chris Mason0783fcf2007-03-12 20:12:07 -0400462{
Chris Mason123abc82007-03-14 14:14:43 -0400463 item->offset = cpu_to_le32(val);
Chris Mason0783fcf2007-03-12 20:12:07 -0400464}
465
Chris Mason123abc82007-03-14 14:14:43 -0400466static inline u32 btrfs_item_end(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400467{
Chris Mason123abc82007-03-14 14:14:43 -0400468 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
Chris Mason0783fcf2007-03-12 20:12:07 -0400469}
470
471static inline u16 btrfs_item_size(struct btrfs_item *item)
472{
473 return le16_to_cpu(item->size);
474}
475
476static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
477{
478 item->size = cpu_to_le16(val);
479}
480
Chris Mason1d4f6402007-03-15 15:18:43 -0400481static inline u64 btrfs_dir_objectid(struct btrfs_dir_item *d)
482{
483 return le64_to_cpu(d->objectid);
484}
485
486static inline void btrfs_set_dir_objectid(struct btrfs_dir_item *d, u64 val)
487{
488 d->objectid = cpu_to_le64(val);
489}
490
491static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d)
492{
493 return le16_to_cpu(d->flags);
494}
495
496static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val)
497{
498 d->flags = cpu_to_le16(val);
499}
500
501static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
502{
503 return d->type;
504}
505
506static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
507{
508 d->type = val;
509}
510
Chris Masona8a2ee02007-03-16 08:46:49 -0400511static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
Chris Mason1d4f6402007-03-15 15:18:43 -0400512{
Chris Masona8a2ee02007-03-16 08:46:49 -0400513 return le16_to_cpu(d->name_len);
514}
515
516static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
517{
518 d->name_len = cpu_to_le16(val);
Chris Mason1d4f6402007-03-15 15:18:43 -0400519}
520
Chris Masone2fa7222007-03-12 16:22:34 -0400521static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
522 struct btrfs_disk_key *disk)
523{
524 cpu->offset = le64_to_cpu(disk->offset);
525 cpu->flags = le32_to_cpu(disk->flags);
526 cpu->objectid = le64_to_cpu(disk->objectid);
527}
528
529static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
530 struct btrfs_key *cpu)
531{
532 disk->offset = cpu_to_le64(cpu->offset);
533 disk->flags = cpu_to_le32(cpu->flags);
534 disk->objectid = cpu_to_le64(cpu->objectid);
535}
536
Chris Mason62e27492007-03-15 12:56:47 -0400537static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400538{
539 return le64_to_cpu(disk->objectid);
540}
541
Chris Mason62e27492007-03-15 12:56:47 -0400542static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
543 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400544{
545 disk->objectid = cpu_to_le64(val);
546}
547
Chris Mason62e27492007-03-15 12:56:47 -0400548static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400549{
550 return le64_to_cpu(disk->offset);
551}
552
Chris Mason62e27492007-03-15 12:56:47 -0400553static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
554 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400555{
556 disk->offset = cpu_to_le64(val);
557}
558
Chris Mason62e27492007-03-15 12:56:47 -0400559static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400560{
561 return le32_to_cpu(disk->flags);
562}
563
Chris Mason62e27492007-03-15 12:56:47 -0400564static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk,
565 u32 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400566{
567 disk->flags = cpu_to_le32(val);
568}
569
Chris Mason62e27492007-03-15 12:56:47 -0400570static inline u32 btrfs_key_type(struct btrfs_key *key)
571{
572 return key->flags & BTRFS_KEY_TYPE_MASK;
573}
574
575static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key)
576{
577 return le32_to_cpu(key->flags) & BTRFS_KEY_TYPE_MASK;
578}
579
580static inline void btrfs_set_key_type(struct btrfs_key *key, u32 type)
581{
582 BUG_ON(type >= BTRFS_KEY_TYPE_MAX);
583 key->flags = (key->flags & ~((u64)BTRFS_KEY_TYPE_MASK)) | type;
584}
585
586static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key, u32 type)
587{
588 u32 flags = btrfs_disk_key_flags(key);
589 BUG_ON(type >= BTRFS_KEY_TYPE_MAX);
590 flags = (flags & ~((u64)BTRFS_KEY_TYPE_MASK)) | type;
591 btrfs_set_disk_key_flags(key, flags);
592}
593
Chris Masonbb492bb2007-03-12 12:29:44 -0400594static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400595{
Chris Masonbb492bb2007-03-12 12:29:44 -0400596 return le64_to_cpu(h->blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400597}
598
Chris Masonbb492bb2007-03-12 12:29:44 -0400599static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
Chris Mason7518a232007-03-12 12:01:18 -0400600{
Chris Masonbb492bb2007-03-12 12:29:44 -0400601 h->blocknr = cpu_to_le64(blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400602}
603
Chris Mason7f5c1512007-03-23 15:56:19 -0400604static inline u64 btrfs_header_generation(struct btrfs_header *h)
605{
606 return le64_to_cpu(h->generation);
607}
608
609static inline void btrfs_set_header_generation(struct btrfs_header *h,
610 u64 val)
611{
612 h->generation = cpu_to_le64(val);
613}
614
Chris Masonbb492bb2007-03-12 12:29:44 -0400615static inline u64 btrfs_header_parentid(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400616{
Chris Masonbb492bb2007-03-12 12:29:44 -0400617 return le64_to_cpu(h->parentid);
Chris Mason7518a232007-03-12 12:01:18 -0400618}
619
Chris Masonbb492bb2007-03-12 12:29:44 -0400620static inline void btrfs_set_header_parentid(struct btrfs_header *h,
621 u64 parentid)
Chris Mason7518a232007-03-12 12:01:18 -0400622{
Chris Masonbb492bb2007-03-12 12:29:44 -0400623 h->parentid = cpu_to_le64(parentid);
Chris Mason7518a232007-03-12 12:01:18 -0400624}
625
Chris Masonbb492bb2007-03-12 12:29:44 -0400626static inline u16 btrfs_header_nritems(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400627{
Chris Masonbb492bb2007-03-12 12:29:44 -0400628 return le16_to_cpu(h->nritems);
Chris Mason7518a232007-03-12 12:01:18 -0400629}
630
Chris Masonbb492bb2007-03-12 12:29:44 -0400631static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400632{
Chris Masonbb492bb2007-03-12 12:29:44 -0400633 h->nritems = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400634}
635
Chris Masonbb492bb2007-03-12 12:29:44 -0400636static inline u16 btrfs_header_flags(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400637{
Chris Masonbb492bb2007-03-12 12:29:44 -0400638 return le16_to_cpu(h->flags);
Chris Mason7518a232007-03-12 12:01:18 -0400639}
640
Chris Masonbb492bb2007-03-12 12:29:44 -0400641static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400642{
Chris Masonbb492bb2007-03-12 12:29:44 -0400643 h->flags = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400644}
645
Chris Masonbb492bb2007-03-12 12:29:44 -0400646static inline int btrfs_header_level(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400647{
Chris Mason234b63a2007-03-13 10:46:10 -0400648 return btrfs_header_flags(h) & (BTRFS_MAX_LEVEL - 1);
Chris Mason7518a232007-03-12 12:01:18 -0400649}
650
Chris Masonbb492bb2007-03-12 12:29:44 -0400651static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
Chris Mason7518a232007-03-12 12:01:18 -0400652{
Chris Masonbb492bb2007-03-12 12:29:44 -0400653 u16 flags;
Chris Mason234b63a2007-03-13 10:46:10 -0400654 BUG_ON(level > BTRFS_MAX_LEVEL);
655 flags = btrfs_header_flags(h) & ~(BTRFS_MAX_LEVEL - 1);
Chris Mason7518a232007-03-12 12:01:18 -0400656 btrfs_set_header_flags(h, flags | level);
657}
658
Chris Mason234b63a2007-03-13 10:46:10 -0400659static inline int btrfs_is_leaf(struct btrfs_node *n)
Chris Mason7518a232007-03-12 12:01:18 -0400660{
661 return (btrfs_header_level(&n->header) == 0);
662}
663
Chris Mason3768f362007-03-13 16:47:54 -0400664static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
665{
666 return le64_to_cpu(item->blocknr);
667}
668
669static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
670{
671 item->blocknr = cpu_to_le64(val);
672}
673
674static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
675{
676 return le32_to_cpu(item->refs);
677}
678
679static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
680{
681 item->refs = cpu_to_le32(val);
682}
683
684static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
685{
686 return le64_to_cpu(s->blocknr);
687}
688
689static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
690{
691 s->blocknr = cpu_to_le64(val);
692}
693
694static inline u64 btrfs_super_root(struct btrfs_super_block *s)
695{
696 return le64_to_cpu(s->root);
697}
698
699static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
700{
701 s->root = cpu_to_le64(val);
702}
703
704static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
705{
706 return le64_to_cpu(s->total_blocks);
707}
708
709static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
710 u64 val)
711{
712 s->total_blocks = cpu_to_le64(val);
713}
714
715static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
716{
717 return le64_to_cpu(s->blocks_used);
718}
719
720static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
721 u64 val)
722{
723 s->blocks_used = cpu_to_le64(val);
724}
725
Chris Mason123abc82007-03-14 14:14:43 -0400726static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
Chris Mason3768f362007-03-13 16:47:54 -0400727{
Chris Mason123abc82007-03-14 14:14:43 -0400728 return le32_to_cpu(s->blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400729}
730
731static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
Chris Mason123abc82007-03-14 14:14:43 -0400732 u32 val)
Chris Mason3768f362007-03-13 16:47:54 -0400733{
Chris Mason123abc82007-03-14 14:14:43 -0400734 s->blocksize = cpu_to_le32(val);
735}
736
Chris Mason2e635a22007-03-21 11:12:56 -0400737static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
738{
739 return le64_to_cpu(s->root_dir_objectid);
740}
741
742static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
743 val)
744{
745 s->root_dir_objectid = cpu_to_le64(val);
746}
747
Chris Mason123abc82007-03-14 14:14:43 -0400748static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
749{
750 return (u8 *)l->items;
Chris Mason3768f362007-03-13 16:47:54 -0400751}
Chris Mason9f5fae22007-03-20 14:38:32 -0400752
753static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
754 *e)
755{
756 return le64_to_cpu(e->disk_blocknr);
757}
758
759static inline void btrfs_set_file_extent_disk_blocknr(struct
760 btrfs_file_extent_item
761 *e, u64 val)
762{
763 e->disk_blocknr = cpu_to_le64(val);
764}
765
766static inline u64 btrfs_file_extent_disk_num_blocks(struct
767 btrfs_file_extent_item *e)
768{
769 return le64_to_cpu(e->disk_num_blocks);
770}
771
772static inline void btrfs_set_file_extent_disk_num_blocks(struct
773 btrfs_file_extent_item
774 *e, u64 val)
775{
776 e->disk_num_blocks = cpu_to_le64(val);
777}
778
779static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
780{
781 return le64_to_cpu(e->offset);
782}
783
784static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
785 *e, u64 val)
786{
787 e->offset = cpu_to_le64(val);
788}
789
790static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
791 *e)
792{
793 return le64_to_cpu(e->num_blocks);
794}
795
796static inline void btrfs_set_file_extent_num_blocks(struct
797 btrfs_file_extent_item *e,
798 u64 val)
799{
800 e->num_blocks = cpu_to_le64(val);
801}
802
Chris Masone20d96d2007-03-22 12:13:20 -0400803static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
804{
805 return sb->s_fs_info;
806}
807
Chris Mason4beb1b82007-03-14 10:31:29 -0400808/* helper function to cast into the data area of the leaf. */
809#define btrfs_item_ptr(leaf, slot, type) \
Chris Mason123abc82007-03-14 14:14:43 -0400810 ((type *)(btrfs_leaf_data(leaf) + \
811 btrfs_item_offset((leaf)->items + (slot))))
Chris Mason4beb1b82007-03-14 10:31:29 -0400812
Chris Masone20d96d2007-03-22 12:13:20 -0400813struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masone089f052007-03-16 16:20:31 -0400814 struct btrfs_root *root);
815int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -0400816 struct buffer_head *buf);
Chris Masone089f052007-03-16 16:20:31 -0400817int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
818 *root, u64 blocknr, u64 num_blocks, int pin);
819int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
820 *root, struct btrfs_key *key, struct btrfs_path *p, int
821 ins_len, int cow);
Chris Mason234b63a2007-03-13 10:46:10 -0400822void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
823void btrfs_init_path(struct btrfs_path *p);
Chris Masone089f052007-03-16 16:20:31 -0400824int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
825 struct btrfs_path *path);
826int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
827 *root, struct btrfs_key *key, void *data, u32 data_size);
828int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
829 *root, struct btrfs_path *path, struct btrfs_key
830 *cpu_key, u32 data_size);
Chris Mason234b63a2007-03-13 10:46:10 -0400831int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason123abc82007-03-14 14:14:43 -0400832int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
Chris Masone089f052007-03-16 16:20:31 -0400833int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -0400834 *root, struct buffer_head *snap);
Chris Masone089f052007-03-16 16:20:31 -0400835int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
836 btrfs_root *root);
837int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
838 struct btrfs_key *key);
839int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
840 *root, struct btrfs_key *key, struct btrfs_root_item
841 *item);
842int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
843 *root, struct btrfs_key *key, struct btrfs_root_item
844 *item);
845int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
846 btrfs_root_item *item, struct btrfs_key *key);
847int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond5719762007-03-23 10:01:08 -0400848 *root, const char *name, int name_len, u64 dir, u64
Chris Masone089f052007-03-16 16:20:31 -0400849 objectid, u8 type);
850int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -0400851 *root, struct btrfs_path *path, u64 dir,
852 const char *name, int name_len, int mod);
Chris Mason1d4f6402007-03-15 15:18:43 -0400853int btrfs_match_dir_item_name(struct btrfs_root *root, struct btrfs_path *path,
Chris Mason7f5c1512007-03-23 15:56:19 -0400854 const char *name, int name_len);
Chris Mason9f5fae22007-03-20 14:38:32 -0400855int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
856 struct btrfs_root *fs_root,
857 u64 dirid, u64 *objectid);
858int btrfs_insert_inode_map(struct btrfs_trans_handle *trans,
859 struct btrfs_root *root,
860 u64 objectid, struct btrfs_key *location);
861int btrfs_lookup_inode_map(struct btrfs_trans_handle *trans,
862 struct btrfs_root *root, struct btrfs_path *path,
863 u64 objectid, int mod);
Chris Mason293ffd52007-03-20 15:57:25 -0400864int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
865 *root, u64 objectid, struct btrfs_inode_item
866 *inode_item);
867int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
868 *root, struct btrfs_path *path, u64 objectid, int mod);
Chris Masoneb60cea2007-02-02 09:18:22 -0500869#endif