blob: 4c19a3f12afdcdc4f0071ad9b46a0dd75f2394a3 [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 */
55 __le64 parentid; /* objectid of the tree root */
56 __le32 csum;
57 __le32 ham;
58 __le16 nritems;
59 __le16 flags;
Chris Masonfec577f2007-02-26 10:40:21 -050060 /* generation flags to be added */
Chris Masoneb60cea2007-02-02 09:18:22 -050061} __attribute__ ((__packed__));
62
Chris Mason234b63a2007-03-13 10:46:10 -040063#define BTRFS_MAX_LEVEL 8
Chris Mason123abc82007-03-14 14:14:43 -040064#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
65 sizeof(struct btrfs_header)) / \
66 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
67#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
68#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
Chris Masoneb60cea2007-02-02 09:18:22 -050069
Chris Masone20d96d2007-03-22 12:13:20 -040070struct buffer_head;
Chris Masonfec577f2007-02-26 10:40:21 -050071/*
Chris Masonfec577f2007-02-26 10:40:21 -050072 * the super block basically lists the main trees of the FS
73 * it currently lacks any block count etc etc
74 */
Chris Mason234b63a2007-03-13 10:46:10 -040075struct btrfs_super_block {
Chris Mason3768f362007-03-13 16:47:54 -040076 u8 fsid[16]; /* FS specific uuid */
77 __le64 blocknr; /* this block number */
78 __le32 csum;
79 __le64 magic;
Chris Mason123abc82007-03-14 14:14:43 -040080 __le32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -040081 __le64 generation;
82 __le64 root;
83 __le64 total_blocks;
84 __le64 blocks_used;
Chris Mason2e635a22007-03-21 11:12:56 -040085 __le64 root_dir_objectid;
Chris Masoncfaa7292007-02-21 17:04:57 -050086} __attribute__ ((__packed__));
87
Chris Masonfec577f2007-02-26 10:40:21 -050088/*
Chris Mason62e27492007-03-15 12:56:47 -040089 * A leaf is full of items. offset and size tell us where to find
Chris Masonfec577f2007-02-26 10:40:21 -050090 * the item in the leaf (relative to the start of the data area)
91 */
Chris Mason0783fcf2007-03-12 20:12:07 -040092struct btrfs_item {
Chris Masone2fa7222007-03-12 16:22:34 -040093 struct btrfs_disk_key key;
Chris Mason123abc82007-03-14 14:14:43 -040094 __le32 offset;
Chris Mason0783fcf2007-03-12 20:12:07 -040095 __le16 size;
Chris Masoneb60cea2007-02-02 09:18:22 -050096} __attribute__ ((__packed__));
97
Chris Masonfec577f2007-02-26 10:40:21 -050098/*
99 * leaves have an item area and a data area:
100 * [item0, item1....itemN] [free space] [dataN...data1, data0]
101 *
102 * The data is separate from the items to get the keys closer together
103 * during searches.
104 */
Chris Mason234b63a2007-03-13 10:46:10 -0400105struct btrfs_leaf {
Chris Masonbb492bb2007-03-12 12:29:44 -0400106 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400107 struct btrfs_item items[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500108} __attribute__ ((__packed__));
109
Chris Masonfec577f2007-02-26 10:40:21 -0500110/*
111 * all non-leaf blocks are nodes, they hold only keys and pointers to
112 * other blocks
113 */
Chris Mason123abc82007-03-14 14:14:43 -0400114struct btrfs_key_ptr {
115 struct btrfs_disk_key key;
116 __le64 blockptr;
117} __attribute__ ((__packed__));
118
Chris Mason234b63a2007-03-13 10:46:10 -0400119struct btrfs_node {
Chris Masonbb492bb2007-03-12 12:29:44 -0400120 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400121 struct btrfs_key_ptr ptrs[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500122} __attribute__ ((__packed__));
123
Chris Masonfec577f2007-02-26 10:40:21 -0500124/*
Chris Mason234b63a2007-03-13 10:46:10 -0400125 * btrfs_paths remember the path taken from the root down to the leaf.
126 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
Chris Masonfec577f2007-02-26 10:40:21 -0500127 * to any other levels that are present.
128 *
129 * The slots array records the index of the item or block pointer
130 * used while walking the tree.
131 */
Chris Mason234b63a2007-03-13 10:46:10 -0400132struct btrfs_path {
Chris Masone20d96d2007-03-22 12:13:20 -0400133 struct buffer_head *nodes[BTRFS_MAX_LEVEL];
Chris Mason234b63a2007-03-13 10:46:10 -0400134 int slots[BTRFS_MAX_LEVEL];
Chris Masoneb60cea2007-02-02 09:18:22 -0500135};
Chris Mason5de08d72007-02-24 06:24:44 -0500136
Chris Mason62e27492007-03-15 12:56:47 -0400137/*
138 * items in the extent btree are used to record the objectid of the
139 * owner of the block and the number of references
140 */
141struct btrfs_extent_item {
142 __le32 refs;
143 __le64 owner;
144} __attribute__ ((__packed__));
145
Chris Mason1e1d2702007-03-15 19:03:33 -0400146struct btrfs_inode_timespec {
147 __le32 sec;
148 __le32 nsec;
149} __attribute__ ((__packed__));
150
151/*
152 * there is no padding here on purpose. If you want to extent the inode,
153 * make a new item type
154 */
155struct btrfs_inode_item {
156 __le64 generation;
157 __le64 size;
158 __le64 nblocks;
159 __le32 nlink;
160 __le32 uid;
161 __le32 gid;
162 __le32 mode;
163 __le32 rdev;
164 __le16 flags;
165 __le16 compat_flags;
166 struct btrfs_inode_timespec atime;
167 struct btrfs_inode_timespec ctime;
168 struct btrfs_inode_timespec mtime;
169 struct btrfs_inode_timespec otime;
170} __attribute__ ((__packed__));
171
172/* inline data is just a blob of bytes */
173struct btrfs_inline_data_item {
174 u8 data;
175} __attribute__ ((__packed__));
176
Chris Mason62e27492007-03-15 12:56:47 -0400177struct btrfs_dir_item {
178 __le64 objectid;
179 __le16 flags;
Chris Masona8a2ee02007-03-16 08:46:49 -0400180 __le16 name_len;
Chris Mason62e27492007-03-15 12:56:47 -0400181 u8 type;
182} __attribute__ ((__packed__));
183
184struct btrfs_root_item {
185 __le64 blocknr;
186 __le32 flags;
187 __le64 block_limit;
188 __le64 blocks_used;
189 __le32 refs;
Chris Mason9f5fae22007-03-20 14:38:32 -0400190} __attribute__ ((__packed__));
191
192struct btrfs_file_extent_item {
193 /*
194 * disk space consumed by the extent, checksum blocks are included
195 * in these numbers
196 */
197 __le64 disk_blocknr;
198 __le64 disk_num_blocks;
199 /*
200 * the logical offset in file bytes (no csums)
201 * this extent record is for. This allows a file extent to point
202 * into the middle of an existing extent on disk, sharing it
203 * between two snapshots (useful if some bytes in the middle of the
204 * extent have changed
205 */
206 __le64 offset;
207 /*
208 * the logical number of file blocks (no csums included)
209 */
210 __le64 num_blocks;
211} __attribute__ ((__packed__));
212
213struct btrfs_inode_map_item {
214 struct btrfs_disk_key key;
215} __attribute__ ((__packed__));
216
217struct btrfs_fs_info {
218 struct btrfs_root *fs_root;
219 struct btrfs_root *extent_root;
220 struct btrfs_root *tree_root;
221 struct btrfs_root *inode_root;
222 struct btrfs_key current_insert;
223 struct btrfs_key last_insert;
Chris Mason9f5fae22007-03-20 14:38:32 -0400224 struct radix_tree_root pinned_radix;
Chris Mason9f5fae22007-03-20 14:38:32 -0400225 u64 last_inode_alloc;
226 u64 last_inode_alloc_dirid;
Chris Mason293ffd52007-03-20 15:57:25 -0400227 u64 generation;
Chris Mason79154b12007-03-22 15:59:16 -0400228 struct btrfs_transaction *running_transaction;
Chris Mason1261ec42007-03-20 20:35:03 -0400229 struct btrfs_super_block *disk_super;
Chris Masone20d96d2007-03-22 12:13:20 -0400230 struct buffer_head *sb_buffer;
231 struct super_block *sb;
Chris Mason79154b12007-03-22 15:59:16 -0400232 struct mutex trans_mutex;
Chris Mason62e27492007-03-15 12:56:47 -0400233};
234
235/*
236 * in ram representation of the tree. extent_root is used for all allocations
237 * and for the extent tree extent_root root. current_insert is used
238 * only for the extent tree.
239 */
240struct btrfs_root {
Chris Masone20d96d2007-03-22 12:13:20 -0400241 struct buffer_head *node;
242 struct buffer_head *commit_root;
Chris Mason62e27492007-03-15 12:56:47 -0400243 struct btrfs_root_item root_item;
244 struct btrfs_key root_key;
Chris Mason9f5fae22007-03-20 14:38:32 -0400245 struct btrfs_fs_info *fs_info;
Chris Mason62e27492007-03-15 12:56:47 -0400246 u32 blocksize;
Chris Mason9f5fae22007-03-20 14:38:32 -0400247 int ref_cows;
248 u32 type;
Chris Mason62e27492007-03-15 12:56:47 -0400249};
250
Chris Mason62e27492007-03-15 12:56:47 -0400251/* the lower bits in the key flags defines the item type */
252#define BTRFS_KEY_TYPE_MAX 256
253#define BTRFS_KEY_TYPE_MASK (BTRFS_KEY_TYPE_MAX - 1)
Chris Mason1e1d2702007-03-15 19:03:33 -0400254
255/*
256 * inode items have the data typically returned from stat and store other
257 * info about object characteristics. There is one for every file and dir in
258 * the FS
259 */
Chris Mason62e27492007-03-15 12:56:47 -0400260#define BTRFS_INODE_ITEM_KEY 1
Chris Mason1e1d2702007-03-15 19:03:33 -0400261
262/*
263 * dir items are the name -> inode pointers in a directory. There is one
264 * for every name in a directory.
265 */
Chris Mason62e27492007-03-15 12:56:47 -0400266#define BTRFS_DIR_ITEM_KEY 2
Chris Mason1e1d2702007-03-15 19:03:33 -0400267/*
268 * inline data is file data that fits in the btree.
269 */
270#define BTRFS_INLINE_DATA_KEY 3
271/*
272 * extent data is for data that can't fit in the btree. It points to
273 * a (hopefully) huge chunk of disk
274 */
275#define BTRFS_EXTENT_DATA_KEY 4
276/*
277 * root items point to tree roots. There are typically in the root
278 * tree used by the super block to find all the other trees
279 */
280#define BTRFS_ROOT_ITEM_KEY 5
281/*
282 * extent items are in the extent map tree. These record which blocks
283 * are used, and how many references there are to each block
284 */
285#define BTRFS_EXTENT_ITEM_KEY 6
Chris Mason9f5fae22007-03-20 14:38:32 -0400286
287/*
288 * the inode map records which inode numbers are in use and where
289 * they actually live on disk
290 */
291#define BTRFS_INODE_MAP_ITEM_KEY 7
Chris Mason1e1d2702007-03-15 19:03:33 -0400292/*
293 * string items are for debugging. They just store a short string of
294 * data in the FS
295 */
Chris Mason9f5fae22007-03-20 14:38:32 -0400296#define BTRFS_STRING_ITEM_KEY 8
Chris Mason1e1d2702007-03-15 19:03:33 -0400297
298static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
299{
300 return le64_to_cpu(i->generation);
301}
302
303static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
304 u64 val)
305{
306 i->generation = cpu_to_le64(val);
307}
308
309static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
310{
311 return le64_to_cpu(i->size);
312}
313
314static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
315{
316 i->size = cpu_to_le64(val);
317}
318
319static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
320{
321 return le64_to_cpu(i->nblocks);
322}
323
324static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
325{
326 i->nblocks = cpu_to_le64(val);
327}
328
329static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
330{
331 return le32_to_cpu(i->nlink);
332}
333
334static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
335{
336 i->nlink = cpu_to_le32(val);
337}
338
339static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
340{
341 return le32_to_cpu(i->uid);
342}
343
344static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
345{
346 i->uid = cpu_to_le32(val);
347}
348
349static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
350{
351 return le32_to_cpu(i->gid);
352}
353
354static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
355{
356 i->gid = cpu_to_le32(val);
357}
358
359static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
360{
361 return le32_to_cpu(i->mode);
362}
363
364static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
365{
366 i->mode = cpu_to_le32(val);
367}
368
369static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
370{
371 return le32_to_cpu(i->rdev);
372}
373
374static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
375{
376 i->rdev = cpu_to_le32(val);
377}
378
379static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
380{
381 return le16_to_cpu(i->flags);
382}
383
384static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
385{
386 i->flags = cpu_to_le16(val);
387}
388
389static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
390{
391 return le16_to_cpu(i->compat_flags);
392}
393
394static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
395 u16 val)
396{
397 i->compat_flags = cpu_to_le16(val);
398}
399
Chris Masone20d96d2007-03-22 12:13:20 -0400400static inline u32 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
401{
402 return le32_to_cpu(ts->sec);
403}
404
405static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
406 u32 val)
407{
408 ts->sec = cpu_to_le32(val);
409}
410
411static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
412{
413 return le32_to_cpu(ts->nsec);
414}
415
416static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
417 u32 val)
418{
419 ts->nsec = cpu_to_le32(val);
420}
421
422
Chris Mason62e27492007-03-15 12:56:47 -0400423
Chris Mason234b63a2007-03-13 10:46:10 -0400424static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400425{
426 return le64_to_cpu(ei->owner);
427}
428
Chris Mason234b63a2007-03-13 10:46:10 -0400429static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400430{
431 ei->owner = cpu_to_le64(val);
432}
433
Chris Mason234b63a2007-03-13 10:46:10 -0400434static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400435{
436 return le32_to_cpu(ei->refs);
437}
438
Chris Mason234b63a2007-03-13 10:46:10 -0400439static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400440{
441 ei->refs = cpu_to_le32(val);
442}
443
Chris Mason234b63a2007-03-13 10:46:10 -0400444static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400445{
Chris Mason123abc82007-03-14 14:14:43 -0400446 return le64_to_cpu(n->ptrs[nr].blockptr);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400447}
448
Chris Mason234b63a2007-03-13 10:46:10 -0400449static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
450 u64 val)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400451{
Chris Mason123abc82007-03-14 14:14:43 -0400452 n->ptrs[nr].blockptr = cpu_to_le64(val);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400453}
454
Chris Mason123abc82007-03-14 14:14:43 -0400455static inline u32 btrfs_item_offset(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400456{
Chris Mason123abc82007-03-14 14:14:43 -0400457 return le32_to_cpu(item->offset);
Chris Mason0783fcf2007-03-12 20:12:07 -0400458}
459
Chris Mason123abc82007-03-14 14:14:43 -0400460static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
Chris Mason0783fcf2007-03-12 20:12:07 -0400461{
Chris Mason123abc82007-03-14 14:14:43 -0400462 item->offset = cpu_to_le32(val);
Chris Mason0783fcf2007-03-12 20:12:07 -0400463}
464
Chris Mason123abc82007-03-14 14:14:43 -0400465static inline u32 btrfs_item_end(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400466{
Chris Mason123abc82007-03-14 14:14:43 -0400467 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
Chris Mason0783fcf2007-03-12 20:12:07 -0400468}
469
470static inline u16 btrfs_item_size(struct btrfs_item *item)
471{
472 return le16_to_cpu(item->size);
473}
474
475static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
476{
477 item->size = cpu_to_le16(val);
478}
479
Chris Mason1d4f6402007-03-15 15:18:43 -0400480static inline u64 btrfs_dir_objectid(struct btrfs_dir_item *d)
481{
482 return le64_to_cpu(d->objectid);
483}
484
485static inline void btrfs_set_dir_objectid(struct btrfs_dir_item *d, u64 val)
486{
487 d->objectid = cpu_to_le64(val);
488}
489
490static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d)
491{
492 return le16_to_cpu(d->flags);
493}
494
495static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val)
496{
497 d->flags = cpu_to_le16(val);
498}
499
500static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
501{
502 return d->type;
503}
504
505static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
506{
507 d->type = val;
508}
509
Chris Masona8a2ee02007-03-16 08:46:49 -0400510static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
Chris Mason1d4f6402007-03-15 15:18:43 -0400511{
Chris Masona8a2ee02007-03-16 08:46:49 -0400512 return le16_to_cpu(d->name_len);
513}
514
515static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
516{
517 d->name_len = cpu_to_le16(val);
Chris Mason1d4f6402007-03-15 15:18:43 -0400518}
519
Chris Masone2fa7222007-03-12 16:22:34 -0400520static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
521 struct btrfs_disk_key *disk)
522{
523 cpu->offset = le64_to_cpu(disk->offset);
524 cpu->flags = le32_to_cpu(disk->flags);
525 cpu->objectid = le64_to_cpu(disk->objectid);
526}
527
528static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
529 struct btrfs_key *cpu)
530{
531 disk->offset = cpu_to_le64(cpu->offset);
532 disk->flags = cpu_to_le32(cpu->flags);
533 disk->objectid = cpu_to_le64(cpu->objectid);
534}
535
Chris Mason62e27492007-03-15 12:56:47 -0400536static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400537{
538 return le64_to_cpu(disk->objectid);
539}
540
Chris Mason62e27492007-03-15 12:56:47 -0400541static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
542 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400543{
544 disk->objectid = cpu_to_le64(val);
545}
546
Chris Mason62e27492007-03-15 12:56:47 -0400547static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400548{
549 return le64_to_cpu(disk->offset);
550}
551
Chris Mason62e27492007-03-15 12:56:47 -0400552static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
553 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400554{
555 disk->offset = cpu_to_le64(val);
556}
557
Chris Mason62e27492007-03-15 12:56:47 -0400558static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400559{
560 return le32_to_cpu(disk->flags);
561}
562
Chris Mason62e27492007-03-15 12:56:47 -0400563static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk,
564 u32 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400565{
566 disk->flags = cpu_to_le32(val);
567}
568
Chris Mason62e27492007-03-15 12:56:47 -0400569static inline u32 btrfs_key_type(struct btrfs_key *key)
570{
571 return key->flags & BTRFS_KEY_TYPE_MASK;
572}
573
574static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key)
575{
576 return le32_to_cpu(key->flags) & BTRFS_KEY_TYPE_MASK;
577}
578
579static inline void btrfs_set_key_type(struct btrfs_key *key, u32 type)
580{
581 BUG_ON(type >= BTRFS_KEY_TYPE_MAX);
582 key->flags = (key->flags & ~((u64)BTRFS_KEY_TYPE_MASK)) | type;
583}
584
585static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key, u32 type)
586{
587 u32 flags = btrfs_disk_key_flags(key);
588 BUG_ON(type >= BTRFS_KEY_TYPE_MAX);
589 flags = (flags & ~((u64)BTRFS_KEY_TYPE_MASK)) | type;
590 btrfs_set_disk_key_flags(key, flags);
591}
592
Chris Masonbb492bb2007-03-12 12:29:44 -0400593static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400594{
Chris Masonbb492bb2007-03-12 12:29:44 -0400595 return le64_to_cpu(h->blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400596}
597
Chris Masonbb492bb2007-03-12 12:29:44 -0400598static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
Chris Mason7518a232007-03-12 12:01:18 -0400599{
Chris Masonbb492bb2007-03-12 12:29:44 -0400600 h->blocknr = cpu_to_le64(blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400601}
602
Chris Masonbb492bb2007-03-12 12:29:44 -0400603static inline u64 btrfs_header_parentid(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400604{
Chris Masonbb492bb2007-03-12 12:29:44 -0400605 return le64_to_cpu(h->parentid);
Chris Mason7518a232007-03-12 12:01:18 -0400606}
607
Chris Masonbb492bb2007-03-12 12:29:44 -0400608static inline void btrfs_set_header_parentid(struct btrfs_header *h,
609 u64 parentid)
Chris Mason7518a232007-03-12 12:01:18 -0400610{
Chris Masonbb492bb2007-03-12 12:29:44 -0400611 h->parentid = cpu_to_le64(parentid);
Chris Mason7518a232007-03-12 12:01:18 -0400612}
613
Chris Masonbb492bb2007-03-12 12:29:44 -0400614static inline u16 btrfs_header_nritems(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400615{
Chris Masonbb492bb2007-03-12 12:29:44 -0400616 return le16_to_cpu(h->nritems);
Chris Mason7518a232007-03-12 12:01:18 -0400617}
618
Chris Masonbb492bb2007-03-12 12:29:44 -0400619static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400620{
Chris Masonbb492bb2007-03-12 12:29:44 -0400621 h->nritems = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400622}
623
Chris Masonbb492bb2007-03-12 12:29:44 -0400624static inline u16 btrfs_header_flags(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400625{
Chris Masonbb492bb2007-03-12 12:29:44 -0400626 return le16_to_cpu(h->flags);
Chris Mason7518a232007-03-12 12:01:18 -0400627}
628
Chris Masonbb492bb2007-03-12 12:29:44 -0400629static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400630{
Chris Masonbb492bb2007-03-12 12:29:44 -0400631 h->flags = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400632}
633
Chris Masonbb492bb2007-03-12 12:29:44 -0400634static inline int btrfs_header_level(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400635{
Chris Mason234b63a2007-03-13 10:46:10 -0400636 return btrfs_header_flags(h) & (BTRFS_MAX_LEVEL - 1);
Chris Mason7518a232007-03-12 12:01:18 -0400637}
638
Chris Masonbb492bb2007-03-12 12:29:44 -0400639static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
Chris Mason7518a232007-03-12 12:01:18 -0400640{
Chris Masonbb492bb2007-03-12 12:29:44 -0400641 u16 flags;
Chris Mason234b63a2007-03-13 10:46:10 -0400642 BUG_ON(level > BTRFS_MAX_LEVEL);
643 flags = btrfs_header_flags(h) & ~(BTRFS_MAX_LEVEL - 1);
Chris Mason7518a232007-03-12 12:01:18 -0400644 btrfs_set_header_flags(h, flags | level);
645}
646
Chris Mason234b63a2007-03-13 10:46:10 -0400647static inline int btrfs_is_leaf(struct btrfs_node *n)
Chris Mason7518a232007-03-12 12:01:18 -0400648{
649 return (btrfs_header_level(&n->header) == 0);
650}
651
Chris Mason3768f362007-03-13 16:47:54 -0400652static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
653{
654 return le64_to_cpu(item->blocknr);
655}
656
657static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
658{
659 item->blocknr = cpu_to_le64(val);
660}
661
662static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
663{
664 return le32_to_cpu(item->refs);
665}
666
667static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
668{
669 item->refs = cpu_to_le32(val);
670}
671
672static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
673{
674 return le64_to_cpu(s->blocknr);
675}
676
677static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
678{
679 s->blocknr = cpu_to_le64(val);
680}
681
682static inline u64 btrfs_super_root(struct btrfs_super_block *s)
683{
684 return le64_to_cpu(s->root);
685}
686
687static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
688{
689 s->root = cpu_to_le64(val);
690}
691
692static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
693{
694 return le64_to_cpu(s->total_blocks);
695}
696
697static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
698 u64 val)
699{
700 s->total_blocks = cpu_to_le64(val);
701}
702
703static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
704{
705 return le64_to_cpu(s->blocks_used);
706}
707
708static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
709 u64 val)
710{
711 s->blocks_used = cpu_to_le64(val);
712}
713
Chris Mason123abc82007-03-14 14:14:43 -0400714static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
Chris Mason3768f362007-03-13 16:47:54 -0400715{
Chris Mason123abc82007-03-14 14:14:43 -0400716 return le32_to_cpu(s->blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400717}
718
719static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
Chris Mason123abc82007-03-14 14:14:43 -0400720 u32 val)
Chris Mason3768f362007-03-13 16:47:54 -0400721{
Chris Mason123abc82007-03-14 14:14:43 -0400722 s->blocksize = cpu_to_le32(val);
723}
724
Chris Mason2e635a22007-03-21 11:12:56 -0400725static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
726{
727 return le64_to_cpu(s->root_dir_objectid);
728}
729
730static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
731 val)
732{
733 s->root_dir_objectid = cpu_to_le64(val);
734}
735
Chris Mason123abc82007-03-14 14:14:43 -0400736static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
737{
738 return (u8 *)l->items;
Chris Mason3768f362007-03-13 16:47:54 -0400739}
Chris Mason9f5fae22007-03-20 14:38:32 -0400740
741static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
742 *e)
743{
744 return le64_to_cpu(e->disk_blocknr);
745}
746
747static inline void btrfs_set_file_extent_disk_blocknr(struct
748 btrfs_file_extent_item
749 *e, u64 val)
750{
751 e->disk_blocknr = cpu_to_le64(val);
752}
753
754static inline u64 btrfs_file_extent_disk_num_blocks(struct
755 btrfs_file_extent_item *e)
756{
757 return le64_to_cpu(e->disk_num_blocks);
758}
759
760static inline void btrfs_set_file_extent_disk_num_blocks(struct
761 btrfs_file_extent_item
762 *e, u64 val)
763{
764 e->disk_num_blocks = cpu_to_le64(val);
765}
766
767static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
768{
769 return le64_to_cpu(e->offset);
770}
771
772static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
773 *e, u64 val)
774{
775 e->offset = cpu_to_le64(val);
776}
777
778static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
779 *e)
780{
781 return le64_to_cpu(e->num_blocks);
782}
783
784static inline void btrfs_set_file_extent_num_blocks(struct
785 btrfs_file_extent_item *e,
786 u64 val)
787{
788 e->num_blocks = cpu_to_le64(val);
789}
790
Chris Masone20d96d2007-03-22 12:13:20 -0400791static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
792{
793 return sb->s_fs_info;
794}
795
Chris Mason4beb1b82007-03-14 10:31:29 -0400796/* helper function to cast into the data area of the leaf. */
797#define btrfs_item_ptr(leaf, slot, type) \
Chris Mason123abc82007-03-14 14:14:43 -0400798 ((type *)(btrfs_leaf_data(leaf) + \
799 btrfs_item_offset((leaf)->items + (slot))))
Chris Mason4beb1b82007-03-14 10:31:29 -0400800
Chris Masone20d96d2007-03-22 12:13:20 -0400801struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masone089f052007-03-16 16:20:31 -0400802 struct btrfs_root *root);
803int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -0400804 struct buffer_head *buf);
Chris Masone089f052007-03-16 16:20:31 -0400805int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
806 *root, u64 blocknr, u64 num_blocks, int pin);
807int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
808 *root, struct btrfs_key *key, struct btrfs_path *p, int
809 ins_len, int cow);
Chris Mason234b63a2007-03-13 10:46:10 -0400810void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
811void btrfs_init_path(struct btrfs_path *p);
Chris Masone089f052007-03-16 16:20:31 -0400812int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
813 struct btrfs_path *path);
814int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
815 *root, struct btrfs_key *key, void *data, u32 data_size);
816int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
817 *root, struct btrfs_path *path, struct btrfs_key
818 *cpu_key, u32 data_size);
Chris Mason234b63a2007-03-13 10:46:10 -0400819int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason123abc82007-03-14 14:14:43 -0400820int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
Chris Masone089f052007-03-16 16:20:31 -0400821int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -0400822 *root, struct buffer_head *snap);
Chris Masone089f052007-03-16 16:20:31 -0400823int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
824 btrfs_root *root);
825int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
826 struct btrfs_key *key);
827int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
828 *root, struct btrfs_key *key, struct btrfs_root_item
829 *item);
830int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
831 *root, struct btrfs_key *key, struct btrfs_root_item
832 *item);
833int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
834 btrfs_root_item *item, struct btrfs_key *key);
835int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
836 *root, char *name, int name_len, u64 dir, u64
837 objectid, u8 type);
838int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -0400839 *root, struct btrfs_path *path, u64 dir,
840 const char *name, int name_len, int mod);
Chris Mason1d4f6402007-03-15 15:18:43 -0400841int btrfs_match_dir_item_name(struct btrfs_root *root, struct btrfs_path *path,
842 char *name, int name_len);
Chris Mason9f5fae22007-03-20 14:38:32 -0400843int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
844 struct btrfs_root *fs_root,
845 u64 dirid, u64 *objectid);
846int btrfs_insert_inode_map(struct btrfs_trans_handle *trans,
847 struct btrfs_root *root,
848 u64 objectid, struct btrfs_key *location);
849int btrfs_lookup_inode_map(struct btrfs_trans_handle *trans,
850 struct btrfs_root *root, struct btrfs_path *path,
851 u64 objectid, int mod);
Chris Mason293ffd52007-03-20 15:57:25 -0400852int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
853 *root, u64 objectid, struct btrfs_inode_item
854 *inode_item);
855int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
856 *root, struct btrfs_path *path, u64 objectid, int mod);
Chris Masoneb60cea2007-02-02 09:18:22 -0500857#endif