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