1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/bitops.h>
3 #include <linux/slab.h>
6 #include <linux/pagemap.h>
7 #include <linux/page-flags.h>
8 #include <linux/spinlock.h>
9 #include <linux/blkdev.h>
10 #include <linux/swap.h>
11 #include <linux/writeback.h>
12 #include <linux/pagevec.h>
13 #include <linux/prefetch.h>
14 #include <linux/cleancache.h>
15 #include "extent_io.h"
16 #include "extent_map.h"
18 #include "btrfs_inode.h"
20 #include "check-integrity.h"
22 #include "rcu-string.h"
25 static struct kmem_cache *extent_state_cache;
26 static struct kmem_cache *extent_buffer_cache;
27 static struct bio_set *btrfs_bioset;
29 static inline bool extent_state_in_tree(const struct extent_state *state)
31 return !RB_EMPTY_NODE(&state->rb_node);
34 #ifdef CONFIG_BTRFS_DEBUG
35 static LIST_HEAD(buffers);
36 static LIST_HEAD(states);
38 static DEFINE_SPINLOCK(leak_lock);
41 void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
45 spin_lock_irqsave(&leak_lock, flags);
47 spin_unlock_irqrestore(&leak_lock, flags);
51 void btrfs_leak_debug_del(struct list_head *entry)
55 spin_lock_irqsave(&leak_lock, flags);
57 spin_unlock_irqrestore(&leak_lock, flags);
61 void btrfs_leak_debug_check(void)
63 struct extent_state *state;
64 struct extent_buffer *eb;
66 while (!list_empty(&states)) {
67 state = list_entry(states.next, struct extent_state, leak_list);
68 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
69 state->start, state->end, state->state,
70 extent_state_in_tree(state),
71 refcount_read(&state->refs));
72 list_del(&state->leak_list);
73 kmem_cache_free(extent_state_cache, state);
76 while (!list_empty(&buffers)) {
77 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
78 pr_err("BTRFS: buffer leak start %llu len %lu refs %d\n",
79 eb->start, eb->len, atomic_read(&eb->refs));
80 list_del(&eb->leak_list);
81 kmem_cache_free(extent_buffer_cache, eb);
85 #define btrfs_debug_check_extent_io_range(tree, start, end) \
86 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
87 static inline void __btrfs_debug_check_extent_io_range(const char *caller,
88 struct extent_io_tree *tree, u64 start, u64 end)
90 if (tree->ops && tree->ops->check_extent_io_range)
91 tree->ops->check_extent_io_range(tree->private_data, caller,
95 #define btrfs_leak_debug_add(new, head) do {} while (0)
96 #define btrfs_leak_debug_del(entry) do {} while (0)
97 #define btrfs_leak_debug_check() do {} while (0)
98 #define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
101 #define BUFFER_LRU_MAX 64
106 struct rb_node rb_node;
109 struct extent_page_data {
111 struct extent_io_tree *tree;
112 /* tells writepage not to lock the state bits for this range
113 * it still does the unlocking
115 unsigned int extent_locked:1;
117 /* tells the submit_bio code to use REQ_SYNC */
118 unsigned int sync_io:1;
121 static void add_extent_changeset(struct extent_state *state, unsigned bits,
122 struct extent_changeset *changeset,
129 if (set && (state->state & bits) == bits)
131 if (!set && (state->state & bits) == 0)
133 changeset->bytes_changed += state->end - state->start + 1;
134 ret = ulist_add(&changeset->range_changed, state->start, state->end,
140 static noinline void flush_write_bio(void *data);
141 static inline struct btrfs_fs_info *
142 tree_fs_info(struct extent_io_tree *tree)
145 return tree->ops->tree_fs_info(tree->private_data);
149 int __init extent_io_init(void)
151 extent_state_cache = kmem_cache_create("btrfs_extent_state",
152 sizeof(struct extent_state), 0,
153 SLAB_MEM_SPREAD, NULL);
154 if (!extent_state_cache)
157 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
158 sizeof(struct extent_buffer), 0,
159 SLAB_MEM_SPREAD, NULL);
160 if (!extent_buffer_cache)
161 goto free_state_cache;
163 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
164 offsetof(struct btrfs_io_bio, bio),
167 goto free_buffer_cache;
169 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
175 bioset_free(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 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);
200 bioset_free(btrfs_bioset);
203 void extent_io_tree_init(struct extent_io_tree *tree,
206 tree->state = RB_ROOT;
208 tree->dirty_bytes = 0;
209 spin_lock_init(&tree->lock);
210 tree->private_data = private_data;
213 static struct extent_state *alloc_extent_state(gfp_t mask)
215 struct extent_state *state;
218 * The given mask might be not appropriate for the slab allocator,
219 * drop the unsupported bits
221 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
222 state = kmem_cache_alloc(extent_state_cache, mask);
226 state->failrec = NULL;
227 RB_CLEAR_NODE(&state->rb_node);
228 btrfs_leak_debug_add(&state->leak_list, &states);
229 refcount_set(&state->refs, 1);
230 init_waitqueue_head(&state->wq);
231 trace_alloc_extent_state(state, mask, _RET_IP_);
235 void free_extent_state(struct extent_state *state)
239 if (refcount_dec_and_test(&state->refs)) {
240 WARN_ON(extent_state_in_tree(state));
241 btrfs_leak_debug_del(&state->leak_list);
242 trace_free_extent_state(state, _RET_IP_);
243 kmem_cache_free(extent_state_cache, state);
247 static struct rb_node *tree_insert(struct rb_root *root,
248 struct rb_node *search_start,
250 struct rb_node *node,
251 struct rb_node ***p_in,
252 struct rb_node **parent_in)
255 struct rb_node *parent = NULL;
256 struct tree_entry *entry;
258 if (p_in && parent_in) {
264 p = search_start ? &search_start : &root->rb_node;
267 entry = rb_entry(parent, struct tree_entry, rb_node);
269 if (offset < entry->start)
271 else if (offset > entry->end)
278 rb_link_node(node, parent, p);
279 rb_insert_color(node, root);
283 static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
284 struct rb_node **prev_ret,
285 struct rb_node **next_ret,
286 struct rb_node ***p_ret,
287 struct rb_node **parent_ret)
289 struct rb_root *root = &tree->state;
290 struct rb_node **n = &root->rb_node;
291 struct rb_node *prev = NULL;
292 struct rb_node *orig_prev = NULL;
293 struct tree_entry *entry;
294 struct tree_entry *prev_entry = NULL;
298 entry = rb_entry(prev, struct tree_entry, rb_node);
301 if (offset < entry->start)
303 else if (offset > entry->end)
316 while (prev && offset > prev_entry->end) {
317 prev = rb_next(prev);
318 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
325 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
326 while (prev && offset < prev_entry->start) {
327 prev = rb_prev(prev);
328 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
335 static inline struct rb_node *
336 tree_search_for_insert(struct extent_io_tree *tree,
338 struct rb_node ***p_ret,
339 struct rb_node **parent_ret)
341 struct rb_node *prev = NULL;
344 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
350 static inline struct rb_node *tree_search(struct extent_io_tree *tree,
353 return tree_search_for_insert(tree, offset, NULL, NULL);
356 static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
357 struct extent_state *other)
359 if (tree->ops && tree->ops->merge_extent_hook)
360 tree->ops->merge_extent_hook(tree->private_data, new, other);
364 * utility function to look for merge candidates inside a given range.
365 * Any extents with matching state are merged together into a single
366 * extent in the tree. Extents with EXTENT_IO in their state field
367 * are not merged because the end_io handlers need to be able to do
368 * operations on them without sleeping (or doing allocations/splits).
370 * This should be called with the tree lock held.
372 static void merge_state(struct extent_io_tree *tree,
373 struct extent_state *state)
375 struct extent_state *other;
376 struct rb_node *other_node;
378 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
381 other_node = rb_prev(&state->rb_node);
383 other = rb_entry(other_node, struct extent_state, rb_node);
384 if (other->end == state->start - 1 &&
385 other->state == state->state) {
386 merge_cb(tree, state, other);
387 state->start = other->start;
388 rb_erase(&other->rb_node, &tree->state);
389 RB_CLEAR_NODE(&other->rb_node);
390 free_extent_state(other);
393 other_node = rb_next(&state->rb_node);
395 other = rb_entry(other_node, struct extent_state, rb_node);
396 if (other->start == state->end + 1 &&
397 other->state == state->state) {
398 merge_cb(tree, state, other);
399 state->end = other->end;
400 rb_erase(&other->rb_node, &tree->state);
401 RB_CLEAR_NODE(&other->rb_node);
402 free_extent_state(other);
407 static void set_state_cb(struct extent_io_tree *tree,
408 struct extent_state *state, unsigned *bits)
410 if (tree->ops && tree->ops->set_bit_hook)
411 tree->ops->set_bit_hook(tree->private_data, state, bits);
414 static void clear_state_cb(struct extent_io_tree *tree,
415 struct extent_state *state, unsigned *bits)
417 if (tree->ops && tree->ops->clear_bit_hook)
418 tree->ops->clear_bit_hook(tree->private_data, state, bits);
421 static void set_state_bits(struct extent_io_tree *tree,
422 struct extent_state *state, unsigned *bits,
423 struct extent_changeset *changeset);
426 * insert an extent_state struct into the tree. 'bits' are set on the
427 * struct before it is inserted.
429 * This may return -EEXIST if the extent is already there, in which case the
430 * state struct is freed.
432 * The tree lock is not taken internally. This is a utility function and
433 * probably isn't what you want to call (see set/clear_extent_bit).
435 static int insert_state(struct extent_io_tree *tree,
436 struct extent_state *state, u64 start, u64 end,
438 struct rb_node **parent,
439 unsigned *bits, struct extent_changeset *changeset)
441 struct rb_node *node;
444 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
446 state->start = start;
449 set_state_bits(tree, state, bits, changeset);
451 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
453 struct extent_state *found;
454 found = rb_entry(node, struct extent_state, rb_node);
455 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
456 found->start, found->end, start, end);
459 merge_state(tree, state);
463 static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
466 if (tree->ops && tree->ops->split_extent_hook)
467 tree->ops->split_extent_hook(tree->private_data, orig, split);
471 * split a given extent state struct in two, inserting the preallocated
472 * struct 'prealloc' as the newly created second half. 'split' indicates an
473 * offset inside 'orig' where it should be split.
476 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
477 * are two extent state structs in the tree:
478 * prealloc: [orig->start, split - 1]
479 * orig: [ split, orig->end ]
481 * The tree locks are not taken by this function. They need to be held
484 static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
485 struct extent_state *prealloc, u64 split)
487 struct rb_node *node;
489 split_cb(tree, orig, split);
491 prealloc->start = orig->start;
492 prealloc->end = split - 1;
493 prealloc->state = orig->state;
496 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
497 &prealloc->rb_node, NULL, NULL);
499 free_extent_state(prealloc);
505 static struct extent_state *next_state(struct extent_state *state)
507 struct rb_node *next = rb_next(&state->rb_node);
509 return rb_entry(next, struct extent_state, rb_node);
515 * utility function to clear some bits in an extent state struct.
516 * it will optionally wake up any one waiting on this state (wake == 1).
518 * If no bits are set on the state struct after clearing things, the
519 * struct is freed and removed from the tree
521 static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
522 struct extent_state *state,
523 unsigned *bits, int wake,
524 struct extent_changeset *changeset)
526 struct extent_state *next;
527 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 add_extent_changeset(state, bits_to_clear, changeset, 0);
536 state->state &= ~bits_to_clear;
539 if (state->state == 0) {
540 next = next_state(state);
541 if (extent_state_in_tree(state)) {
542 rb_erase(&state->rb_node, &tree->state);
543 RB_CLEAR_NODE(&state->rb_node);
544 free_extent_state(state);
549 merge_state(tree, state);
550 next = next_state(state);
555 static struct extent_state *
556 alloc_extent_state_atomic(struct extent_state *prealloc)
559 prealloc = alloc_extent_state(GFP_ATOMIC);
564 static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
566 btrfs_panic(tree_fs_info(tree), err,
567 "Locking error: Extent tree was modified by another thread while locked.");
571 * clear some bits on a range in the tree. This may require splitting
572 * or inserting elements in the tree, so the gfp mask is used to
573 * indicate which allocations or sleeping are allowed.
575 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
576 * the given range from the tree regardless of state (ie for truncate).
578 * the range [start, end] is inclusive.
580 * This takes the tree lock, and returns 0 on success and < 0 on error.
582 int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
583 unsigned bits, int wake, int delete,
584 struct extent_state **cached_state,
585 gfp_t mask, struct extent_changeset *changeset)
587 struct extent_state *state;
588 struct extent_state *cached;
589 struct extent_state *prealloc = NULL;
590 struct rb_node *node;
595 btrfs_debug_check_extent_io_range(tree, start, end);
597 if (bits & EXTENT_DELALLOC)
598 bits |= EXTENT_NORESERVE;
601 bits |= ~EXTENT_CTLBITS;
602 bits |= EXTENT_FIRST_DELALLOC;
604 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
607 if (!prealloc && gfpflags_allow_blocking(mask)) {
609 * Don't care for allocation failure here because we might end
610 * up not needing the pre-allocated extent state at all, which
611 * is the case if we only have in the tree extent states that
612 * cover our input range and don't cover too any other range.
613 * If we end up needing a new extent state we allocate it later.
615 prealloc = alloc_extent_state(mask);
618 spin_lock(&tree->lock);
620 cached = *cached_state;
623 *cached_state = NULL;
627 if (cached && extent_state_in_tree(cached) &&
628 cached->start <= start && cached->end > start) {
630 refcount_dec(&cached->refs);
635 free_extent_state(cached);
638 * this search will find the extents that end after
641 node = tree_search(tree, start);
644 state = rb_entry(node, struct extent_state, rb_node);
646 if (state->start > end)
648 WARN_ON(state->end < start);
649 last_end = state->end;
651 /* the state doesn't have the wanted bits, go ahead */
652 if (!(state->state & bits)) {
653 state = next_state(state);
658 * | ---- desired range ---- |
660 * | ------------- state -------------- |
662 * We need to split the extent we found, and may flip
663 * bits on second half.
665 * If the extent we found extends past our range, we
666 * just split and search again. It'll get split again
667 * the next time though.
669 * If the extent we found is inside our range, we clear
670 * the desired bit on it.
673 if (state->start < start) {
674 prealloc = alloc_extent_state_atomic(prealloc);
676 err = split_state(tree, state, prealloc, start);
678 extent_io_tree_panic(tree, err);
683 if (state->end <= end) {
684 state = clear_state_bit(tree, state, &bits, wake,
691 * | ---- desired range ---- |
693 * We need to split the extent, and clear the bit
696 if (state->start <= end && state->end > end) {
697 prealloc = alloc_extent_state_atomic(prealloc);
699 err = split_state(tree, state, prealloc, end + 1);
701 extent_io_tree_panic(tree, err);
706 clear_state_bit(tree, prealloc, &bits, wake, changeset);
712 state = clear_state_bit(tree, state, &bits, wake, changeset);
714 if (last_end == (u64)-1)
716 start = last_end + 1;
717 if (start <= end && state && !need_resched())
723 spin_unlock(&tree->lock);
724 if (gfpflags_allow_blocking(mask))
729 spin_unlock(&tree->lock);
731 free_extent_state(prealloc);
737 static void wait_on_state(struct extent_io_tree *tree,
738 struct extent_state *state)
739 __releases(tree->lock)
740 __acquires(tree->lock)
743 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
744 spin_unlock(&tree->lock);
746 spin_lock(&tree->lock);
747 finish_wait(&state->wq, &wait);
751 * waits for one or more bits to clear on a range in the state tree.
752 * The range [start, end] is inclusive.
753 * The tree lock is taken by this function
755 static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
758 struct extent_state *state;
759 struct rb_node *node;
761 btrfs_debug_check_extent_io_range(tree, start, end);
763 spin_lock(&tree->lock);
767 * this search will find all the extents that end after
770 node = tree_search(tree, start);
775 state = rb_entry(node, struct extent_state, rb_node);
777 if (state->start > end)
780 if (state->state & bits) {
781 start = state->start;
782 refcount_inc(&state->refs);
783 wait_on_state(tree, state);
784 free_extent_state(state);
787 start = state->end + 1;
792 if (!cond_resched_lock(&tree->lock)) {
793 node = rb_next(node);
798 spin_unlock(&tree->lock);
801 static void set_state_bits(struct extent_io_tree *tree,
802 struct extent_state *state,
803 unsigned *bits, struct extent_changeset *changeset)
805 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
807 set_state_cb(tree, state, bits);
808 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
809 u64 range = state->end - state->start + 1;
810 tree->dirty_bytes += range;
812 add_extent_changeset(state, bits_to_set, changeset, 1);
813 state->state |= bits_to_set;
816 static void cache_state_if_flags(struct extent_state *state,
817 struct extent_state **cached_ptr,
820 if (cached_ptr && !(*cached_ptr)) {
821 if (!flags || (state->state & flags)) {
823 refcount_inc(&state->refs);
828 static void cache_state(struct extent_state *state,
829 struct extent_state **cached_ptr)
831 return cache_state_if_flags(state, cached_ptr,
832 EXTENT_IOBITS | EXTENT_BOUNDARY);
836 * set some bits on a range in the tree. This may require allocations or
837 * sleeping, so the gfp mask is used to indicate what is allowed.
839 * If any of the exclusive bits are set, this will fail with -EEXIST if some
840 * part of the range already has the desired bits set. The start of the
841 * existing range is returned in failed_start in this case.
843 * [start, end] is inclusive This takes the tree lock.
846 static int __must_check
847 __set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
848 unsigned bits, unsigned exclusive_bits,
849 u64 *failed_start, struct extent_state **cached_state,
850 gfp_t mask, struct extent_changeset *changeset)
852 struct extent_state *state;
853 struct extent_state *prealloc = NULL;
854 struct rb_node *node;
856 struct rb_node *parent;
861 btrfs_debug_check_extent_io_range(tree, start, end);
863 bits |= EXTENT_FIRST_DELALLOC;
865 if (!prealloc && gfpflags_allow_blocking(mask)) {
867 * Don't care for allocation failure here because we might end
868 * up not needing the pre-allocated extent state at all, which
869 * is the case if we only have in the tree extent states that
870 * cover our input range and don't cover too any other range.
871 * If we end up needing a new extent state we allocate it later.
873 prealloc = alloc_extent_state(mask);
876 spin_lock(&tree->lock);
877 if (cached_state && *cached_state) {
878 state = *cached_state;
879 if (state->start <= start && state->end > start &&
880 extent_state_in_tree(state)) {
881 node = &state->rb_node;
886 * this search will find all the extents that end after
889 node = tree_search_for_insert(tree, start, &p, &parent);
891 prealloc = alloc_extent_state_atomic(prealloc);
893 err = insert_state(tree, prealloc, start, end,
894 &p, &parent, &bits, changeset);
896 extent_io_tree_panic(tree, err);
898 cache_state(prealloc, cached_state);
902 state = rb_entry(node, struct extent_state, rb_node);
904 last_start = state->start;
905 last_end = state->end;
908 * | ---- desired range ---- |
911 * Just lock what we found and keep going
913 if (state->start == start && state->end <= end) {
914 if (state->state & exclusive_bits) {
915 *failed_start = state->start;
920 set_state_bits(tree, state, &bits, changeset);
921 cache_state(state, cached_state);
922 merge_state(tree, state);
923 if (last_end == (u64)-1)
925 start = last_end + 1;
926 state = next_state(state);
927 if (start < end && state && state->start == start &&
934 * | ---- desired range ---- |
937 * | ------------- state -------------- |
939 * We need to split the extent we found, and may flip bits on
942 * If the extent we found extends past our
943 * range, we just split and search again. It'll get split
944 * again the next time though.
946 * If the extent we found is inside our range, we set the
949 if (state->start < start) {
950 if (state->state & exclusive_bits) {
951 *failed_start = start;
956 prealloc = alloc_extent_state_atomic(prealloc);
958 err = split_state(tree, state, prealloc, start);
960 extent_io_tree_panic(tree, err);
965 if (state->end <= end) {
966 set_state_bits(tree, state, &bits, changeset);
967 cache_state(state, cached_state);
968 merge_state(tree, state);
969 if (last_end == (u64)-1)
971 start = last_end + 1;
972 state = next_state(state);
973 if (start < end && state && state->start == start &&
980 * | ---- desired range ---- |
981 * | state | or | state |
983 * There's a hole, we need to insert something in it and
984 * ignore the extent we found.
986 if (state->start > start) {
988 if (end < last_start)
991 this_end = last_start - 1;
993 prealloc = alloc_extent_state_atomic(prealloc);
997 * Avoid to free 'prealloc' if it can be merged with
1000 err = insert_state(tree, prealloc, start, this_end,
1001 NULL, NULL, &bits, changeset);
1003 extent_io_tree_panic(tree, err);
1005 cache_state(prealloc, cached_state);
1007 start = this_end + 1;
1011 * | ---- desired range ---- |
1013 * We need to split the extent, and set the bit
1016 if (state->start <= end && state->end > end) {
1017 if (state->state & exclusive_bits) {
1018 *failed_start = start;
1023 prealloc = alloc_extent_state_atomic(prealloc);
1025 err = split_state(tree, state, prealloc, end + 1);
1027 extent_io_tree_panic(tree, err);
1029 set_state_bits(tree, prealloc, &bits, changeset);
1030 cache_state(prealloc, cached_state);
1031 merge_state(tree, prealloc);
1039 spin_unlock(&tree->lock);
1040 if (gfpflags_allow_blocking(mask))
1045 spin_unlock(&tree->lock);
1047 free_extent_state(prealloc);
1053 int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1054 unsigned bits, u64 * failed_start,
1055 struct extent_state **cached_state, gfp_t mask)
1057 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
1058 cached_state, mask, NULL);
1063 * convert_extent_bit - convert all bits in a given range from one bit to
1065 * @tree: the io tree to search
1066 * @start: the start offset in bytes
1067 * @end: the end offset in bytes (inclusive)
1068 * @bits: the bits to set in this range
1069 * @clear_bits: the bits to clear in this range
1070 * @cached_state: state that we're going to cache
1072 * This will go through and set bits for the given range. If any states exist
1073 * already in this range they are set with the given bit and cleared of the
1074 * clear_bits. This is only meant to be used by things that are mergeable, ie
1075 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1076 * boundary bits like LOCK.
1078 * All allocations are done with GFP_NOFS.
1080 int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1081 unsigned bits, unsigned clear_bits,
1082 struct extent_state **cached_state)
1084 struct extent_state *state;
1085 struct extent_state *prealloc = NULL;
1086 struct rb_node *node;
1088 struct rb_node *parent;
1092 bool first_iteration = true;
1094 btrfs_debug_check_extent_io_range(tree, start, end);
1099 * Best effort, don't worry if extent state allocation fails
1100 * here for the first iteration. We might have a cached state
1101 * that matches exactly the target range, in which case no
1102 * extent state allocations are needed. We'll only know this
1103 * after locking the tree.
1105 prealloc = alloc_extent_state(GFP_NOFS);
1106 if (!prealloc && !first_iteration)
1110 spin_lock(&tree->lock);
1111 if (cached_state && *cached_state) {
1112 state = *cached_state;
1113 if (state->start <= start && state->end > start &&
1114 extent_state_in_tree(state)) {
1115 node = &state->rb_node;
1121 * this search will find all the extents that end after
1124 node = tree_search_for_insert(tree, start, &p, &parent);
1126 prealloc = alloc_extent_state_atomic(prealloc);
1131 err = insert_state(tree, prealloc, start, end,
1132 &p, &parent, &bits, NULL);
1134 extent_io_tree_panic(tree, err);
1135 cache_state(prealloc, cached_state);
1139 state = rb_entry(node, struct extent_state, rb_node);
1141 last_start = state->start;
1142 last_end = state->end;
1145 * | ---- desired range ---- |
1148 * Just lock what we found and keep going
1150 if (state->start == start && state->end <= end) {
1151 set_state_bits(tree, state, &bits, NULL);
1152 cache_state(state, cached_state);
1153 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
1154 if (last_end == (u64)-1)
1156 start = last_end + 1;
1157 if (start < end && state && state->start == start &&
1164 * | ---- desired range ---- |
1167 * | ------------- state -------------- |
1169 * We need to split the extent we found, and may flip bits on
1172 * If the extent we found extends past our
1173 * range, we just split and search again. It'll get split
1174 * again the next time though.
1176 * If the extent we found is inside our range, we set the
1177 * desired bit on it.
1179 if (state->start < start) {
1180 prealloc = alloc_extent_state_atomic(prealloc);
1185 err = split_state(tree, state, prealloc, start);
1187 extent_io_tree_panic(tree, err);
1191 if (state->end <= end) {
1192 set_state_bits(tree, state, &bits, NULL);
1193 cache_state(state, cached_state);
1194 state = clear_state_bit(tree, state, &clear_bits, 0,
1196 if (last_end == (u64)-1)
1198 start = last_end + 1;
1199 if (start < end && state && state->start == start &&
1206 * | ---- desired range ---- |
1207 * | state | or | state |
1209 * There's a hole, we need to insert something in it and
1210 * ignore the extent we found.
1212 if (state->start > start) {
1214 if (end < last_start)
1217 this_end = last_start - 1;
1219 prealloc = alloc_extent_state_atomic(prealloc);
1226 * Avoid to free 'prealloc' if it can be merged with
1229 err = insert_state(tree, prealloc, start, this_end,
1230 NULL, NULL, &bits, NULL);
1232 extent_io_tree_panic(tree, err);
1233 cache_state(prealloc, cached_state);
1235 start = this_end + 1;
1239 * | ---- desired range ---- |
1241 * We need to split the extent, and set the bit
1244 if (state->start <= end && state->end > end) {
1245 prealloc = alloc_extent_state_atomic(prealloc);
1251 err = split_state(tree, state, prealloc, end + 1);
1253 extent_io_tree_panic(tree, err);
1255 set_state_bits(tree, prealloc, &bits, NULL);
1256 cache_state(prealloc, cached_state);
1257 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
1265 spin_unlock(&tree->lock);
1267 first_iteration = false;
1271 spin_unlock(&tree->lock);
1273 free_extent_state(prealloc);
1278 /* wrappers around set/clear extent bit */
1279 int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1280 unsigned bits, struct extent_changeset *changeset)
1283 * We don't support EXTENT_LOCKED yet, as current changeset will
1284 * record any bits changed, so for EXTENT_LOCKED case, it will
1285 * either fail with -EEXIST or changeset will record the whole
1288 BUG_ON(bits & EXTENT_LOCKED);
1290 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
1294 int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1295 unsigned bits, int wake, int delete,
1296 struct extent_state **cached)
1298 return __clear_extent_bit(tree, start, end, bits, wake, delete,
1299 cached, GFP_NOFS, NULL);
1302 int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1303 unsigned bits, struct extent_changeset *changeset)
1306 * Don't support EXTENT_LOCKED case, same reason as
1307 * set_record_extent_bits().
1309 BUG_ON(bits & EXTENT_LOCKED);
1311 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
1316 * either insert or lock state struct between start and end use mask to tell
1317 * us if waiting is desired.
1319 int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1320 struct extent_state **cached_state)
1326 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
1327 EXTENT_LOCKED, &failed_start,
1328 cached_state, GFP_NOFS, NULL);
1329 if (err == -EEXIST) {
1330 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1331 start = failed_start;
1334 WARN_ON(start > end);
1339 int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
1344 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1345 &failed_start, NULL, GFP_NOFS, NULL);
1346 if (err == -EEXIST) {
1347 if (failed_start > start)
1348 clear_extent_bit(tree, start, failed_start - 1,
1349 EXTENT_LOCKED, 1, 0, NULL);
1355 void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1357 unsigned long index = start >> PAGE_SHIFT;
1358 unsigned long end_index = end >> PAGE_SHIFT;
1361 while (index <= end_index) {
1362 page = find_get_page(inode->i_mapping, index);
1363 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1364 clear_page_dirty_for_io(page);
1370 void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1372 unsigned long index = start >> PAGE_SHIFT;
1373 unsigned long end_index = end >> PAGE_SHIFT;
1376 while (index <= end_index) {
1377 page = find_get_page(inode->i_mapping, index);
1378 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1379 __set_page_dirty_nobuffers(page);
1380 account_page_redirty(page);
1387 * helper function to set both pages and extents in the tree writeback
1389 static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
1391 tree->ops->set_range_writeback(tree->private_data, start, end);
1394 /* find the first state struct with 'bits' set after 'start', and
1395 * return it. tree->lock must be held. NULL will returned if
1396 * nothing was found after 'start'
1398 static struct extent_state *
1399 find_first_extent_bit_state(struct extent_io_tree *tree,
1400 u64 start, unsigned bits)
1402 struct rb_node *node;
1403 struct extent_state *state;
1406 * this search will find all the extents that end after
1409 node = tree_search(tree, start);
1414 state = rb_entry(node, struct extent_state, rb_node);
1415 if (state->end >= start && (state->state & bits))
1418 node = rb_next(node);
1427 * find the first offset in the io tree with 'bits' set. zero is
1428 * returned if we find something, and *start_ret and *end_ret are
1429 * set to reflect the state struct that was found.
1431 * If nothing was found, 1 is returned. If found something, return 0.
1433 int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
1434 u64 *start_ret, u64 *end_ret, unsigned bits,
1435 struct extent_state **cached_state)
1437 struct extent_state *state;
1441 spin_lock(&tree->lock);
1442 if (cached_state && *cached_state) {
1443 state = *cached_state;
1444 if (state->end == start - 1 && extent_state_in_tree(state)) {
1445 n = rb_next(&state->rb_node);
1447 state = rb_entry(n, struct extent_state,
1449 if (state->state & bits)
1453 free_extent_state(*cached_state);
1454 *cached_state = NULL;
1457 free_extent_state(*cached_state);
1458 *cached_state = NULL;
1461 state = find_first_extent_bit_state(tree, start, bits);
1464 cache_state_if_flags(state, cached_state, 0);
1465 *start_ret = state->start;
1466 *end_ret = state->end;
1470 spin_unlock(&tree->lock);
1475 * find a contiguous range of bytes in the file marked as delalloc, not
1476 * more than 'max_bytes'. start and end are used to return the range,
1478 * 1 is returned if we find something, 0 if nothing was in the tree
1480 static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
1481 u64 *start, u64 *end, u64 max_bytes,
1482 struct extent_state **cached_state)
1484 struct rb_node *node;
1485 struct extent_state *state;
1486 u64 cur_start = *start;
1488 u64 total_bytes = 0;
1490 spin_lock(&tree->lock);
1493 * this search will find all the extents that end after
1496 node = tree_search(tree, cur_start);
1504 state = rb_entry(node, struct extent_state, rb_node);
1505 if (found && (state->start != cur_start ||
1506 (state->state & EXTENT_BOUNDARY))) {
1509 if (!(state->state & EXTENT_DELALLOC)) {
1515 *start = state->start;
1516 *cached_state = state;
1517 refcount_inc(&state->refs);
1521 cur_start = state->end + 1;
1522 node = rb_next(node);
1523 total_bytes += state->end - state->start + 1;
1524 if (total_bytes >= max_bytes)
1530 spin_unlock(&tree->lock);
1534 static int __process_pages_contig(struct address_space *mapping,
1535 struct page *locked_page,
1536 pgoff_t start_index, pgoff_t end_index,
1537 unsigned long page_ops, pgoff_t *index_ret);
1539 static noinline void __unlock_for_delalloc(struct inode *inode,
1540 struct page *locked_page,
1543 unsigned long index = start >> PAGE_SHIFT;
1544 unsigned long end_index = end >> PAGE_SHIFT;
1546 ASSERT(locked_page);
1547 if (index == locked_page->index && end_index == index)
1550 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1554 static noinline int lock_delalloc_pages(struct inode *inode,
1555 struct page *locked_page,
1559 unsigned long index = delalloc_start >> PAGE_SHIFT;
1560 unsigned long index_ret = index;
1561 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
1564 ASSERT(locked_page);
1565 if (index == locked_page->index && index == end_index)
1568 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1569 end_index, PAGE_LOCK, &index_ret);
1571 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1572 (u64)index_ret << PAGE_SHIFT);
1577 * find a contiguous range of bytes in the file marked as delalloc, not
1578 * more than 'max_bytes'. start and end are used to return the range,
1580 * 1 is returned if we find something, 0 if nothing was in the tree
1582 STATIC u64 find_lock_delalloc_range(struct inode *inode,
1583 struct extent_io_tree *tree,
1584 struct page *locked_page, u64 *start,
1585 u64 *end, u64 max_bytes)
1590 struct extent_state *cached_state = NULL;
1595 /* step one, find a bunch of delalloc bytes starting at start */
1596 delalloc_start = *start;
1598 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
1599 max_bytes, &cached_state);
1600 if (!found || delalloc_end <= *start) {
1601 *start = delalloc_start;
1602 *end = delalloc_end;
1603 free_extent_state(cached_state);
1608 * start comes from the offset of locked_page. We have to lock
1609 * pages in order, so we can't process delalloc bytes before
1612 if (delalloc_start < *start)
1613 delalloc_start = *start;
1616 * make sure to limit the number of pages we try to lock down
1618 if (delalloc_end + 1 - delalloc_start > max_bytes)
1619 delalloc_end = delalloc_start + max_bytes - 1;
1621 /* step two, lock all the pages after the page that has start */
1622 ret = lock_delalloc_pages(inode, locked_page,
1623 delalloc_start, delalloc_end);
1624 if (ret == -EAGAIN) {
1625 /* some of the pages are gone, lets avoid looping by
1626 * shortening the size of the delalloc range we're searching
1628 free_extent_state(cached_state);
1629 cached_state = NULL;
1631 max_bytes = PAGE_SIZE;
1639 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
1641 /* step three, lock the state bits for the whole range */
1642 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
1644 /* then test to make sure it is all still delalloc */
1645 ret = test_range_bit(tree, delalloc_start, delalloc_end,
1646 EXTENT_DELALLOC, 1, cached_state);
1648 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1649 &cached_state, GFP_NOFS);
1650 __unlock_for_delalloc(inode, locked_page,
1651 delalloc_start, delalloc_end);
1655 free_extent_state(cached_state);
1656 *start = delalloc_start;
1657 *end = delalloc_end;
1662 static int __process_pages_contig(struct address_space *mapping,
1663 struct page *locked_page,
1664 pgoff_t start_index, pgoff_t end_index,
1665 unsigned long page_ops, pgoff_t *index_ret)
1667 unsigned long nr_pages = end_index - start_index + 1;
1668 unsigned long pages_locked = 0;
1669 pgoff_t index = start_index;
1670 struct page *pages[16];
1675 if (page_ops & PAGE_LOCK) {
1676 ASSERT(page_ops == PAGE_LOCK);
1677 ASSERT(index_ret && *index_ret == start_index);
1680 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1681 mapping_set_error(mapping, -EIO);
1683 while (nr_pages > 0) {
1684 ret = find_get_pages_contig(mapping, index,
1685 min_t(unsigned long,
1686 nr_pages, ARRAY_SIZE(pages)), pages);
1689 * Only if we're going to lock these pages,
1690 * can we find nothing at @index.
1692 ASSERT(page_ops & PAGE_LOCK);
1697 for (i = 0; i < ret; i++) {
1698 if (page_ops & PAGE_SET_PRIVATE2)
1699 SetPagePrivate2(pages[i]);
1701 if (pages[i] == locked_page) {
1706 if (page_ops & PAGE_CLEAR_DIRTY)
1707 clear_page_dirty_for_io(pages[i]);
1708 if (page_ops & PAGE_SET_WRITEBACK)
1709 set_page_writeback(pages[i]);
1710 if (page_ops & PAGE_SET_ERROR)
1711 SetPageError(pages[i]);
1712 if (page_ops & PAGE_END_WRITEBACK)
1713 end_page_writeback(pages[i]);
1714 if (page_ops & PAGE_UNLOCK)
1715 unlock_page(pages[i]);
1716 if (page_ops & PAGE_LOCK) {
1717 lock_page(pages[i]);
1718 if (!PageDirty(pages[i]) ||
1719 pages[i]->mapping != mapping) {
1720 unlock_page(pages[i]);
1734 if (err && index_ret)
1735 *index_ret = start_index + pages_locked - 1;
1739 void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1740 u64 delalloc_end, struct page *locked_page,
1741 unsigned clear_bits,
1742 unsigned long page_ops)
1744 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
1747 __process_pages_contig(inode->i_mapping, locked_page,
1748 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
1753 * count the number of bytes in the tree that have a given bit(s)
1754 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1755 * cached. The total number found is returned.
1757 u64 count_range_bits(struct extent_io_tree *tree,
1758 u64 *start, u64 search_end, u64 max_bytes,
1759 unsigned bits, int contig)
1761 struct rb_node *node;
1762 struct extent_state *state;
1763 u64 cur_start = *start;
1764 u64 total_bytes = 0;
1768 if (WARN_ON(search_end <= cur_start))
1771 spin_lock(&tree->lock);
1772 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1773 total_bytes = tree->dirty_bytes;
1777 * this search will find all the extents that end after
1780 node = tree_search(tree, cur_start);
1785 state = rb_entry(node, struct extent_state, rb_node);
1786 if (state->start > search_end)
1788 if (contig && found && state->start > last + 1)
1790 if (state->end >= cur_start && (state->state & bits) == bits) {
1791 total_bytes += min(search_end, state->end) + 1 -
1792 max(cur_start, state->start);
1793 if (total_bytes >= max_bytes)
1796 *start = max(cur_start, state->start);
1800 } else if (contig && found) {
1803 node = rb_next(node);
1808 spin_unlock(&tree->lock);
1813 * set the private field for a given byte offset in the tree. If there isn't
1814 * an extent_state there already, this does nothing.
1816 static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
1817 struct io_failure_record *failrec)
1819 struct rb_node *node;
1820 struct extent_state *state;
1823 spin_lock(&tree->lock);
1825 * this search will find all the extents that end after
1828 node = tree_search(tree, start);
1833 state = rb_entry(node, struct extent_state, rb_node);
1834 if (state->start != start) {
1838 state->failrec = failrec;
1840 spin_unlock(&tree->lock);
1844 static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
1845 struct io_failure_record **failrec)
1847 struct rb_node *node;
1848 struct extent_state *state;
1851 spin_lock(&tree->lock);
1853 * this search will find all the extents that end after
1856 node = tree_search(tree, start);
1861 state = rb_entry(node, struct extent_state, rb_node);
1862 if (state->start != start) {
1866 *failrec = state->failrec;
1868 spin_unlock(&tree->lock);
1873 * searches a range in the state tree for a given mask.
1874 * If 'filled' == 1, this returns 1 only if every extent in the tree
1875 * has the bits set. Otherwise, 1 is returned if any bit in the
1876 * range is found set.
1878 int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
1879 unsigned bits, int filled, struct extent_state *cached)
1881 struct extent_state *state = NULL;
1882 struct rb_node *node;
1885 spin_lock(&tree->lock);
1886 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
1887 cached->end > start)
1888 node = &cached->rb_node;
1890 node = tree_search(tree, start);
1891 while (node && start <= end) {
1892 state = rb_entry(node, struct extent_state, rb_node);
1894 if (filled && state->start > start) {
1899 if (state->start > end)
1902 if (state->state & bits) {
1906 } else if (filled) {
1911 if (state->end == (u64)-1)
1914 start = state->end + 1;
1917 node = rb_next(node);
1924 spin_unlock(&tree->lock);
1929 * helper function to set a given page up to date if all the
1930 * extents in the tree for that page are up to date
1932 static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
1934 u64 start = page_offset(page);
1935 u64 end = start + PAGE_SIZE - 1;
1936 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
1937 SetPageUptodate(page);
1940 int free_io_failure(struct extent_io_tree *failure_tree,
1941 struct extent_io_tree *io_tree,
1942 struct io_failure_record *rec)
1947 set_state_failrec(failure_tree, rec->start, NULL);
1948 ret = clear_extent_bits(failure_tree, rec->start,
1949 rec->start + rec->len - 1,
1950 EXTENT_LOCKED | EXTENT_DIRTY);
1954 ret = clear_extent_bits(io_tree, rec->start,
1955 rec->start + rec->len - 1,
1965 * this bypasses the standard btrfs submit functions deliberately, as
1966 * the standard behavior is to write all copies in a raid setup. here we only
1967 * want to write the one bad copy. so we do the mapping for ourselves and issue
1968 * submit_bio directly.
1969 * to avoid any synchronization issues, wait for the data after writing, which
1970 * actually prevents the read that triggered the error from finishing.
1971 * currently, there can be no more than two copies of every data bit. thus,
1972 * exactly one rewrite is required.
1974 int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1975 u64 length, u64 logical, struct page *page,
1976 unsigned int pg_offset, int mirror_num)
1979 struct btrfs_device *dev;
1982 struct btrfs_bio *bbio = NULL;
1985 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
1986 BUG_ON(!mirror_num);
1988 bio = btrfs_io_bio_alloc(1);
1989 bio->bi_iter.bi_size = 0;
1990 map_length = length;
1993 * Avoid races with device replace and make sure our bbio has devices
1994 * associated to its stripes that don't go away while we are doing the
1995 * read repair operation.
1997 btrfs_bio_counter_inc_blocked(fs_info);
1998 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
2000 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2001 * to update all raid stripes, but here we just want to correct
2002 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2003 * stripe's dev and sector.
2005 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2006 &map_length, &bbio, 0);
2008 btrfs_bio_counter_dec(fs_info);
2012 ASSERT(bbio->mirror_num == 1);
2014 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2015 &map_length, &bbio, mirror_num);
2017 btrfs_bio_counter_dec(fs_info);
2021 BUG_ON(mirror_num != bbio->mirror_num);
2024 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
2025 bio->bi_iter.bi_sector = sector;
2026 dev = bbio->stripes[bbio->mirror_num - 1].dev;
2027 btrfs_put_bbio(bbio);
2028 if (!dev || !dev->bdev || !dev->writeable) {
2029 btrfs_bio_counter_dec(fs_info);
2033 bio_set_dev(bio, dev->bdev);
2034 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
2035 bio_add_page(bio, page, length, pg_offset);
2037 if (btrfsic_submit_bio_wait(bio)) {
2038 /* try to remap that extent elsewhere? */
2039 btrfs_bio_counter_dec(fs_info);
2041 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
2045 btrfs_info_rl_in_rcu(fs_info,
2046 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
2048 rcu_str_deref(dev->name), sector);
2049 btrfs_bio_counter_dec(fs_info);
2054 int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2055 struct extent_buffer *eb, int mirror_num)
2057 u64 start = eb->start;
2058 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
2061 if (sb_rdonly(fs_info->sb))
2064 for (i = 0; i < num_pages; i++) {
2065 struct page *p = eb->pages[i];
2067 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
2068 start - page_offset(p), mirror_num);
2078 * each time an IO finishes, we do a fast check in the IO failure tree
2079 * to see if we need to process or clean up an io_failure_record
2081 int clean_io_failure(struct btrfs_fs_info *fs_info,
2082 struct extent_io_tree *failure_tree,
2083 struct extent_io_tree *io_tree, u64 start,
2084 struct page *page, u64 ino, unsigned int pg_offset)
2087 struct io_failure_record *failrec;
2088 struct extent_state *state;
2093 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2098 ret = get_state_failrec(failure_tree, start, &failrec);
2102 BUG_ON(!failrec->this_mirror);
2104 if (failrec->in_validation) {
2105 /* there was no real error, just free the record */
2106 btrfs_debug(fs_info,
2107 "clean_io_failure: freeing dummy error at %llu",
2111 if (sb_rdonly(fs_info->sb))
2114 spin_lock(&io_tree->lock);
2115 state = find_first_extent_bit_state(io_tree,
2118 spin_unlock(&io_tree->lock);
2120 if (state && state->start <= failrec->start &&
2121 state->end >= failrec->start + failrec->len - 1) {
2122 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2124 if (num_copies > 1) {
2125 repair_io_failure(fs_info, ino, start, failrec->len,
2126 failrec->logical, page, pg_offset,
2127 failrec->failed_mirror);
2132 free_io_failure(failure_tree, io_tree, failrec);
2138 * Can be called when
2139 * - hold extent lock
2140 * - under ordered extent
2141 * - the inode is freeing
2143 void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
2145 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
2146 struct io_failure_record *failrec;
2147 struct extent_state *state, *next;
2149 if (RB_EMPTY_ROOT(&failure_tree->state))
2152 spin_lock(&failure_tree->lock);
2153 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2155 if (state->start > end)
2158 ASSERT(state->end <= end);
2160 next = next_state(state);
2162 failrec = state->failrec;
2163 free_extent_state(state);
2168 spin_unlock(&failure_tree->lock);
2171 int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2172 struct io_failure_record **failrec_ret)
2174 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2175 struct io_failure_record *failrec;
2176 struct extent_map *em;
2177 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2178 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2179 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2183 ret = get_state_failrec(failure_tree, start, &failrec);
2185 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2189 failrec->start = start;
2190 failrec->len = end - start + 1;
2191 failrec->this_mirror = 0;
2192 failrec->bio_flags = 0;
2193 failrec->in_validation = 0;
2195 read_lock(&em_tree->lock);
2196 em = lookup_extent_mapping(em_tree, start, failrec->len);
2198 read_unlock(&em_tree->lock);
2203 if (em->start > start || em->start + em->len <= start) {
2204 free_extent_map(em);
2207 read_unlock(&em_tree->lock);
2213 logical = start - em->start;
2214 logical = em->block_start + logical;
2215 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2216 logical = em->block_start;
2217 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2218 extent_set_compress_type(&failrec->bio_flags,
2222 btrfs_debug(fs_info,
2223 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2224 logical, start, failrec->len);
2226 failrec->logical = logical;
2227 free_extent_map(em);
2229 /* set the bits in the private failure tree */
2230 ret = set_extent_bits(failure_tree, start, end,
2231 EXTENT_LOCKED | EXTENT_DIRTY);
2233 ret = set_state_failrec(failure_tree, start, failrec);
2234 /* set the bits in the inode's tree */
2236 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
2242 btrfs_debug(fs_info,
2243 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2244 failrec->logical, failrec->start, failrec->len,
2245 failrec->in_validation);
2247 * when data can be on disk more than twice, add to failrec here
2248 * (e.g. with a list for failed_mirror) to make
2249 * clean_io_failure() clean all those errors at once.
2253 *failrec_ret = failrec;
2258 bool btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2259 struct io_failure_record *failrec, int failed_mirror)
2261 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2264 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
2265 if (num_copies == 1) {
2267 * we only have a single copy of the data, so don't bother with
2268 * all the retry and error correction code that follows. no
2269 * matter what the error is, it is very likely to persist.
2271 btrfs_debug(fs_info,
2272 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2273 num_copies, failrec->this_mirror, failed_mirror);
2278 * there are two premises:
2279 * a) deliver good data to the caller
2280 * b) correct the bad sectors on disk
2282 if (failed_bio->bi_vcnt > 1) {
2284 * to fulfill b), we need to know the exact failing sectors, as
2285 * we don't want to rewrite any more than the failed ones. thus,
2286 * we need separate read requests for the failed bio
2288 * if the following BUG_ON triggers, our validation request got
2289 * merged. we need separate requests for our algorithm to work.
2291 BUG_ON(failrec->in_validation);
2292 failrec->in_validation = 1;
2293 failrec->this_mirror = failed_mirror;
2296 * we're ready to fulfill a) and b) alongside. get a good copy
2297 * of the failed sector and if we succeed, we have setup
2298 * everything for repair_io_failure to do the rest for us.
2300 if (failrec->in_validation) {
2301 BUG_ON(failrec->this_mirror != failed_mirror);
2302 failrec->in_validation = 0;
2303 failrec->this_mirror = 0;
2305 failrec->failed_mirror = failed_mirror;
2306 failrec->this_mirror++;
2307 if (failrec->this_mirror == failed_mirror)
2308 failrec->this_mirror++;
2311 if (failrec->this_mirror > num_copies) {
2312 btrfs_debug(fs_info,
2313 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2314 num_copies, failrec->this_mirror, failed_mirror);
2322 struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2323 struct io_failure_record *failrec,
2324 struct page *page, int pg_offset, int icsum,
2325 bio_end_io_t *endio_func, void *data)
2327 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2329 struct btrfs_io_bio *btrfs_failed_bio;
2330 struct btrfs_io_bio *btrfs_bio;
2332 bio = btrfs_io_bio_alloc(1);
2333 bio->bi_end_io = endio_func;
2334 bio->bi_iter.bi_sector = failrec->logical >> 9;
2335 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
2336 bio->bi_iter.bi_size = 0;
2337 bio->bi_private = data;
2339 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2340 if (btrfs_failed_bio->csum) {
2341 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2343 btrfs_bio = btrfs_io_bio(bio);
2344 btrfs_bio->csum = btrfs_bio->csum_inline;
2346 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
2350 bio_add_page(bio, page, failrec->len, pg_offset);
2356 * this is a generic handler for readpage errors (default
2357 * readpage_io_failed_hook). if other copies exist, read those and write back
2358 * good data to the failed position. does not investigate in remapping the
2359 * failed extent elsewhere, hoping the device will be smart enough to do this as
2363 static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2364 struct page *page, u64 start, u64 end,
2367 struct io_failure_record *failrec;
2368 struct inode *inode = page->mapping->host;
2369 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2370 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2373 blk_status_t status;
2376 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
2378 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2382 if (!btrfs_check_repairable(inode, failed_bio, failrec,
2384 free_io_failure(failure_tree, tree, failrec);
2388 if (failed_bio->bi_vcnt > 1)
2389 read_mode |= REQ_FAILFAST_DEV;
2391 phy_offset >>= inode->i_sb->s_blocksize_bits;
2392 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2393 start - page_offset(page),
2394 (int)phy_offset, failed_bio->bi_end_io,
2396 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
2398 btrfs_debug(btrfs_sb(inode->i_sb),
2399 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2400 read_mode, failrec->this_mirror, failrec->in_validation);
2402 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
2403 failrec->bio_flags, 0);
2405 free_io_failure(failure_tree, tree, failrec);
2407 ret = blk_status_to_errno(status);
2413 /* lots and lots of room for performance fixes in the end_bio funcs */
2415 void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2417 int uptodate = (err == 0);
2418 struct extent_io_tree *tree;
2421 tree = &BTRFS_I(page->mapping->host)->io_tree;
2423 if (tree->ops && tree->ops->writepage_end_io_hook)
2424 tree->ops->writepage_end_io_hook(page, start, end, NULL,
2428 ClearPageUptodate(page);
2430 ret = err < 0 ? err : -EIO;
2431 mapping_set_error(page->mapping, ret);
2436 * after a writepage IO is done, we need to:
2437 * clear the uptodate bits on error
2438 * clear the writeback bits in the extent tree for this IO
2439 * end_page_writeback if the page has no more pending IO
2441 * Scheduling is not allowed, so the extent state tree is expected
2442 * to have one and only one object corresponding to this IO.
2444 static void end_bio_extent_writepage(struct bio *bio)
2446 int error = blk_status_to_errno(bio->bi_status);
2447 struct bio_vec *bvec;
2452 ASSERT(!bio_flagged(bio, BIO_CLONED));
2453 bio_for_each_segment_all(bvec, bio, i) {
2454 struct page *page = bvec->bv_page;
2455 struct inode *inode = page->mapping->host;
2456 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2458 /* We always issue full-page reads, but if some block
2459 * in a page fails to read, blk_update_request() will
2460 * advance bv_offset and adjust bv_len to compensate.
2461 * Print a warning for nonzero offsets, and an error
2462 * if they don't add up to a full page. */
2463 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2464 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
2466 "partial page write in btrfs with offset %u and length %u",
2467 bvec->bv_offset, bvec->bv_len);
2470 "incomplete page write in btrfs with offset %u and length %u",
2471 bvec->bv_offset, bvec->bv_len);
2474 start = page_offset(page);
2475 end = start + bvec->bv_offset + bvec->bv_len - 1;
2477 end_extent_writepage(page, error, start, end);
2478 end_page_writeback(page);
2485 endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2488 struct extent_state *cached = NULL;
2489 u64 end = start + len - 1;
2491 if (uptodate && tree->track_uptodate)
2492 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2493 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2497 * after a readpage IO is done, we need to:
2498 * clear the uptodate bits on error
2499 * set the uptodate bits if things worked
2500 * set the page up to date if all extents in the tree are uptodate
2501 * clear the lock bit in the extent tree
2502 * unlock the page if there are no other extents locked for it
2504 * Scheduling is not allowed, so the extent state tree is expected
2505 * to have one and only one object corresponding to this IO.
2507 static void end_bio_extent_readpage(struct bio *bio)
2509 struct bio_vec *bvec;
2510 int uptodate = !bio->bi_status;
2511 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
2512 struct extent_io_tree *tree, *failure_tree;
2517 u64 extent_start = 0;
2523 ASSERT(!bio_flagged(bio, BIO_CLONED));
2524 bio_for_each_segment_all(bvec, bio, i) {
2525 struct page *page = bvec->bv_page;
2526 struct inode *inode = page->mapping->host;
2527 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2529 btrfs_debug(fs_info,
2530 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
2531 (u64)bio->bi_iter.bi_sector, bio->bi_status,
2532 io_bio->mirror_num);
2533 tree = &BTRFS_I(inode)->io_tree;
2534 failure_tree = &BTRFS_I(inode)->io_failure_tree;
2536 /* We always issue full-page reads, but if some block
2537 * in a page fails to read, blk_update_request() will
2538 * advance bv_offset and adjust bv_len to compensate.
2539 * Print a warning for nonzero offsets, and an error
2540 * if they don't add up to a full page. */
2541 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2542 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
2544 "partial page read in btrfs with offset %u and length %u",
2545 bvec->bv_offset, bvec->bv_len);
2548 "incomplete page read in btrfs with offset %u and length %u",
2549 bvec->bv_offset, bvec->bv_len);
2552 start = page_offset(page);
2553 end = start + bvec->bv_offset + bvec->bv_len - 1;
2556 mirror = io_bio->mirror_num;
2557 if (likely(uptodate && tree->ops)) {
2558 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2564 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2565 failure_tree, tree, start,
2567 btrfs_ino(BTRFS_I(inode)), 0);
2570 if (likely(uptodate))
2574 ret = tree->ops->readpage_io_failed_hook(page, mirror);
2575 if (ret == -EAGAIN) {
2577 * Data inode's readpage_io_failed_hook() always
2580 * The generic bio_readpage_error handles errors
2581 * the following way: If possible, new read
2582 * requests are created and submitted and will
2583 * end up in end_bio_extent_readpage as well (if
2584 * we're lucky, not in the !uptodate case). In
2585 * that case it returns 0 and we just go on with
2586 * the next page in our bio. If it can't handle
2587 * the error it will return -EIO and we remain
2588 * responsible for that page.
2590 ret = bio_readpage_error(bio, offset, page,
2591 start, end, mirror);
2593 uptodate = !bio->bi_status;
2600 * metadata's readpage_io_failed_hook() always returns
2601 * -EIO and fixes nothing. -EIO is also returned if
2602 * data inode error could not be fixed.
2604 ASSERT(ret == -EIO);
2607 if (likely(uptodate)) {
2608 loff_t i_size = i_size_read(inode);
2609 pgoff_t end_index = i_size >> PAGE_SHIFT;
2612 /* Zero out the end if this page straddles i_size */
2613 off = i_size & (PAGE_SIZE-1);
2614 if (page->index == end_index && off)
2615 zero_user_segment(page, off, PAGE_SIZE);
2616 SetPageUptodate(page);
2618 ClearPageUptodate(page);
2624 if (unlikely(!uptodate)) {
2626 endio_readpage_release_extent(tree,
2632 endio_readpage_release_extent(tree, start,
2633 end - start + 1, 0);
2634 } else if (!extent_len) {
2635 extent_start = start;
2636 extent_len = end + 1 - start;
2637 } else if (extent_start + extent_len == start) {
2638 extent_len += end + 1 - start;
2640 endio_readpage_release_extent(tree, extent_start,
2641 extent_len, uptodate);
2642 extent_start = start;
2643 extent_len = end + 1 - start;
2648 endio_readpage_release_extent(tree, extent_start, extent_len,
2651 io_bio->end_io(io_bio, blk_status_to_errno(bio->bi_status));
2656 * Initialize the members up to but not including 'bio'. Use after allocating a
2657 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2658 * 'bio' because use of __GFP_ZERO is not supported.
2660 static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
2662 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2666 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2667 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2668 * for the appropriate container_of magic
2670 struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
2674 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, btrfs_bioset);
2675 bio_set_dev(bio, bdev);
2676 bio->bi_iter.bi_sector = first_byte >> 9;
2677 btrfs_io_bio_init(btrfs_io_bio(bio));
2681 struct bio *btrfs_bio_clone(struct bio *bio)
2683 struct btrfs_io_bio *btrfs_bio;
2686 /* Bio allocation backed by a bioset does not fail */
2687 new = bio_clone_fast(bio, GFP_NOFS, btrfs_bioset);
2688 btrfs_bio = btrfs_io_bio(new);
2689 btrfs_io_bio_init(btrfs_bio);
2690 btrfs_bio->iter = bio->bi_iter;
2694 struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
2698 /* Bio allocation backed by a bioset does not fail */
2699 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, btrfs_bioset);
2700 btrfs_io_bio_init(btrfs_io_bio(bio));
2704 struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
2707 struct btrfs_io_bio *btrfs_bio;
2709 /* this will never fail when it's backed by a bioset */
2710 bio = bio_clone_fast(orig, GFP_NOFS, btrfs_bioset);
2713 btrfs_bio = btrfs_io_bio(bio);
2714 btrfs_io_bio_init(btrfs_bio);
2716 bio_trim(bio, offset >> 9, size >> 9);
2717 btrfs_bio->iter = bio->bi_iter;
2721 static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2722 unsigned long bio_flags)
2724 blk_status_t ret = 0;
2725 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2726 struct page *page = bvec->bv_page;
2727 struct extent_io_tree *tree = bio->bi_private;
2730 start = page_offset(page) + bvec->bv_offset;
2732 bio->bi_private = NULL;
2736 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
2737 mirror_num, bio_flags, start);
2739 btrfsic_submit_bio(bio);
2742 return blk_status_to_errno(ret);
2745 static int merge_bio(struct extent_io_tree *tree, struct page *page,
2746 unsigned long offset, size_t size, struct bio *bio,
2747 unsigned long bio_flags)
2751 ret = tree->ops->merge_bio_hook(page, offset, size, bio,
2758 * @opf: bio REQ_OP_* and REQ_* flags as one value
2760 static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
2761 struct writeback_control *wbc,
2762 struct page *page, u64 offset,
2763 size_t size, unsigned long pg_offset,
2764 struct block_device *bdev,
2765 struct bio **bio_ret,
2766 bio_end_io_t end_io_func,
2768 unsigned long prev_bio_flags,
2769 unsigned long bio_flags,
2770 bool force_bio_submit)
2775 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
2776 size_t page_size = min_t(size_t, size, PAGE_SIZE);
2777 sector_t sector = offset >> 9;
2779 if (bio_ret && *bio_ret) {
2782 contig = bio->bi_iter.bi_sector == sector;
2784 contig = bio_end_sector(bio) == sector;
2786 if (prev_bio_flags != bio_flags || !contig ||
2788 merge_bio(tree, page, pg_offset, page_size, bio, bio_flags) ||
2789 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
2790 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
2798 wbc_account_io(wbc, page, page_size);
2803 bio = btrfs_bio_alloc(bdev, offset);
2804 bio_add_page(bio, page, page_size, pg_offset);
2805 bio->bi_end_io = end_io_func;
2806 bio->bi_private = tree;
2807 bio->bi_write_hint = page->mapping->host->i_write_hint;
2810 wbc_init_bio(wbc, bio);
2811 wbc_account_io(wbc, page, page_size);
2817 ret = submit_one_bio(bio, mirror_num, bio_flags);
2822 static void attach_extent_buffer_page(struct extent_buffer *eb,
2825 if (!PagePrivate(page)) {
2826 SetPagePrivate(page);
2828 set_page_private(page, (unsigned long)eb);
2830 WARN_ON(page->private != (unsigned long)eb);
2834 void set_page_extent_mapped(struct page *page)
2836 if (!PagePrivate(page)) {
2837 SetPagePrivate(page);
2839 set_page_private(page, EXTENT_PAGE_PRIVATE);
2843 static struct extent_map *
2844 __get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2845 u64 start, u64 len, get_extent_t *get_extent,
2846 struct extent_map **em_cached)
2848 struct extent_map *em;
2850 if (em_cached && *em_cached) {
2852 if (extent_map_in_tree(em) && start >= em->start &&
2853 start < extent_map_end(em)) {
2854 refcount_inc(&em->refs);
2858 free_extent_map(em);
2862 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
2863 if (em_cached && !IS_ERR_OR_NULL(em)) {
2865 refcount_inc(&em->refs);
2871 * basic readpage implementation. Locked extent state structs are inserted
2872 * into the tree that are removed when the IO is done (by the end_io
2874 * XXX JDM: This needs looking at to ensure proper page locking
2875 * return 0 on success, otherwise return error
2877 static int __do_readpage(struct extent_io_tree *tree,
2879 get_extent_t *get_extent,
2880 struct extent_map **em_cached,
2881 struct bio **bio, int mirror_num,
2882 unsigned long *bio_flags, unsigned int read_flags,
2885 struct inode *inode = page->mapping->host;
2886 u64 start = page_offset(page);
2887 u64 page_end = start + PAGE_SIZE - 1;
2891 u64 last_byte = i_size_read(inode);
2894 struct extent_map *em;
2895 struct block_device *bdev;
2898 size_t pg_offset = 0;
2900 size_t disk_io_size;
2901 size_t blocksize = inode->i_sb->s_blocksize;
2902 unsigned long this_bio_flag = 0;
2904 set_page_extent_mapped(page);
2907 if (!PageUptodate(page)) {
2908 if (cleancache_get_page(page) == 0) {
2909 BUG_ON(blocksize != PAGE_SIZE);
2910 unlock_extent(tree, start, end);
2915 if (page->index == last_byte >> PAGE_SHIFT) {
2917 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
2920 iosize = PAGE_SIZE - zero_offset;
2921 userpage = kmap_atomic(page);
2922 memset(userpage + zero_offset, 0, iosize);
2923 flush_dcache_page(page);
2924 kunmap_atomic(userpage);
2927 while (cur <= end) {
2928 bool force_bio_submit = false;
2931 if (cur >= last_byte) {
2933 struct extent_state *cached = NULL;
2935 iosize = PAGE_SIZE - pg_offset;
2936 userpage = kmap_atomic(page);
2937 memset(userpage + pg_offset, 0, iosize);
2938 flush_dcache_page(page);
2939 kunmap_atomic(userpage);
2940 set_extent_uptodate(tree, cur, cur + iosize - 1,
2942 unlock_extent_cached(tree, cur,
2947 em = __get_extent_map(inode, page, pg_offset, cur,
2948 end - cur + 1, get_extent, em_cached);
2949 if (IS_ERR_OR_NULL(em)) {
2951 unlock_extent(tree, cur, end);
2954 extent_offset = cur - em->start;
2955 BUG_ON(extent_map_end(em) <= cur);
2958 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2959 this_bio_flag |= EXTENT_BIO_COMPRESSED;
2960 extent_set_compress_type(&this_bio_flag,
2964 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2965 cur_end = min(extent_map_end(em) - 1, end);
2966 iosize = ALIGN(iosize, blocksize);
2967 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2968 disk_io_size = em->block_len;
2969 offset = em->block_start;
2971 offset = em->block_start + extent_offset;
2972 disk_io_size = iosize;
2975 block_start = em->block_start;
2976 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2977 block_start = EXTENT_MAP_HOLE;
2980 * If we have a file range that points to a compressed extent
2981 * and it's followed by a consecutive file range that points to
2982 * to the same compressed extent (possibly with a different
2983 * offset and/or length, so it either points to the whole extent
2984 * or only part of it), we must make sure we do not submit a
2985 * single bio to populate the pages for the 2 ranges because
2986 * this makes the compressed extent read zero out the pages
2987 * belonging to the 2nd range. Imagine the following scenario:
2990 * [0 - 8K] [8K - 24K]
2993 * points to extent X, points to extent X,
2994 * offset 4K, length of 8K offset 0, length 16K
2996 * [extent X, compressed length = 4K uncompressed length = 16K]
2998 * If the bio to read the compressed extent covers both ranges,
2999 * it will decompress extent X into the pages belonging to the
3000 * first range and then it will stop, zeroing out the remaining
3001 * pages that belong to the other range that points to extent X.
3002 * So here we make sure we submit 2 bios, one for the first
3003 * range and another one for the third range. Both will target
3004 * the same physical extent from disk, but we can't currently
3005 * make the compressed bio endio callback populate the pages
3006 * for both ranges because each compressed bio is tightly
3007 * coupled with a single extent map, and each range can have
3008 * an extent map with a different offset value relative to the
3009 * uncompressed data of our extent and different lengths. This
3010 * is a corner case so we prioritize correctness over
3011 * non-optimal behavior (submitting 2 bios for the same extent).
3013 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3014 prev_em_start && *prev_em_start != (u64)-1 &&
3015 *prev_em_start != em->orig_start)
3016 force_bio_submit = true;
3019 *prev_em_start = em->orig_start;
3021 free_extent_map(em);
3024 /* we've found a hole, just zero and go on */
3025 if (block_start == EXTENT_MAP_HOLE) {
3027 struct extent_state *cached = NULL;
3029 userpage = kmap_atomic(page);
3030 memset(userpage + pg_offset, 0, iosize);
3031 flush_dcache_page(page);
3032 kunmap_atomic(userpage);
3034 set_extent_uptodate(tree, cur, cur + iosize - 1,
3036 unlock_extent_cached(tree, cur,
3040 pg_offset += iosize;
3043 /* the get_extent function already copied into the page */
3044 if (test_range_bit(tree, cur, cur_end,
3045 EXTENT_UPTODATE, 1, NULL)) {
3046 check_page_uptodate(tree, page);
3047 unlock_extent(tree, cur, cur + iosize - 1);
3049 pg_offset += iosize;
3052 /* we have an inline extent but it didn't get marked up
3053 * to date. Error out
3055 if (block_start == EXTENT_MAP_INLINE) {
3057 unlock_extent(tree, cur, cur + iosize - 1);
3059 pg_offset += iosize;
3063 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
3064 page, offset, disk_io_size,
3065 pg_offset, bdev, bio,
3066 end_bio_extent_readpage, mirror_num,
3072 *bio_flags = this_bio_flag;
3075 unlock_extent(tree, cur, cur + iosize - 1);
3079 pg_offset += iosize;
3083 if (!PageError(page))
3084 SetPageUptodate(page);
3090 static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3091 struct page *pages[], int nr_pages,
3093 get_extent_t *get_extent,
3094 struct extent_map **em_cached,
3096 unsigned long *bio_flags,
3099 struct inode *inode;
3100 struct btrfs_ordered_extent *ordered;
3103 inode = pages[0]->mapping->host;
3105 lock_extent(tree, start, end);
3106 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
3110 unlock_extent(tree, start, end);
3111 btrfs_start_ordered_extent(inode, ordered, 1);
3112 btrfs_put_ordered_extent(ordered);
3115 for (index = 0; index < nr_pages; index++) {
3116 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
3117 0, bio_flags, 0, prev_em_start);
3118 put_page(pages[index]);
3122 static void __extent_readpages(struct extent_io_tree *tree,