1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Copyright (C) 2007 Oracle. All rights reserved.
4 */
5
6 #ifndef BTRFS_CTREE_H
7 #define BTRFS_CTREE_H
8
9 #include <linux/mm.h>
10 #include <linux/sched/signal.h>
11 #include <linux/highmem.h>
12 #include <linux/fs.h>
13 #include <linux/rwsem.h>
14 #include <linux/semaphore.h>
15 #include <linux/completion.h>
16 #include <linux/backing-dev.h>
17 #include <linux/wait.h>
18 #include <linux/slab.h>
19 #include <trace/events/btrfs.h>
20 #include <asm/unaligned.h>
21 #include <linux/pagemap.h>
22 #include <linux/btrfs.h>
23 #include <linux/btrfs_tree.h>
24 #include <linux/workqueue.h>
25 #include <linux/security.h>
26 #include <linux/sizes.h>
27 #include <linux/dynamic_debug.h>
28 #include <linux/refcount.h>
29 #include <linux/crc32c.h>
30 #include <linux/iomap.h>
31 #include "extent-io-tree.h"
32 #include "extent_io.h"
33 #include "extent_map.h"
34 #include "async-thread.h"
35 #include "block-rsv.h"
36 #include "locking.h"
37
38 struct btrfs_trans_handle;
39 struct btrfs_transaction;
40 struct btrfs_pending_snapshot;
41 struct btrfs_delayed_ref_root;
42 struct btrfs_space_info;
43 struct btrfs_block_group;
44 extern struct kmem_cache *btrfs_trans_handle_cachep;
45 extern struct kmem_cache *btrfs_bit_radix_cachep;
46 extern struct kmem_cache *btrfs_path_cachep;
47 extern struct kmem_cache *btrfs_free_space_cachep;
48 extern struct kmem_cache *btrfs_free_space_bitmap_cachep;
49 struct btrfs_ordered_sum;
50 struct btrfs_ref;
51
52 #define BTRFS_MAGIC 0x4D5F53665248425FULL /* ascii _BHRfS_M, no null */
53
54 /*
55 * Maximum number of mirrors that can be available for all profiles counting
56 * the target device of dev-replace as one. During an active device replace
57 * procedure, the target device of the copy operation is a mirror for the
58 * filesystem data as well that can be used to read data in order to repair
59 * read errors on other disks.
60 *
61 * Current value is derived from RAID1C4 with 4 copies.
62 */
63 #define BTRFS_MAX_MIRRORS (4 + 1)
64
65 #define BTRFS_MAX_LEVEL 8
66
67 #define BTRFS_OLDEST_GENERATION 0ULL
68
69 /*
70 * we can actually store much bigger names, but lets not confuse the rest
71 * of linux
72 */
73 #define BTRFS_NAME_LEN 255
74
75 /*
76 * Theoretical limit is larger, but we keep this down to a sane
77 * value. That should limit greatly the possibility of collisions on
78 * inode ref items.
79 */
80 #define BTRFS_LINK_MAX 65535U
81
82 #define BTRFS_EMPTY_DIR_SIZE 0
83
84 /* ioprio of readahead is set to idle */
85 #define BTRFS_IOPRIO_READA (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0))
86
87 #define BTRFS_DIRTY_METADATA_THRESH SZ_32M
88
89 /*
90 * Use large batch size to reduce overhead of metadata updates. On the reader
91 * side, we only read it when we are close to ENOSPC and the read overhead is
92 * mostly related to the number of CPUs, so it is OK to use arbitrary large
93 * value here.
94 */
95 #define BTRFS_TOTAL_BYTES_PINNED_BATCH SZ_128M
96
97 #define BTRFS_MAX_EXTENT_SIZE SZ_128M
98
99 /*
100 * Deltas are an effective way to populate global statistics. Give macro names
101 * to make it clear what we're doing. An example is discard_extents in
102 * btrfs_free_space_ctl.
103 */
104 #define BTRFS_STAT_NR_ENTRIES 2
105 #define BTRFS_STAT_CURR 0
106 #define BTRFS_STAT_PREV 1
107
btrfs_chunk_item_size(int num_stripes)108 static inline unsigned long btrfs_chunk_item_size(int num_stripes)
109 {
110 BUG_ON(num_stripes == 0);
111 return sizeof(struct btrfs_chunk) +
112 sizeof(struct btrfs_stripe) * (num_stripes - 1);
113 }
114
115 /*
116 * Runtime (in-memory) states of filesystem
117 */
118 enum {
119 /* Global indicator of serious filesystem errors */
120 BTRFS_FS_STATE_ERROR,
121 /*
122 * Filesystem is being remounted, allow to skip some operations, like
123 * defrag
124 */
125 BTRFS_FS_STATE_REMOUNTING,
126 /* Filesystem in RO mode */
127 BTRFS_FS_STATE_RO,
128 /* Track if a transaction abort has been reported on this filesystem */
129 BTRFS_FS_STATE_TRANS_ABORTED,
130 /*
131 * Bio operations should be blocked on this filesystem because a source
132 * or target device is being destroyed as part of a device replace
133 */
134 BTRFS_FS_STATE_DEV_REPLACING,
135 /* The btrfs_fs_info created for self-tests */
136 BTRFS_FS_STATE_DUMMY_FS_INFO,
137
138 /* Indicates there was an error cleaning up a log tree. */
139 BTRFS_FS_STATE_LOG_CLEANUP_ERROR,
140 };
141
142 #define BTRFS_BACKREF_REV_MAX 256
143 #define BTRFS_BACKREF_REV_SHIFT 56
144 #define BTRFS_BACKREF_REV_MASK (((u64)BTRFS_BACKREF_REV_MAX - 1) << \
145 BTRFS_BACKREF_REV_SHIFT)
146
147 #define BTRFS_OLD_BACKREF_REV 0
148 #define BTRFS_MIXED_BACKREF_REV 1
149
150 /*
151 * every tree block (leaf or node) starts with this header.
152 */
153 struct btrfs_header {
154 /* these first four must match the super block */
155 u8 csum[BTRFS_CSUM_SIZE];
156 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
157 __le64 bytenr; /* which block this node is supposed to live in */
158 __le64 flags;
159
160 /* allowed to be different from the super from here on down */
161 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
162 __le64 generation;
163 __le64 owner;
164 __le32 nritems;
165 u8 level;
166 } __attribute__ ((__packed__));
167
168 /*
169 * this is a very generous portion of the super block, giving us
170 * room to translate 14 chunks with 3 stripes each.
171 */
172 #define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
173
174 /*
175 * just in case we somehow lose the roots and are not able to mount,
176 * we store an array of the roots from previous transactions
177 * in the super.
178 */
179 #define BTRFS_NUM_BACKUP_ROOTS 4
180 struct btrfs_root_backup {
181 __le64 tree_root;
182 __le64 tree_root_gen;
183
184 __le64 chunk_root;
185 __le64 chunk_root_gen;
186
187 __le64 extent_root;
188 __le64 extent_root_gen;
189
190 __le64 fs_root;
191 __le64 fs_root_gen;
192
193 __le64 dev_root;
194 __le64 dev_root_gen;
195
196 __le64 csum_root;
197 __le64 csum_root_gen;
198
199 __le64 total_bytes;
200 __le64 bytes_used;
201 __le64 num_devices;
202 /* future */
203 __le64 unused_64[4];
204
205 u8 tree_root_level;
206 u8 chunk_root_level;
207 u8 extent_root_level;
208 u8 fs_root_level;
209 u8 dev_root_level;
210 u8 csum_root_level;
211 /* future and to align */
212 u8 unused_8[10];
213 } __attribute__ ((__packed__));
214
215 /*
216 * the super block basically lists the main trees of the FS
217 * it currently lacks any block count etc etc
218 */
219 struct btrfs_super_block {
220 /* the first 4 fields must match struct btrfs_header */
221 u8 csum[BTRFS_CSUM_SIZE];
222 /* FS specific UUID, visible to user */
223 u8 fsid[BTRFS_FSID_SIZE];
224 __le64 bytenr; /* this block number */
225 __le64 flags;
226
227 /* allowed to be different from the btrfs_header from here own down */
228 __le64 magic;
229 __le64 generation;
230 __le64 root;
231 __le64 chunk_root;
232 __le64 log_root;
233
234 /* this will help find the new super based on the log root */
235 __le64 log_root_transid;
236 __le64 total_bytes;
237 __le64 bytes_used;
238 __le64 root_dir_objectid;
239 __le64 num_devices;
240 __le32 sectorsize;
241 __le32 nodesize;
242 __le32 __unused_leafsize;
243 __le32 stripesize;
244 __le32 sys_chunk_array_size;
245 __le64 chunk_root_generation;
246 __le64 compat_flags;
247 __le64 compat_ro_flags;
248 __le64 incompat_flags;
249 __le16 csum_type;
250 u8 root_level;
251 u8 chunk_root_level;
252 u8 log_root_level;
253 struct btrfs_dev_item dev_item;
254
255 char label[BTRFS_LABEL_SIZE];
256
257 __le64 cache_generation;
258 __le64 uuid_tree_generation;
259
260 /* the UUID written into btree blocks */
261 u8 metadata_uuid[BTRFS_FSID_SIZE];
262
263 /* future expansion */
264 __le64 reserved[28];
265 u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
266 struct btrfs_root_backup super_roots[BTRFS_NUM_BACKUP_ROOTS];
267 } __attribute__ ((__packed__));
268
269 /*
270 * Compat flags that we support. If any incompat flags are set other than the
271 * ones specified below then we will fail to mount
272 */
273 #define BTRFS_FEATURE_COMPAT_SUPP 0ULL
274 #define BTRFS_FEATURE_COMPAT_SAFE_SET 0ULL
275 #define BTRFS_FEATURE_COMPAT_SAFE_CLEAR 0ULL
276
277 #define BTRFS_FEATURE_COMPAT_RO_SUPP \
278 (BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE | \
279 BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE_VALID | \
280 BTRFS_FEATURE_COMPAT_RO_VERITY)
281
282 #define BTRFS_FEATURE_COMPAT_RO_SAFE_SET 0ULL
283 #define BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR 0ULL
284
285 #ifdef CONFIG_BTRFS_DEBUG
286 /*
287 * Extent tree v2 supported only with CONFIG_BTRFS_DEBUG
288 */
289 #define BTRFS_FEATURE_INCOMPAT_SUPP \
290 (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF | \
291 BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL | \
292 BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS | \
293 BTRFS_FEATURE_INCOMPAT_BIG_METADATA | \
294 BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO | \
295 BTRFS_FEATURE_INCOMPAT_COMPRESS_ZSTD | \
296 BTRFS_FEATURE_INCOMPAT_RAID56 | \
297 BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF | \
298 BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA | \
299 BTRFS_FEATURE_INCOMPAT_NO_HOLES | \
300 BTRFS_FEATURE_INCOMPAT_METADATA_UUID | \
301 BTRFS_FEATURE_INCOMPAT_RAID1C34 | \
302 BTRFS_FEATURE_INCOMPAT_ZONED | \
303 BTRFS_FEATURE_INCOMPAT_EXTENT_TREE_V2)
304 #else
305 #define BTRFS_FEATURE_INCOMPAT_SUPP \
306 (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF | \
307 BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL | \
308 BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS | \
309 BTRFS_FEATURE_INCOMPAT_BIG_METADATA | \
310 BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO | \
311 BTRFS_FEATURE_INCOMPAT_COMPRESS_ZSTD | \
312 BTRFS_FEATURE_INCOMPAT_RAID56 | \
313 BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF | \
314 BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA | \
315 BTRFS_FEATURE_INCOMPAT_NO_HOLES | \
316 BTRFS_FEATURE_INCOMPAT_METADATA_UUID | \
317 BTRFS_FEATURE_INCOMPAT_RAID1C34 | \
318 BTRFS_FEATURE_INCOMPAT_ZONED)
319 #endif
320
321 #define BTRFS_FEATURE_INCOMPAT_SAFE_SET \
322 (BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF)
323 #define BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR 0ULL
324
325 /*
326 * A leaf is full of items. offset and size tell us where to find
327 * the item in the leaf (relative to the start of the data area)
328 */
329 struct btrfs_item {
330 struct btrfs_disk_key key;
331 __le32 offset;
332 __le32 size;
333 } __attribute__ ((__packed__));
334
335 /*
336 * leaves have an item area and a data area:
337 * [item0, item1....itemN] [free space] [dataN...data1, data0]
338 *
339 * The data is separate from the items to get the keys closer together
340 * during searches.
341 */
342 struct btrfs_leaf {
343 struct btrfs_header header;
344 struct btrfs_item items[];
345 } __attribute__ ((__packed__));
346
347 /*
348 * all non-leaf blocks are nodes, they hold only keys and pointers to
349 * other blocks
350 */
351 struct btrfs_key_ptr {
352 struct btrfs_disk_key key;
353 __le64 blockptr;
354 __le64 generation;
355 } __attribute__ ((__packed__));
356
357 struct btrfs_node {
358 struct btrfs_header header;
359 struct btrfs_key_ptr ptrs[];
360 } __attribute__ ((__packed__));
361
362 /* Read ahead values for struct btrfs_path.reada */
363 enum {
364 READA_NONE,
365 READA_BACK,
366 READA_FORWARD,
367 /*
368 * Similar to READA_FORWARD but unlike it:
369 *
370 * 1) It will trigger readahead even for leaves that are not close to
371 * each other on disk;
372 * 2) It also triggers readahead for nodes;
373 * 3) During a search, even when a node or leaf is already in memory, it
374 * will still trigger readahead for other nodes and leaves that follow
375 * it.
376 *
377 * This is meant to be used only when we know we are iterating over the
378 * entire tree or a very large part of it.
379 */
380 READA_FORWARD_ALWAYS,
381 };
382
383 /*
384 * btrfs_paths remember the path taken from the root down to the leaf.
385 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
386 * to any other levels that are present.
387 *
388 * The slots array records the index of the item or block pointer
389 * used while walking the tree.
390 */
391 struct btrfs_path {
392 struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
393 int slots[BTRFS_MAX_LEVEL];
394 /* if there is real range locking, this locks field will change */
395 u8 locks[BTRFS_MAX_LEVEL];
396 u8 reada;
397 /* keep some upper locks as we walk down */
398 u8 lowest_level;
399
400 /*
401 * set by btrfs_split_item, tells search_slot to keep all locks
402 * and to force calls to keep space in the nodes
403 */
404 unsigned int search_for_split:1;
405 unsigned int keep_locks:1;
406 unsigned int skip_locking:1;
407 unsigned int search_commit_root:1;
408 unsigned int need_commit_sem:1;
409 unsigned int skip_release_on_error:1;
410 /*
411 * Indicate that new item (btrfs_search_slot) is extending already
412 * existing item and ins_len contains only the data size and not item
413 * header (ie. sizeof(struct btrfs_item) is not included).
414 */
415 unsigned int search_for_extension:1;
416 };
417 #define BTRFS_MAX_EXTENT_ITEM_SIZE(r) ((BTRFS_LEAF_DATA_SIZE(r->fs_info) >> 4) - \
418 sizeof(struct btrfs_item))
419 struct btrfs_dev_replace {
420 u64 replace_state; /* see #define above */
421 time64_t time_started; /* seconds since 1-Jan-1970 */
422 time64_t time_stopped; /* seconds since 1-Jan-1970 */
423 atomic64_t num_write_errors;
424 atomic64_t num_uncorrectable_read_errors;
425
426 u64 cursor_left;
427 u64 committed_cursor_left;
428 u64 cursor_left_last_write_of_item;
429 u64 cursor_right;
430
431 u64 cont_reading_from_srcdev_mode; /* see #define above */
432
433 int is_valid;
434 int item_needs_writeback;
435 struct btrfs_device *srcdev;
436 struct btrfs_device *tgtdev;
437
438 struct mutex lock_finishing_cancel_unmount;
439 struct rw_semaphore rwsem;
440
441 struct btrfs_scrub_progress scrub_progress;
442
443 struct percpu_counter bio_counter;
444 wait_queue_head_t replace_wait;
445 };
446
447 /*
448 * free clusters are used to claim free space in relatively large chunks,
449 * allowing us to do less seeky writes. They are used for all metadata
450 * allocations. In ssd_spread mode they are also used for data allocations.
451 */
452 struct btrfs_free_cluster {
453 spinlock_t lock;
454 spinlock_t refill_lock;
455 struct rb_root root;
456
457 /* largest extent in this cluster */
458 u64 max_size;
459
460 /* first extent starting offset */
461 u64 window_start;
462
463 /* We did a full search and couldn't create a cluster */
464 bool fragmented;
465
466 struct btrfs_block_group *block_group;
467 /*
468 * when a cluster is allocated from a block group, we put the
469 * cluster onto a list in the block group so that it can
470 * be freed before the block group is freed.
471 */
472 struct list_head block_group_list;
473 };
474
475 enum btrfs_caching_type {
476 BTRFS_CACHE_NO,
477 BTRFS_CACHE_STARTED,
478 BTRFS_CACHE_FINISHED,
479 BTRFS_CACHE_ERROR,
480 };
481
482 /*
483 * Tree to record all locked full stripes of a RAID5/6 block group
484 */
485 struct btrfs_full_stripe_locks_tree {
486 struct rb_root root;
487 struct mutex lock;
488 };
489
490 /* Discard control. */
491 /*
492 * Async discard uses multiple lists to differentiate the discard filter
493 * parameters. Index 0 is for completely free block groups where we need to
494 * ensure the entire block group is trimmed without being lossy. Indices
495 * afterwards represent monotonically decreasing discard filter sizes to
496 * prioritize what should be discarded next.
497 */
498 #define BTRFS_NR_DISCARD_LISTS 3
499 #define BTRFS_DISCARD_INDEX_UNUSED 0
500 #define BTRFS_DISCARD_INDEX_START 1
501
502 struct btrfs_discard_ctl {
503 struct workqueue_struct *discard_workers;
504 struct delayed_work work;
505 spinlock_t lock;
506 struct btrfs_block_group *block_group;
507 struct list_head discard_list[BTRFS_NR_DISCARD_LISTS];
508 u64 prev_discard;
509 u64 prev_discard_time;
510 atomic_t discardable_extents;
511 atomic64_t discardable_bytes;
512 u64 max_discard_size;
513 u64 delay_ms;
514 u32 iops_limit;
515 u32 kbps_limit;
516 u64 discard_extent_bytes;
517 u64 discard_bitmap_bytes;
518 atomic64_t discard_bytes_saved;
519 };
520
521 enum btrfs_orphan_cleanup_state {
522 ORPHAN_CLEANUP_STARTED = 1,
523 ORPHAN_CLEANUP_DONE = 2,
524 };
525
526 void btrfs_init_async_reclaim_work(struct btrfs_fs_info *fs_info);
527
528 /* fs_info */
529 struct reloc_control;
530 struct btrfs_device;
531 struct btrfs_fs_devices;
532 struct btrfs_balance_control;
533 struct btrfs_delayed_root;
534
535 /*
536 * Block group or device which contains an active swapfile. Used for preventing
537 * unsafe operations while a swapfile is active.
538 *
539 * These are sorted on (ptr, inode) (note that a block group or device can
540 * contain more than one swapfile). We compare the pointer values because we
541 * don't actually care what the object is, we just need a quick check whether
542 * the object exists in the rbtree.
543 */
544 struct btrfs_swapfile_pin {
545 struct rb_node node;
546 void *ptr;
547 struct inode *inode;
548 /*
549 * If true, ptr points to a struct btrfs_block_group. Otherwise, ptr
550 * points to a struct btrfs_device.
551 */
552 bool is_block_group;
553 /*
554 * Only used when 'is_block_group' is true and it is the number of
555 * extents used by a swapfile for this block group ('ptr' field).
556 */
557 int bg_extent_count;
558 };
559
560 enum {
561 BTRFS_FS_BARRIER,
562 BTRFS_FS_CLOSING_START,
563 BTRFS_FS_CLOSING_DONE,
564 BTRFS_FS_LOG_RECOVERING,
565 BTRFS_FS_OPEN,
566 BTRFS_FS_QUOTA_ENABLED,
567 BTRFS_FS_UPDATE_UUID_TREE_GEN,
568 BTRFS_FS_CREATING_FREE_SPACE_TREE,
569 BTRFS_FS_BTREE_ERR,
570 BTRFS_FS_LOG1_ERR,
571 BTRFS_FS_LOG2_ERR,
572 BTRFS_FS_QUOTA_OVERRIDE,
573 /* Used to record internally whether fs has been frozen */
574 BTRFS_FS_FROZEN,
575 /*
576 * Indicate that balance has been set up from the ioctl and is in the
577 * main phase. The fs_info::balance_ctl is initialized.
578 */
579 BTRFS_FS_BALANCE_RUNNING,
580
581 /*
582 * Indicate that relocation of a chunk has started, it's set per chunk
583 * and is toggled between chunks.
584 */
585 BTRFS_FS_RELOC_RUNNING,
586
587 /* Indicate that the cleaner thread is awake and doing something. */
588 BTRFS_FS_CLEANER_RUNNING,
589
590 /*
591 * The checksumming has an optimized version and is considered fast,
592 * so we don't need to offload checksums to workqueues.
593 */
594 BTRFS_FS_CSUM_IMPL_FAST,
595
596 /* Indicate that the discard workqueue can service discards. */
597 BTRFS_FS_DISCARD_RUNNING,
598
599 /* Indicate that we need to cleanup space cache v1 */
600 BTRFS_FS_CLEANUP_SPACE_CACHE_V1,
601
602 /* Indicate that we can't trust the free space tree for caching yet */
603 BTRFS_FS_FREE_SPACE_TREE_UNTRUSTED,
604
605 /* Indicate whether there are any tree modification log users */
606 BTRFS_FS_TREE_MOD_LOG_USERS,
607
608 /* Indicate we have half completed snapshot deletions pending. */
609 BTRFS_FS_UNFINISHED_DROPS,
610
611 #if BITS_PER_LONG == 32
612 /* Indicate if we have error/warn message printed on 32bit systems */
613 BTRFS_FS_32BIT_ERROR,
614 BTRFS_FS_32BIT_WARN,
615 #endif
616 };
617
618 /*
619 * Exclusive operations (device replace, resize, device add/remove, balance)
620 */
621 enum btrfs_exclusive_operation {
622 BTRFS_EXCLOP_NONE,
623 BTRFS_EXCLOP_BALANCE,
624 BTRFS_EXCLOP_DEV_ADD,
625 BTRFS_EXCLOP_DEV_REMOVE,
626 BTRFS_EXCLOP_DEV_REPLACE,
627 BTRFS_EXCLOP_RESIZE,
628 BTRFS_EXCLOP_SWAP_ACTIVATE,
629 };
630
631 struct btrfs_fs_info {
632 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
633 unsigned long flags;
634 struct btrfs_root *extent_root;
635 struct btrfs_root *tree_root;
636 struct btrfs_root *chunk_root;
637 struct btrfs_root *dev_root;
638 struct btrfs_root *fs_root;
639 struct btrfs_root *csum_root;
640 struct btrfs_root *quota_root;
641 struct btrfs_root *uuid_root;
642 struct btrfs_root *free_space_root;
643 struct btrfs_root *data_reloc_root;
644
645 /* the log root tree is a directory of all the other log roots */
646 struct btrfs_root *log_root_tree;
647
648 spinlock_t fs_roots_radix_lock;
649 struct radix_tree_root fs_roots_radix;
650
651 /* block group cache stuff */
652 spinlock_t block_group_cache_lock;
653 u64 first_logical_byte;
654 struct rb_root block_group_cache_tree;
655
656 /* keep track of unallocated space */
657 atomic64_t free_chunk_space;
658
659 /* Track ranges which are used by log trees blocks/logged data extents */
660 struct extent_io_tree excluded_extents;
661
662 /* logical->physical extent mapping */
663 struct extent_map_tree mapping_tree;
664
665 /*
666 * block reservation for extent, checksum, root tree and
667 * delayed dir index item
668 */
669 struct btrfs_block_rsv global_block_rsv;
670 /* block reservation for metadata operations */
671 struct btrfs_block_rsv trans_block_rsv;
672 /* block reservation for chunk tree */
673 struct btrfs_block_rsv chunk_block_rsv;
674 /* block reservation for delayed operations */
675 struct btrfs_block_rsv delayed_block_rsv;
676 /* block reservation for delayed refs */
677 struct btrfs_block_rsv delayed_refs_rsv;
678
679 struct btrfs_block_rsv empty_block_rsv;
680
681 u64 generation;
682 u64 last_trans_committed;
683 /*
684 * Generation of the last transaction used for block group relocation
685 * since the filesystem was last mounted (or 0 if none happened yet).
686 * Must be written and read while holding btrfs_fs_info::commit_root_sem.
687 */
688 u64 last_reloc_trans;
689 u64 avg_delayed_ref_runtime;
690
691 /*
692 * this is updated to the current trans every time a full commit
693 * is required instead of the faster short fsync log commits
694 */
695 u64 last_trans_log_full_commit;
696 unsigned long mount_opt;
697 /*
698 * Track requests for actions that need to be done during transaction
699 * commit (like for some mount options).
700 */
701 unsigned long pending_changes;
702 unsigned long compress_type:4;
703 unsigned int compress_level;
704 u32 commit_interval;
705 /*
706 * It is a suggestive number, the read side is safe even it gets a
707 * wrong number because we will write out the data into a regular
708 * extent. The write side(mount/remount) is under ->s_umount lock,
709 * so it is also safe.
710 */
711 u64 max_inline;
712
713 struct btrfs_transaction *running_transaction;
714 wait_queue_head_t transaction_throttle;
715 wait_queue_head_t transaction_wait;
716 wait_queue_head_t transaction_blocked_wait;
717 wait_queue_head_t async_submit_wait;
718
719 /*
720 * Used to protect the incompat_flags, compat_flags, compat_ro_flags
721 * when they are updated.
722 *
723 * Because we do not clear the flags for ever, so we needn't use
724 * the lock on the read side.
725 *
726 * We also needn't use the lock when we mount the fs, because
727 * there is no other task which will update the flag.
728 */
729 spinlock_t super_lock;
730 struct btrfs_super_block *super_copy;
731 struct btrfs_super_block *super_for_commit;
732 struct super_block *sb;
733 struct inode *btree_inode;
734 struct mutex tree_log_mutex;
735 struct mutex transaction_kthread_mutex;
736 struct mutex cleaner_mutex;
737 struct mutex chunk_mutex;
738
739 /*
740 * this is taken to make sure we don't set block groups ro after
741 * the free space cache has been allocated on them
742 */
743 struct mutex ro_block_group_mutex;
744
745 /* this is used during read/modify/write to make sure
746 * no two ios are trying to mod the same stripe at the same
747 * time
748 */
749 struct btrfs_stripe_hash_table *stripe_hash_table;
750
751 /*
752 * this protects the ordered operations list only while we are
753 * processing all of the entries on it. This way we make
754 * sure the commit code doesn't find the list temporarily empty
755 * because another function happens to be doing non-waiting preflush
756 * before jumping into the main commit.
757 */
758 struct mutex ordered_operations_mutex;
759
760 struct rw_semaphore commit_root_sem;
761
762 struct rw_semaphore cleanup_work_sem;
763
764 struct rw_semaphore subvol_sem;
765
766 spinlock_t trans_lock;
767 /*
768 * the reloc mutex goes with the trans lock, it is taken
769 * during commit to protect us from the relocation code
770 */
771 struct mutex reloc_mutex;
772
773 struct list_head trans_list;
774 struct list_head dead_roots;
775 struct list_head caching_block_groups;
776
777 spinlock_t delayed_iput_lock;
778 struct list_head delayed_iputs;
779 atomic_t nr_delayed_iputs;
780 wait_queue_head_t delayed_iputs_wait;
781
782 atomic64_t tree_mod_seq;
783
784 /* this protects tree_mod_log and tree_mod_seq_list */
785 rwlock_t tree_mod_log_lock;
786 struct rb_root tree_mod_log;
787 struct list_head tree_mod_seq_list;
788
789 atomic_t async_delalloc_pages;
790
791 /*
792 * this is used to protect the following list -- ordered_roots.
793 */
794 spinlock_t ordered_root_lock;
795
796 /*
797 * all fs/file tree roots in which there are data=ordered extents
798 * pending writeback are added into this list.
799 *
800 * these can span multiple transactions and basically include
801 * every dirty data page that isn't from nodatacow
802 */
803 struct list_head ordered_roots;
804
805 struct mutex delalloc_root_mutex;
806 spinlock_t delalloc_root_lock;
807 /* all fs/file tree roots that have delalloc inodes. */
808 struct list_head delalloc_roots;
809
810 /*
811 * there is a pool of worker threads for checksumming during writes
812 * and a pool for checksumming after reads. This is because readers
813 * can run with FS locks held, and the writers may be waiting for
814 * those locks. We don't want ordering in the pending list to cause
815 * deadlocks, and so the two are serviced separately.
816 *
817 * A third pool does submit_bio to avoid deadlocking with the other
818 * two
819 */
820 struct btrfs_workqueue *workers;
821 struct btrfs_workqueue *delalloc_workers;
822 struct btrfs_workqueue *flush_workers;
823 struct btrfs_workqueue *endio_workers;
824 struct btrfs_workqueue *endio_meta_workers;
825 struct btrfs_workqueue *endio_raid56_workers;
826 struct btrfs_workqueue *rmw_workers;
827 struct btrfs_workqueue *endio_meta_write_workers;
828 struct btrfs_workqueue *endio_write_workers;
829 struct btrfs_workqueue *endio_freespace_worker;
830 struct btrfs_workqueue *caching_workers;
831 struct btrfs_workqueue *readahead_workers;
832
833 /*
834 * fixup workers take dirty pages that didn't properly go through
835 * the cow mechanism and make them safe to write. It happens
836 * for the sys_munmap function call path
837 */
838 struct btrfs_workqueue *fixup_workers;
839 struct btrfs_workqueue *delayed_workers;
840
841 struct task_struct *transaction_kthread;
842 struct task_struct *cleaner_kthread;
843 u32 thread_pool_size;
844
845 struct kobject *space_info_kobj;
846 struct kobject *qgroups_kobj;
847
848 /* used to keep from writing metadata until there is a nice batch */
849 struct percpu_counter dirty_metadata_bytes;
850 struct percpu_counter delalloc_bytes;
851 struct percpu_counter ordered_bytes;
852 s32 dirty_metadata_batch;
853 s32 delalloc_batch;
854
855 struct list_head dirty_cowonly_roots;
856
857 struct btrfs_fs_devices *fs_devices;
858
859 /*
860 * The space_info list is effectively read only after initial
861 * setup. It is populated at mount time and cleaned up after
862 * all block groups are removed. RCU is used to protect it.
863 */
864 struct list_head space_info;
865
866 struct btrfs_space_info *data_sinfo;
867
868 struct reloc_control *reloc_ctl;
869
870 /* data_alloc_cluster is only used in ssd_spread mode */
871 struct btrfs_free_cluster data_alloc_cluster;
872
873 /* all metadata allocations go through this cluster */
874 struct btrfs_free_cluster meta_alloc_cluster;
875
876 /* auto defrag inodes go here */
877 spinlock_t defrag_inodes_lock;
878 struct rb_root defrag_inodes;
879 atomic_t defrag_running;
880
881 /* Used to protect avail_{data, metadata, system}_alloc_bits */
882 seqlock_t profiles_lock;
883 /*
884 * these three are in extended format (availability of single
885 * chunks is denoted by BTRFS_AVAIL_ALLOC_BIT_SINGLE bit, other
886 * types are denoted by corresponding BTRFS_BLOCK_GROUP_* bits)
887 */
888 u64 avail_data_alloc_bits;
889 u64 avail_metadata_alloc_bits;
890 u64 avail_system_alloc_bits;
891
892 /* restriper state */
893 spinlock_t balance_lock;
894 struct mutex balance_mutex;
895 atomic_t balance_pause_req;
896 atomic_t balance_cancel_req;
897 struct btrfs_balance_control *balance_ctl;
898 wait_queue_head_t balance_wait_q;
899
900 /* Cancellation requests for chunk relocation */
901 atomic_t reloc_cancel_req;
902
903 u32 data_chunk_allocations;
904 u32 metadata_ratio;
905
906 void *bdev_holder;
907
908 /* private scrub information */
909 struct mutex scrub_lock;
910 atomic_t scrubs_running;
911 atomic_t scrub_pause_req;
912 atomic_t scrubs_paused;
913 atomic_t scrub_cancel_req;
914 wait_queue_head_t scrub_pause_wait;
915 /*
916 * The worker pointers are NULL iff the refcount is 0, ie. scrub is not
917 * running.
918 */
919 refcount_t scrub_workers_refcnt;
920 struct btrfs_workqueue *scrub_workers;
921 struct btrfs_workqueue *scrub_wr_completion_workers;
922 struct btrfs_workqueue *scrub_parity_workers;
923
924 struct btrfs_discard_ctl discard_ctl;
925
926 #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
927 u32 check_integrity_print_mask;
928 #endif
929 /* is qgroup tracking in a consistent state? */
930 u64 qgroup_flags;
931
932 /* holds configuration and tracking. Protected by qgroup_lock */
933 struct rb_root qgroup_tree;
934 spinlock_t qgroup_lock;
935
936 /*
937 * used to avoid frequently calling ulist_alloc()/ulist_free()
938 * when doing qgroup accounting, it must be protected by qgroup_lock.
939 */
940 struct ulist *qgroup_ulist;
941
942 /*
943 * Protect user change for quota operations. If a transaction is needed,
944 * it must be started before locking this lock.
945 */
946 struct mutex qgroup_ioctl_lock;
947
948 /* list of dirty qgroups to be written at next commit */
949 struct list_head dirty_qgroups;
950
951 /* used by qgroup for an efficient tree traversal */
952 u64 qgroup_seq;
953
954 /* qgroup rescan items */
955 struct mutex qgroup_rescan_lock; /* protects the progress item */
956 struct btrfs_key qgroup_rescan_progress;
957 struct btrfs_workqueue *qgroup_rescan_workers;
958 struct completion qgroup_rescan_completion;
959 struct btrfs_work qgroup_rescan_work;
960 bool qgroup_rescan_running; /* protected by qgroup_rescan_lock */
961
962 /* filesystem state */
963 unsigned long fs_state;
964
965 struct btrfs_delayed_root *delayed_root;
966
967 /* readahead tree */
968 spinlock_t reada_lock;
969 struct radix_tree_root reada_tree;
970
971 /* readahead works cnt */
972 atomic_t reada_works_cnt;
973
974 /* Extent buffer radix tree */
975 spinlock_t buffer_lock;
976 /* Entries are eb->start / sectorsize */
977 struct radix_tree_root buffer_radix;
978
979 /* next backup root to be overwritten */
980 int backup_root_index;
981
982 /* device replace state */
983 struct btrfs_dev_replace dev_replace;
984
985 struct semaphore uuid_tree_rescan_sem;
986
987 /* Used to reclaim the metadata space in the background. */
988 struct work_struct async_reclaim_work;
989 struct work_struct async_data_reclaim_work;
990 struct work_struct preempt_reclaim_work;
991
992 /* Reclaim partially filled block groups in the background */
993 struct work_struct reclaim_bgs_work;
994 struct list_head reclaim_bgs;
995 int bg_reclaim_threshold;
996
997 spinlock_t unused_bgs_lock;
998 struct list_head unused_bgs;
999 struct mutex unused_bg_unpin_mutex;
1000 /* Protect block groups that are going to be deleted */
1001 struct mutex reclaim_bgs_lock;
1002
1003 /* Cached block sizes */
1004 u32 nodesize;
1005 u32 sectorsize;
1006 /* ilog2 of sectorsize, use to avoid 64bit division */
1007 u32 sectorsize_bits;
1008 u32 csum_size;
1009 u32 csums_per_leaf;
1010 u32 stripesize;
1011
1012 /*
1013 * Maximum size of an extent. BTRFS_MAX_EXTENT_SIZE on regular
1014 * filesystem, on zoned it depends on the device constraints.
1015 */
1016 u64 max_extent_size;
1017
1018 /* Block groups and devices containing active swapfiles. */
1019 spinlock_t swapfile_pins_lock;
1020 struct rb_root swapfile_pins;
1021
1022 struct crypto_shash *csum_shash;
1023
1024 /* Type of exclusive operation running, protected by super_lock */
1025 enum btrfs_exclusive_operation exclusive_operation;
1026
1027 /*
1028 * Zone size > 0 when in ZONED mode, otherwise it's used for a check
1029 * if the mode is enabled
1030 */
1031 union {
1032 u64 zone_size;
1033 u64 zoned;
1034 };
1035
1036 /* Max size to emit ZONE_APPEND write command */
1037 u64 max_zone_append_size;
1038 struct mutex zoned_meta_io_lock;
1039 spinlock_t treelog_bg_lock;
1040 u64 treelog_bg;
1041
1042 /*
1043 * Start of the dedicated data relocation block group, protected by
1044 * relocation_bg_lock.
1045 */
1046 spinlock_t relocation_bg_lock;
1047 u64 data_reloc_bg;
1048 struct mutex zoned_data_reloc_io_lock;
1049
1050 #ifdef CONFIG_BTRFS_FS_REF_VERIFY
1051 spinlock_t ref_verify_lock;
1052 struct rb_root block_tree;
1053 #endif
1054
1055 #ifdef CONFIG_BTRFS_DEBUG
1056 struct kobject *debug_kobj;
1057 struct kobject *discard_debug_kobj;
1058 struct list_head allocated_roots;
1059
1060 spinlock_t eb_leak_lock;
1061 struct list_head allocated_ebs;
1062 #endif
1063 };
1064
btrfs_sb(struct super_block * sb)1065 static inline struct btrfs_fs_info *btrfs_sb(struct super_block *sb)
1066 {
1067 return sb->s_fs_info;
1068 }
1069
1070 /*
1071 * The state of btrfs root
1072 */
1073 enum {
1074 /*
1075 * btrfs_record_root_in_trans is a multi-step process, and it can race
1076 * with the balancing code. But the race is very small, and only the
1077 * first time the root is added to each transaction. So IN_TRANS_SETUP
1078 * is used to tell us when more checks are required
1079 */
1080 BTRFS_ROOT_IN_TRANS_SETUP,
1081
1082 /*
1083 * Set if tree blocks of this root can be shared by other roots.
1084 * Only subvolume trees and their reloc trees have this bit set.
1085 * Conflicts with TRACK_DIRTY bit.
1086 *
1087 * This affects two things:
1088 *
1089 * - How balance works
1090 * For shareable roots, we need to use reloc tree and do path
1091 * replacement for balance, and need various pre/post hooks for
1092 * snapshot creation to handle them.
1093 *
1094 * While for non-shareable trees, we just simply do a tree search
1095 * with COW.
1096 *
1097 * - How dirty roots are tracked
1098 * For shareable roots, btrfs_record_root_in_trans() is needed to
1099 * track them, while non-subvolume roots have TRACK_DIRTY bit, they
1100 * don't need to set this manually.
1101 */
1102 BTRFS_ROOT_SHAREABLE,
1103 BTRFS_ROOT_TRACK_DIRTY,
1104 BTRFS_ROOT_IN_RADIX,
1105 BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
1106 BTRFS_ROOT_DEFRAG_RUNNING,
1107 BTRFS_ROOT_FORCE_COW,
1108 BTRFS_ROOT_MULTI_LOG_TASKS,
1109 BTRFS_ROOT_DIRTY,
1110 BTRFS_ROOT_DELETING,
1111
1112 /*
1113 * Reloc tree is orphan, only kept here for qgroup delayed subtree scan
1114 *
1115 * Set for the subvolume tree owning the reloc tree.
1116 */
1117 BTRFS_ROOT_DEAD_RELOC_TREE,
1118 /* Mark dead root stored on device whose cleanup needs to be resumed */
1119 BTRFS_ROOT_DEAD_TREE,
1120 /* The root has a log tree. Used for subvolume roots and the tree root. */
1121 BTRFS_ROOT_HAS_LOG_TREE,
1122 /* Qgroup flushing is in progress */
1123 BTRFS_ROOT_QGROUP_FLUSHING,
1124 /* This root has a drop operation that was started previously. */
1125 BTRFS_ROOT_UNFINISHED_DROP,
1126 /* This reloc root needs to have its buffers lockdep class reset. */
1127 BTRFS_ROOT_RESET_LOCKDEP_CLASS,
1128 };
1129
btrfs_wake_unfinished_drop(struct btrfs_fs_info * fs_info)1130 static inline void btrfs_wake_unfinished_drop(struct btrfs_fs_info *fs_info)
1131 {
1132 clear_and_wake_up_bit(BTRFS_FS_UNFINISHED_DROPS, &fs_info->flags);
1133 }
1134
1135 /*
1136 * Record swapped tree blocks of a subvolume tree for delayed subtree trace
1137 * code. For detail check comment in fs/btrfs/qgroup.c.
1138 */
1139 struct btrfs_qgroup_swapped_blocks {
1140 spinlock_t lock;
1141 /* RM_EMPTY_ROOT() of above blocks[] */
1142 bool swapped;
1143 struct rb_root blocks[BTRFS_MAX_LEVEL];
1144 };
1145
1146 /*
1147 * in ram representation of the tree. extent_root is used for all allocations
1148 * and for the extent tree extent_root root.
1149 */
1150 struct btrfs_root {
1151 struct extent_buffer *node;
1152
1153 struct extent_buffer *commit_root;
1154 struct btrfs_root *log_root;
1155 struct btrfs_root *reloc_root;
1156
1157 unsigned long state;
1158 struct btrfs_root_item root_item;
1159 struct btrfs_key root_key;
1160 struct btrfs_fs_info *fs_info;
1161 struct extent_io_tree dirty_log_pages;
1162
1163 struct mutex objectid_mutex;
1164
1165 spinlock_t accounting_lock;
1166 struct btrfs_block_rsv *block_rsv;
1167
1168 struct mutex log_mutex;
1169 wait_queue_head_t log_writer_wait;
1170 wait_queue_head_t log_commit_wait[2];
1171 struct list_head log_ctxs[2];
1172 /* Used only for log trees of subvolumes, not for the log root tree */
1173 atomic_t log_writers;
1174 atomic_t log_commit[2];
1175 /* Used only for log trees of subvolumes, not for the log root tree */
1176 atomic_t log_batch;
1177 int log_transid;
1178 /* No matter the commit succeeds or not*/
1179 int log_transid_committed;
1180 /* Just be updated when the commit succeeds. */
1181 int last_log_commit;
1182 pid_t log_start_pid;
1183
1184 u64 last_trans;
1185
1186 u32 type;
1187
1188 u64 free_objectid;
1189
1190 struct btrfs_key defrag_progress;
1191 struct btrfs_key defrag_max;
1192
1193 /* The dirty list is only used by non-shareable roots */
1194 struct list_head dirty_list;
1195
1196 struct list_head root_list;
1197
1198 spinlock_t log_extents_lock[2];
1199 struct list_head logged_list[2];
1200
1201 int orphan_cleanup_state;
1202
1203 spinlock_t inode_lock;
1204 /* red-black tree that keeps track of in-memory inodes */
1205 struct rb_root inode_tree;
1206
1207 /*
1208 * radix tree that keeps track of delayed nodes of every inode,
1209 * protected by inode_lock
1210 */
1211 struct radix_tree_root delayed_nodes_tree;
1212 /*
1213 * right now this just gets used so that a root has its own devid
1214 * for stat. It may be used for more later
1215 */
1216 dev_t anon_dev;
1217
1218 spinlock_t root_item_lock;
1219 refcount_t refs;
1220
1221 struct mutex delalloc_mutex;
1222 spinlock_t delalloc_lock;
1223 /*
1224 * all of the inodes that have delalloc bytes. It is possible for
1225 * this list to be empty even when there is still dirty data=ordered
1226 * extents waiting to finish IO.
1227 */
1228 struct list_head delalloc_inodes;
1229 struct list_head delalloc_root;
1230 u64 nr_delalloc_inodes;
1231
1232 struct mutex ordered_extent_mutex;
1233 /*
1234 * this is used by the balancing code to wait for all the pending
1235 * ordered extents
1236 */
1237 spinlock_t ordered_extent_lock;
1238
1239 /*
1240 * all of the data=ordered extents pending writeback
1241 * these can span multiple transactions and basically include
1242 * every dirty data page that isn't from nodatacow
1243 */
1244 struct list_head ordered_extents;
1245 struct list_head ordered_root;
1246 u64 nr_ordered_extents;
1247
1248 /*
1249 * Not empty if this subvolume root has gone through tree block swap
1250 * (relocation)
1251 *
1252 * Will be used by reloc_control::dirty_subvol_roots.
1253 */
1254 struct list_head reloc_dirty_list;
1255
1256 /*
1257 * Number of currently running SEND ioctls to prevent
1258 * manipulation with the read-only status via SUBVOL_SETFLAGS
1259 */
1260 int send_in_progress;
1261 /*
1262 * Number of currently running deduplication operations that have a
1263 * destination inode belonging to this root. Protected by the lock
1264 * root_item_lock.
1265 */
1266 int dedupe_in_progress;
1267 /* For exclusion of snapshot creation and nocow writes */
1268 struct btrfs_drew_lock snapshot_lock;
1269
1270 atomic_t snapshot_force_cow;
1271
1272 /* For qgroup metadata reserved space */
1273 spinlock_t qgroup_meta_rsv_lock;
1274 u64 qgroup_meta_rsv_pertrans;
1275 u64 qgroup_meta_rsv_prealloc;
1276 wait_queue_head_t qgroup_flush_wait;
1277
1278 /* Number of active swapfiles */
1279 atomic_t nr_swapfiles;
1280
1281 /* Record pairs of swapped blocks for qgroup */
1282 struct btrfs_qgroup_swapped_blocks swapped_blocks;
1283
1284 /* Used only by log trees, when logging csum items */
1285 struct extent_io_tree log_csum_range;
1286
1287 #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
1288 u64 alloc_bytenr;
1289 #endif
1290
1291 #ifdef CONFIG_BTRFS_DEBUG
1292 struct list_head leak_list;
1293 #endif
1294 };
1295
1296 /*
1297 * Structure that conveys information about an extent that is going to replace
1298 * all the extents in a file range.
1299 */
1300 struct btrfs_replace_extent_info {
1301 u64 disk_offset;
1302 u64 disk_len;
1303 u64 data_offset;
1304 u64 data_len;
1305 u64 file_offset;
1306 /* Pointer to a file extent item of type regular or prealloc. */
1307 char *extent_buf;
1308 /*
1309 * Set to true when attempting to replace a file range with a new extent
1310 * described by this structure, set to false when attempting to clone an
1311 * existing extent into a file range.
1312 */
1313 bool is_new_extent;
1314 /* Meaningful only if is_new_extent is true. */
1315 int qgroup_reserved;
1316 /*
1317 * Meaningful only if is_new_extent is true.
1318 * Used to track how many extent items we have already inserted in a
1319 * subvolume tree that refer to the extent described by this structure,
1320 * so that we know when to create a new delayed ref or update an existing
1321 * one.
1322 */
1323 int insertions;
1324 };
1325
1326 /* Arguments for btrfs_drop_extents() */
1327 struct btrfs_drop_extents_args {
1328 /* Input parameters */
1329
1330 /*
1331 * If NULL, btrfs_drop_extents() will allocate and free its own path.
1332 * If 'replace_extent' is true, this must not be NULL. Also the path
1333 * is always released except if 'replace_extent' is true and
1334 * btrfs_drop_extents() sets 'extent_inserted' to true, in which case
1335 * the path is kept locked.
1336 */
1337 struct btrfs_path *path;
1338 /* Start offset of the range to drop extents from */
1339 u64 start;
1340 /* End (exclusive, last byte + 1) of the range to drop extents from */
1341 u64 end;
1342 /* If true drop all the extent maps in the range */
1343 bool drop_cache;
1344 /*
1345 * If true it means we want to insert a new extent after dropping all
1346 * the extents in the range. If this is true, the 'extent_item_size'
1347 * parameter must be set as well and the 'extent_inserted' field will
1348 * be set to true by btrfs_drop_extents() if it could insert the new
1349 * extent.
1350 * Note: when this is set to true the path must not be NULL.
1351 */
1352 bool replace_extent;
1353 /*
1354 * Used if 'replace_extent' is true. Size of the file extent item to
1355 * insert after dropping all existing extents in the range
1356 */
1357 u32 extent_item_size;
1358
1359 /* Output parameters */
1360
1361 /*
1362 * Set to the minimum between the input parameter 'end' and the end
1363 * (exclusive, last byte + 1) of the last dropped extent. This is always
1364 * set even if btrfs_drop_extents() returns an error.
1365 */
1366 u64 drop_end;
1367 /*
1368 * The number of allocated bytes found in the range. This can be smaller
1369 * than the range's length when there are holes in the range.
1370 */
1371 u64 bytes_found;
1372 /*
1373 * Only set if 'replace_extent' is true. Set to true if we were able
1374 * to insert a replacement extent after dropping all extents in the
1375 * range, otherwise set to false by btrfs_drop_extents().
1376 * Also, if btrfs_drop_extents() has set this to true it means it
1377 * returned with the path locked, otherwise if it has set this to
1378 * false it has returned with the path released.
1379 */
1380 bool extent_inserted;
1381 };
1382
1383 struct btrfs_file_private {
1384 void *filldir_buf;
1385 u64 last_index;
1386 };
1387
1388
BTRFS_LEAF_DATA_SIZE(const struct btrfs_fs_info * info)1389 static inline u32 BTRFS_LEAF_DATA_SIZE(const struct btrfs_fs_info *info)
1390 {
1391
1392 return info->nodesize - sizeof(struct btrfs_header);
1393 }
1394
1395 #define BTRFS_LEAF_DATA_OFFSET offsetof(struct btrfs_leaf, items)
1396
BTRFS_MAX_ITEM_SIZE(const struct btrfs_fs_info * info)1397 static inline u32 BTRFS_MAX_ITEM_SIZE(const struct btrfs_fs_info *info)
1398 {
1399 return BTRFS_LEAF_DATA_SIZE(info) - sizeof(struct btrfs_item);
1400 }
1401
BTRFS_NODEPTRS_PER_BLOCK(const struct btrfs_fs_info * info)1402 static inline u32 BTRFS_NODEPTRS_PER_BLOCK(const struct btrfs_fs_info *info)
1403 {
1404 return BTRFS_LEAF_DATA_SIZE(info) / sizeof(struct btrfs_key_ptr);
1405 }
1406
1407 #define BTRFS_FILE_EXTENT_INLINE_DATA_START \
1408 (offsetof(struct btrfs_file_extent_item, disk_bytenr))
BTRFS_MAX_INLINE_DATA_SIZE(const struct btrfs_fs_info * info)1409 static inline u32 BTRFS_MAX_INLINE_DATA_SIZE(const struct btrfs_fs_info *info)
1410 {
1411 return BTRFS_MAX_ITEM_SIZE(info) -
1412 BTRFS_FILE_EXTENT_INLINE_DATA_START;
1413 }
1414
BTRFS_MAX_XATTR_SIZE(const struct btrfs_fs_info * info)1415 static inline u32 BTRFS_MAX_XATTR_SIZE(const struct btrfs_fs_info *info)
1416 {
1417 return BTRFS_MAX_ITEM_SIZE(info) - sizeof(struct btrfs_dir_item);
1418 }
1419
1420 /*
1421 * Flags for mount options.
1422 *
1423 * Note: don't forget to add new options to btrfs_show_options()
1424 */
1425 enum {
1426 BTRFS_MOUNT_NODATASUM = (1UL << 0),
1427 BTRFS_MOUNT_NODATACOW = (1UL << 1),
1428 BTRFS_MOUNT_NOBARRIER = (1UL << 2),
1429 BTRFS_MOUNT_SSD = (1UL << 3),
1430 BTRFS_MOUNT_DEGRADED = (1UL << 4),
1431 BTRFS_MOUNT_COMPRESS = (1UL << 5),
1432 BTRFS_MOUNT_NOTREELOG = (1UL << 6),
1433 BTRFS_MOUNT_FLUSHONCOMMIT = (1UL << 7),
1434 BTRFS_MOUNT_SSD_SPREAD = (1UL << 8),
1435 BTRFS_MOUNT_NOSSD = (1UL << 9),
1436 BTRFS_MOUNT_DISCARD_SYNC = (1UL << 10),
1437 BTRFS_MOUNT_FORCE_COMPRESS = (1UL << 11),
1438 BTRFS_MOUNT_SPACE_CACHE = (1UL << 12),
1439 BTRFS_MOUNT_CLEAR_CACHE = (1UL << 13),
1440 BTRFS_MOUNT_USER_SUBVOL_RM_ALLOWED = (1UL << 14),
1441 BTRFS_MOUNT_ENOSPC_DEBUG = (1UL << 15),
1442 BTRFS_MOUNT_AUTO_DEFRAG = (1UL << 16),
1443 BTRFS_MOUNT_USEBACKUPROOT = (1UL << 17),
1444 BTRFS_MOUNT_SKIP_BALANCE = (1UL << 18),
1445 BTRFS_MOUNT_CHECK_INTEGRITY = (1UL << 19),
1446 BTRFS_MOUNT_CHECK_INTEGRITY_DATA = (1UL << 20),
1447 BTRFS_MOUNT_PANIC_ON_FATAL_ERROR = (1UL << 21),
1448 BTRFS_MOUNT_RESCAN_UUID_TREE = (1UL << 22),
1449 BTRFS_MOUNT_FRAGMENT_DATA = (1UL << 23),
1450 BTRFS_MOUNT_FRAGMENT_METADATA = (1UL << 24),
1451 BTRFS_MOUNT_FREE_SPACE_TREE = (1UL << 25),
1452 BTRFS_MOUNT_NOLOGREPLAY = (1UL << 26),
1453 BTRFS_MOUNT_REF_VERIFY = (1UL << 27),
1454 BTRFS_MOUNT_DISCARD_ASYNC = (1UL << 28),
1455 BTRFS_MOUNT_IGNOREBADROOTS = (1UL << 29),
1456 BTRFS_MOUNT_IGNOREDATACSUMS = (1UL << 30),
1457 };
1458
1459 #define BTRFS_DEFAULT_COMMIT_INTERVAL (30)
1460 #define BTRFS_DEFAULT_MAX_INLINE (2048)
1461
1462 #define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt)
1463 #define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt)
1464 #define btrfs_raw_test_opt(o, opt) ((o) & BTRFS_MOUNT_##opt)
1465 #define btrfs_test_opt(fs_info, opt) ((fs_info)->mount_opt & \
1466 BTRFS_MOUNT_##opt)
1467
1468 #define btrfs_set_and_info(fs_info, opt, fmt, args...) \
1469 do { \
1470 if (!btrfs_test_opt(fs_info, opt)) \
1471 btrfs_info(fs_info, fmt, ##args); \
1472 btrfs_set_opt(fs_info->mount_opt, opt); \
1473 } while (0)
1474
1475 #define btrfs_clear_and_info(fs_info, opt, fmt, args...) \
1476 do { \
1477 if (btrfs_test_opt(fs_info, opt)) \
1478 btrfs_info(fs_info, fmt, ##args); \
1479 btrfs_clear_opt(fs_info->mount_opt, opt); \
1480 } while (0)
1481
1482 /*
1483 * Requests for changes that need to be done during transaction commit.
1484 *
1485 * Internal mount options that are used for special handling of the real
1486 * mount options (eg. cannot be set during remount and have to be set during
1487 * transaction commit)
1488 */
1489
1490 #define BTRFS_PENDING_COMMIT (0)
1491
1492 #define btrfs_test_pending(info, opt) \
1493 test_bit(BTRFS_PENDING_##opt, &(info)->pending_changes)
1494 #define btrfs_set_pending(info, opt) \
1495 set_bit(BTRFS_PENDING_##opt, &(info)->pending_changes)
1496 #define btrfs_clear_pending(info, opt) \
1497 clear_bit(BTRFS_PENDING_##opt, &(info)->pending_changes)
1498
1499 /*
1500 * Helpers for setting pending mount option changes.
1501 *
1502 * Expects corresponding macros
1503 * BTRFS_PENDING_SET_ and CLEAR_ + short mount option name
1504 */
1505 #define btrfs_set_pending_and_info(info, opt, fmt, args...) \
1506 do { \
1507 if (!btrfs_raw_test_opt((info)->mount_opt, opt)) { \
1508 btrfs_info((info), fmt, ##args); \
1509 btrfs_set_pending((info), SET_##opt); \
1510 btrfs_clear_pending((info), CLEAR_##opt); \
1511 } \
1512 } while(0)
1513
1514 #define btrfs_clear_pending_and_info(info, opt, fmt, args...) \
1515 do { \
1516 if (btrfs_raw_test_opt((info)->mount_opt, opt)) { \
1517 btrfs_info((info), fmt, ##args); \
1518 btrfs_set_pending((info), CLEAR_##opt); \
1519 btrfs_clear_pending((info), SET_##opt); \
1520 } \
1521 } while(0)
1522
1523 /*
1524 * Inode flags
1525 */
1526 #define BTRFS_INODE_NODATASUM (1U << 0)
1527 #define BTRFS_INODE_NODATACOW (1U << 1)
1528 #define BTRFS_INODE_READONLY (1U << 2)
1529 #define BTRFS_INODE_NOCOMPRESS (1U << 3)
1530 #define BTRFS_INODE_PREALLOC (1U << 4)
1531 #define BTRFS_INODE_SYNC (1U << 5)
1532 #define BTRFS_INODE_IMMUTABLE (1U << 6)
1533 #define BTRFS_INODE_APPEND (1U << 7)
1534 #define BTRFS_INODE_NODUMP (1U << 8)
1535 #define BTRFS_INODE_NOATIME (1U << 9)
1536 #define BTRFS_INODE_DIRSYNC (1U << 10)
1537 #define BTRFS_INODE_COMPRESS (1U << 11)
1538
1539 #define BTRFS_INODE_ROOT_ITEM_INIT (1U << 31)
1540
1541 #define BTRFS_INODE_FLAG_MASK \
1542 (BTRFS_INODE_NODATASUM | \
1543 BTRFS_INODE_NODATACOW | \
1544 BTRFS_INODE_READONLY | \
1545 BTRFS_INODE_NOCOMPRESS | \
1546 BTRFS_INODE_PREALLOC | \
1547 BTRFS_INODE_SYNC | \
1548 BTRFS_INODE_IMMUTABLE | \
1549 BTRFS_INODE_APPEND | \
1550 BTRFS_INODE_NODUMP | \
1551 BTRFS_INODE_NOATIME | \
1552 BTRFS_INODE_DIRSYNC | \
1553 BTRFS_INODE_COMPRESS | \
1554 BTRFS_INODE_ROOT_ITEM_INIT)
1555
1556 #define BTRFS_INODE_RO_VERITY (1U << 0)
1557
1558 #define BTRFS_INODE_RO_FLAG_MASK (BTRFS_INODE_RO_VERITY)
1559
1560 struct btrfs_map_token {
1561 struct extent_buffer *eb;
1562 char *kaddr;
1563 unsigned long offset;
1564 };
1565
1566 #define BTRFS_BYTES_TO_BLKS(fs_info, bytes) \
1567 ((bytes) >> (fs_info)->sectorsize_bits)
1568
btrfs_init_map_token(struct btrfs_map_token * token,struct extent_buffer * eb)1569 static inline void btrfs_init_map_token(struct btrfs_map_token *token,
1570 struct extent_buffer *eb)
1571 {
1572 token->eb = eb;
1573 token->kaddr = page_address(eb->pages[0]);
1574 token->offset = 0;
1575 }
1576
1577 /* some macros to generate set/get functions for the struct fields. This
1578 * assumes there is a lefoo_to_cpu for every type, so lets make a simple
1579 * one for u8:
1580 */
1581 #define le8_to_cpu(v) (v)
1582 #define cpu_to_le8(v) (v)
1583 #define __le8 u8
1584
get_unaligned_le8(const void * p)1585 static inline u8 get_unaligned_le8(const void *p)
1586 {
1587 return *(u8 *)p;
1588 }
1589
put_unaligned_le8(u8 val,void * p)1590 static inline void put_unaligned_le8(u8 val, void *p)
1591 {
1592 *(u8 *)p = val;
1593 }
1594
1595 #define read_eb_member(eb, ptr, type, member, result) (\
1596 read_extent_buffer(eb, (char *)(result), \
1597 ((unsigned long)(ptr)) + \
1598 offsetof(type, member), \
1599 sizeof(((type *)0)->member)))
1600
1601 #define write_eb_member(eb, ptr, type, member, result) (\
1602 write_extent_buffer(eb, (char *)(result), \
1603 ((unsigned long)(ptr)) + \
1604 offsetof(type, member), \
1605 sizeof(((type *)0)->member)))
1606
1607 #define DECLARE_BTRFS_SETGET_BITS(bits) \
1608 u##bits btrfs_get_token_##bits(struct btrfs_map_token *token, \
1609 const void *ptr, unsigned long off); \
1610 void btrfs_set_token_##bits(struct btrfs_map_token *token, \
1611 const void *ptr, unsigned long off, \
1612 u##bits val); \
1613 u##bits btrfs_get_##bits(const struct extent_buffer *eb, \
1614 const void *ptr, unsigned long off); \
1615 void btrfs_set_##bits(const struct extent_buffer *eb, void *ptr, \
1616 unsigned long off, u##bits val);
1617
1618 DECLARE_BTRFS_SETGET_BITS(8)
1619 DECLARE_BTRFS_SETGET_BITS(16)
1620 DECLARE_BTRFS_SETGET_BITS(32)
1621 DECLARE_BTRFS_SETGET_BITS(64)
1622
1623 #define BTRFS_SETGET_FUNCS(name, type, member, bits) \
1624 static inline u##bits btrfs_##name(const struct extent_buffer *eb, \
1625 const type *s) \
1626 { \
1627 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1628 return btrfs_get_##bits(eb, s, offsetof(type, member)); \
1629 } \
1630 static inline void btrfs_set_##name(const struct extent_buffer *eb, type *s, \
1631 u##bits val) \
1632 { \
1633 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1634 btrfs_set_##bits(eb, s, offsetof(type, member), val); \
1635 } \
1636 static inline u##bits btrfs_token_##name(struct btrfs_map_token *token, \
1637 const type *s) \
1638 { \
1639 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1640 return btrfs_get_token_##bits(token, s, offsetof(type, member));\
1641 } \
1642 static inline void btrfs_set_token_##name(struct btrfs_map_token *token,\
1643 type *s, u##bits val) \
1644 { \
1645 BUILD_BUG_ON(sizeof(u##bits) != sizeof(((type *)0))->member); \
1646 btrfs_set_token_##bits(token, s, offsetof(type, member), val); \
1647 }
1648
1649 #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
1650 static inline u##bits btrfs_##name(const struct extent_buffer *eb) \
1651 { \
1652 const type *p = page_address(eb->pages[0]) + \
1653 offset_in_page(eb->start); \
1654 return get_unaligned_le##bits(&p->member); \
1655 } \
1656 static inline void btrfs_set_##name(const struct extent_buffer *eb, \
1657 u##bits val) \
1658 { \
1659 type *p = page_address(eb->pages[0]) + offset_in_page(eb->start); \
1660 put_unaligned_le##bits(val, &p->member); \
1661 }
1662
1663 #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
1664 static inline u##bits btrfs_##name(const type *s) \
1665 { \
1666 return get_unaligned_le##bits(&s->member); \
1667 } \
1668 static inline void btrfs_set_##name(type *s, u##bits val) \
1669 { \
1670 put_unaligned_le##bits(val, &s->member); \
1671 }
1672
btrfs_device_total_bytes(const struct extent_buffer * eb,struct btrfs_dev_item * s)1673 static inline u64 btrfs_device_total_bytes(const struct extent_buffer *eb,
1674 struct btrfs_dev_item *s)
1675 {
1676 BUILD_BUG_ON(sizeof(u64) !=
1677 sizeof(((struct btrfs_dev_item *)0))->total_bytes);
1678 return btrfs_get_64(eb, s, offsetof(struct btrfs_dev_item,
1679 total_bytes));
1680 }
btrfs_set_device_total_bytes(const struct extent_buffer * eb,struct btrfs_dev_item * s,u64 val)1681 static inline void btrfs_set_device_total_bytes(const struct extent_buffer *eb,
1682 struct btrfs_dev_item *s,
1683 u64 val)
1684 {
1685 BUILD_BUG_ON(sizeof(u64) !=
1686 sizeof(((struct btrfs_dev_item *)0))->total_bytes);
1687 WARN_ON(!IS_ALIGNED(val, eb->fs_info->sectorsize));
1688 btrfs_set_64(eb, s, offsetof(struct btrfs_dev_item, total_bytes), val);
1689 }
1690
1691
1692 BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
1693 BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
1694 BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
1695 BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
1696 BTRFS_SETGET_FUNCS(device_start_offset, struct btrfs_dev_item,
1697 start_offset, 64);
1698 BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
1699 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
1700 BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
1701 BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
1702 BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
1703 BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
1704
1705 BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
1706 BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
1707 total_bytes, 64);
1708 BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
1709 bytes_used, 64);
1710 BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
1711 io_align, 32);
1712 BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
1713 io_width, 32);
1714 BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
1715 sector_size, 32);
1716 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
1717 BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
1718 dev_group, 32);
1719 BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
1720 seek_speed, 8);
1721 BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
1722 bandwidth, 8);
1723 BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
1724 generation, 64);
1725
btrfs_device_uuid(struct btrfs_dev_item * d)1726 static inline unsigned long btrfs_device_uuid(struct btrfs_dev_item *d)
1727 {
1728 return (unsigned long)d + offsetof(struct btrfs_dev_item, uuid);
1729 }
1730
btrfs_device_fsid(struct btrfs_dev_item * d)1731 static inline unsigned long btrfs_device_fsid(struct btrfs_dev_item *d)
1732 {
1733 return (unsigned long)d + offsetof(struct btrfs_dev_item, fsid);
1734 }
1735
1736 BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
1737 BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
1738 BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
1739 BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
1740 BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
1741 BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
1742 BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
1743 BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
1744 BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
1745 BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
1746 BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
1747
btrfs_stripe_dev_uuid(struct btrfs_stripe * s)1748 static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
1749 {
1750 return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
1751 }
1752
1753 BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
1754 BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
1755 BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
1756 stripe_len, 64);
1757 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
1758 io_align, 32);
1759 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
1760 io_width, 32);
1761 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
1762 sector_size, 32);
1763 BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
1764 BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
1765 num_stripes, 16);
1766 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
1767 sub_stripes, 16);
1768 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
1769 BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
1770
btrfs_stripe_nr(struct btrfs_chunk * c,int nr)1771 static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
1772 int nr)
1773 {
1774 unsigned long offset = (unsigned long)c;
1775 offset += offsetof(struct btrfs_chunk, stripe);
1776 offset += nr * sizeof(struct btrfs_stripe);
1777 return (struct btrfs_stripe *)offset;
1778 }
1779
btrfs_stripe_dev_uuid_nr(struct btrfs_chunk * c,int nr)1780 static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
1781 {
1782 return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
1783 }
1784
btrfs_stripe_offset_nr(const struct extent_buffer * eb,struct btrfs_chunk * c,int nr)1785 static inline u64 btrfs_stripe_offset_nr(const struct extent_buffer *eb,
1786 struct btrfs_chunk *c, int nr)
1787 {
1788 return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
1789 }
1790
btrfs_stripe_devid_nr(const struct extent_buffer * eb,struct btrfs_chunk * c,int nr)1791 static inline u64 btrfs_stripe_devid_nr(const struct extent_buffer *eb,
1792 struct btrfs_chunk *c, int nr)
1793 {
1794 return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
1795 }
1796
1797 /* struct btrfs_block_group_item */
1798 BTRFS_SETGET_STACK_FUNCS(stack_block_group_used, struct btrfs_block_group_item,
1799 used, 64);
1800 BTRFS_SETGET_FUNCS(block_group_used, struct btrfs_block_group_item,
1801 used, 64);
1802 BTRFS_SETGET_STACK_FUNCS(stack_block_group_chunk_objectid,
1803 struct btrfs_block_group_item, chunk_objectid, 64);
1804
1805 BTRFS_SETGET_FUNCS(block_group_chunk_objectid,
1806 struct btrfs_block_group_item, chunk_objectid, 64);
1807 BTRFS_SETGET_FUNCS(block_group_flags,
1808 struct btrfs_block_group_item, flags, 64);
1809 BTRFS_SETGET_STACK_FUNCS(stack_block_group_flags,
1810 struct btrfs_block_group_item, flags, 64);
1811
1812 /* struct btrfs_free_space_info */
1813 BTRFS_SETGET_FUNCS(free_space_extent_count, struct btrfs_free_space_info,
1814 extent_count, 32);
1815 BTRFS_SETGET_FUNCS(free_space_flags, struct btrfs_free_space_info, flags, 32);
1816
1817 /* struct btrfs_inode_ref */
1818 BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
1819 BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
1820
1821 /* struct btrfs_inode_extref */
1822 BTRFS_SETGET_FUNCS(inode_extref_parent, struct btrfs_inode_extref,
1823 parent_objectid, 64);
1824 BTRFS_SETGET_FUNCS(inode_extref_name_len, struct btrfs_inode_extref,
1825 name_len, 16);
1826 BTRFS_SETGET_FUNCS(inode_extref_index, struct btrfs_inode_extref, index, 64);
1827
1828 /* struct btrfs_inode_item */
1829 BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
1830 BTRFS_SETGET_FUNCS(inode_sequence, struct btrfs_inode_item, sequence, 64);
1831 BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
1832 BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
1833 BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
1834 BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
1835 BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
1836 BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
1837 BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
1838 BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
1839 BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
1840 BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
1841 BTRFS_SETGET_STACK_FUNCS(stack_inode_generation, struct btrfs_inode_item,
1842 generation, 64);
1843 BTRFS_SETGET_STACK_FUNCS(stack_inode_sequence, struct btrfs_inode_item,
1844 sequence, 64);
1845 BTRFS_SETGET_STACK_FUNCS(stack_inode_transid, struct btrfs_inode_item,
1846 transid, 64);
1847 BTRFS_SETGET_STACK_FUNCS(stack_inode_size, struct btrfs_inode_item, size, 64);
1848 BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes, struct btrfs_inode_item,
1849 nbytes, 64);
1850 BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group, struct btrfs_inode_item,
1851 block_group, 64);
1852 BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink, struct btrfs_inode_item, nlink, 32);
1853 BTRFS_SETGET_STACK_FUNCS(stack_inode_uid, struct btrfs_inode_item, uid, 32);
1854 BTRFS_SETGET_STACK_FUNCS(stack_inode_gid, struct btrfs_inode_item, gid, 32);
1855 BTRFS_SETGET_STACK_FUNCS(stack_inode_mode, struct btrfs_inode_item, mode, 32);
1856 BTRFS_SETGET_STACK_FUNCS(stack_inode_rdev, struct btrfs_inode_item, rdev, 64);
1857 BTRFS_SETGET_STACK_FUNCS(stack_inode_flags, struct btrfs_inode_item, flags, 64);
1858 BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
1859 BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
1860 BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec, sec, 64);
1861 BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec, nsec, 32);
1862
1863 /* struct btrfs_dev_extent */
1864 BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
1865 chunk_tree, 64);
1866 BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
1867 chunk_objectid, 64);
1868 BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
1869 chunk_offset, 64);
1870 BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
1871 BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 64);
1872 BTRFS_SETGET_FUNCS(extent_generation, struct btrfs_extent_item,
1873 generation, 64);
1874 BTRFS_SETGET_FUNCS(extent_flags, struct btrfs_extent_item, flags, 64);
1875
1876 BTRFS_SETGET_FUNCS(tree_block_level, struct btrfs_tree_block_info, level, 8);
1877
btrfs_tree_block_key(const struct extent_buffer * eb,struct btrfs_tree_block_info * item,struct btrfs_disk_key * key)1878 static inline void btrfs_tree_block_key(const struct extent_buffer *eb,
1879 struct btrfs_tree_block_info *item,
1880 struct btrfs_disk_key *key)
1881 {
1882 read_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1883 }
1884
btrfs_set_tree_block_key(const struct extent_buffer * eb,struct btrfs_tree_block_info * item,struct btrfs_disk_key * key)1885 static inline void btrfs_set_tree_block_key(const struct extent_buffer *eb,
1886 struct btrfs_tree_block_info *item,
1887 struct btrfs_disk_key *key)
1888 {
1889 write_eb_member(eb, item, struct btrfs_tree_block_info, key, key);
1890 }
1891
1892 BTRFS_SETGET_FUNCS(extent_data_ref_root, struct btrfs_extent_data_ref,
1893 root, 64);
1894 BTRFS_SETGET_FUNCS(extent_data_ref_objectid, struct btrfs_extent_data_ref,
1895 objectid, 64);
1896 BTRFS_SETGET_FUNCS(extent_data_ref_offset, struct btrfs_extent_data_ref,
1897 offset, 64);
1898 BTRFS_SETGET_FUNCS(extent_data_ref_count, struct btrfs_extent_data_ref,
1899 count, 32);
1900
1901 BTRFS_SETGET_FUNCS(shared_data_ref_count, struct btrfs_shared_data_ref,
1902 count, 32);
1903
1904 BTRFS_SETGET_FUNCS(extent_inline_ref_type, struct btrfs_extent_inline_ref,
1905 type, 8);
1906 BTRFS_SETGET_FUNCS(extent_inline_ref_offset, struct btrfs_extent_inline_ref,
1907 offset, 64);
1908
btrfs_extent_inline_ref_size(int type)1909 static inline u32 btrfs_extent_inline_ref_size(int type)
1910 {
1911 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1912 type == BTRFS_SHARED_BLOCK_REF_KEY)
1913 return sizeof(struct btrfs_extent_inline_ref);
1914 if (type == BTRFS_SHARED_DATA_REF_KEY)
1915 return sizeof(struct btrfs_shared_data_ref) +
1916 sizeof(struct btrfs_extent_inline_ref);
1917 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1918 return sizeof(struct btrfs_extent_data_ref) +
1919 offsetof(struct btrfs_extent_inline_ref, offset);
1920 return 0;
1921 }
1922
1923 /* struct btrfs_node */
1924 BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
1925 BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
1926 BTRFS_SETGET_STACK_FUNCS(stack_key_blockptr, struct btrfs_key_ptr,
1927 blockptr, 64);
1928 BTRFS_SETGET_STACK_FUNCS(stack_key_generation, struct btrfs_key_ptr,
1929 generation, 64);
1930
btrfs_node_blockptr(const struct extent_buffer * eb,int nr)1931 static inline u64 btrfs_node_blockptr(const struct extent_buffer *eb, int nr)
1932 {
1933 unsigned long ptr;
1934 ptr = offsetof(struct btrfs_node, ptrs) +
1935 sizeof(struct btrfs_key_ptr) * nr;
1936 return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
1937 }
1938
btrfs_set_node_blockptr(const struct extent_buffer * eb,int nr,u64 val)1939 static inline void btrfs_set_node_blockptr(const struct extent_buffer *eb,
1940 int nr, u64 val)
1941 {
1942 unsigned long ptr;
1943 ptr = offsetof(struct btrfs_node, ptrs) +
1944 sizeof(struct btrfs_key_ptr) * nr;
1945 btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
1946 }
1947
btrfs_node_ptr_generation(const struct extent_buffer * eb,int nr)1948 static inline u64 btrfs_node_ptr_generation(const struct extent_buffer *eb, int nr)
1949 {
1950 unsigned long ptr;
1951 ptr = offsetof(struct btrfs_node, ptrs) +
1952 sizeof(struct btrfs_key_ptr) * nr;
1953 return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
1954 }
1955
btrfs_set_node_ptr_generation(const struct extent_buffer * eb,int nr,u64 val)1956 static inline void btrfs_set_node_ptr_generation(const struct extent_buffer *eb,
1957 int nr, u64 val)
1958 {
1959 unsigned long ptr;
1960 ptr = offsetof(struct btrfs_node, ptrs) +
1961 sizeof(struct btrfs_key_ptr) * nr;
1962 btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
1963 }
1964
btrfs_node_key_ptr_offset(int nr)1965 static inline unsigned long btrfs_node_key_ptr_offset(int nr)
1966 {
1967 return offsetof(struct btrfs_node, ptrs) +
1968 sizeof(struct btrfs_key_ptr) * nr;
1969 }
1970
1971 void btrfs_node_key(const struct extent_buffer *eb,
1972 struct btrfs_disk_key *disk_key, int nr);
1973
btrfs_set_node_key(const struct extent_buffer * eb,struct btrfs_disk_key * disk_key,int nr)1974 static inline void btrfs_set_node_key(const struct extent_buffer *eb,
1975 struct btrfs_disk_key *disk_key, int nr)
1976 {
1977 unsigned long ptr;
1978 ptr = btrfs_node_key_ptr_offset(nr);
1979 write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1980 struct btrfs_key_ptr, key, disk_key);
1981 }
1982
1983 /* struct btrfs_item */
1984 BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
1985 BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
1986 BTRFS_SETGET_STACK_FUNCS(stack_item_offset, struct btrfs_item, offset, 32);
1987 BTRFS_SETGET_STACK_FUNCS(stack_item_size, struct btrfs_item, size, 32);
1988
btrfs_item_nr_offset(int nr)1989 static inline unsigned long btrfs_item_nr_offset(int nr)
1990 {
1991 return offsetof(struct btrfs_leaf, items) +
1992 sizeof(struct btrfs_item) * nr;
1993 }
1994
btrfs_item_nr(int nr)1995 static inline struct btrfs_item *btrfs_item_nr(int nr)
1996 {
1997 return (struct btrfs_item *)btrfs_item_nr_offset(nr);
1998 }
1999
btrfs_item_end(const struct extent_buffer * eb,struct btrfs_item * item)2000 static inline u32 btrfs_item_end(const struct extent_buffer *eb,
2001 struct btrfs_item *item)
2002 {
2003 return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
2004 }
2005
btrfs_item_end_nr(const struct extent_buffer * eb,int nr)2006 static inline u32 btrfs_item_end_nr(const struct extent_buffer *eb, int nr)
2007 {
2008 return btrfs_item_end(eb, btrfs_item_nr(nr));
2009 }
2010
btrfs_item_offset_nr(const struct extent_buffer * eb,int nr)2011 static inline u32 btrfs_item_offset_nr(const struct extent_buffer *eb, int nr)
2012 {
2013 return btrfs_item_offset(eb, btrfs_item_nr(nr));
2014 }
2015
btrfs_item_size_nr(const struct extent_buffer * eb,int nr)2016 static inline u32 btrfs_item_size_nr(const struct extent_buffer *eb, int nr)
2017 {
2018 return btrfs_item_size(eb, btrfs_item_nr(nr));
2019 }
2020
btrfs_item_key(const struct extent_buffer * eb,struct btrfs_disk_key * disk_key,int nr)2021 static inline void btrfs_item_key(const struct extent_buffer *eb,
2022 struct btrfs_disk_key *disk_key, int nr)
2023 {
2024 struct btrfs_item *item = btrfs_item_nr(nr);
2025 read_eb_member(eb, item, struct btrfs_item, key, disk_key);
2026 }
2027
btrfs_set_item_key(struct extent_buffer * eb,struct btrfs_disk_key * disk_key,int nr)2028 static inline void btrfs_set_item_key(struct extent_buffer *eb,
2029 struct btrfs_disk_key *disk_key, int nr)
2030 {
2031 struct btrfs_item *item = btrfs_item_nr(nr);
2032 write_eb_member(eb, item, struct btrfs_item, key, disk_key);
2033 }
2034
2035 BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
2036
2037 /*
2038 * struct btrfs_root_ref
2039 */
2040 BTRFS_SETGET_FUNCS(root_ref_dirid, struct btrfs_root_ref, dirid, 64);
2041 BTRFS_SETGET_FUNCS(root_ref_sequence, struct btrfs_root_ref, sequence, 64);
2042 BTRFS_SETGET_FUNCS(root_ref_name_len, struct btrfs_root_ref, name_len, 16);
2043
2044 /* struct btrfs_dir_item */
2045 BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
2046 BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
2047 BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
2048 BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
2049 BTRFS_SETGET_STACK_FUNCS(stack_dir_type, struct btrfs_dir_item, type, 8);
2050 BTRFS_SETGET_STACK_FUNCS(stack_dir_data_len, struct btrfs_dir_item,
2051 data_len, 16);
2052 BTRFS_SETGET_STACK_FUNCS(stack_dir_name_len, struct btrfs_dir_item,
2053 name_len, 16);
2054 BTRFS_SETGET_STACK_FUNCS(stack_dir_transid, struct btrfs_dir_item,
2055 transid, 64);
2056
btrfs_dir_item_key(const struct extent_buffer * eb,const struct btrfs_dir_item * item,struct btrfs_disk_key * key)2057 static inline void btrfs_dir_item_key(const struct extent_buffer *eb,
2058 const struct btrfs_dir_item *item,
2059 struct btrfs_disk_key *key)
2060 {
2061 read_eb_member(eb, item, struct btrfs_dir_item, location, key);
2062 }
2063
btrfs_set_dir_item_key(struct extent_buffer * eb,struct btrfs_dir_item * item,const struct btrfs_disk_key * key)2064 static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
2065 struct btrfs_dir_item *item,
2066 const struct btrfs_disk_key *key)
2067 {
2068 write_eb_member(eb, item, struct btrfs_dir_item, location, key);
2069 }
2070
2071 BTRFS_SETGET_FUNCS(free_space_entries, struct btrfs_free_space_header,
2072 num_entries, 64);
2073 BTRFS_SETGET_FUNCS(free_space_bitmaps, struct btrfs_free_space_header,
2074 num_bitmaps, 64);
2075 BTRFS_SETGET_FUNCS(free_space_generation, struct btrfs_free_space_header,
2076 generation, 64);
2077
btrfs_free_space_key(const struct extent_buffer * eb,const struct btrfs_free_space_header * h,struct btrfs_disk_key * key)2078 static inline void btrfs_free_space_key(const struct extent_buffer *eb,
2079 const struct btrfs_free_space_header *h,
2080 struct btrfs_disk_key *key)
2081 {
2082 read_eb_member(eb, h, struct btrfs_free_space_header, location, key);
2083 }
2084
btrfs_set_free_space_key(struct extent_buffer * eb,struct btrfs_free_space_header * h,const struct btrfs_disk_key * key)2085 static inline void btrfs_set_free_space_key(struct extent_buffer *eb,
2086 struct btrfs_free_space_header *h,
2087 const struct btrfs_disk_key *key)
2088 {
2089 write_eb_member(eb, h, struct btrfs_free_space_header, location, key);
2090 }
2091
2092 /* struct btrfs_disk_key */
2093 BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
2094 objectid, 64);
2095 BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
2096 BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
2097
2098 #ifdef __LITTLE_ENDIAN
2099
2100 /*
2101 * Optimized helpers for little-endian architectures where CPU and on-disk
2102 * structures have the same endianness and we can skip conversions.
2103 */
2104
btrfs_disk_key_to_cpu(struct btrfs_key * cpu_key,const struct btrfs_disk_key * disk_key)2105 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu_key,
2106 const struct btrfs_disk_key *disk_key)
2107 {
2108 memcpy(cpu_key, disk_key, sizeof(struct btrfs_key));
2109 }
2110
btrfs_cpu_key_to_disk(struct btrfs_disk_key * disk_key,const struct btrfs_key * cpu_key)2111 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk_key,
2112 const struct btrfs_key *cpu_key)
2113 {
2114 memcpy(disk_key, cpu_key, sizeof(struct btrfs_key));
2115 }
2116
btrfs_node_key_to_cpu(const struct extent_buffer * eb,struct btrfs_key * cpu_key,int nr)2117 static inline void btrfs_node_key_to_cpu(const struct extent_buffer *eb,
2118 struct btrfs_key *cpu_key, int nr)
2119 {
2120 struct btrfs_disk_key *disk_key = (struct btrfs_disk_key *)cpu_key;
2121
2122 btrfs_node_key(eb, disk_key, nr);
2123 }
2124
btrfs_item_key_to_cpu(const struct extent_buffer * eb,struct btrfs_key * cpu_key,int nr)2125 static inline void btrfs_item_key_to_cpu(const struct extent_buffer *eb,
2126 struct btrfs_key *cpu_key, int nr)
2127 {
2128 struct btrfs_disk_key *disk_key = (struct btrfs_disk_key *)cpu_key;
2129
2130 btrfs_item_key(eb, disk_key, nr);
2131 }
2132
btrfs_dir_item_key_to_cpu(const struct extent_buffer * eb,const struct btrfs_dir_item * item,struct btrfs_key * cpu_key)2133 static inline void btrfs_dir_item_key_to_cpu(const struct extent_buffer *eb,
2134 const struct btrfs_dir_item *item,
2135 struct btrfs_key *cpu_key)
2136 {
2137 struct btrfs_disk_key *disk_key = (struct btrfs_disk_key *)cpu_key;
2138
2139 btrfs_dir_item_key(eb, item, disk_key);
2140 }
2141
2142 #else
2143
btrfs_disk_key_to_cpu(struct btrfs_key * cpu,const struct btrfs_disk_key * disk)2144 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
2145 const struct btrfs_disk_key *disk)
2146 {
2147 cpu->offset = le64_to_cpu(disk->offset);
2148 cpu->type = disk->type;
2149 cpu->objectid = le64_to_cpu(disk->objectid);
2150 }
2151
btrfs_cpu_key_to_disk(struct btrfs_disk_key * disk,const struct btrfs_key * cpu)2152 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
2153 const struct btrfs_key *cpu)
2154 {
2155 disk->offset = cpu_to_le64(cpu->offset);
2156 disk->type = cpu->type;
2157 disk->objectid = cpu_to_le64(cpu->objectid);
2158 }
2159
btrfs_node_key_to_cpu(const struct extent_buffer * eb,struct btrfs_key * key,int nr)2160 static inline void btrfs_node_key_to_cpu(const struct extent_buffer *eb,
2161 struct btrfs_key *key, int nr)
2162 {
2163 struct btrfs_disk_key disk_key;
2164 btrfs_node_key(eb, &disk_key, nr);
2165 btrfs_disk_key_to_cpu(key, &disk_key);
2166 }
2167
btrfs_item_key_to_cpu(const struct extent_buffer * eb,struct btrfs_key * key,int nr)2168 static inline void btrfs_item_key_to_cpu(const struct extent_buffer *eb,
2169 struct btrfs_key *key, int nr)
2170 {
2171 struct btrfs_disk_key disk_key;
2172 btrfs_item_key(eb, &disk_key, nr);
2173 btrfs_disk_key_to_cpu(key, &disk_key);
2174 }
2175
btrfs_dir_item_key_to_cpu(const struct extent_buffer * eb,const struct btrfs_dir_item * item,struct btrfs_key * key)2176 static inline void btrfs_dir_item_key_to_cpu(const struct extent_buffer *eb,
2177 const struct btrfs_dir_item *item,
2178 struct btrfs_key *key)
2179 {
2180 struct btrfs_disk_key disk_key;
2181 btrfs_dir_item_key(eb, item, &disk_key);
2182 btrfs_disk_key_to_cpu(key, &disk_key);
2183 }
2184
2185 #endif
2186
2187 /* struct btrfs_header */
2188 BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
2189 BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
2190 generation, 64);
2191 BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
2192 BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
2193 BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
2194 BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
2195 BTRFS_SETGET_STACK_FUNCS(stack_header_generation, struct btrfs_header,
2196 generation, 64);
2197 BTRFS_SETGET_STACK_FUNCS(stack_header_owner, struct btrfs_header, owner, 64);
2198 BTRFS_SETGET_STACK_FUNCS(stack_header_nritems, struct btrfs_header,
2199 nritems, 32);
2200 BTRFS_SETGET_STACK_FUNCS(stack_header_bytenr, struct btrfs_header, bytenr, 64);
2201
btrfs_header_flag(const struct extent_buffer * eb,u64 flag)2202 static inline int btrfs_header_flag(const struct extent_buffer *eb, u64 flag)
2203 {
2204 return (btrfs_header_flags(eb) & flag) == flag;
2205 }
2206
btrfs_set_header_flag(struct extent_buffer * eb,u64 flag)2207 static inline void btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
2208 {
2209 u64 flags = btrfs_header_flags(eb);
2210 btrfs_set_header_flags(eb, flags | flag);
2211 }
2212
btrfs_clear_header_flag(struct extent_buffer * eb,u64 flag)2213 static inline void btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
2214 {
2215 u64 flags = btrfs_header_flags(eb);
2216 btrfs_set_header_flags(eb, flags & ~flag);
2217 }
2218
btrfs_header_backref_rev(const struct extent_buffer * eb)2219 static inline int btrfs_header_backref_rev(const struct extent_buffer *eb)
2220 {
2221 u64 flags = btrfs_header_flags(eb);
2222 return flags >> BTRFS_BACKREF_REV_SHIFT;
2223 }
2224
btrfs_set_header_backref_rev(struct extent_buffer * eb,int rev)2225 static inline void btrfs_set_header_backref_rev(struct extent_buffer *eb,
2226 int rev)
2227 {
2228 u64 flags = btrfs_header_flags(eb);
2229 flags &= ~BTRFS_BACKREF_REV_MASK;
2230 flags |= (u64)rev << BTRFS_BACKREF_REV_SHIFT;
2231 btrfs_set_header_flags(eb, flags);
2232 }
2233
btrfs_is_leaf(const struct extent_buffer * eb)2234 static inline int btrfs_is_leaf(const struct extent_buffer *eb)
2235 {
2236 return btrfs_header_level(eb) == 0;
2237 }
2238
2239 /* struct btrfs_root_item */
2240 BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
2241 generation, 64);
2242 BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
2243 BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
2244 BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
2245
2246 BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
2247 generation, 64);
2248 BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
2249 BTRFS_SETGET_STACK_FUNCS(root_drop_level, struct btrfs_root_item, drop_level, 8);
2250 BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
2251 BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
2252 BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
2253 BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 64);
2254 BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
2255 BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
2256 BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
2257 last_snapshot, 64);
2258 BTRFS_SETGET_STACK_FUNCS(root_generation_v2, struct btrfs_root_item,
2259 generation_v2, 64);
2260 BTRFS_SETGET_STACK_FUNCS(root_ctransid, struct btrfs_root_item,
2261 ctransid, 64);
2262 BTRFS_SETGET_STACK_FUNCS(root_otransid, struct btrfs_root_item,
2263 otransid, 64);
2264 BTRFS_SETGET_STACK_FUNCS(root_stransid, struct btrfs_root_item,
2265 stransid, 64);
2266 BTRFS_SETGET_STACK_FUNCS(root_rtransid, struct btrfs_root_item,
2267 rtransid, 64);
2268
btrfs_root_readonly(const struct btrfs_root * root)2269 static inline bool btrfs_root_readonly(const struct btrfs_root *root)
2270 {
2271 /* Byte-swap the constant at compile time, root_item::flags is LE */
2272 return (root->root_item.flags & cpu_to_le64(BTRFS_ROOT_SUBVOL_RDONLY)) != 0;
2273 }
2274
btrfs_root_dead(const struct btrfs_root * root)2275 static inline bool btrfs_root_dead(const struct btrfs_root *root)
2276 {
2277 /* Byte-swap the constant at compile time, root_item::flags is LE */
2278 return (root->root_item.flags & cpu_to_le64(BTRFS_ROOT_SUBVOL_DEAD)) != 0;
2279 }
2280
btrfs_root_id(const struct btrfs_root * root)2281 static inline u64 btrfs_root_id(const struct btrfs_root *root)
2282 {
2283 return root->root_key.objectid;
2284 }
2285
2286 /* struct btrfs_root_backup */
2287 BTRFS_SETGET_STACK_FUNCS(backup_tree_root, struct btrfs_root_backup,
2288 tree_root, 64);
2289 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_gen, struct btrfs_root_backup,
2290 tree_root_gen, 64);
2291 BTRFS_SETGET_STACK_FUNCS(backup_tree_root_level, struct btrfs_root_backup,
2292 tree_root_level, 8);
2293
2294 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root, struct btrfs_root_backup,
2295 chunk_root, 64);
2296 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_gen, struct btrfs_root_backup,
2297 chunk_root_gen, 64);
2298 BTRFS_SETGET_STACK_FUNCS(backup_chunk_root_level, struct btrfs_root_backup,
2299 chunk_root_level, 8);
2300
2301 BTRFS_SETGET_STACK_FUNCS(backup_extent_root, struct btrfs_root_backup,
2302 extent_root, 64);
2303 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_gen, struct btrfs_root_backup,
2304 extent_root_gen, 64);
2305 BTRFS_SETGET_STACK_FUNCS(backup_extent_root_level, struct btrfs_root_backup,
2306 extent_root_level, 8);
2307
2308 BTRFS_SETGET_STACK_FUNCS(backup_fs_root, struct btrfs_root_backup,
2309 fs_root, 64);
2310 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_gen, struct btrfs_root_backup,
2311 fs_root_gen, 64);
2312 BTRFS_SETGET_STACK_FUNCS(backup_fs_root_level, struct btrfs_root_backup,
2313 fs_root_level, 8);
2314
2315 BTRFS_SETGET_STACK_FUNCS(backup_dev_root, struct btrfs_root_backup,
2316 dev_root, 64);
2317 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_gen, struct btrfs_root_backup,
2318 dev_root_gen, 64);
2319 BTRFS_SETGET_STACK_FUNCS(backup_dev_root_level, struct btrfs_root_backup,
2320 dev_root_level, 8);
2321
2322 BTRFS_SETGET_STACK_FUNCS(backup_csum_root, struct btrfs_root_backup,
2323 csum_root, 64);
2324 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_gen, struct btrfs_root_backup,
2325 csum_root_gen, 64);
2326 BTRFS_SETGET_STACK_FUNCS(backup_csum_root_level, struct btrfs_root_backup,
2327 csum_root_level, 8);
2328 BTRFS_SETGET_STACK_FUNCS(backup_total_bytes, struct btrfs_root_backup,
2329 total_bytes, 64);
2330 BTRFS_SETGET_STACK_FUNCS(backup_bytes_used, struct btrfs_root_backup,
2331 bytes_used, 64);
2332 BTRFS_SETGET_STACK_FUNCS(backup_num_devices, struct btrfs_root_backup,
2333 num_devices, 64);
2334
2335 /* struct btrfs_balance_item */
2336 BTRFS_SETGET_FUNCS(balance_flags, struct btrfs_balance_item, flags, 64);
2337
btrfs_balance_data(const struct extent_buffer * eb,const struct btrfs_balance_item * bi,struct btrfs_disk_balance_args * ba)2338 static inline void btrfs_balance_data(const struct extent_buffer *eb,
2339 const struct btrfs_balance_item *bi,
2340 struct btrfs_disk_balance_args *ba)
2341 {
2342 read_eb_member(eb, bi, struct btrfs_balance_item, data, ba);
2343 }
2344
btrfs_set_balance_data(struct extent_buffer * eb,struct btrfs_balance_item * bi,const struct btrfs_disk_balance_args * ba)2345 static inline void btrfs_set_balance_data(struct extent_buffer *eb,
2346 struct btrfs_balance_item *bi,
2347 const struct btrfs_disk_balance_args *ba)
2348 {
2349 write_eb_member(eb, bi, struct btrfs_balance_item, data, ba);
2350 }
2351
btrfs_balance_meta(const struct extent_buffer * eb,const struct btrfs_balance_item * bi,struct btrfs_disk_balance_args * ba)2352 static inline void btrfs_balance_meta(const struct extent_buffer *eb,
2353 const struct btrfs_balance_item *bi,
2354 struct btrfs_disk_balance_args *ba)
2355 {
2356 read_eb_member(eb, bi, struct btrfs_balance_item, meta, ba);
2357 }
2358
btrfs_set_balance_meta(struct extent_buffer * eb,struct btrfs_balance_item * bi,const struct btrfs_disk_balance_args * ba)2359 static inline void btrfs_set_balance_meta(struct extent_buffer *eb,
2360 struct btrfs_balance_item *bi,
2361 const struct btrfs_disk_balance_args *ba)
2362 {
2363 write_eb_member(eb, bi, struct btrfs_balance_item, meta, ba);
2364 }
2365
btrfs_balance_sys(const struct extent_buffer * eb,const struct btrfs_balance_item * bi,struct btrfs_disk_balance_args * ba)2366 static inline void btrfs_balance_sys(const struct extent_buffer *eb,
2367 const struct btrfs_balance_item *bi,
2368 struct btrfs_disk_balance_args *ba)
2369 {
2370 read_eb_member(eb, bi, struct btrfs_balance_item, sys, ba);
2371 }
2372
btrfs_set_balance_sys(struct extent_buffer * eb,struct btrfs_balance_item * bi,const struct btrfs_disk_balance_args * ba)2373 static inline void btrfs_set_balance_sys(struct extent_buffer *eb,
2374 struct btrfs_balance_item *bi,
2375 const struct btrfs_disk_balance_args *ba)
2376 {
2377 write_eb_member(eb, bi, struct btrfs_balance_item, sys, ba);
2378 }
2379
2380 static inline void
btrfs_disk_balance_args_to_cpu(struct btrfs_balance_args * cpu,const struct btrfs_disk_balance_args * disk)2381 btrfs_disk_balance_args_to_cpu(struct btrfs_balance_args *cpu,
2382 const struct btrfs_disk_balance_args *disk)
2383 {
2384 memset(cpu, 0, sizeof(*cpu));
2385
2386 cpu->profiles = le64_to_cpu(disk->profiles);
2387 cpu->usage = le64_to_cpu(disk->usage);
2388 cpu->devid = le64_to_cpu(disk->devid);
2389 cpu->pstart = le64_to_cpu(disk->pstart);
2390 cpu->pend = le64_to_cpu(disk->pend);
2391 cpu->vstart = le64_to_cpu(disk->vstart);
2392 cpu->vend = le64_to_cpu(disk->vend);
2393 cpu->target = le64_to_cpu(disk->target);
2394 cpu->flags = le64_to_cpu(disk->flags);
2395 cpu->limit = le64_to_cpu(disk->limit);
2396 cpu->stripes_min = le32_to_cpu(disk->stripes_min);
2397 cpu->stripes_max = le32_to_cpu(disk->stripes_max);
2398 }
2399
2400 static inline void
btrfs_cpu_balance_args_to_disk(struct btrfs_disk_balance_args * disk,const struct btrfs_balance_args * cpu)2401 btrfs_cpu_balance_args_to_disk(struct btrfs_disk_balance_args *disk,
2402 const struct btrfs_balance_args *cpu)
2403 {
2404 memset(disk, 0, sizeof(*disk));
2405
2406 disk->profiles = cpu_to_le64(cpu->profiles);
2407 disk->usage = cpu_to_le64(cpu->usage);
2408 disk->devid = cpu_to_le64(cpu->devid);
2409 disk->pstart = cpu_to_le64(cpu->pstart);
2410 disk->pend = cpu_to_le64(cpu->pend);
2411 disk->vstart = cpu_to_le64(cpu->vstart);
2412 disk->vend = cpu_to_le64(cpu->vend);
2413 disk->target = cpu_to_le64(cpu->target);
2414 disk->flags = cpu_to_le64(cpu->flags);
2415 disk->limit = cpu_to_le64(cpu->limit);
2416 disk->stripes_min = cpu_to_le32(cpu->stripes_min);
2417 disk->stripes_max = cpu_to_le32(cpu->stripes_max);
2418 }
2419
2420 /* struct btrfs_super_block */
2421 BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
2422 BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
2423 BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
2424 generation, 64);
2425 BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
2426 BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
2427 struct btrfs_super_block, sys_chunk_array_size, 32);
2428 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
2429 struct btrfs_super_block, chunk_root_generation, 64);
2430 BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
2431 root_level, 8);
2432 BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
2433 chunk_root, 64);
2434 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
2435 chunk_root_level, 8);
2436 BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
2437 log_root, 64);
2438 BTRFS_SETGET_STACK_FUNCS(super_log_root_transid, struct btrfs_super_block,
2439 log_root_transid, 64);
2440 BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
2441 log_root_level, 8);
2442 BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
2443 total_bytes, 64);
2444 BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
2445 bytes_used, 64);
2446 BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
2447 sectorsize, 32);
2448 BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
2449 nodesize, 32);
2450 BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
2451 stripesize, 32);
2452 BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
2453 root_dir_objectid, 64);
2454 BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
2455 num_devices, 64);
2456 BTRFS_SETGET_STACK_FUNCS(super_compat_flags, struct btrfs_super_block,
2457 compat_flags, 64);
2458 BTRFS_SETGET_STACK_FUNCS(super_compat_ro_flags, struct btrfs_super_block,
2459 compat_ro_flags, 64);
2460 BTRFS_SETGET_STACK_FUNCS(super_incompat_flags, struct btrfs_super_block,
2461 incompat_flags, 64);
2462 BTRFS_SETGET_STACK_FUNCS(super_csum_type, struct btrfs_super_block,
2463 csum_type, 16);
2464 BTRFS_SETGET_STACK_FUNCS(super_cache_generation, struct btrfs_super_block,
2465 cache_generation, 64);
2466 BTRFS_SETGET_STACK_FUNCS(super_magic, struct btrfs_super_block, magic, 64);
2467 BTRFS_SETGET_STACK_FUNCS(super_uuid_tree_generation, struct btrfs_super_block,
2468 uuid_tree_generation, 64);
2469
2470 int btrfs_super_csum_size(const struct btrfs_super_block *s);
2471 const char *btrfs_super_csum_name(u16 csum_type);
2472 const char *btrfs_super_csum_driver(u16 csum_type);
2473 size_t __attribute_const__ btrfs_get_num_csums(void);
2474
2475
2476 /*
2477 * The leaf data grows from end-to-front in the node.
2478 * this returns the address of the start of the last item,
2479 * which is the stop of the leaf data stack
2480 */
leaf_data_end(const struct extent_buffer * leaf)2481 static inline unsigned int leaf_data_end(const struct extent_buffer *leaf)
2482 {
2483 u32 nr = btrfs_header_nritems(leaf);
2484
2485 if (nr == 0)
2486 return BTRFS_LEAF_DATA_SIZE(leaf->fs_info);
2487 return btrfs_item_offset_nr(leaf, nr - 1);
2488 }
2489
2490 /* struct btrfs_file_extent_item */
2491 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_type, struct btrfs_file_extent_item,
2492 type, 8);
2493 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_disk_bytenr,
2494 struct btrfs_file_extent_item, disk_bytenr, 64);
2495 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_offset,
2496 struct btrfs_file_extent_item, offset, 64);
2497 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_generation,
2498 struct btrfs_file_extent_item, generation, 64);
2499 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_num_bytes,
2500 struct btrfs_file_extent_item, num_bytes, 64);
2501 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_ram_bytes,
2502 struct btrfs_file_extent_item, ram_bytes, 64);
2503 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_disk_num_bytes,
2504 struct btrfs_file_extent_item, disk_num_bytes, 64);
2505 BTRFS_SETGET_STACK_FUNCS(stack_file_extent_compression,
2506 struct btrfs_file_extent_item, compression, 8);
2507
2508 static inline unsigned long
btrfs_file_extent_inline_start(const struct btrfs_file_extent_item * e)2509 btrfs_file_extent_inline_start(const struct btrfs_file_extent_item *e)
2510 {
2511 return (unsigned long)e + BTRFS_FILE_EXTENT_INLINE_DATA_START;
2512 }
2513
btrfs_file_extent_calc_inline_size(u32 datasize)2514 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
2515 {
2516 return BTRFS_FILE_EXTENT_INLINE_DATA_START + datasize;
2517 }
2518
2519 BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
2520 BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
2521 disk_bytenr, 64);
2522 BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
2523 generation, 64);
2524 BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
2525 disk_num_bytes, 64);
2526 BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
2527 offset, 64);
2528 BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
2529 num_bytes, 64);
2530 BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
2531 ram_bytes, 64);
2532 BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
2533 compression, 8);
2534 BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
2535 encryption, 8);
2536 BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
2537 other_encoding, 16);
2538
2539 /*
2540 * this returns the number of bytes used by the item on disk, minus the
2541 * size of any extent headers. If a file is compressed on disk, this is
2542 * the compressed size
2543 */
btrfs_file_extent_inline_item_len(const struct extent_buffer * eb,struct btrfs_item * e)2544 static inline u32 btrfs_file_extent_inline_item_len(
2545 const struct extent_buffer *eb,
2546 struct btrfs_item *e)
2547 {
2548 return btrfs_item_size(eb, e) - BTRFS_FILE_EXTENT_INLINE_DATA_START;
2549 }
2550
2551 /* btrfs_qgroup_status_item */
2552 BTRFS_SETGET_FUNCS(qgroup_status_generation, struct btrfs_qgroup_status_item,
2553 generation, 64);
2554 BTRFS_SETGET_FUNCS(qgroup_status_version, struct btrfs_qgroup_status_item,
2555 version, 64);
2556 BTRFS_SETGET_FUNCS(qgroup_status_flags, struct btrfs_qgroup_status_item,
2557 flags, 64);
2558 BTRFS_SETGET_FUNCS(qgroup_status_rescan, struct btrfs_qgroup_status_item,
2559 rescan, 64);
2560
2561 /* btrfs_qgroup_info_item */
2562 BTRFS_SETGET_FUNCS(qgroup_info_generation, struct btrfs_qgroup_info_item,
2563 generation, 64);
2564 BTRFS_SETGET_FUNCS(qgroup_info_rfer, struct btrfs_qgroup_info_item, rfer, 64);
2565 BTRFS_SETGET_FUNCS(qgroup_info_rfer_cmpr, struct btrfs_qgroup_info_item,
2566 rfer_cmpr, 64);
2567 BTRFS_SETGET_FUNCS(qgroup_info_excl, struct btrfs_qgroup_info_item, excl, 64);
2568 BTRFS_SETGET_FUNCS(qgroup_info_excl_cmpr, struct btrfs_qgroup_info_item,
2569 excl_cmpr, 64);
2570
2571 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_generation,
2572 struct btrfs_qgroup_info_item, generation, 64);
2573 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_rfer, struct btrfs_qgroup_info_item,
2574 rfer, 64);
2575 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_rfer_cmpr,
2576 struct btrfs_qgroup_info_item, rfer_cmpr, 64);
2577 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_excl, struct btrfs_qgroup_info_item,
2578 excl, 64);
2579 BTRFS_SETGET_STACK_FUNCS(stack_qgroup_info_excl_cmpr,
2580 struct btrfs_qgroup_info_item, excl_cmpr, 64);
2581
2582 /* btrfs_qgroup_limit_item */
2583 BTRFS_SETGET_FUNCS(qgroup_limit_flags, struct btrfs_qgroup_limit_item,
2584 flags, 64);
2585 BTRFS_SETGET_FUNCS(qgroup_limit_max_rfer, struct btrfs_qgroup_limit_item,
2586 max_rfer, 64);
2587 BTRFS_SETGET_FUNCS(qgroup_limit_max_excl, struct btrfs_qgroup_limit_item,
2588 max_excl, 64);
2589 BTRFS_SETGET_FUNCS(qgroup_limit_rsv_rfer, struct btrfs_qgroup_limit_item,
2590 rsv_rfer, 64);
2591 BTRFS_SETGET_FUNCS(qgroup_limit_rsv_excl, struct btrfs_qgroup_limit_item,
2592 rsv_excl, 64);
2593
2594 /* btrfs_dev_replace_item */
2595 BTRFS_SETGET_FUNCS(dev_replace_src_devid,
2596 struct btrfs_dev_replace_item, src_devid, 64);
2597 BTRFS_SETGET_FUNCS(dev_replace_cont_reading_from_srcdev_mode,
2598 struct btrfs_dev_replace_item, cont_reading_from_srcdev_mode,
2599 64);
2600 BTRFS_SETGET_FUNCS(dev_replace_replace_state, struct btrfs_dev_replace_item,
2601 replace_state, 64);
2602 BTRFS_SETGET_FUNCS(dev_replace_time_started, struct btrfs_dev_replace_item,
2603 time_started, 64);
2604 BTRFS_SETGET_FUNCS(dev_replace_time_stopped, struct btrfs_dev_replace_item,
2605 time_stopped, 64);
2606 BTRFS_SETGET_FUNCS(dev_replace_num_write_errors, struct btrfs_dev_replace_item,
2607 num_write_errors, 64);
2608 BTRFS_SETGET_FUNCS(dev_replace_num_uncorrectable_read_errors,
2609 struct btrfs_dev_replace_item, num_uncorrectable_read_errors,
2610 64);
2611 BTRFS_SETGET_FUNCS(dev_replace_cursor_left, struct btrfs_dev_replace_item,
2612 cursor_left, 64);
2613 BTRFS_SETGET_FUNCS(dev_replace_cursor_right, struct btrfs_dev_replace_item,
2614 cursor_right, 64);
2615
2616 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_src_devid,
2617 struct btrfs_dev_replace_item, src_devid, 64);
2618 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cont_reading_from_srcdev_mode,
2619 struct btrfs_dev_replace_item,
2620 cont_reading_from_srcdev_mode, 64);
2621 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_replace_state,
2622 struct btrfs_dev_replace_item, replace_state, 64);
2623 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_time_started,
2624 struct btrfs_dev_replace_item, time_started, 64);
2625 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_time_stopped,
2626 struct btrfs_dev_replace_item, time_stopped, 64);
2627 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_num_write_errors,
2628 struct btrfs_dev_replace_item, num_write_errors, 64);
2629 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_num_uncorrectable_read_errors,
2630 struct btrfs_dev_replace_item,
2631 num_uncorrectable_read_errors, 64);
2632 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cursor_left,
2633 struct btrfs_dev_replace_item, cursor_left, 64);
2634 BTRFS_SETGET_STACK_FUNCS(stack_dev_replace_cursor_right,
2635 struct btrfs_dev_replace_item, cursor_right, 64);
2636
2637 /* helper function to cast into the data area of the leaf. */
2638 #define btrfs_item_ptr(leaf, slot, type) \
2639 ((type *)(BTRFS_LEAF_DATA_OFFSET + \
2640 btrfs_item_offset_nr(leaf, slot)))
2641
2642 #define btrfs_item_ptr_offset(leaf, slot) \
2643 ((unsigned long)(BTRFS_LEAF_DATA_OFFSET + \
2644 btrfs_item_offset_nr(leaf, slot)))
2645
btrfs_crc32c(u32 crc,const void * address,unsigned length)2646 static inline u32 btrfs_crc32c(u32 crc, const void *address, unsigned length)
2647 {
2648 return crc32c(crc, address, length);
2649 }
2650
btrfs_crc32c_final(u32 crc,u8 * result)2651 static inline void btrfs_crc32c_final(u32 crc, u8 *result)
2652 {
2653 put_unaligned_le32(~crc, result);
2654 }
2655
btrfs_name_hash(const char * name,int len)2656 static inline u64 btrfs_name_hash(const char *name, int len)
2657 {
2658 return crc32c((u32)~1, name, len);
2659 }
2660
2661 /*
2662 * Figure the key offset of an extended inode ref
2663 */
btrfs_extref_hash(u64 parent_objectid,const char * name,int len)2664 static inline u64 btrfs_extref_hash(u64 parent_objectid, const char *name,
2665 int len)
2666 {
2667 return (u64) crc32c(parent_objectid, name, len);
2668 }
2669
btrfs_alloc_write_mask(struct address_space * mapping)2670 static inline gfp_t btrfs_alloc_write_mask(struct address_space *mapping)
2671 {
2672 return mapping_gfp_constraint(mapping, ~__GFP_FS);
2673 }
2674
2675 /* extent-tree.c */
2676
2677 enum btrfs_inline_ref_type {
2678 BTRFS_REF_TYPE_INVALID,
2679 BTRFS_REF_TYPE_BLOCK,
2680 BTRFS_REF_TYPE_DATA,
2681 BTRFS_REF_TYPE_ANY,
2682 };
2683
2684 int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
2685 struct btrfs_extent_inline_ref *iref,
2686 enum btrfs_inline_ref_type is_data);
2687 u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset);
2688
2689 /*
2690 * Take the number of bytes to be checksummmed and figure out how many leaves
2691 * it would require to store the csums for that many bytes.
2692 */
btrfs_csum_bytes_to_leaves(const struct btrfs_fs_info * fs_info,u64 csum_bytes)2693 static inline u64 btrfs_csum_bytes_to_leaves(
2694 const struct btrfs_fs_info *fs_info, u64 csum_bytes)
2695 {
2696 const u64 num_csums = csum_bytes >> fs_info->sectorsize_bits;
2697
2698 return DIV_ROUND_UP_ULL(num_csums, fs_info->csums_per_leaf);
2699 }
2700
2701 /*
2702 * Use this if we would be adding new items, as we could split nodes as we cow
2703 * down the tree.
2704 */
btrfs_calc_insert_metadata_size(struct btrfs_fs_info * fs_info,unsigned num_items)2705 static inline u64 btrfs_calc_insert_metadata_size(struct btrfs_fs_info *fs_info,
2706 unsigned num_items)
2707 {
2708 return (u64)fs_info->nodesize * BTRFS_MAX_LEVEL * 2 * num_items;
2709 }
2710
2711 /*
2712 * Doing a truncate or a modification won't result in new nodes or leaves, just
2713 * what we need for COW.
2714 */
btrfs_calc_metadata_size(struct btrfs_fs_info * fs_info,unsigned num_items)2715 static inline u64 btrfs_calc_metadata_size(struct btrfs_fs_info *fs_info,
2716 unsigned num_items)
2717 {
2718 return (u64)fs_info->nodesize * BTRFS_MAX_LEVEL * num_items;
2719 }
2720
2721 int btrfs_add_excluded_extent(struct btrfs_fs_info *fs_info,
2722 u64 start, u64 num_bytes);
2723 void btrfs_free_excluded_extents(struct btrfs_block_group *cache);
2724 int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2725 unsigned long count);
2726 void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
2727 struct btrfs_delayed_ref_root *delayed_refs,
2728 struct btrfs_delayed_ref_head *head);
2729 int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len);
2730 int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
2731 struct btrfs_fs_info *fs_info, u64 bytenr,
2732 u64 offset, int metadata, u64 *refs, u64 *flags);
2733 int btrfs_pin_extent(struct btrfs_trans_handle *trans, u64 bytenr, u64 num,
2734 int reserved);
2735 int btrfs_pin_extent_for_log_replay(struct btrfs_trans_handle *trans,
2736 u64 bytenr, u64 num_bytes);
2737 int btrfs_exclude_logged_extents(struct extent_buffer *eb);
2738 int btrfs_cross_ref_exist(struct btrfs_root *root,
2739 u64 objectid, u64 offset, u64 bytenr, bool strict);
2740 struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
2741 struct btrfs_root *root,
2742 u64 parent, u64 root_objectid,
2743 const struct btrfs_disk_key *key,
2744 int level, u64 hint,
2745 u64 empty_size,
2746 enum btrfs_lock_nesting nest);
2747 void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
2748 u64 root_id,
2749 struct extent_buffer *buf,
2750 u64 parent, int last_ref);
2751 int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
2752 struct btrfs_root *root, u64 owner,
2753 u64 offset, u64 ram_bytes,
2754 struct btrfs_key *ins);
2755 int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
2756 u64 root_objectid, u64 owner, u64 offset,
2757 struct btrfs_key *ins);
2758 int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes, u64 num_bytes,
2759 u64 min_alloc_size, u64 empty_size, u64 hint_byte,
2760 struct btrfs_key *ins, int is_data, int delalloc);
2761 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2762 struct extent_buffer *buf, int full_backref);
2763 int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2764 struct extent_buffer *buf, int full_backref);
2765 int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2766 struct extent_buffer *eb, u64 flags,
2767 int level, int is_data);
2768 int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_ref *ref);
2769
2770 int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
2771 u64 start, u64 len, int delalloc);
2772 int btrfs_pin_reserved_extent(struct btrfs_trans_handle *trans, u64 start,
2773 u64 len);
2774 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans);
2775 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2776 struct btrfs_ref *generic_ref);
2777
2778 void btrfs_clear_space_info_full(struct btrfs_fs_info *info);
2779
2780 /*
2781 * Different levels for to flush space when doing space reservations.
2782 *
2783 * The higher the level, the more methods we try to reclaim space.
2784 */
2785 enum btrfs_reserve_flush_enum {
2786 /* If we are in the transaction, we can't flush anything.*/
2787 BTRFS_RESERVE_NO_FLUSH,
2788
2789 /*
2790 * Flush space by:
2791 * - Running delayed inode items
2792 * - Allocating a new chunk
2793 */
2794 BTRFS_RESERVE_FLUSH_LIMIT,
2795
2796 /*
2797 * Flush space by:
2798 * - Running delayed inode items
2799 * - Running delayed refs
2800 * - Running delalloc and waiting for ordered extents
2801 * - Allocating a new chunk
2802 */
2803 BTRFS_RESERVE_FLUSH_EVICT,
2804
2805 /*
2806 * Flush space by above mentioned methods and by:
2807 * - Running delayed iputs
2808 * - Committing transaction
2809 *
2810 * Can be interrupted by a fatal signal.
2811 */
2812 BTRFS_RESERVE_FLUSH_DATA,
2813 BTRFS_RESERVE_FLUSH_FREE_SPACE_INODE,
2814 BTRFS_RESERVE_FLUSH_ALL,
2815
2816 /*
2817 * Pretty much the same as FLUSH_ALL, but can also steal space from
2818 * global rsv.
2819 *
2820 * Can be interrupted by a fatal signal.
2821 */
2822 BTRFS_RESERVE_FLUSH_ALL_STEAL,
2823 };
2824
2825 enum btrfs_flush_state {
2826 FLUSH_DELAYED_ITEMS_NR = 1,
2827 FLUSH_DELAYED_ITEMS = 2,
2828 FLUSH_DELAYED_REFS_NR = 3,
2829 FLUSH_DELAYED_REFS = 4,
2830 FLUSH_DELALLOC = 5,
2831 FLUSH_DELALLOC_WAIT = 6,
2832 FLUSH_DELALLOC_FULL = 7,
2833 ALLOC_CHUNK = 8,
2834 ALLOC_CHUNK_FORCE = 9,
2835 RUN_DELAYED_IPUTS = 10,
2836 COMMIT_TRANS = 11,
2837 };
2838
2839 int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
2840 struct btrfs_block_rsv *rsv,
2841 int nitems, bool use_global_rsv);
2842 void btrfs_subvolume_release_metadata(struct btrfs_root *root,
2843 struct btrfs_block_rsv *rsv);
2844 void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes);
2845
2846 int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes);
2847 u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo);
2848 int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
2849 u64 start, u64 end);
2850 int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
2851 u64 num_bytes, u64 *actual_bytes);
2852 int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range);
2853
2854 int btrfs_init_space_info(struct btrfs_fs_info *fs_info);
2855 int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
2856 struct btrfs_fs_info *fs_info);
2857 int btrfs_start_write_no_snapshotting(struct btrfs_root *root);
2858 void btrfs_end_write_no_snapshotting(struct btrfs_root *root);
2859 void btrfs_wait_for_snapshot_creation(struct btrfs_root *root);
2860
2861 /* ctree.c */
2862 int btrfs_bin_search(struct extent_buffer *eb, const struct btrfs_key *key,
2863 int *slot);
2864 int __pure btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2);
2865 int btrfs_previous_item(struct btrfs_root *root,
2866 struct btrfs_path *path, u64 min_objectid,
2867 int type);
2868 int btrfs_previous_extent_item(struct btrfs_root *root,
2869 struct btrfs_path *path, u64 min_objectid);
2870 void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info,
2871 struct btrfs_path *path,
2872 const struct btrfs_key *new_key);
2873 struct extent_buffer *btrfs_root_node(struct btrfs_root *root);
2874 int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
2875 struct btrfs_key *key, int lowest_level,
2876 u64 min_trans);
2877 int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
2878 struct btrfs_path *path,
2879 u64 min_trans);
2880 struct extent_buffer *btrfs_read_node_slot(struct extent_buffer *parent,
2881 int slot);
2882
2883 int btrfs_cow_block(struct btrfs_trans_handle *trans,
2884 struct btrfs_root *root, struct extent_buffer *buf,
2885 struct extent_buffer *parent, int parent_slot,
2886 struct extent_buffer **cow_ret,
2887 enum btrfs_lock_nesting nest);
2888 int btrfs_copy_root(struct btrfs_trans_handle *trans,
2889 struct btrfs_root *root,
2890 struct extent_buffer *buf,
2891 struct extent_buffer **cow_ret, u64 new_root_objectid);
2892 int btrfs_block_can_be_shared(struct btrfs_root *root,
2893 struct extent_buffer *buf);
2894 void btrfs_extend_item(struct btrfs_path *path, u32 data_size);
2895 void btrfs_truncate_item(struct btrfs_path *path, u32 new_size, int from_end);
2896 int btrfs_split_item(struct btrfs_trans_handle *trans,
2897 struct btrfs_root *root,
2898 struct btrfs_path *path,
2899 const struct btrfs_key *new_key,
2900 unsigned long split_offset);
2901 int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
2902 struct btrfs_root *root,
2903 struct btrfs_path *path,
2904 const struct btrfs_key *new_key);
2905 int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
2906 u64 inum, u64 ioff, u8 key_type, struct btrfs_key *found_key);
2907 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2908 const struct btrfs_key *key, struct btrfs_path *p,
2909 int ins_len, int cow);
2910 int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
2911 struct btrfs_path *p, u64 time_seq);
2912 int btrfs_search_slot_for_read(struct btrfs_root *root,
2913 const struct btrfs_key *key,
2914 struct btrfs_path *p, int find_higher,
2915 int return_any);
2916 int btrfs_realloc_node(struct btrfs_trans_handle *trans,
2917 struct btrfs_root *root, struct extent_buffer *parent,
2918 int start_slot, u64 *last_ret,
2919 struct btrfs_key *progress);
2920 void btrfs_release_path(struct btrfs_path *p);
2921 struct btrfs_path *btrfs_alloc_path(void);
2922 void btrfs_free_path(struct btrfs_path *p);
2923
2924 int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2925 struct btrfs_path *path, int slot, int nr);
btrfs_del_item(struct btrfs_trans_handle * trans,struct btrfs_root * root,struct btrfs_path * path)2926 static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
2927 struct btrfs_root *root,
2928 struct btrfs_path *path)
2929 {
2930 return btrfs_del_items(trans, root, path, path->slots[0], 1);
2931 }
2932
2933 void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
2934 const struct btrfs_key *cpu_key, u32 *data_size,
2935 int nr);
2936 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2937 const struct btrfs_key *key, void *data, u32 data_size);
2938 int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
2939 struct btrfs_root *root,
2940 struct btrfs_path *path,
2941 const struct btrfs_key *cpu_key, u32 *data_size,
2942 int nr);
2943
btrfs_insert_empty_item(struct btrfs_trans_handle * trans,struct btrfs_root * root,struct btrfs_path * path,const struct btrfs_key * key,u32 data_size)2944 static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
2945 struct btrfs_root *root,
2946 struct btrfs_path *path,
2947 const struct btrfs_key *key,
2948 u32 data_size)
2949 {
2950 return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
2951 }
2952
2953 int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
2954 int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
2955 u64 time_seq);
2956
2957 int btrfs_search_backwards(struct btrfs_root *root, struct btrfs_key *key,
2958 struct btrfs_path *path);
2959
btrfs_next_old_item(struct btrfs_root * root,struct btrfs_path * p,u64 time_seq)2960 static inline int btrfs_next_old_item(struct btrfs_root *root,
2961 struct btrfs_path *p, u64 time_seq)
2962 {
2963 ++p->slots[0];
2964 if (p->slots[0] >= btrfs_header_nritems(p->nodes[0]))
2965 return btrfs_next_old_leaf(root, p, time_seq);
2966 return 0;
2967 }
2968
2969 /*
2970 * Search the tree again to find a leaf with greater keys.
2971 *
2972 * Returns 0 if it found something or 1 if there are no greater leaves.
2973 * Returns < 0 on error.
2974 */
btrfs_next_leaf(struct btrfs_root * root,struct btrfs_path * path)2975 static inline int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
2976 {
2977 return btrfs_next_old_leaf(root, path, 0);
2978 }
2979
btrfs_next_item(struct btrfs_root * root,struct btrfs_path * p)2980 static inline int btrfs_next_item(struct btrfs_root *root, struct btrfs_path *p)
2981 {
2982 return btrfs_next_old_item(root, p, 0);
2983 }
2984 int btrfs_leaf_free_space(struct extent_buffer *leaf);
2985 int __must_check btrfs_drop_snapshot(struct btrfs_root *root, int update_ref,
2986 int for_reloc);
2987 int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
2988 struct btrfs_root *root,
2989 struct extent_buffer *node,
2990 struct extent_buffer *parent);
btrfs_fs_closing(struct btrfs_fs_info * fs_info)2991 static inline int btrfs_fs_closing(struct btrfs_fs_info *fs_info)
2992 {
2993 /*
2994 * Do it this way so we only ever do one test_bit in the normal case.
2995 */
2996 if (test_bit(BTRFS_FS_CLOSING_START, &fs_info->flags)) {
2997 if (test_bit(BTRFS_FS_CLOSING_DONE, &fs_info->flags))
2998 return 2;
2999 return 1;
3000 }
3001 return 0;
3002 }
3003
3004 /*
3005 * If we remount the fs to be R/O or umount the fs, the cleaner needn't do
3006 * anything except sleeping. This function is used to check the status of
3007 * the fs.
3008 * We check for BTRFS_FS_STATE_RO to avoid races with a concurrent remount,
3009 * since setting and checking for SB_RDONLY in the superblock's flags is not
3010 * atomic.
3011 */
btrfs_need_cleaner_sleep(struct btrfs_fs_info * fs_info)3012 static inline int btrfs_need_cleaner_sleep(struct btrfs_fs_info *fs_info)
3013 {
3014 return test_bit(BTRFS_FS_STATE_RO, &fs_info->fs_state) ||
3015 btrfs_fs_closing(fs_info);
3016 }
3017
btrfs_set_sb_rdonly(struct super_block * sb)3018 static inline void btrfs_set_sb_rdonly(struct super_block *sb)
3019 {
3020 sb->s_flags |= SB_RDONLY;
3021 set_bit(BTRFS_FS_STATE_RO, &btrfs_sb(sb)->fs_state);
3022 }
3023
btrfs_clear_sb_rdonly(struct super_block * sb)3024 static inline void btrfs_clear_sb_rdonly(struct super_block *sb)
3025 {
3026 sb->s_flags &= ~SB_RDONLY;
3027 clear_bit(BTRFS_FS_STATE_RO, &btrfs_sb(sb)->fs_state);
3028 }
3029
3030 /* root-item.c */
3031 int btrfs_add_root_ref(struct btrfs_trans_handle *trans, u64 root_id,
3032 u64 ref_id, u64 dirid, u64 sequence, const char *name,
3033 int name_len);
3034 int btrfs_del_root_ref(struct btrfs_trans_handle *trans, u64 root_id,
3035 u64 ref_id, u64 dirid, u64 *sequence, const char *name,
3036 int name_len);
3037 int btrfs_del_root(struct btrfs_trans_handle *trans,
3038 const struct btrfs_key *key);
3039 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3040 const struct btrfs_key *key,
3041 struct btrfs_root_item *item);
3042 int __must_check btrfs_update_root(struct btrfs_trans_handle *trans,
3043 struct btrfs_root *root,
3044 struct btrfs_key *key,
3045 struct btrfs_root_item *item);
3046 int btrfs_find_root(struct btrfs_root *root, const struct btrfs_key *search_key,
3047 struct btrfs_path *path, struct btrfs_root_item *root_item,
3048 struct btrfs_key *root_key);
3049 int btrfs_find_orphan_roots(struct btrfs_fs_info *fs_info);
3050 void btrfs_set_root_node(struct btrfs_root_item *item,
3051 struct extent_buffer *node);
3052 void btrfs_check_and_init_root_item(struct btrfs_root_item *item);
3053 void btrfs_update_root_times(struct btrfs_trans_handle *trans,
3054 struct btrfs_root *root);
3055
3056 /* uuid-tree.c */
3057 int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
3058 u64 subid);
3059 int btrfs_uuid_tree_remove(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
3060 u64 subid);
3061 int btrfs_uuid_tree_iterate(struct btrfs_fs_info *fs_info);
3062
3063 /* dir-item.c */
3064 int btrfs_check_dir_item_collision(struct btrfs_root *root, u64 dir,
3065 const char *name, int name_len);
3066 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, const char *name,
3067 int name_len, struct btrfs_inode *dir,
3068 struct btrfs_key *location, u8 type, u64 index);
3069 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
3070 struct btrfs_root *root,
3071 struct btrfs_path *path, u64 dir,
3072 const char *name, int name_len,
3073 int mod);
3074 struct btrfs_dir_item *
3075 btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
3076 struct btrfs_root *root,
3077 struct btrfs_path *path, u64 dir,
3078 u64 index, const char *name, int name_len,
3079 int mod);
3080 struct btrfs_dir_item *
3081 btrfs_search_dir_index_item(struct btrfs_root *root,
3082 struct btrfs_path *path, u64 dirid,
3083 const char *name, int name_len);
3084 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
3085 struct btrfs_root *root,
3086 struct btrfs_path *path,
3087 struct btrfs_dir_item *di);
3088 int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
3089 struct btrfs_root *root,
3090 struct btrfs_path *path, u64 objectid,
3091 const char *name, u16 name_len,
3092 const void *data, u16 data_len);
3093 struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
3094 struct btrfs_root *root,
3095 struct btrfs_path *path, u64 dir,
3096 const char *name, u16 name_len,
3097 int mod);
3098 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_fs_info *fs_info,
3099 struct btrfs_path *path,
3100 const char *name,
3101 int name_len);
3102
3103 /* orphan.c */
3104 int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
3105 struct btrfs_root *root, u64 offset);
3106 int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
3107 struct btrfs_root *root, u64 offset);
3108 int btrfs_find_orphan_item(struct btrfs_root *root, u64 offset);
3109
3110 /* inode-item.c */
3111 int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
3112 struct btrfs_root *root,
3113 const char *name, int name_len,
3114 u64 inode_objectid, u64 ref_objectid, u64 index);
3115 int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
3116 struct btrfs_root *root,
3117 const char *name, int name_len,
3118 u64 inode_objectid, u64 ref_objectid, u64 *index);
3119 int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
3120 struct btrfs_root *root,
3121 struct btrfs_path *path, u64 objectid);
3122 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
3123 *root, struct btrfs_path *path,
3124 struct btrfs_key *location, int mod);
3125
3126 struct btrfs_inode_extref *
3127 btrfs_lookup_inode_extref(struct btrfs_trans_handle *trans,
3128 struct btrfs_root *root,
3129 struct btrfs_path *path,
3130 const char *name, int name_len,
3131 u64 inode_objectid, u64 ref_objectid, int ins_len,
3132 int cow);
3133
3134 struct btrfs_inode_ref *btrfs_find_name_in_backref(struct extent_buffer *leaf,
3135 int slot, const char *name,
3136 int name_len);
3137 struct btrfs_inode_extref *btrfs_find_name_in_ext_backref(
3138 struct extent_buffer *leaf, int slot, u64 ref_objectid,
3139 const char *name, int name_len);
3140 /* file-item.c */
3141 struct btrfs_dio_private;
3142 int btrfs_del_csums(struct btrfs_trans_handle *trans,
3143 struct btrfs_root *root, u64 bytenr, u64 len);
3144 blk_status_t btrfs_lookup_bio_sums(struct inode *inode, struct bio *bio, u8 *dst);
3145 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
3146 struct btrfs_root *root,
3147 u64 objectid, u64 pos,
3148 u64 disk_offset, u64 disk_num_bytes,
3149 u64 num_bytes, u64 offset, u64 ram_bytes,
3150 u8 compression, u8 encryption, u16 other_encoding);
3151 int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
3152 struct btrfs_root *root,
3153 struct btrfs_path *path, u64 objectid,
3154 u64 bytenr, int mod);
3155 int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
3156 struct btrfs_root *root,
3157 struct btrfs_ordered_sum *sums);
3158 blk_status_t btrfs_csum_one_bio(struct btrfs_inode *inode, struct bio *bio,
3159 u64 file_start, int contig);
3160 int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
3161 struct list_head *list, int search_commit);
3162 void btrfs_extent_item_to_extent_map(struct btrfs_inode *inode,
3163 const struct btrfs_path *path,
3164 struct btrfs_file_extent_item *fi,
3165 const bool new_inline,
3166 struct extent_map *em);
3167 int btrfs_inode_clear_file_extent_range(struct btrfs_inode *inode, u64 start,
3168 u64 len);
3169 int btrfs_inode_set_file_extent_range(struct btrfs_inode *inode, u64 start,
3170 u64 len);
3171 void btrfs_inode_safe_disk_i_size_write(struct btrfs_inode *inode, u64 new_i_size);
3172 u64 btrfs_file_extent_end(const struct btrfs_path *path);
3173
3174 /* inode.c */
3175 blk_status_t btrfs_submit_data_bio(struct inode *inode, struct bio *bio,
3176 int mirror_num, unsigned long bio_flags);
3177 unsigned int btrfs_verify_data_csum(struct btrfs_io_bio *io_bio, u32 bio_offset,
3178 struct page *page, u64 start, u64 end);
3179 struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode,
3180 u64 start, u64 len);
3181 noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
3182 u64 *orig_start, u64 *orig_block_len,
3183 u64 *ram_bytes, bool strict);
3184
3185 void __btrfs_del_delalloc_inode(struct btrfs_root *root,
3186 struct btrfs_inode *inode);
3187 struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry);
3188 int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index);
3189 int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3190 struct btrfs_inode *dir, struct btrfs_inode *inode,
3191 const char *name, int name_len);
3192 int btrfs_add_link(struct btrfs_trans_handle *trans,
3193 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
3194 const char *name, int name_len, int add_backref, u64 index);
3195 int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry);
3196 int btrfs_truncate_block(struct btrfs_inode *inode, loff_t from, loff_t len,
3197 int front);
3198 int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3199 struct btrfs_root *root,
3200 struct btrfs_inode *inode, u64 new_size,
3201 u32 min_type, u64 *extents_found);
3202
3203 int btrfs_start_delalloc_snapshot(struct btrfs_root *root, bool in_reclaim_context);
3204 int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, long nr,
3205 bool in_reclaim_context);
3206 int btrfs_set_extent_delalloc(struct btrfs_inode *inode, u64 start, u64 end,
3207 unsigned int extra_bits,
3208 struct extent_state **cached_state);
3209 int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
3210 struct btrfs_root *new_root,
3211 struct btrfs_root *parent_root,
3212 struct user_namespace *mnt_userns);
3213 void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state,
3214 unsigned *bits);
3215 void btrfs_clear_delalloc_extent(struct inode *inode,
3216 struct extent_state *state, unsigned *bits);
3217 void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new,
3218 struct extent_state *other);
3219 void btrfs_split_delalloc_extent(struct inode *inode,
3220 struct extent_state *orig, u64 split);
3221 int btrfs_bio_fits_in_stripe(struct page *page, size_t size, struct bio *bio,
3222 unsigned long bio_flags);
3223 void btrfs_set_range_writeback(struct btrfs_inode *inode, u64 start, u64 end);
3224 vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf);
3225 int btrfs_readpage(struct file *file, struct page *page);
3226 void btrfs_evict_inode(struct inode *inode);
3227 int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc);
3228 struct inode *btrfs_alloc_inode(struct super_block *sb);
3229 void btrfs_destroy_inode(struct inode *inode);
3230 void btrfs_free_inode(struct inode *inode);
3231 int btrfs_drop_inode(struct inode *inode);
3232 int __init btrfs_init_cachep(void);
3233 void __cold btrfs_destroy_cachep(void);
3234 struct inode *btrfs_iget_path(struct super_block *s, u64 ino,
3235 struct btrfs_root *root, struct btrfs_path *path);
3236 struct inode *btrfs_iget(struct super_block *s, u64 ino, struct btrfs_root *root);
3237 struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
3238 struct page *page, size_t pg_offset,
3239 u64 start, u64 end);
3240 int btrfs_update_inode(struct btrfs_trans_handle *trans,
3241 struct btrfs_root *root, struct btrfs_inode *inode);
3242 int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3243 struct btrfs_root *root, struct btrfs_inode *inode);
3244 int btrfs_orphan_add(struct btrfs_trans_handle *trans,
3245 struct btrfs_inode *inode);
3246 int btrfs_orphan_cleanup(struct btrfs_root *root);
3247 int btrfs_cont_expand(struct btrfs_inode *inode, loff_t oldsize, loff_t size);
3248 void btrfs_add_delayed_iput(struct inode *inode);
3249 void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info);
3250 int btrfs_wait_on_delayed_iputs(struct btrfs_fs_info *fs_info);
3251 int btrfs_prealloc_file_range(struct inode *inode, int mode,
3252 u64 start, u64 num_bytes, u64 min_size,
3253 loff_t actual_len, u64 *alloc_hint);
3254 int btrfs_prealloc_file_range_trans(struct inode *inode,
3255 struct btrfs_trans_handle *trans, int mode,
3256 u64 start, u64 num_bytes, u64 min_size,
3257 loff_t actual_len, u64 *alloc_hint);
3258 int btrfs_run_delalloc_range(struct btrfs_inode *inode, struct page *locked_page,
3259 u64 start, u64 end, int *page_started, unsigned long *nr_written,
3260 struct writeback_control *wbc);
3261 int btrfs_writepage_cow_fixup(struct page *page);
3262 void btrfs_writepage_endio_finish_ordered(struct btrfs_inode *inode,
3263 struct page *page, u64 start,
3264 u64 end, bool uptodate);
3265 extern const struct dentry_operations btrfs_dentry_operations;
3266 extern const struct iomap_ops btrfs_dio_iomap_ops;
3267 extern const struct iomap_dio_ops btrfs_dio_ops;
3268
3269 /* Inode locking type flags, by default the exclusive lock is taken */
3270 #define BTRFS_ILOCK_SHARED (1U << 0)
3271 #define BTRFS_ILOCK_TRY (1U << 1)
3272 #define BTRFS_ILOCK_MMAP (1U << 2)
3273
3274 int btrfs_inode_lock(struct inode *inode, unsigned int ilock_flags);
3275 void btrfs_inode_unlock(struct inode *inode, unsigned int ilock_flags);
3276 void btrfs_update_inode_bytes(struct btrfs_inode *inode,
3277 const u64 add_bytes,
3278 const u64 del_bytes);
3279
3280 /* ioctl.c */
3281 long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
3282 long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
3283 int btrfs_fileattr_get(struct dentry *dentry, struct fileattr *fa);
3284 int btrfs_fileattr_set(struct user_namespace *mnt_userns,
3285 struct dentry *dentry, struct fileattr *fa);
3286 int btrfs_ioctl_get_supported_features(void __user *arg);
3287 void btrfs_sync_inode_flags_to_i_flags(struct inode *inode);
3288 int __pure btrfs_is_empty_uuid(u8 *uuid);
3289 int btrfs_defrag_file(struct inode *inode, struct file *file,
3290 struct btrfs_ioctl_defrag_range_args *range,
3291 u64 newer_than, unsigned long max_pages);
3292 void btrfs_get_block_group_info(struct list_head *groups_list,
3293 struct btrfs_ioctl_space_info *space);
3294 void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
3295 struct btrfs_ioctl_balance_args *bargs);
3296 bool btrfs_exclop_start(struct btrfs_fs_info *fs_info,
3297 enum btrfs_exclusive_operation type);
3298 bool btrfs_exclop_start_try_lock(struct btrfs_fs_info *fs_info,
3299 enum btrfs_exclusive_operation type);
3300 void btrfs_exclop_start_unlock(struct btrfs_fs_info *fs_info);
3301 void btrfs_exclop_finish(struct btrfs_fs_info *fs_info);
3302
3303 /* file.c */
3304 int __init btrfs_auto_defrag_init(void);
3305 void __cold btrfs_auto_defrag_exit(void);
3306 int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
3307 struct btrfs_inode *inode);
3308 int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info);
3309 void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info);
3310 int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync);
3311 void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
3312 int skip_pinned);
3313 extern const struct file_operations btrfs_file_operations;
3314 int btrfs_drop_extents(struct btrfs_trans_handle *trans,
3315 struct btrfs_root *root, struct btrfs_inode *inode,
3316 struct btrfs_drop_extents_args *args);
3317 int btrfs_replace_file_extents(struct btrfs_inode *inode,
3318 struct btrfs_path *path, const u64 start,
3319 const u64 end,
3320 struct btrfs_replace_extent_info *extent_info,
3321 struct btrfs_trans_handle **trans_out);
3322 int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
3323 struct btrfs_inode *inode, u64 start, u64 end);
3324 int btrfs_release_file(struct inode *inode, struct file *file);
3325 int btrfs_dirty_pages(struct btrfs_inode *inode, struct page **pages,
3326 size_t num_pages, loff_t pos, size_t write_bytes,
3327 struct extent_state **cached, bool noreserve);
3328 int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end);
3329 int btrfs_check_nocow_lock(struct btrfs_inode *inode, loff_t pos,
3330 size_t *write_bytes);
3331 void btrfs_check_nocow_unlock(struct btrfs_inode *inode);
3332
3333 /* tree-defrag.c */
3334 int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
3335 struct btrfs_root *root);
3336
3337 /* super.c */
3338 int btrfs_parse_options(struct btrfs_fs_info *info, char *options,
3339 unsigned long new_flags);
3340 int btrfs_sync_fs(struct super_block *sb, int wait);
3341 char *btrfs_get_subvol_name_from_objectid(struct btrfs_fs_info *fs_info,
3342 u64 subvol_objectid);
3343
3344 static inline __printf(2, 3) __cold
btrfs_no_printk(const struct btrfs_fs_info * fs_info,const char * fmt,...)3345 void btrfs_no_printk(const struct btrfs_fs_info *fs_info, const char *fmt, ...)
3346 {
3347 }
3348
3349 #ifdef CONFIG_PRINTK
3350 __printf(2, 3)
3351 __cold
3352 void btrfs_printk(const struct btrfs_fs_info *fs_info, const char *fmt, ...);
3353 #else
3354 #define btrfs_printk(fs_info, fmt, args...) \
3355 btrfs_no_printk(fs_info, fmt, ##args)
3356 #endif
3357
3358 #define btrfs_emerg(fs_info, fmt, args...) \
3359 btrfs_printk(fs_info, KERN_EMERG fmt, ##args)
3360 #define btrfs_alert(fs_info, fmt, args...) \
3361 btrfs_printk(fs_info, KERN_ALERT fmt, ##args)
3362 #define btrfs_crit(fs_info, fmt, args...) \
3363 btrfs_printk(fs_info, KERN_CRIT fmt, ##args)
3364 #define btrfs_err(fs_info, fmt, args...) \
3365 btrfs_printk(fs_info, KERN_ERR fmt, ##args)
3366 #define btrfs_warn(fs_info, fmt, args...) \
3367 btrfs_printk(fs_info, KERN_WARNING fmt, ##args)
3368 #define btrfs_notice(fs_info, fmt, args...) \
3369 btrfs_printk(fs_info, KERN_NOTICE fmt, ##args)
3370 #define btrfs_info(fs_info, fmt, args...) \
3371 btrfs_printk(fs_info, KERN_INFO fmt, ##args)
3372
3373 /*
3374 * Wrappers that use printk_in_rcu
3375 */
3376 #define btrfs_emerg_in_rcu(fs_info, fmt, args...) \
3377 btrfs_printk_in_rcu(fs_info, KERN_EMERG fmt, ##args)
3378 #define btrfs_alert_in_rcu(fs_info, fmt, args...) \
3379 btrfs_printk_in_rcu(fs_info, KERN_ALERT fmt, ##args)
3380 #define btrfs_crit_in_rcu(fs_info, fmt, args...) \
3381 btrfs_printk_in_rcu(fs_info, KERN_CRIT fmt, ##args)
3382 #define btrfs_err_in_rcu(fs_info, fmt, args...) \
3383 btrfs_printk_in_rcu(fs_info, KERN_ERR fmt, ##args)
3384 #define btrfs_warn_in_rcu(fs_info, fmt, args...) \
3385 btrfs_printk_in_rcu(fs_info, KERN_WARNING fmt, ##args)
3386 #define btrfs_notice_in_rcu(fs_info, fmt, args...) \
3387 btrfs_printk_in_rcu(fs_info, KERN_NOTICE fmt, ##args)
3388 #define btrfs_info_in_rcu(fs_info, fmt, args...) \
3389 btrfs_printk_in_rcu(fs_info, KERN_INFO fmt, ##args)
3390
3391 /*
3392 * Wrappers that use a ratelimited printk_in_rcu
3393 */
3394 #define btrfs_emerg_rl_in_rcu(fs_info, fmt, args...) \
3395 btrfs_printk_rl_in_rcu(fs_info, KERN_EMERG fmt, ##args)
3396 #define btrfs_alert_rl_in_rcu(fs_info, fmt, args...) \
3397 btrfs_printk_rl_in_rcu(fs_info, KERN_ALERT fmt, ##args)
3398 #define btrfs_crit_rl_in_rcu(fs_info, fmt, args...) \
3399 btrfs_printk_rl_in_rcu(fs_info, KERN_CRIT fmt, ##args)
3400 #define btrfs_err_rl_in_rcu(fs_info, fmt, args...) \
3401 btrfs_printk_rl_in_rcu(fs_info, KERN_ERR fmt, ##args)
3402 #define btrfs_warn_rl_in_rcu(fs_info, fmt, args...) \
3403 btrfs_printk_rl_in_rcu(fs_info, KERN_WARNING fmt, ##args)
3404 #define btrfs_notice_rl_in_rcu(fs_info, fmt, args...) \
3405 btrfs_printk_rl_in_rcu(fs_info, KERN_NOTICE fmt, ##args)
3406 #define btrfs_info_rl_in_rcu(fs_info, fmt, args...) \
3407 btrfs_printk_rl_in_rcu(fs_info, KERN_INFO fmt, ##args)
3408
3409 /*
3410 * Wrappers that use a ratelimited printk
3411 */
3412 #define btrfs_emerg_rl(fs_info, fmt, args...) \
3413 btrfs_printk_ratelimited(fs_info, KERN_EMERG fmt, ##args)
3414 #define btrfs_alert_rl(fs_info, fmt, args...) \
3415 btrfs_printk_ratelimited(fs_info, KERN_ALERT fmt, ##args)
3416 #define btrfs_crit_rl(fs_info, fmt, args...) \
3417 btrfs_printk_ratelimited(fs_info, KERN_CRIT fmt, ##args)
3418 #define btrfs_err_rl(fs_info, fmt, args...) \
3419 btrfs_printk_ratelimited(fs_info, KERN_ERR fmt, ##args)
3420 #define btrfs_warn_rl(fs_info, fmt, args...) \
3421 btrfs_printk_ratelimited(fs_info, KERN_WARNING fmt, ##args)
3422 #define btrfs_notice_rl(fs_info, fmt, args...) \
3423 btrfs_printk_ratelimited(fs_info, KERN_NOTICE fmt, ##args)
3424 #define btrfs_info_rl(fs_info, fmt, args...) \
3425 btrfs_printk_ratelimited(fs_info, KERN_INFO fmt, ##args)
3426
3427 #if defined(CONFIG_DYNAMIC_DEBUG)
3428 #define btrfs_debug(fs_info, fmt, args...) \
3429 _dynamic_func_call_no_desc(fmt, btrfs_printk, \
3430 fs_info, KERN_DEBUG fmt, ##args)
3431 #define btrfs_debug_in_rcu(fs_info, fmt, args...) \
3432 _dynamic_func_call_no_desc(fmt, btrfs_printk_in_rcu, \
3433 fs_info, KERN_DEBUG fmt, ##args)
3434 #define btrfs_debug_rl_in_rcu(fs_info, fmt, args...) \
3435 _dynamic_func_call_no_desc(fmt, btrfs_printk_rl_in_rcu, \
3436 fs_info, KERN_DEBUG fmt, ##args)
3437 #define btrfs_debug_rl(fs_info, fmt, args...) \
3438 _dynamic_func_call_no_desc(fmt, btrfs_printk_ratelimited, \
3439 fs_info, KERN_DEBUG fmt, ##args)
3440 #elif defined(DEBUG)
3441 #define btrfs_debug(fs_info, fmt, args...) \
3442 btrfs_printk(fs_info, KERN_DEBUG fmt, ##args)
3443 #define btrfs_debug_in_rcu(fs_info, fmt, args...) \
3444 btrfs_printk_in_rcu(fs_info, KERN_DEBUG fmt, ##args)
3445 #define btrfs_debug_rl_in_rcu(fs_info, fmt, args...) \
3446 btrfs_printk_rl_in_rcu(fs_info, KERN_DEBUG fmt, ##args)
3447 #define btrfs_debug_rl(fs_info, fmt, args...) \
3448 btrfs_printk_ratelimited(fs_info, KERN_DEBUG fmt, ##args)
3449 #else
3450 #define btrfs_debug(fs_info, fmt, args...) \
3451 btrfs_no_printk(fs_info, KERN_DEBUG fmt, ##args)
3452 #define btrfs_debug_in_rcu(fs_info, fmt, args...) \
3453 btrfs_no_printk_in_rcu(fs_info, KERN_DEBUG fmt, ##args)
3454 #define btrfs_debug_rl_in_rcu(fs_info, fmt, args...) \
3455 btrfs_no_printk_in_rcu(fs_info, KERN_DEBUG fmt, ##args)
3456 #define btrfs_debug_rl(fs_info, fmt, args...) \
3457 btrfs_no_printk(fs_info, KERN_DEBUG fmt, ##args)
3458 #endif
3459
3460 #define btrfs_printk_in_rcu(fs_info, fmt, args...) \
3461 do { \
3462 rcu_read_lock(); \
3463 btrfs_printk(fs_info, fmt, ##args); \
3464 rcu_read_unlock(); \
3465 } while (0)
3466
3467 #define btrfs_no_printk_in_rcu(fs_info, fmt, args...) \
3468 do { \
3469 rcu_read_lock(); \
3470 btrfs_no_printk(fs_info, fmt, ##args); \
3471 rcu_read_unlock(); \
3472 } while (0)
3473
3474 #define btrfs_printk_ratelimited(fs_info, fmt, args...) \
3475 do { \
3476 static DEFINE_RATELIMIT_STATE(_rs, \
3477 DEFAULT_RATELIMIT_INTERVAL, \
3478 DEFAULT_RATELIMIT_BURST); \
3479 if (__ratelimit(&_rs)) \
3480 btrfs_printk(fs_info, fmt, ##args); \
3481 } while (0)
3482
3483 #define btrfs_printk_rl_in_rcu(fs_info, fmt, args...) \
3484 do { \
3485 rcu_read_lock(); \
3486 btrfs_printk_ratelimited(fs_info, fmt, ##args); \
3487 rcu_read_unlock(); \
3488 } while (0)
3489
3490 #ifdef CONFIG_BTRFS_ASSERT
3491 __cold __noreturn
assertfail(const char * expr,const char * file,int line)3492 static inline void assertfail(const char *expr, const char *file, int line)
3493 {
3494 pr_err("assertion failed: %s, in %s:%d\n", expr, file, line);
3495 BUG();
3496 }
3497
3498 #define ASSERT(expr) \
3499 (likely(expr) ? (void)0 : assertfail(#expr, __FILE__, __LINE__))
3500
3501 #else
assertfail(const char * expr,const char * file,int line)3502 static inline void assertfail(const char *expr, const char* file, int line) { }
3503 #define ASSERT(expr) (void)(expr)
3504 #endif
3505
3506 #if BITS_PER_LONG == 32
3507 #define BTRFS_32BIT_MAX_FILE_SIZE (((u64)ULONG_MAX + 1) << PAGE_SHIFT)
3508 /*
3509 * The warning threshold is 5/8th of the MAX_LFS_FILESIZE that limits the logical
3510 * addresses of extents.
3511 *
3512 * For 4K page size it's about 10T, for 64K it's 160T.
3513 */
3514 #define BTRFS_32BIT_EARLY_WARN_THRESHOLD (BTRFS_32BIT_MAX_FILE_SIZE * 5 / 8)
3515 void btrfs_warn_32bit_limit(struct btrfs_fs_info *fs_info);
3516 void btrfs_err_32bit_limit(struct btrfs_fs_info *fs_info);
3517 #endif
3518
3519 /*
3520 * Get the correct offset inside the page of extent buffer.
3521 *
3522 * @eb: target extent buffer
3523 * @start: offset inside the extent buffer
3524 *
3525 * Will handle both sectorsize == PAGE_SIZE and sectorsize < PAGE_SIZE cases.
3526 */
get_eb_offset_in_page(const struct extent_buffer * eb,unsigned long offset)3527 static inline size_t get_eb_offset_in_page(const struct extent_buffer *eb,
3528 unsigned long offset)
3529 {
3530 /*
3531 * For sectorsize == PAGE_SIZE case, eb->start will always be aligned
3532 * to PAGE_SIZE, thus adding it won't cause any difference.
3533 *
3534 * For sectorsize < PAGE_SIZE, we must only read the data that belongs
3535 * to the eb, thus we have to take the eb->start into consideration.
3536 */
3537 return offset_in_page(offset + eb->start);
3538 }
3539
get_eb_page_index(unsigned long offset)3540 static inline unsigned long get_eb_page_index(unsigned long offset)
3541 {
3542 /*
3543 * For sectorsize == PAGE_SIZE case, plain >> PAGE_SHIFT is enough.
3544 *
3545 * For sectorsize < PAGE_SIZE case, we only support 64K PAGE_SIZE,
3546 * and have ensured that all tree blocks are contained in one page,
3547 * thus we always get index == 0.
3548 */
3549 return offset >> PAGE_SHIFT;
3550 }
3551
3552 /*
3553 * Use that for functions that are conditionally exported for sanity tests but
3554 * otherwise static
3555 */
3556 #ifndef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
3557 #define EXPORT_FOR_TESTS static
3558 #else
3559 #define EXPORT_FOR_TESTS
3560 #endif
3561
3562 __cold
btrfs_print_v0_err(struct btrfs_fs_info * fs_info)3563 static inline void btrfs_print_v0_err(struct btrfs_fs_info *fs_info)
3564 {
3565 btrfs_err(fs_info,
3566 "Unsupported V0 extent filesystem detected. Aborting. Please re-create your filesystem with a newer kernel");
3567 }
3568
3569 __printf(5, 6)
3570 __cold
3571 void __btrfs_handle_fs_error(struct btrfs_fs_info *fs_info, const char *function,
3572 unsigned int line, int errno, const char *fmt, ...);
3573
3574 const char * __attribute_const__ btrfs_decode_error(int errno);
3575
3576 __cold
3577 void __btrfs_abort_transaction(struct btrfs_trans_handle *trans,
3578 const char *function,
3579 unsigned int line, int errno);
3580
3581 /*
3582 * Call btrfs_abort_transaction as early as possible when an error condition is
3583 * detected, that way the exact line number is reported.
3584 */
3585 #define btrfs_abort_transaction(trans, errno) \
3586 do { \
3587 /* Report first abort since mount */ \
3588 if (!test_and_set_bit(BTRFS_FS_STATE_TRANS_ABORTED, \
3589 &((trans)->fs_info->fs_state))) { \
3590 if ((errno) != -EIO && (errno) != -EROFS) { \
3591 WARN(1, KERN_DEBUG \
3592 "BTRFS: Transaction aborted (error %d)\n", \
3593 (errno)); \
3594 } else { \
3595 btrfs_debug((trans)->fs_info, \
3596 "Transaction aborted (error %d)", \
3597 (errno)); \
3598 } \
3599 } \
3600 __btrfs_abort_transaction((trans), __func__, \
3601 __LINE__, (errno)); \
3602 } while (0)
3603
3604 #define btrfs_handle_fs_error(fs_info, errno, fmt, args...) \
3605 do { \
3606 __btrfs_handle_fs_error((fs_info), __func__, __LINE__, \
3607 (errno), fmt, ##args); \
3608 } while (0)
3609
3610 #define BTRFS_FS_LOG_CLEANUP_ERROR(fs_info) \
3611 (unlikely(test_bit(BTRFS_FS_STATE_LOG_CLEANUP_ERROR, \
3612 &(fs_info)->fs_state)))
3613
3614 __printf(5, 6)
3615 __cold
3616 void __btrfs_panic(struct btrfs_fs_info *fs_info, const char *function,
3617 unsigned int line, int errno, const char *fmt, ...);
3618 /*
3619 * If BTRFS_MOUNT_PANIC_ON_FATAL_ERROR is in mount_opt, __btrfs_panic
3620 * will panic(). Otherwise we BUG() here.
3621 */
3622 #define btrfs_panic(fs_info, errno, fmt, args...) \
3623 do { \
3624 __btrfs_panic(fs_info, __func__, __LINE__, errno, fmt, ##args); \
3625 BUG(); \
3626 } while (0)
3627
3628
3629 /* compatibility and incompatibility defines */
3630
3631 #define btrfs_set_fs_incompat(__fs_info, opt) \
3632 __btrfs_set_fs_incompat((__fs_info), BTRFS_FEATURE_INCOMPAT_##opt, \
3633 #opt)
3634
__btrfs_set_fs_incompat(struct btrfs_fs_info * fs_info,u64 flag,const char * name)3635 static inline void __btrfs_set_fs_incompat(struct btrfs_fs_info *fs_info,
3636 u64 flag, const char* name)
3637 {
3638 struct btrfs_super_block *disk_super;
3639 u64 features;
3640
3641 disk_super = fs_info->super_copy;
3642 features = btrfs_super_incompat_flags(disk_super);
3643 if (!(features & flag)) {
3644 spin_lock(&fs_info->super_lock);
3645 features = btrfs_super_incompat_flags(disk_super);
3646 if (!(features & flag)) {
3647 features |= flag;
3648 btrfs_set_super_incompat_flags(disk_super, features);
3649 btrfs_info(fs_info,
3650 "setting incompat feature flag for %s (0x%llx)",
3651 name, flag);
3652 }
3653 spin_unlock(&fs_info->super_lock);
3654 }
3655 }
3656
3657 #define btrfs_clear_fs_incompat(__fs_info, opt) \
3658 __btrfs_clear_fs_incompat((__fs_info), BTRFS_FEATURE_INCOMPAT_##opt, \
3659 #opt)
3660
__btrfs_clear_fs_incompat(struct btrfs_fs_info * fs_info,u64 flag,const char * name)3661 static inline void __btrfs_clear_fs_incompat(struct btrfs_fs_info *fs_info,
3662 u64 flag, const char* name)
3663 {
3664 struct btrfs_super_block *disk_super;
3665 u64 features;
3666
3667 disk_super = fs_info->super_copy;
3668 features = btrfs_super_incompat_flags(disk_super);
3669 if (features & flag) {
3670 spin_lock(&fs_info->super_lock);
3671 features = btrfs_super_incompat_flags(disk_super);
3672 if (features & flag) {
3673 features &= ~flag;
3674 btrfs_set_super_incompat_flags(disk_super, features);
3675 btrfs_info(fs_info,
3676 "clearing incompat feature flag for %s (0x%llx)",
3677 name, flag);
3678 }
3679 spin_unlock(&fs_info->super_lock);
3680 }
3681 }
3682
3683 #define btrfs_fs_incompat(fs_info, opt) \
3684 __btrfs_fs_incompat((fs_info), BTRFS_FEATURE_INCOMPAT_##opt)
3685
__btrfs_fs_incompat(struct btrfs_fs_info * fs_info,u64 flag)3686 static inline bool __btrfs_fs_incompat(struct btrfs_fs_info *fs_info, u64 flag)
3687 {
3688 struct btrfs_super_block *disk_super;
3689 disk_super = fs_info->super_copy;
3690 return !!(btrfs_super_incompat_flags(disk_super) & flag);
3691 }
3692
3693 #define btrfs_set_fs_compat_ro(__fs_info, opt) \
3694 __btrfs_set_fs_compat_ro((__fs_info), BTRFS_FEATURE_COMPAT_RO_##opt, \
3695 #opt)
3696
__btrfs_set_fs_compat_ro(struct btrfs_fs_info * fs_info,u64 flag,const char * name)3697 static inline void __btrfs_set_fs_compat_ro(struct btrfs_fs_info *fs_info,
3698 u64 flag, const char *name)
3699 {
3700 struct btrfs_super_block *disk_super;
3701 u64 features;
3702
3703 disk_super = fs_info->super_copy;
3704 features = btrfs_super_compat_ro_flags(disk_super);
3705 if (!(features & flag)) {
3706 spin_lock(&fs_info->super_lock);
3707 features = btrfs_super_compat_ro_flags(disk_super);
3708 if (!(features & flag)) {
3709 features |= flag;
3710 btrfs_set_super_compat_ro_flags(disk_super, features);
3711 btrfs_info(fs_info,
3712 "setting compat-ro feature flag for %s (0x%llx)",
3713 name, flag);
3714 }
3715 spin_unlock(&fs_info->super_lock);
3716 }
3717 }
3718
3719 #define btrfs_clear_fs_compat_ro(__fs_info, opt) \
3720 __btrfs_clear_fs_compat_ro((__fs_info), BTRFS_FEATURE_COMPAT_RO_##opt, \
3721 #opt)
3722
__btrfs_clear_fs_compat_ro(struct btrfs_fs_info * fs_info,u64 flag,const char * name)3723 static inline void __btrfs_clear_fs_compat_ro(struct btrfs_fs_info *fs_info,
3724 u64 flag, const char *name)
3725 {
3726 struct btrfs_super_block *disk_super;
3727 u64 features;
3728
3729 disk_super = fs_info->super_copy;
3730 features = btrfs_super_compat_ro_flags(disk_super);
3731 if (features & flag) {
3732 spin_lock(&fs_info->super_lock);
3733 features = btrfs_super_compat_ro_flags(disk_super);
3734 if (features & flag) {
3735 features &= ~flag;
3736 btrfs_set_super_compat_ro_flags(disk_super, features);
3737 btrfs_info(fs_info,
3738 "clearing compat-ro feature flag for %s (0x%llx)",
3739 name, flag);
3740 }
3741 spin_unlock(&fs_info->super_lock);
3742 }
3743 }
3744
3745 #define btrfs_fs_compat_ro(fs_info, opt) \
3746 __btrfs_fs_compat_ro((fs_info), BTRFS_FEATURE_COMPAT_RO_##opt)
3747
__btrfs_fs_compat_ro(struct btrfs_fs_info * fs_info,u64 flag)3748 static inline int __btrfs_fs_compat_ro(struct btrfs_fs_info *fs_info, u64 flag)
3749 {
3750 struct btrfs_super_block *disk_super;
3751 disk_super = fs_info->super_copy;
3752 return !!(btrfs_super_compat_ro_flags(disk_super) & flag);
3753 }
3754
3755 /* acl.c */
3756 #ifdef CONFIG_BTRFS_FS_POSIX_ACL
3757 struct posix_acl *btrfs_get_acl(struct inode *inode, int type, bool rcu);
3758 int btrfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
3759 struct posix_acl *acl, int type);
3760 int btrfs_init_acl(struct btrfs_trans_handle *trans,
3761 struct inode *inode, struct inode *dir);
3762 #else
3763 #define btrfs_get_acl NULL
3764 #define btrfs_set_acl NULL
btrfs_init_acl(struct btrfs_trans_handle * trans,struct inode * inode,struct inode * dir)3765 static inline int btrfs_init_acl(struct btrfs_trans_handle *trans,
3766 struct inode *inode, struct inode *dir)
3767 {
3768 return 0;
3769 }
3770 #endif
3771
3772 /* relocation.c */
3773 int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start);
3774 int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
3775 struct btrfs_root *root);
3776 int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
3777 struct btrfs_root *root);
3778 int btrfs_recover_relocation(struct btrfs_root *root);
3779 int btrfs_reloc_clone_csums(struct btrfs_inode *inode, u64 file_pos, u64 len);
3780 int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
3781 struct btrfs_root *root, struct extent_buffer *buf,
3782 struct extent_buffer *cow);
3783 void btrfs_reloc_pre_snapshot(struct btrfs_pending_snapshot *pending,
3784 u64 *bytes_to_reserve);
3785 int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
3786 struct btrfs_pending_snapshot *pending);
3787 int btrfs_should_cancel_balance(struct btrfs_fs_info *fs_info);
3788 struct btrfs_root *find_reloc_root(struct btrfs_fs_info *fs_info,
3789 u64 bytenr);
3790 int btrfs_should_ignore_reloc_root(struct btrfs_root *root);
3791
3792 /* scrub.c */
3793 int btrfs_scrub_dev(struct btrfs_fs_info *fs_info, u64 devid, u64 start,
3794 u64 end, struct btrfs_scrub_progress *progress,
3795 int readonly, int is_dev_replace);
3796 void btrfs_scrub_pause(struct btrfs_fs_info *fs_info);
3797 void btrfs_scrub_continue(struct btrfs_fs_info *fs_info);
3798 int btrfs_scrub_cancel(struct btrfs_fs_info *info);
3799 int btrfs_scrub_cancel_dev(struct btrfs_device *dev);
3800 int btrfs_scrub_progress(struct btrfs_fs_info *fs_info, u64 devid,
3801 struct btrfs_scrub_progress *progress);
btrfs_init_full_stripe_locks_tree(struct btrfs_full_stripe_locks_tree * locks_root)3802 static inline void btrfs_init_full_stripe_locks_tree(
3803 struct btrfs_full_stripe_locks_tree *locks_root)
3804 {
3805 locks_root->root = RB_ROOT;
3806 mutex_init(&locks_root->lock);
3807 }
3808
3809 /* dev-replace.c */
3810 void btrfs_bio_counter_inc_blocked(struct btrfs_fs_info *fs_info);
3811 void btrfs_bio_counter_inc_noblocked(struct btrfs_fs_info *fs_info);
3812 void btrfs_bio_counter_sub(struct btrfs_fs_info *fs_info, s64 amount);
3813
btrfs_bio_counter_dec(struct btrfs_fs_info * fs_info)3814 static inline void btrfs_bio_counter_dec(struct btrfs_fs_info *fs_info)
3815 {
3816 btrfs_bio_counter_sub(fs_info, 1);
3817 }
3818
3819 /* reada.c */
3820 struct reada_control {
3821 struct btrfs_fs_info *fs_info; /* tree to prefetch */
3822 struct btrfs_key key_start;
3823 struct btrfs_key key_end; /* exclusive */
3824 atomic_t elems;
3825 struct kref refcnt;
3826 wait_queue_head_t wait;
3827 };
3828 struct reada_control *btrfs_reada_add(struct btrfs_root *root,
3829 struct btrfs_key *start, struct btrfs_key *end);
3830 int btrfs_reada_wait(void *handle);
3831 void btrfs_reada_detach(void *handle);
3832 int btree_readahead_hook(struct extent_buffer *eb, int err);
3833 void btrfs_reada_remove_dev(struct btrfs_device *dev);
3834 void btrfs_reada_undo_remove_dev(struct btrfs_device *dev);
3835
is_fstree(u64 rootid)3836 static inline int is_fstree(u64 rootid)
3837 {
3838 if (rootid == BTRFS_FS_TREE_OBJECTID ||
3839 ((s64)rootid >= (s64)BTRFS_FIRST_FREE_OBJECTID &&
3840 !btrfs_qgroup_level(rootid)))
3841 return 1;
3842 return 0;
3843 }
3844
btrfs_defrag_cancelled(struct btrfs_fs_info * fs_info)3845 static inline int btrfs_defrag_cancelled(struct btrfs_fs_info *fs_info)
3846 {
3847 return signal_pending(current);
3848 }
3849
3850 /* verity.c */
3851 #ifdef CONFIG_FS_VERITY
3852
3853 extern const struct fsverity_operations btrfs_verityops;
3854 int btrfs_drop_verity_items(struct btrfs_inode *inode);
3855
3856 BTRFS_SETGET_FUNCS(verity_descriptor_encryption, struct btrfs_verity_descriptor_item,
3857 encryption, 8);
3858 BTRFS_SETGET_FUNCS(verity_descriptor_size, struct btrfs_verity_descriptor_item,
3859 size, 64);
3860 BTRFS_SETGET_STACK_FUNCS(stack_verity_descriptor_encryption,
3861 struct btrfs_verity_descriptor_item, encryption, 8);
3862 BTRFS_SETGET_STACK_FUNCS(stack_verity_descriptor_size,
3863 struct btrfs_verity_descriptor_item, size, 64);
3864
3865 #else
3866
btrfs_drop_verity_items(struct btrfs_inode * inode)3867 static inline int btrfs_drop_verity_items(struct btrfs_inode *inode)
3868 {
3869 return 0;
3870 }
3871
3872 #endif
3873
3874 /* Sanity test specific functions */
3875 #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
3876 void btrfs_test_destroy_inode(struct inode *inode);
btrfs_is_testing(struct btrfs_fs_info * fs_info)3877 static inline int btrfs_is_testing(struct btrfs_fs_info *fs_info)
3878 {
3879 return test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state);
3880 }
3881 #else
btrfs_is_testing(struct btrfs_fs_info * fs_info)3882 static inline int btrfs_is_testing(struct btrfs_fs_info *fs_info)
3883 {
3884 return 0;
3885 }
3886 #endif
3887
btrfs_is_zoned(const struct btrfs_fs_info * fs_info)3888 static inline bool btrfs_is_zoned(const struct btrfs_fs_info *fs_info)
3889 {
3890 return fs_info->zoned != 0;
3891 }
3892
3893 /*
3894 * Count how many fs_info->max_extent_size cover the @size
3895 */
count_max_extents(struct btrfs_fs_info * fs_info,u64 size)3896 static inline u32 count_max_extents(struct btrfs_fs_info *fs_info, u64 size)
3897 {
3898 #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
3899 if (!fs_info)
3900 return div_u64(size + BTRFS_MAX_EXTENT_SIZE - 1, BTRFS_MAX_EXTENT_SIZE);
3901 #endif
3902
3903 return div_u64(size + fs_info->max_extent_size - 1, fs_info->max_extent_size);
3904 }
3905
btrfs_is_data_reloc_root(const struct btrfs_root * root)3906 static inline bool btrfs_is_data_reloc_root(const struct btrfs_root *root)
3907 {
3908 return root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID;
3909 }
3910
3911 /*
3912 * We use page status Private2 to indicate there is an ordered extent with
3913 * unfinished IO.
3914 *
3915 * Rename the Private2 accessors to Ordered, to improve readability.
3916 */
3917 #define PageOrdered(page) PagePrivate2(page)
3918 #define SetPageOrdered(page) SetPagePrivate2(page)
3919 #define ClearPageOrdered(page) ClearPagePrivate2(page)
3920
3921 #endif
3922