1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/bitops.h>
4 #include <linux/slab.h>
7 #include <linux/pagemap.h>
8 #include <linux/page-flags.h>
9 #include <linux/spinlock.h>
10 #include <linux/blkdev.h>
11 #include <linux/swap.h>
12 #include <linux/writeback.h>
13 #include <linux/pagevec.h>
14 #include <linux/prefetch.h>
15 #include <linux/cleancache.h>
16 #include "extent_io.h"
17 #include "extent_map.h"
19 #include "btrfs_inode.h"
21 #include "check-integrity.h"
23 #include "rcu-string.h"
27 static struct kmem_cache *extent_state_cache;
28 static struct kmem_cache *extent_buffer_cache;
29 static struct bio_set btrfs_bioset;
31 static inline bool extent_state_in_tree(const struct extent_state *state)
33 return !RB_EMPTY_NODE(&state->rb_node);
36 #ifdef CONFIG_BTRFS_DEBUG
37 static LIST_HEAD(buffers);
38 static LIST_HEAD(states);
40 static DEFINE_SPINLOCK(leak_lock);
43 void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
47 spin_lock_irqsave(&leak_lock, flags);
49 spin_unlock_irqrestore(&leak_lock, flags);
53 void btrfs_leak_debug_del(struct list_head *entry)
57 spin_lock_irqsave(&leak_lock, flags);
59 spin_unlock_irqrestore(&leak_lock, flags);
63 void btrfs_leak_debug_check(void)
65 struct extent_state *state;
66 struct extent_buffer *eb;
68 while (!list_empty(&states)) {
69 state = list_entry(states.next, struct extent_state, leak_list);
70 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
71 state->start, state->end, state->state,
72 extent_state_in_tree(state),
73 refcount_read(&state->refs));
74 list_del(&state->leak_list);
75 kmem_cache_free(extent_state_cache, state);
78 while (!list_empty(&buffers)) {
79 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
80 pr_err("BTRFS: buffer leak start %llu len %lu refs %d bflags %lu\n",
81 eb->start, eb->len, atomic_read(&eb->refs), eb->bflags);
82 list_del(&eb->leak_list);
83 kmem_cache_free(extent_buffer_cache, eb);
87 #define btrfs_debug_check_extent_io_range(tree, start, end) \
88 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
89 static inline void __btrfs_debug_check_extent_io_range(const char *caller,
90 struct extent_io_tree *tree, u64 start, u64 end)
92 if (tree->ops && tree->ops->check_extent_io_range)
93 tree->ops->check_extent_io_range(tree->private_data, caller,
97 #define btrfs_leak_debug_add(new, head) do {} while (0)
98 #define btrfs_leak_debug_del(entry) do {} while (0)
99 #define btrfs_leak_debug_check() do {} while (0)
100 #define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
103 #define BUFFER_LRU_MAX 64
108 struct rb_node rb_node;
111 struct extent_page_data {
113 struct extent_io_tree *tree;
114 /* tells writepage not to lock the state bits for this range
115 * it still does the unlocking
117 unsigned int extent_locked:1;
119 /* tells the submit_bio code to use REQ_SYNC */
120 unsigned int sync_io:1;
123 static int add_extent_changeset(struct extent_state *state, unsigned bits,
124 struct extent_changeset *changeset,
131 if (set && (state->state & bits) == bits)
133 if (!set && (state->state & bits) == 0)
135 changeset->bytes_changed += state->end - state->start + 1;
136 ret = ulist_add(&changeset->range_changed, state->start, state->end,
141 static void flush_write_bio(struct extent_page_data *epd);
143 static inline struct btrfs_fs_info *
144 tree_fs_info(struct extent_io_tree *tree)
147 return tree->ops->tree_fs_info(tree->private_data);
151 int __init extent_io_init(void)
153 extent_state_cache = kmem_cache_create("btrfs_extent_state",
154 sizeof(struct extent_state), 0,
155 SLAB_MEM_SPREAD, NULL);
156 if (!extent_state_cache)
159 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
160 sizeof(struct extent_buffer), 0,
161 SLAB_MEM_SPREAD, NULL);
162 if (!extent_buffer_cache)
163 goto free_state_cache;
165 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
166 offsetof(struct btrfs_io_bio, bio),
168 goto free_buffer_cache;
170 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
176 bioset_exit(&btrfs_bioset);
179 kmem_cache_destroy(extent_buffer_cache);
180 extent_buffer_cache = NULL;
183 kmem_cache_destroy(extent_state_cache);
184 extent_state_cache = NULL;
188 void __cold extent_io_exit(void)
190 btrfs_leak_debug_check();
193 * Make sure all delayed rcu free are flushed before we
197 kmem_cache_destroy(extent_state_cache);
198 kmem_cache_destroy(extent_buffer_cache);
199 bioset_exit(&btrfs_bioset);
202 void extent_io_tree_init(struct extent_io_tree *tree,
205 tree->state = RB_ROOT;
207 tree->dirty_bytes = 0;
208 spin_lock_init(&tree->lock);
209 tree->private_data = private_data;
212 static struct extent_state *alloc_extent_state(gfp_t mask)
214 struct extent_state *state;
217 * The given mask might be not appropriate for the slab allocator,
218 * drop the unsupported bits
220 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
221 state = kmem_cache_alloc(extent_state_cache, mask);
225 state->failrec = NULL;
226 RB_CLEAR_NODE(&state->rb_node);
227 btrfs_leak_debug_add(&state->leak_list, &states);
228 refcount_set(&state->refs, 1);
229 init_waitqueue_head(&state->wq);
230 trace_alloc_extent_state(state, mask, _RET_IP_);
234 void free_extent_state(struct extent_state *state)
238 if (refcount_dec_and_test(&state->refs)) {
239 WARN_ON(extent_state_in_tree(state));
240 btrfs_leak_debug_del(&state->leak_list);
241 trace_free_extent_state(state, _RET_IP_);
242 kmem_cache_free(extent_state_cache, state);
246 static struct rb_node *tree_insert(struct rb_root *root,
247 struct rb_node *search_start,
249 struct rb_node *node,
250 struct rb_node ***p_in,
251 struct rb_node **parent_in)
254 struct rb_node *parent = NULL;
255 struct tree_entry *entry;
257 if (p_in && parent_in) {
263 p = search_start ? &search_start : &root->rb_node;
266 entry = rb_entry(parent, struct tree_entry, rb_node);
268 if (offset < entry->start)
270 else if (offset > entry->end)
277 rb_link_node(node, parent, p);
278 rb_insert_color(node, root);
282 static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
283 struct rb_node **prev_ret,
284 struct rb_node **next_ret,
285 struct rb_node ***p_ret,
286 struct rb_node **parent_ret)
288 struct rb_root *root = &tree->state;
289 struct rb_node **n = &root->rb_node;
290 struct rb_node *prev = NULL;
291 struct rb_node *orig_prev = NULL;
292 struct tree_entry *entry;
293 struct tree_entry *prev_entry = NULL;
297 entry = rb_entry(prev, struct tree_entry, rb_node);
300 if (offset < entry->start)
302 else if (offset > entry->end)
315 while (prev && offset > prev_entry->end) {
316 prev = rb_next(prev);
317 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
324 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
325 while (prev && offset < prev_entry->start) {
326 prev = rb_prev(prev);
327 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
334 static inline struct rb_node *
335 tree_search_for_insert(struct extent_io_tree *tree,
337 struct rb_node ***p_ret,
338 struct rb_node **parent_ret)
340 struct rb_node *prev = NULL;
343 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
349 static inline struct rb_node *tree_search(struct extent_io_tree *tree,
352 return tree_search_for_insert(tree, offset, NULL, NULL);
355 static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
356 struct extent_state *other)
358 if (tree->ops && tree->ops->merge_extent_hook)
359 tree->ops->merge_extent_hook(tree->private_data, new, other);
363 * utility function to look for merge candidates inside a given range.
364 * Any extents with matching state are merged together into a single
365 * extent in the tree. Extents with EXTENT_IO in their state field
366 * are not merged because the end_io handlers need to be able to do
367 * operations on them without sleeping (or doing allocations/splits).
369 * This should be called with the tree lock held.
371 static void merge_state(struct extent_io_tree *tree,
372 struct extent_state *state)
374 struct extent_state *other;
375 struct rb_node *other_node;
377 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
380 other_node = rb_prev(&state->rb_node);
382 other = rb_entry(other_node, struct extent_state, rb_node);
383 if (other->end == state->start - 1 &&
384 other->state == state->state) {
385 merge_cb(tree, state, other);
386 state->start = other->start;
387 rb_erase(&other->rb_node, &tree->state);
388 RB_CLEAR_NODE(&other->rb_node);
389 free_extent_state(other);
392 other_node = rb_next(&state->rb_node);
394 other = rb_entry(other_node, struct extent_state, rb_node);
395 if (other->start == state->end + 1 &&
396 other->state == state->state) {
397 merge_cb(tree, state, other);
398 state->end = other->end;
399 rb_erase(&other->rb_node, &tree->state);
400 RB_CLEAR_NODE(&other->rb_node);
401 free_extent_state(other);
406 static void set_state_cb(struct extent_io_tree *tree,
407 struct extent_state *state, unsigned *bits)
409 if (tree->ops && tree->ops->set_bit_hook)
410 tree->ops->set_bit_hook(tree->private_data, state, bits);
413 static void clear_state_cb(struct extent_io_tree *tree,
414 struct extent_state *state, unsigned *bits)
416 if (tree->ops && tree->ops->clear_bit_hook)
417 tree->ops->clear_bit_hook(tree->private_data, state, bits);
420 static void set_state_bits(struct extent_io_tree *tree,
421 struct extent_state *state, unsigned *bits,
422 struct extent_changeset *changeset);
425 * insert an extent_state struct into the tree. 'bits' are set on the
426 * struct before it is inserted.
428 * This may return -EEXIST if the extent is already there, in which case the
429 * state struct is freed.
431 * The tree lock is not taken internally. This is a utility function and
432 * probably isn't what you want to call (see set/clear_extent_bit).
434 static int insert_state(struct extent_io_tree *tree,
435 struct extent_state *state, u64 start, u64 end,
437 struct rb_node **parent,
438 unsigned *bits, struct extent_changeset *changeset)
440 struct rb_node *node;
443 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
445 state->start = start;
448 set_state_bits(tree, state, bits, changeset);
450 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
452 struct extent_state *found;
453 found = rb_entry(node, struct extent_state, rb_node);
454 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
455 found->start, found->end, start, end);
458 merge_state(tree, state);
462 static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
465 if (tree->ops && tree->ops->split_extent_hook)
466 tree->ops->split_extent_hook(tree->private_data, orig, split);
470 * split a given extent state struct in two, inserting the preallocated
471 * struct 'prealloc' as the newly created second half. 'split' indicates an
472 * offset inside 'orig' where it should be split.
475 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
476 * are two extent state structs in the tree:
477 * prealloc: [orig->start, split - 1]
478 * orig: [ split, orig->end ]
480 * The tree locks are not taken by this function. They need to be held
483 static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
484 struct extent_state *prealloc, u64 split)
486 struct rb_node *node;
488 split_cb(tree, orig, split);
490 prealloc->start = orig->start;
491 prealloc->end = split - 1;
492 prealloc->state = orig->state;
495 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
496 &prealloc->rb_node, NULL, NULL);
498 free_extent_state(prealloc);
504 static struct extent_state *next_state(struct extent_state *state)
506 struct rb_node *next = rb_next(&state->rb_node);
508 return rb_entry(next, struct extent_state, rb_node);
514 * utility function to clear some bits in an extent state struct.
515 * it will optionally wake up any one waiting on this state (wake == 1).
517 * If no bits are set on the state struct after clearing things, the
518 * struct is freed and removed from the tree
520 static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
521 struct extent_state *state,
522 unsigned *bits, int wake,
523 struct extent_changeset *changeset)
525 struct extent_state *next;
526 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
529 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
530 u64 range = state->end - state->start + 1;
531 WARN_ON(range > tree->dirty_bytes);
532 tree->dirty_bytes -= range;
534 clear_state_cb(tree, state, bits);
535 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
537 state->state &= ~bits_to_clear;
540 if (state->state == 0) {
541 next = next_state(state);
542 if (extent_state_in_tree(state)) {
543 rb_erase(&state->rb_node, &tree->state);
544 RB_CLEAR_NODE(&state->rb_node);
545 free_extent_state(state);
550 merge_state(tree, state);
551 next = next_state(state);
556 static struct extent_state *
557 alloc_extent_state_atomic(struct extent_state *prealloc)
560 prealloc = alloc_extent_state(GFP_ATOMIC);
565 static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
567 btrfs_panic(tree_fs_info(tree), err,
568 "Locking error: Extent tree was modified by another thread while locked.");
572 * clear some bits on a range in the tree. This may require splitting
573 * or inserting elements in the tree, so the gfp mask is used to
574 * indicate which allocations or sleeping are allowed.
576 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
577 * the given range from the tree regardless of state (ie for truncate).
579 * the range [start, end] is inclusive.
581 * This takes the tree lock, and returns 0 on success and < 0 on error.
583 int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
584 unsigned bits, int wake, int delete,
585 struct extent_state **cached_state,
586 gfp_t mask, struct extent_changeset *changeset)
588 struct extent_state *state;
589 struct extent_state *cached;
590 struct extent_state *prealloc = NULL;
591 struct rb_node *node;
596 btrfs_debug_check_extent_io_range(tree, start, end);
598 if (bits & EXTENT_DELALLOC)
599 bits |= EXTENT_NORESERVE;
602 bits |= ~EXTENT_CTLBITS;
603 bits |= EXTENT_FIRST_DELALLOC;
605 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
608 if (!prealloc && gfpflags_allow_blocking(mask)) {
610 * Don't care for allocation failure here because we might end
611 * up not needing the pre-allocated extent state at all, which
612 * is the case if we only have in the tree extent states that
613 * cover our input range and don't cover too any other range.
614 * If we end up needing a new extent state we allocate it later.
616 prealloc = alloc_extent_state(mask);
619 spin_lock(&tree->lock);
621 cached = *cached_state;
624 *cached_state = NULL;
628 if (cached && extent_state_in_tree(cached) &&
629 cached->start <= start && cached->end > start) {
631 refcount_dec(&cached->refs);
636 free_extent_state(cached);
639 * this search will find the extents that end after
642 node = tree_search(tree, start);
645 state = rb_entry(node, struct extent_state, rb_node);
647 if (state->start > end)
649 WARN_ON(state->end < start);
650 last_end = state->end;
652 /* the state doesn't have the wanted bits, go ahead */
653 if (!(state->state & bits)) {
654 state = next_state(state);
659 * | ---- desired range ---- |
661 * | ------------- state -------------- |
663 * We need to split the extent we found, and may flip
664 * bits on second half.
666 * If the extent we found extends past our range, we
667 * just split and search again. It'll get split again
668 * the next time though.
670 * If the extent we found is inside our range, we clear
671 * the desired bit on it.
674 if (state->start < start) {
675 prealloc = alloc_extent_state_atomic(prealloc);
677 err = split_state(tree, state, prealloc, start);
679 extent_io_tree_panic(tree, err);
684 if (state->end <= end) {
685 state = clear_state_bit(tree, state, &bits, wake,
692 * | ---- desired range ---- |
694 * We need to split the extent, and clear the bit
697 if (state->start <= end && state->end > end) {
698 prealloc = alloc_extent_state_atomic(prealloc);
700 err = split_state(tree, state, prealloc, end + 1);
702 extent_io_tree_panic(tree, err);
707 clear_state_bit(tree, prealloc, &bits, wake, changeset);
713 state = clear_state_bit(tree, state, &bits, wake, changeset);
715 if (last_end == (u64)-1)
717 start = last_end + 1;
718 if (start <= end && state && !need_resched())
724 spin_unlock(&tree->lock);
725 if (gfpflags_allow_blocking(mask))
730 spin_unlock(&tree->lock);
732 free_extent_state(prealloc);
738 static void wait_on_state(struct extent_io_tree *tree,
739 struct extent_state *state)
740 __releases(tree->lock)
741 __acquires(tree->lock)
744 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
745 spin_unlock(&tree->lock);
747 spin_lock(&tree->lock);
748 finish_wait(&state->wq, &wait);
752 * waits for one or more bits to clear on a range in the state tree.
753 * The range [start, end] is inclusive.
754 * The tree lock is taken by this function
756 static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
759 struct extent_state *state;
760 struct rb_node *node;
762 btrfs_debug_check_extent_io_range(tree, start, end);
764 spin_lock(&tree->lock);
768 * this search will find all the extents that end after
771 node = tree_search(tree, start);
776 state = rb_entry(node, struct extent_state, rb_node);
778 if (state->start > end)
781 if (state->state & bits) {
782 start = state->start;
783 refcount_inc(&state->refs);
784 wait_on_state(tree, state);
785 free_extent_state(state);
788 start = state->end + 1;
793 if (!cond_resched_lock(&tree->lock)) {
794 node = rb_next(node);
799 spin_unlock(&tree->lock);
802 static void set_state_bits(struct extent_io_tree *tree,
803 struct extent_state *state,
804 unsigned *bits, struct extent_changeset *changeset)
806 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
809 set_state_cb(tree, state, bits);
810 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
811 u64 range = state->end - state->start + 1;
812 tree->dirty_bytes += range;
814 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
816 state->state |= bits_to_set;
819 static void cache_state_if_flags(struct extent_state *state,
820 struct extent_state **cached_ptr,
823 if (cached_ptr && !(*cached_ptr)) {
824 if (!flags || (state->state & flags)) {
826 refcount_inc(&state->refs);
831 static void cache_state(struct extent_state *state,
832 struct extent_state **cached_ptr)
834 return cache_state_if_flags(state, cached_ptr,
835 EXTENT_IOBITS | EXTENT_BOUNDARY);
839 * set some bits on a range in the tree. This may require allocations or
840 * sleeping, so the gfp mask is used to indicate what is allowed.
842 * If any of the exclusive bits are set, this will fail with -EEXIST if some
843 * part of the range already has the desired bits set. The start of the
844 * existing range is returned in failed_start in this case.
846 * [start, end] is inclusive This takes the tree lock.
849 static int __must_check
850 __set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
851 unsigned bits, unsigned exclusive_bits,
852 u64 *failed_start, struct extent_state **cached_state,
853 gfp_t mask, struct extent_changeset *changeset)
855 struct extent_state *state;
856 struct extent_state *prealloc = NULL;
857 struct rb_node *node;
859 struct rb_node *parent;
864 btrfs_debug_check_extent_io_range(tree, start, end);
866 bits |= EXTENT_FIRST_DELALLOC;
868 if (!prealloc && gfpflags_allow_blocking(mask)) {
870 * Don't care for allocation failure here because we might end
871 * up not needing the pre-allocated extent state at all, which
872 * is the case if we only have in the tree extent states that
873 * cover our input range and don't cover too any other range.
874 * If we end up needing a new extent state we allocate it later.
876 prealloc = alloc_extent_state(mask);
879 spin_lock(&tree->lock);
880 if (cached_state && *cached_state) {
881 state = *cached_state;
882 if (state->start <= start && state->end > start &&
883 extent_state_in_tree(state)) {
884 node = &state->rb_node;
889 * this search will find all the extents that end after
892 node = tree_search_for_insert(tree, start, &p, &parent);
894 prealloc = alloc_extent_state_atomic(prealloc);
896 err = insert_state(tree, prealloc, start, end,
897 &p, &parent, &bits, changeset);
899 extent_io_tree_panic(tree, err);
901 cache_state(prealloc, cached_state);
905 state = rb_entry(node, struct extent_state, rb_node);
907 last_start = state->start;
908 last_end = state->end;
911 * | ---- desired range ---- |
914 * Just lock what we found and keep going
916 if (state->start == start && state->end <= end) {
917 if (state->state & exclusive_bits) {
918 *failed_start = state->start;
923 set_state_bits(tree, state, &bits, changeset);
924 cache_state(state, cached_state);
925 merge_state(tree, state);
926 if (last_end == (u64)-1)
928 start = last_end + 1;
929 state = next_state(state);
930 if (start < end && state && state->start == start &&
937 * | ---- desired range ---- |
940 * | ------------- state -------------- |
942 * We need to split the extent we found, and may flip bits on
945 * If the extent we found extends past our
946 * range, we just split and search again. It'll get split
947 * again the next time though.
949 * If the extent we found is inside our range, we set the
952 if (state->start < start) {
953 if (state->state & exclusive_bits) {
954 *failed_start = start;
959 prealloc = alloc_extent_state_atomic(prealloc);
961 err = split_state(tree, state, prealloc, start);
963 extent_io_tree_panic(tree, err);
968 if (state->end <= end) {
969 set_state_bits(tree, state, &bits, changeset);
970 cache_state(state, cached_state);
971 merge_state(tree, state);
972 if (last_end == (u64)-1)
974 start = last_end + 1;
975 state = next_state(state);
976 if (start < end && state && state->start == start &&
983 * | ---- desired range ---- |
984 * | state | or | state |
986 * There's a hole, we need to insert something in it and
987 * ignore the extent we found.
989 if (state->start > start) {
991 if (end < last_start)
994 this_end = last_start - 1;
996 prealloc = alloc_extent_state_atomic(prealloc);
1000 * Avoid to free 'prealloc' if it can be merged with
1003 err = insert_state(tree, prealloc, start, this_end,
1004 NULL, NULL, &bits, changeset);
1006 extent_io_tree_panic(tree, err);
1008 cache_state(prealloc, cached_state);
1010 start = this_end + 1;
1014 * | ---- desired range ---- |
1016 * We need to split the extent, and set the bit
1019 if (state->start <= end && state->end > end) {
1020 if (state->state & exclusive_bits) {
1021 *failed_start = start;
1026 prealloc = alloc_extent_state_atomic(prealloc);
1028 err = split_state(tree, state, prealloc, end + 1);
1030 extent_io_tree_panic(tree, err);
1032 set_state_bits(tree, prealloc, &bits, changeset);
1033 cache_state(prealloc, cached_state);
1034 merge_state(tree, prealloc);
1042 spin_unlock(&tree->lock);
1043 if (gfpflags_allow_blocking(mask))
1048 spin_unlock(&tree->lock);
1050 free_extent_state(prealloc);
1056 int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1057 unsigned bits, u64 * failed_start,
1058 struct extent_state **cached_state, gfp_t mask)
1060 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
1061 cached_state, mask, NULL);
1066 * convert_extent_bit - convert all bits in a given range from one bit to
1068 * @tree: the io tree to search
1069 * @start: the start offset in bytes
1070 * @end: the end offset in bytes (inclusive)
1071 * @bits: the bits to set in this range
1072 * @clear_bits: the bits to clear in this range
1073 * @cached_state: state that we're going to cache
1075 * This will go through and set bits for the given range. If any states exist
1076 * already in this range they are set with the given bit and cleared of the
1077 * clear_bits. This is only meant to be used by things that are mergeable, ie
1078 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1079 * boundary bits like LOCK.
1081 * All allocations are done with GFP_NOFS.
1083 int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1084 unsigned bits, unsigned clear_bits,
1085 struct extent_state **cached_state)
1087 struct extent_state *state;
1088 struct extent_state *prealloc = NULL;
1089 struct rb_node *node;
1091 struct rb_node *parent;
1095 bool first_iteration = true;
1097 btrfs_debug_check_extent_io_range(tree, start, end);
1102 * Best effort, don't worry if extent state allocation fails
1103 * here for the first iteration. We might have a cached state
1104 * that matches exactly the target range, in which case no
1105 * extent state allocations are needed. We'll only know this
1106 * after locking the tree.
1108 prealloc = alloc_extent_state(GFP_NOFS);
1109 if (!prealloc && !first_iteration)
1113 spin_lock(&tree->lock);
1114 if (cached_state && *cached_state) {
1115 state = *cached_state;
1116 if (state->start <= start && state->end > start &&
1117 extent_state_in_tree(state)) {
1118 node = &state->rb_node;
1124 * this search will find all the extents that end after
1127 node = tree_search_for_insert(tree, start, &p, &parent);
1129 prealloc = alloc_extent_state_atomic(prealloc);
1134 err = insert_state(tree, prealloc, start, end,
1135 &p, &parent, &bits, NULL);
1137 extent_io_tree_panic(tree, err);
1138 cache_state(prealloc, cached_state);
1142 state = rb_entry(node, struct extent_state, rb_node);
1144 last_start = state->start;
1145 last_end = state->end;
1148 * | ---- desired range ---- |
1151 * Just lock what we found and keep going
1153 if (state->start == start && state->end <= end) {
1154 set_state_bits(tree, state, &bits, NULL);
1155 cache_state(state, cached_state);
1156 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
1157 if (last_end == (u64)-1)
1159 start = last_end + 1;
1160 if (start < end && state && state->start == start &&
1167 * | ---- desired range ---- |
1170 * | ------------- state -------------- |
1172 * We need to split the extent we found, and may flip bits on
1175 * If the extent we found extends past our
1176 * range, we just split and search again. It'll get split
1177 * again the next time though.
1179 * If the extent we found is inside our range, we set the
1180 * desired bit on it.
1182 if (state->start < start) {
1183 prealloc = alloc_extent_state_atomic(prealloc);
1188 err = split_state(tree, state, prealloc, start);
1190 extent_io_tree_panic(tree, err);
1194 if (state->end <= end) {
1195 set_state_bits(tree, state, &bits, NULL);
1196 cache_state(state, cached_state);
1197 state = clear_state_bit(tree, state, &clear_bits, 0,
1199 if (last_end == (u64)-1)
1201 start = last_end + 1;
1202 if (start < end && state && state->start == start &&
1209 * | ---- desired range ---- |
1210 * | state | or | state |
1212 * There's a hole, we need to insert something in it and
1213 * ignore the extent we found.
1215 if (state->start > start) {
1217 if (end < last_start)
1220 this_end = last_start - 1;
1222 prealloc = alloc_extent_state_atomic(prealloc);
1229 * Avoid to free 'prealloc' if it can be merged with
1232 err = insert_state(tree, prealloc, start, this_end,
1233 NULL, NULL, &bits, NULL);
1235 extent_io_tree_panic(tree, err);
1236 cache_state(prealloc, cached_state);
1238 start = this_end + 1;
1242 * | ---- desired range ---- |
1244 * We need to split the extent, and set the bit
1247 if (state->start <= end && state->end > end) {
1248 prealloc = alloc_extent_state_atomic(prealloc);
1254 err = split_state(tree, state, prealloc, end + 1);
1256 extent_io_tree_panic(tree, err);
1258 set_state_bits(tree, prealloc, &bits, NULL);
1259 cache_state(prealloc, cached_state);
1260 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
1268 spin_unlock(&tree->lock);
1270 first_iteration = false;
1274 spin_unlock(&tree->lock);
1276 free_extent_state(prealloc);
1281 /* wrappers around set/clear extent bit */
1282 int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1283 unsigned bits, struct extent_changeset *changeset)
1286 * We don't support EXTENT_LOCKED yet, as current changeset will
1287 * record any bits changed, so for EXTENT_LOCKED case, it will
1288 * either fail with -EEXIST or changeset will record the whole
1291 BUG_ON(bits & EXTENT_LOCKED);
1293 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
1297 int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1298 unsigned bits, int wake, int delete,
1299 struct extent_state **cached)
1301 return __clear_extent_bit(tree, start, end, bits, wake, delete,
1302 cached, GFP_NOFS, NULL);
1305 int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1306 unsigned bits, struct extent_changeset *changeset)
1309 * Don't support EXTENT_LOCKED case, same reason as
1310 * set_record_extent_bits().
1312 BUG_ON(bits & EXTENT_LOCKED);
1314 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
1319 * either insert or lock state struct between start and end use mask to tell
1320 * us if waiting is desired.
1322 int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1323 struct extent_state **cached_state)
1329 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
1330 EXTENT_LOCKED, &failed_start,
1331 cached_state, GFP_NOFS, NULL);
1332 if (err == -EEXIST) {
1333 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1334 start = failed_start;
1337 WARN_ON(start > end);
1342 int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
1347 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1348 &failed_start, NULL, GFP_NOFS, NULL);
1349 if (err == -EEXIST) {
1350 if (failed_start > start)
1351 clear_extent_bit(tree, start, failed_start - 1,
1352 EXTENT_LOCKED, 1, 0, NULL);
1358 void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1360 unsigned long index = start >> PAGE_SHIFT;
1361 unsigned long end_index = end >> PAGE_SHIFT;
1364 while (index <= end_index) {
1365 page = find_get_page(inode->i_mapping, index);
1366 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1367 clear_page_dirty_for_io(page);
1373 void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1375 unsigned long index = start >> PAGE_SHIFT;
1376 unsigned long end_index = end >> PAGE_SHIFT;
1379 while (index <= end_index) {
1380 page = find_get_page(inode->i_mapping, index);
1381 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1382 __set_page_dirty_nobuffers(page);
1383 account_page_redirty(page);
1390 * helper function to set both pages and extents in the tree writeback
1392 static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
1394 tree->ops->set_range_writeback(tree->private_data, start, end);
1397 /* find the first state struct with 'bits' set after 'start', and
1398 * return it. tree->lock must be held. NULL will returned if
1399 * nothing was found after 'start'
1401 static struct extent_state *
1402 find_first_extent_bit_state(struct extent_io_tree *tree,
1403 u64 start, unsigned bits)
1405 struct rb_node *node;
1406 struct extent_state *state;
1409 * this search will find all the extents that end after
1412 node = tree_search(tree, start);
1417 state = rb_entry(node, struct extent_state, rb_node);
1418 if (state->end >= start && (state->state & bits))
1421 node = rb_next(node);
1430 * find the first offset in the io tree with 'bits' set. zero is
1431 * returned if we find something, and *start_ret and *end_ret are
1432 * set to reflect the state struct that was found.
1434 * If nothing was found, 1 is returned. If found something, return 0.
1436 int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
1437 u64 *start_ret, u64 *end_ret, unsigned bits,
1438 struct extent_state **cached_state)
1440 struct extent_state *state;
1444 spin_lock(&tree->lock);
1445 if (cached_state && *cached_state) {
1446 state = *cached_state;
1447 if (state->end == start - 1 && extent_state_in_tree(state)) {
1448 n = rb_next(&state->rb_node);
1450 state = rb_entry(n, struct extent_state,
1452 if (state->state & bits)
1456 free_extent_state(*cached_state);
1457 *cached_state = NULL;
1460 free_extent_state(*cached_state);
1461 *cached_state = NULL;
1464 state = find_first_extent_bit_state(tree, start, bits);
1467 cache_state_if_flags(state, cached_state, 0);
1468 *start_ret = state->start;
1469 *end_ret = state->end;
1473 spin_unlock(&tree->lock);
1478 * find a contiguous range of bytes in the file marked as delalloc, not
1479 * more than 'max_bytes'. start and end are used to return the range,
1481 * 1 is returned if we find something, 0 if nothing was in the tree
1483 static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
1484 u64 *start, u64 *end, u64 max_bytes,
1485 struct extent_state **cached_state)
1487 struct rb_node *node;
1488 struct extent_state *state;
1489 u64 cur_start = *start;
1491 u64 total_bytes = 0;
1493 spin_lock(&tree->lock);
1496 * this search will find all the extents that end after
1499 node = tree_search(tree, cur_start);
1507 state = rb_entry(node, struct extent_state, rb_node);
1508 if (found && (state->start != cur_start ||
1509 (state->state & EXTENT_BOUNDARY))) {
1512 if (!(state->state & EXTENT_DELALLOC)) {
1518 *start = state->start;
1519 *cached_state = state;
1520 refcount_inc(&state->refs);
1524 cur_start = state->end + 1;
1525 node = rb_next(node);
1526 total_bytes += state->end - state->start + 1;
1527 if (total_bytes >= max_bytes)
1533 spin_unlock(&tree->lock);
1537 static int __process_pages_contig(struct address_space *mapping,
1538 struct page *locked_page,
1539 pgoff_t start_index, pgoff_t end_index,
1540 unsigned long page_ops, pgoff_t *index_ret);
1542 static noinline void __unlock_for_delalloc(struct inode *inode,
1543 struct page *locked_page,
1546 unsigned long index = start >> PAGE_SHIFT;
1547 unsigned long end_index = end >> PAGE_SHIFT;
1549 ASSERT(locked_page);
1550 if (index == locked_page->index && end_index == index)
1553 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1557 static noinline int lock_delalloc_pages(struct inode *inode,
1558 struct page *locked_page,
1562 unsigned long index = delalloc_start >> PAGE_SHIFT;
1563 unsigned long index_ret = index;
1564 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
1567 ASSERT(locked_page);
1568 if (index == locked_page->index && index == end_index)
1571 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1572 end_index, PAGE_LOCK, &index_ret);
1574 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1575 (u64)index_ret << PAGE_SHIFT);
1580 * find a contiguous range of bytes in the file marked as delalloc, not
1581 * more than 'max_bytes'. start and end are used to return the range,
1583 * 1 is returned if we find something, 0 if nothing was in the tree
1585 STATIC u64 find_lock_delalloc_range(struct inode *inode,
1586 struct extent_io_tree *tree,
1587 struct page *locked_page, u64 *start,
1588 u64 *end, u64 max_bytes)
1593 struct extent_state *cached_state = NULL;
1598 /* step one, find a bunch of delalloc bytes starting at start */
1599 delalloc_start = *start;
1601 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
1602 max_bytes, &cached_state);
1603 if (!found || delalloc_end <= *start) {
1604 *start = delalloc_start;
1605 *end = delalloc_end;
1606 free_extent_state(cached_state);
1611 * start comes from the offset of locked_page. We have to lock
1612 * pages in order, so we can't process delalloc bytes before
1615 if (delalloc_start < *start)
1616 delalloc_start = *start;
1619 * make sure to limit the number of pages we try to lock down
1621 if (delalloc_end + 1 - delalloc_start > max_bytes)
1622 delalloc_end = delalloc_start + max_bytes - 1;
1624 /* step two, lock all the pages after the page that has start */
1625 ret = lock_delalloc_pages(inode, locked_page,
1626 delalloc_start, delalloc_end);
1627 if (ret == -EAGAIN) {
1628 /* some of the pages are gone, lets avoid looping by
1629 * shortening the size of the delalloc range we're searching
1631 free_extent_state(cached_state);
1632 cached_state = NULL;
1634 max_bytes = PAGE_SIZE;
1642 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
1644 /* step three, lock the state bits for the whole range */
1645 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
1647 /* then test to make sure it is all still delalloc */
1648 ret = test_range_bit(tree, delalloc_start, delalloc_end,
1649 EXTENT_DELALLOC, 1, cached_state);
1651 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1653 __unlock_for_delalloc(inode, locked_page,
1654 delalloc_start, delalloc_end);
1658 free_extent_state(cached_state);
1659 *start = delalloc_start;
1660 *end = delalloc_end;
1665 static int __process_pages_contig(struct address_space *mapping,
1666 struct page *locked_page,
1667 pgoff_t start_index, pgoff_t end_index,
1668 unsigned long page_ops, pgoff_t *index_ret)
1670 unsigned long nr_pages = end_index - start_index + 1;
1671 unsigned long pages_locked = 0;
1672 pgoff_t index = start_index;
1673 struct page *pages[16];
1678 if (page_ops & PAGE_LOCK) {
1679 ASSERT(page_ops == PAGE_LOCK);
1680 ASSERT(index_ret && *index_ret == start_index);
1683 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1684 mapping_set_error(mapping, -EIO);
1686 while (nr_pages > 0) {
1687 ret = find_get_pages_contig(mapping, index,
1688 min_t(unsigned long,
1689 nr_pages, ARRAY_SIZE(pages)), pages);
1692 * Only if we're going to lock these pages,
1693 * can we find nothing at @index.
1695 ASSERT(page_ops & PAGE_LOCK);
1700 for (i = 0; i < ret; i++) {
1701 if (page_ops & PAGE_SET_PRIVATE2)
1702 SetPagePrivate2(pages[i]);
1704 if (pages[i] == locked_page) {
1709 if (page_ops & PAGE_CLEAR_DIRTY)
1710 clear_page_dirty_for_io(pages[i]);
1711 if (page_ops & PAGE_SET_WRITEBACK)
1712 set_page_writeback(pages[i]);
1713 if (page_ops & PAGE_SET_ERROR)
1714 SetPageError(pages[i]);
1715 if (page_ops & PAGE_END_WRITEBACK)
1716 end_page_writeback(pages[i]);
1717 if (page_ops & PAGE_UNLOCK)
1718 unlock_page(pages[i]);
1719 if (page_ops & PAGE_LOCK) {
1720 lock_page(pages[i]);
1721 if (!PageDirty(pages[i]) ||
1722 pages[i]->mapping != mapping) {
1723 unlock_page(pages[i]);
1737 if (err && index_ret)
1738 *index_ret = start_index + pages_locked - 1;
1742 void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1743 u64 delalloc_end, struct page *locked_page,
1744 unsigned clear_bits,
1745 unsigned long page_ops)
1747 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
1750 __process_pages_contig(inode->i_mapping, locked_page,
1751 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
1756 * count the number of bytes in the tree that have a given bit(s)
1757 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1758 * cached. The total number found is returned.
1760 u64 count_range_bits(struct extent_io_tree *tree,
1761 u64 *start, u64 search_end, u64 max_bytes,
1762 unsigned bits, int contig)
1764 struct rb_node *node;
1765 struct extent_state *state;
1766 u64 cur_start = *start;
1767 u64 total_bytes = 0;
1771 if (WARN_ON(search_end <= cur_start))
1774 spin_lock(&tree->lock);
1775 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1776 total_bytes = tree->dirty_bytes;
1780 * this search will find all the extents that end after
1783 node = tree_search(tree, cur_start);
1788 state = rb_entry(node, struct extent_state, rb_node);
1789 if (state->start > search_end)
1791 if (contig && found && state->start > last + 1)
1793 if (state->end >= cur_start && (state->state & bits) == bits) {
1794 total_bytes += min(search_end, state->end) + 1 -
1795 max(cur_start, state->start);
1796 if (total_bytes >= max_bytes)
1799 *start = max(cur_start, state->start);
1803 } else if (contig && found) {
1806 node = rb_next(node);
1811 spin_unlock(&tree->lock);
1816 * set the private field for a given byte offset in the tree. If there isn't
1817 * an extent_state there already, this does nothing.
1819 static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
1820 struct io_failure_record *failrec)
1822 struct rb_node *node;
1823 struct extent_state *state;
1826 spin_lock(&tree->lock);
1828 * this search will find all the extents that end after
1831 node = tree_search(tree, start);
1836 state = rb_entry(node, struct extent_state, rb_node);
1837 if (state->start != start) {
1841 state->failrec = failrec;
1843 spin_unlock(&tree->lock);
1847 static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
1848 struct io_failure_record **failrec)
1850 struct rb_node *node;
1851 struct extent_state *state;
1854 spin_lock(&tree->lock);
1856 * this search will find all the extents that end after
1859 node = tree_search(tree, start);
1864 state = rb_entry(node, struct extent_state, rb_node);
1865 if (state->start != start) {
1869 *failrec = state->failrec;
1871 spin_unlock(&tree->lock);
1876 * searches a range in the state tree for a given mask.
1877 * If 'filled' == 1, this returns 1 only if every extent in the tree
1878 * has the bits set. Otherwise, 1 is returned if any bit in the
1879 * range is found set.
1881 int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
1882 unsigned bits, int filled, struct extent_state *cached)
1884 struct extent_state *state = NULL;
1885 struct rb_node *node;
1888 spin_lock(&tree->lock);
1889 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
1890 cached->end > start)
1891 node = &cached->rb_node;
1893 node = tree_search(tree, start);
1894 while (node && start <= end) {
1895 state = rb_entry(node, struct extent_state, rb_node);
1897 if (filled && state->start > start) {
1902 if (state->start > end)
1905 if (state->state & bits) {
1909 } else if (filled) {
1914 if (state->end == (u64)-1)
1917 start = state->end + 1;
1920 node = rb_next(node);
1927 spin_unlock(&tree->lock);
1932 * helper function to set a given page up to date if all the
1933 * extents in the tree for that page are up to date
1935 static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
1937 u64 start = page_offset(page);
1938 u64 end = start + PAGE_SIZE - 1;
1939 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
1940 SetPageUptodate(page);
1943 int free_io_failure(struct extent_io_tree *failure_tree,
1944 struct extent_io_tree *io_tree,
1945 struct io_failure_record *rec)
1950 set_state_failrec(failure_tree, rec->start, NULL);
1951 ret = clear_extent_bits(failure_tree, rec->start,
1952 rec->start + rec->len - 1,
1953 EXTENT_LOCKED | EXTENT_DIRTY);
1957 ret = clear_extent_bits(io_tree, rec->start,
1958 rec->start + rec->len - 1,
1968 * this bypasses the standard btrfs submit functions deliberately, as
1969 * the standard behavior is to write all copies in a raid setup. here we only
1970 * want to write the one bad copy. so we do the mapping for ourselves and issue
1971 * submit_bio directly.
1972 * to avoid any synchronization issues, wait for the data after writing, which
1973 * actually prevents the read that triggered the error from finishing.
1974 * currently, there can be no more than two copies of every data bit. thus,
1975 * exactly one rewrite is required.
1977 int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1978 u64 length, u64 logical, struct page *page,
1979 unsigned int pg_offset, int mirror_num)
1982 struct btrfs_device *dev;
1985 struct btrfs_bio *bbio = NULL;
1988 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
1989 BUG_ON(!mirror_num);
1991 bio = btrfs_io_bio_alloc(1);
1992 bio->bi_iter.bi_size = 0;
1993 map_length = length;
1996 * Avoid races with device replace and make sure our bbio has devices
1997 * associated to its stripes that don't go away while we are doing the
1998 * read repair operation.
2000 btrfs_bio_counter_inc_blocked(fs_info);
2001 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
2003 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2004 * to update all raid stripes, but here we just want to correct
2005 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2006 * stripe's dev and sector.
2008 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2009 &map_length, &bbio, 0);
2011 btrfs_bio_counter_dec(fs_info);
2015 ASSERT(bbio->mirror_num == 1);
2017 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2018 &map_length, &bbio, mirror_num);
2020 btrfs_bio_counter_dec(fs_info);
2024 BUG_ON(mirror_num != bbio->mirror_num);
2027 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
2028 bio->bi_iter.bi_sector = sector;
2029 dev = bbio->stripes[bbio->mirror_num - 1].dev;
2030 btrfs_put_bbio(bbio);
2031 if (!dev || !dev->bdev ||
2032 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
2033 btrfs_bio_counter_dec(fs_info);
2037 bio_set_dev(bio, dev->bdev);
2038 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
2039 bio_add_page(bio, page, length, pg_offset);
2041 if (btrfsic_submit_bio_wait(bio)) {
2042 /* try to remap that extent elsewhere? */
2043 btrfs_bio_counter_dec(fs_info);
2045 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
2049 btrfs_info_rl_in_rcu(fs_info,
2050 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
2052 rcu_str_deref(dev->name), sector);
2053 btrfs_bio_counter_dec(fs_info);
2058 int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2059 struct extent_buffer *eb, int mirror_num)
2061 u64 start = eb->start;
2062 unsigned long i, num_pages = num_extent_pages(eb);
2065 if (sb_rdonly(fs_info->sb))
2068 for (i = 0; i < num_pages; i++) {
2069 struct page *p = eb->pages[i];
2071 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
2072 start - page_offset(p), mirror_num);
2082 * each time an IO finishes, we do a fast check in the IO failure tree
2083 * to see if we need to process or clean up an io_failure_record
2085 int clean_io_failure(struct btrfs_fs_info *fs_info,
2086 struct extent_io_tree *failure_tree,
2087 struct extent_io_tree *io_tree, u64 start,
2088 struct page *page, u64 ino, unsigned int pg_offset)
2091 struct io_failure_record *failrec;
2092 struct extent_state *state;
2097 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2102 ret = get_state_failrec(failure_tree, start, &failrec);
2106 BUG_ON(!failrec->this_mirror);
2108 if (failrec->in_validation) {
2109 /* there was no real error, just free the record */
2110 btrfs_debug(fs_info,
2111 "clean_io_failure: freeing dummy error at %llu",
2115 if (sb_rdonly(fs_info->sb))
2118 spin_lock(&io_tree->lock);
2119 state = find_first_extent_bit_state(io_tree,
2122 spin_unlock(&io_tree->lock);
2124 if (state && state->start <= failrec->start &&
2125 state->end >= failrec->start + failrec->len - 1) {
2126 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2128 if (num_copies > 1) {
2129 repair_io_failure(fs_info, ino, start, failrec->len,
2130 failrec->logical, page, pg_offset,
2131 failrec->failed_mirror);
2136 free_io_failure(failure_tree, io_tree, failrec);
2142 * Can be called when
2143 * - hold extent lock
2144 * - under ordered extent
2145 * - the inode is freeing
2147 void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
2149 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
2150 struct io_failure_record *failrec;
2151 struct extent_state *state, *next;
2153 if (RB_EMPTY_ROOT(&failure_tree->state))
2156 spin_lock(&failure_tree->lock);
2157 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2159 if (state->start > end)
2162 ASSERT(state->end <= end);
2164 next = next_state(state);
2166 failrec = state->failrec;
2167 free_extent_state(state);
2172 spin_unlock(&failure_tree->lock);
2175 int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2176 struct io_failure_record **failrec_ret)
2178 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2179 struct io_failure_record *failrec;
2180 struct extent_map *em;
2181 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2182 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2183 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2187 ret = get_state_failrec(failure_tree, start, &failrec);
2189 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2193 failrec->start = start;
2194 failrec->len = end - start + 1;
2195 failrec->this_mirror = 0;
2196 failrec->bio_flags = 0;
2197 failrec->in_validation = 0;
2199 read_lock(&em_tree->lock);
2200 em = lookup_extent_mapping(em_tree, start, failrec->len);
2202 read_unlock(&em_tree->lock);
2207 if (em->start > start || em->start + em->len <= start) {
2208 free_extent_map(em);
2211 read_unlock(&em_tree->lock);
2217 logical = start - em->start;
2218 logical = em->block_start + logical;
2219 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2220 logical = em->block_start;
2221 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2222 extent_set_compress_type(&failrec->bio_flags,
2226 btrfs_debug(fs_info,
2227 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2228 logical, start, failrec->len);
2230 failrec->logical = logical;
2231 free_extent_map(em);
2233 /* set the bits in the private failure tree */
2234 ret = set_extent_bits(failure_tree, start, end,
2235 EXTENT_LOCKED | EXTENT_DIRTY);
2237 ret = set_state_failrec(failure_tree, start, failrec);
2238 /* set the bits in the inode's tree */
2240 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
2246 btrfs_debug(fs_info,
2247 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2248 failrec->logical, failrec->start, failrec->len,
2249 failrec->in_validation);
2251 * when data can be on disk more than twice, add to failrec here
2252 * (e.g. with a list for failed_mirror) to make
2253 * clean_io_failure() clean all those errors at once.
2257 *failrec_ret = failrec;
2262 bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
2263 struct io_failure_record *failrec, int failed_mirror)
2265 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2268 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
2269 if (num_copies == 1) {
2271 * we only have a single copy of the data, so don't bother with
2272 * all the retry and error correction code that follows. no
2273 * matter what the error is, it is very likely to persist.
2275 btrfs_debug(fs_info,
2276 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2277 num_copies, failrec->this_mirror, failed_mirror);
2282 * there are two premises:
2283 * a) deliver good data to the caller
2284 * b) correct the bad sectors on disk
2286 if (failed_bio_pages > 1) {
2288 * to fulfill b), we need to know the exact failing sectors, as
2289 * we don't want to rewrite any more than the failed ones. thus,
2290 * we need separate read requests for the failed bio
2292 * if the following BUG_ON triggers, our validation request got
2293 * merged. we need separate requests for our algorithm to work.
2295 BUG_ON(failrec->in_validation);
2296 failrec->in_validation = 1;
2297 failrec->this_mirror = failed_mirror;
2300 * we're ready to fulfill a) and b) alongside. get a good copy
2301 * of the failed sector and if we succeed, we have setup
2302 * everything for repair_io_failure to do the rest for us.
2304 if (failrec->in_validation) {
2305 BUG_ON(failrec->this_mirror != failed_mirror);
2306 failrec->in_validation = 0;
2307 failrec->this_mirror = 0;
2309 failrec->failed_mirror = failed_mirror;
2310 failrec->this_mirror++;
2311 if (failrec->this_mirror == failed_mirror)
2312 failrec->this_mirror++;
2315 if (failrec->this_mirror > num_copies) {
2316 btrfs_debug(fs_info,
2317 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2318 num_copies, failrec->this_mirror, failed_mirror);
2326 struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2327 struct io_failure_record *failrec,
2328 struct page *page, int pg_offset, int icsum,
2329 bio_end_io_t *endio_func, void *data)
2331 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2333 struct btrfs_io_bio *btrfs_failed_bio;
2334 struct btrfs_io_bio *btrfs_bio;
2336 bio = btrfs_io_bio_alloc(1);
2337 bio->bi_end_io = endio_func;
2338 bio->bi_iter.bi_sector = failrec->logical >> 9;
2339 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
2340 bio->bi_iter.bi_size = 0;
2341 bio->bi_private = data;
2343 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2344 if (btrfs_failed_bio->csum) {
2345 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2347 btrfs_bio = btrfs_io_bio(bio);
2348 btrfs_bio->csum = btrfs_bio->csum_inline;
2350 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
2354 bio_add_page(bio, page, failrec->len, pg_offset);
2360 * this is a generic handler for readpage errors (default
2361 * readpage_io_failed_hook). if other copies exist, read those and write back
2362 * good data to the failed position. does not investigate in remapping the
2363 * failed extent elsewhere, hoping the device will be smart enough to do this as
2367 static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2368 struct page *page, u64 start, u64 end,
2371 struct io_failure_record *failrec;
2372 struct inode *inode = page->mapping->host;
2373 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2374 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2377 blk_status_t status;
2379 unsigned failed_bio_pages = bio_pages_all(failed_bio);
2381 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
2383 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2387 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
2389 free_io_failure(failure_tree, tree, failrec);
2393 if (failed_bio_pages > 1)
2394 read_mode |= REQ_FAILFAST_DEV;
2396 phy_offset >>= inode->i_sb->s_blocksize_bits;
2397 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2398 start - page_offset(page),
2399 (int)phy_offset, failed_bio->bi_end_io,
2401 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
2403 btrfs_debug(btrfs_sb(inode->i_sb),
2404 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2405 read_mode, failrec->this_mirror, failrec->in_validation);
2407 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
2408 failrec->bio_flags, 0);
2410 free_io_failure(failure_tree, tree, failrec);
2412 ret = blk_status_to_errno(status);
2418 /* lots and lots of room for performance fixes in the end_bio funcs */
2420 void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2422 int uptodate = (err == 0);
2423 struct extent_io_tree *tree;
2426 tree = &BTRFS_I(page->mapping->host)->io_tree;
2428 if (tree->ops && tree->ops->writepage_end_io_hook)
2429 tree->ops->writepage_end_io_hook(page, start, end, NULL,
2433 ClearPageUptodate(page);
2435 ret = err < 0 ? err : -EIO;
2436 mapping_set_error(page->mapping, ret);
2441 * after a writepage IO is done, we need to:
2442 * clear the uptodate bits on error
2443 * clear the writeback bits in the extent tree for this IO
2444 * end_page_writeback if the page has no more pending IO
2446 * Scheduling is not allowed, so the extent state tree is expected
2447 * to have one and only one object corresponding to this IO.
2449 static void end_bio_extent_writepage(struct bio *bio)
2451 int error = blk_status_to_errno(bio->bi_status);
2452 struct bio_vec *bvec;
2457 ASSERT(!bio_flagged(bio, BIO_CLONED));
2458 bio_for_each_segment_all(bvec, bio, i) {
2459 struct page *page = bvec->bv_page;
2460 struct inode *inode = page->mapping->host;
2461 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2463 /* We always issue full-page reads, but if some block
2464 * in a page fails to read, blk_update_request() will
2465 * advance bv_offset and adjust bv_len to compensate.
2466 * Print a warning for nonzero offsets, and an error
2467 * if they don't add up to a full page. */
2468 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2469 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
2471 "partial page write in btrfs with offset %u and length %u",
2472 bvec->bv_offset, bvec->bv_len);
2475 "incomplete page write in btrfs with offset %u and length %u",
2476 bvec->bv_offset, bvec->bv_len);
2479 start = page_offset(page);
2480 end = start + bvec->bv_offset + bvec->bv_len - 1;
2482 end_extent_writepage(page, error, start, end);
2483 end_page_writeback(page);
2490 endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2493 struct extent_state *cached = NULL;
2494 u64 end = start + len - 1;
2496 if (uptodate && tree->track_uptodate)
2497 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2498 unlock_extent_cached_atomic(tree, start, end, &cached);
2502 * after a readpage IO is done, we need to:
2503 * clear the uptodate bits on error
2504 * set the uptodate bits if things worked
2505 * set the page up to date if all extents in the tree are uptodate
2506 * clear the lock bit in the extent tree
2507 * unlock the page if there are no other extents locked for it
2509 * Scheduling is not allowed, so the extent state tree is expected
2510 * to have one and only one object corresponding to this IO.
2512 static void end_bio_extent_readpage(struct bio *bio)
2514 struct bio_vec *bvec;
2515 int uptodate = !bio->bi_status;
2516 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
2517 struct extent_io_tree *tree, *failure_tree;
2522 u64 extent_start = 0;
2528 ASSERT(!bio_flagged(bio, BIO_CLONED));
2529 bio_for_each_segment_all(bvec, bio, i) {
2530 struct page *page = bvec->bv_page;
2531 struct inode *inode = page->mapping->host;
2532 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2534 btrfs_debug(fs_info,
2535 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
2536 (u64)bio->bi_iter.bi_sector, bio->bi_status,
2537 io_bio->mirror_num);
2538 tree = &BTRFS_I(inode)->io_tree;
2539 failure_tree = &BTRFS_I(inode)->io_failure_tree;
2541 /* We always issue full-page reads, but if some block
2542 * in a page fails to read, blk_update_request() will
2543 * advance bv_offset and adjust bv_len to compensate.
2544 * Print a warning for nonzero offsets, and an error
2545 * if they don't add up to a full page. */
2546 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2547 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
2549 "partial page read in btrfs with offset %u and length %u",
2550 bvec->bv_offset, bvec->bv_len);
2553 "incomplete page read in btrfs with offset %u and length %u",
2554 bvec->bv_offset, bvec->bv_len);
2557 start = page_offset(page);
2558 end = start + bvec->bv_offset + bvec->bv_len - 1;
2561 mirror = io_bio->mirror_num;
2562 if (likely(uptodate && tree->ops)) {
2563 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2569 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2570 failure_tree, tree, start,
2572 btrfs_ino(BTRFS_I(inode)), 0);
2575 if (likely(uptodate))
2579 ret = tree->ops->readpage_io_failed_hook(page, mirror);
2580 if (ret == -EAGAIN) {
2582 * Data inode's readpage_io_failed_hook() always
2585 * The generic bio_readpage_error handles errors
2586 * the following way: If possible, new read
2587 * requests are created and submitted and will
2588 * end up in end_bio_extent_readpage as well (if
2589 * we're lucky, not in the !uptodate case). In
2590 * that case it returns 0 and we just go on with
2591 * the next page in our bio. If it can't handle
2592 * the error it will return -EIO and we remain
2593 * responsible for that page.
2595 ret = bio_readpage_error(bio, offset, page,
2596 start, end, mirror);
2598 uptodate = !bio->bi_status;
2605 * metadata's readpage_io_failed_hook() always returns
2606 * -EIO and fixes nothing. -EIO is also returned if
2607 * data inode error could not be fixed.
2609 ASSERT(ret == -EIO);
2612 if (likely(uptodate)) {
2613 loff_t i_size = i_size_read(inode);
2614 pgoff_t end_index = i_size >> PAGE_SHIFT;
2617 /* Zero out the end if this page straddles i_size */
2618 off = i_size & (PAGE_SIZE-1);
2619 if (page->index == end_index && off)
2620 zero_user_segment(page, off, PAGE_SIZE);
2621 SetPageUptodate(page);
2623 ClearPageUptodate(page);
2629 if (unlikely(!uptodate)) {
2631 endio_readpage_release_extent(tree,
2637 endio_readpage_release_extent(tree, start,
2638 end - start + 1, 0);
2639 } else if (!extent_len) {
2640 extent_start = start;
2641 extent_len = end + 1 - start;
2642 } else if (extent_start + extent_len == start) {
2643 extent_len += end + 1 - start;
2645 endio_readpage_release_extent(tree, extent_start,
2646 extent_len, uptodate);
2647 extent_start = start;
2648 extent_len = end + 1 - start;
2653 endio_readpage_release_extent(tree, extent_start, extent_len,
2656 io_bio->end_io(io_bio, blk_status_to_errno(bio->bi_status));
2661 * Initialize the members up to but not including 'bio'. Use after allocating a
2662 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2663 * 'bio' because use of __GFP_ZERO is not supported.
2665 static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
2667 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2671 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2672 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2673 * for the appropriate container_of magic
2675 struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
2679 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
2680 bio_set_dev(bio, bdev);
2681 bio->bi_iter.bi_sector = first_byte >> 9;
2682 btrfs_io_bio_init(btrfs_io_bio(bio));
2686 struct bio *btrfs_bio_clone(struct bio *bio)
2688 struct btrfs_io_bio *btrfs_bio;
2691 /* Bio allocation backed by a bioset does not fail */
2692 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
2693 btrfs_bio = btrfs_io_bio(new);
2694 btrfs_io_bio_init(btrfs_bio);
2695 btrfs_bio->iter = bio->bi_iter;
2699 struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
2703 /* Bio allocation backed by a bioset does not fail */
2704 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
2705 btrfs_io_bio_init(btrfs_io_bio(bio));
2709 struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
2712 struct btrfs_io_bio *btrfs_bio;
2714 /* this will never fail when it's backed by a bioset */
2715 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
2718 btrfs_bio = btrfs_io_bio(bio);
2719 btrfs_io_bio_init(btrfs_bio);
2721 bio_trim(bio, offset >> 9, size >> 9);
2722 btrfs_bio->iter = bio->bi_iter;
2726 static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2727 unsigned long bio_flags)
2729 blk_status_t ret = 0;
2730 struct bio_vec *bvec = bio_last_bvec_all(bio);
2731 struct page *page = bvec->bv_page;
2732 struct extent_io_tree *tree = bio->bi_private;
2735 start = page_offset(page) + bvec->bv_offset;
2737 bio->bi_private = NULL;
2740 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
2741 mirror_num, bio_flags, start);
2743 btrfsic_submit_bio(bio);
2745 return blk_status_to_errno(ret);
2749 * @opf: bio REQ_OP_* and REQ_* flags as one value
2750 * @tree: tree so we can call our merge_bio hook
2751 * @wbc: optional writeback control for io accounting
2752 * @page: page to add to the bio
2753 * @pg_offset: offset of the new bio or to check whether we are adding
2754 * a contiguous page to the previous one
2755 * @size: portion of page that we want to write
2756 * @offset: starting offset in the page
2757 * @bdev: attach newly created bios to this bdev
2758 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
2759 * @end_io_func: end_io callback for new bio
2760 * @mirror_num: desired mirror to read/write
2761 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2762 * @bio_flags: flags of the current bio to see if we can merge them
2764 static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
2765 struct writeback_control *wbc,
2766 struct page *page, u64 offset,
2767 size_t size, unsigned long pg_offset,
2768 struct block_device *bdev,
2769 struct bio **bio_ret,
2770 bio_end_io_t end_io_func,
2772 unsigned long prev_bio_flags,
2773 unsigned long bio_flags,
2774 bool force_bio_submit)
2778 size_t page_size = min_t(size_t, size, PAGE_SIZE);
2779 sector_t sector = offset >> 9;
2785 bool can_merge = true;
2788 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
2789 contig = bio->bi_iter.bi_sector == sector;
2791 contig = bio_end_sector(bio) == sector;
2793 if (tree->ops && tree->ops->merge_bio_hook(page, offset,
2794 page_size, bio, bio_flags))
2797 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
2799 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
2800 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
2808 wbc_account_io(wbc, page, page_size);
2813 bio = btrfs_bio_alloc(bdev, offset);
2814 bio_add_page(bio, page, page_size, pg_offset);
2815 bio->bi_end_io = end_io_func;
2816 bio->bi_private = tree;
2817 bio->bi_write_hint = page->mapping->host->i_write_hint;
2820 wbc_init_bio(wbc, bio);
2821 wbc_account_io(wbc, page, page_size);
2829 static void attach_extent_buffer_page(struct extent_buffer *eb,
2832 if (!PagePrivate(page)) {
2833 SetPagePrivate(page);
2835 set_page_private(page, (unsigned long)eb);
2837 WARN_ON(page->private != (unsigned long)eb);
2841 void set_page_extent_mapped(struct page *page)
2843 if (!PagePrivate(page)) {
2844 SetPagePrivate(page);
2846 set_page_private(page, EXTENT_PAGE_PRIVATE);
2850 static struct extent_map *
2851 __get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2852 u64 start, u64 len, get_extent_t *get_extent,
2853 struct extent_map **em_cached)
2855 struct extent_map *em;
2857 if (em_cached && *em_cached) {
2859 if (extent_map_in_tree(em) && start >= em->start &&
2860 start < extent_map_end(em)) {
2861 refcount_inc(&em->refs);
2865 free_extent_map(em);
2869 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
2870 if (em_cached && !IS_ERR_OR_NULL(em)) {
2872 refcount_inc(&em->refs);
2878 * basic readpage implementation. Locked extent state structs are inserted
2879 * into the tree that are removed when the IO is done (by the end_io
2881 * XXX JDM: This needs looking at to ensure proper page locking
2882 * return 0 on success, otherwise return error
2884 static int __do_readpage(struct extent_io_tree *tree,
2886 get_extent_t *get_extent,
2887 struct extent_map **em_cached,
2888 struct bio **bio, int mirror_num,
2889 unsigned long *bio_flags, unsigned int read_flags,
2892 struct inode *inode = page->mapping->host;
2893 u64 start = page_offset(page);
2894 const u64 end = start + PAGE_SIZE - 1;
2897 u64 last_byte = i_size_read(inode);
2900 struct extent_map *em;
2901 struct block_device *bdev;
2904 size_t pg_offset = 0;
2906 size_t disk_io_size;
2907 size_t blocksize = inode->i_sb->s_blocksize;
2908 unsigned long this_bio_flag = 0;
2910 set_page_extent_mapped(page);
2912 if (!PageUptodate(page)) {
2913 if (cleancache_get_page(page) == 0) {
2914 BUG_ON(blocksize != PAGE_SIZE);
2915 unlock_extent(tree, start, end);
2920 if (page->index == last_byte >> PAGE_SHIFT) {
2922 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
2925 iosize = PAGE_SIZE - zero_offset;
2926 userpage = kmap_atomic(page);
2927 memset(userpage + zero_offset, 0, iosize);
2928 flush_dcache_page(page);
2929 kunmap_atomic(userpage);
2932 while (cur <= end) {
2933 bool force_bio_submit = false;
2936 if (cur >= last_byte) {
2938 struct extent_state *cached = NULL;
2940 iosize = PAGE_SIZE - pg_offset;
2941 userpage = kmap_atomic(page);
2942 memset(userpage + pg_offset, 0, iosize);
2943 flush_dcache_page(page);
2944 kunmap_atomic(userpage);
2945 set_extent_uptodate(tree, cur, cur + iosize - 1,
2947 unlock_extent_cached(tree, cur,
2948 cur + iosize - 1, &cached);
2951 em = __get_extent_map(inode, page, pg_offset, cur,
2952 end - cur + 1, get_extent, em_cached);
2953 if (IS_ERR_OR_NULL(em)) {
2955 unlock_extent(tree, cur, end);
2958 extent_offset = cur - em->start;
2959 BUG_ON(extent_map_end(em) <= cur);
2962 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2963 this_bio_flag |= EXTENT_BIO_COMPRESSED;
2964 extent_set_compress_type(&this_bio_flag,
2968 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2969 cur_end = min(extent_map_end(em) - 1, end);
2970 iosize = ALIGN(iosize, blocksize);
2971 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2972 disk_io_size = em->block_len;
2973 offset = em->block_start;
2975 offset = em->block_start + extent_offset;
2976 disk_io_size = iosize;
2979 block_start = em->block_start;
2980 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2981 block_start = EXTENT_MAP_HOLE;
2984 * If we have a file range that points to a compressed extent
2985 * and it's followed by a consecutive file range that points to
2986 * to the same compressed extent (possibly with a different
2987 * offset and/or length, so it either points to the whole extent
2988 * or only part of it), we must make sure we do not submit a
2989 * single bio to populate the pages for the 2 ranges because
2990 * this makes the compressed extent read zero out the pages
2991 * belonging to the 2nd range. Imagine the following scenario:
2994 * [0 - 8K] [8K - 24K]
2997 * points to extent X, points to extent X,
2998 * offset 4K, length of 8K offset 0, length 16K
3000 * [extent X, compressed length = 4K uncompressed length = 16K]
3002 * If the bio to read the compressed extent covers both ranges,
3003 * it will decompress extent X into the pages belonging to the
3004 * first range and then it will stop, zeroing out the remaining
3005 * pages that belong to the other range that points to extent X.
3006 * So here we make sure we submit 2 bios, one for the first
3007 * range and another one for the third range. Both will target
3008 * the same physical extent from disk, but we can't currently
3009 * make the compressed bio endio callback populate the pages
3010 * for both ranges because each compressed bio is tightly
3011 * coupled with a single extent map, and each range can have
3012 * an extent map with a different offset value relative to the
3013 * uncompressed data of our extent and different lengths. This
3014 * is a corner case so we prioritize correctness over
3015 * non-optimal behavior (submitting 2 bios for the same extent).
3017 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3018 prev_em_start && *prev_em_start != (u64)-1 &&
3019 *prev_em_start != em->orig_start)
3020 force_bio_submit = true;
3023 *prev_em_start = em->orig_start;
3025 free_extent_map(em);
3028 /* we've found a hole, just zero and go on */
3029 if (block_start == EXTENT_MAP_HOLE) {
3031 struct extent_state *cached = NULL;
3033 userpage = kmap_atomic(page);
3034 memset(userpage + pg_offset, 0, iosize);
3035 flush_dcache_page(page);
3036 kunmap_atomic(userpage);
3038 set_extent_uptodate(tree, cur, cur + iosize - 1,
3040 unlock_extent_cached(tree, cur,
3041 cur + iosize - 1, &cached);
3043 pg_offset += iosize;
3046 /* the get_extent function already copied into the page */
3047 if (test_range_bit(tree, cur, cur_end,
3048 EXTENT_UPTODATE, 1, NULL)) {
3049 check_page_uptodate(tree, page);
3050 unlock_extent(tree, cur, cur + iosize - 1);
3052 pg_offset += iosize;
3055 /* we have an inline extent but it didn't get marked up
3056 * to date. Error out
3058 if (block_start == EXTENT_MAP_INLINE) {
3060 unlock_extent(tree, cur, cur + iosize - 1);
3062 pg_offset += iosize;
3066 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
3067 page, offset, disk_io_size,
3068 pg_offset, bdev, bio,
3069 end_bio_extent_readpage, mirror_num,
3075 *bio_flags = this_bio_flag;
3078 unlock_extent(tree, cur, cur + iosize - 1);
3082 pg_offset += iosize;
3086 if (!PageError(page))
3087 SetPageUptodate(page);
3093 static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3094 struct page *pages[], int nr_pages,
3096 struct extent_map **em_cached,
3098 unsigned long *bio_flags,
3101 struct inode *inode;
3102 struct btrfs_ordered_extent *ordered;
3105 inode = pages[0]->mapping->host;
3107 lock_extent(tree, start, end);
3108 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
3112 unlock_extent(tree, start, end);
3113 btrfs_start_ordered_extent(inode, ordered, 1);
3114 btrfs_put_ordered_extent(ordered);
3117 for (index = 0; index < nr_pages; index++) {
3118 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
3119 bio, 0, bio_flags, 0, prev_em_start);
3120 put_page(pages[index]);
3124 static void __extent_readpages(struct extent_i