blob: 3ecd3ab73981f26f8adf3011f2c3932553c03dd8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Chris Masond1310b22008-01-24 16:13:08 -05002#include <linux/bitops.h>
3#include <linux/slab.h>
4#include <linux/bio.h>
5#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05006#include <linux/pagemap.h>
7#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05008#include <linux/spinlock.h>
9#include <linux/blkdev.h>
10#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050011#include <linux/writeback.h>
12#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070013#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060014#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050015#include "extent_io.h"
16#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040017#include "ctree.h"
18#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020019#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010020#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040021#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040022#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080023#include "backref.h"
Chris Masond1310b22008-01-24 16:13:08 -050024
Chris Masond1310b22008-01-24 16:13:08 -050025static struct kmem_cache *extent_state_cache;
26static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040027static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050028
Filipe Manana27a35072014-07-06 20:09:59 +010029static inline bool extent_state_in_tree(const struct extent_state *state)
30{
31 return !RB_EMPTY_NODE(&state->rb_node);
32}
33
Eric Sandeen6d49ba12013-04-22 16:12:31 +000034#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050035static LIST_HEAD(buffers);
36static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040037
Chris Masond3977122009-01-05 21:25:51 -050038static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000039
40static inline
41void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
42{
43 unsigned long flags;
44
45 spin_lock_irqsave(&leak_lock, flags);
46 list_add(new, head);
47 spin_unlock_irqrestore(&leak_lock, flags);
48}
49
50static inline
51void btrfs_leak_debug_del(struct list_head *entry)
52{
53 unsigned long flags;
54
55 spin_lock_irqsave(&leak_lock, flags);
56 list_del(entry);
57 spin_unlock_irqrestore(&leak_lock, flags);
58}
59
60static inline
61void btrfs_leak_debug_check(void)
62{
63 struct extent_state *state;
64 struct extent_buffer *eb;
65
66 while (!list_empty(&states)) {
67 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010068 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010069 state->start, state->end, state->state,
70 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020071 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000072 list_del(&state->leak_list);
73 kmem_cache_free(extent_state_cache, state);
74 }
75
76 while (!list_empty(&buffers)) {
77 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Jeff Mahoney62e85572016-09-20 10:05:01 -040078 pr_err("BTRFS: buffer leak start %llu len %lu refs %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020079 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000080 list_del(&eb->leak_list);
81 kmem_cache_free(extent_buffer_cache, eb);
82 }
83}
David Sterba8d599ae2013-04-30 15:22:23 +000084
Josef Bacika5dee372013-12-13 10:02:44 -050085#define btrfs_debug_check_extent_io_range(tree, start, end) \
86 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000087static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050088 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000089{
Josef Bacikc6100a42017-05-05 11:57:13 -040090 if (tree->ops && tree->ops->check_extent_io_range)
91 tree->ops->check_extent_io_range(tree->private_data, caller,
92 start, end);
David Sterba8d599ae2013-04-30 15:22:23 +000093}
Eric Sandeen6d49ba12013-04-22 16:12:31 +000094#else
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)
David Sterba8d599ae2013-04-30 15:22:23 +000098#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -040099#endif
Chris Masond1310b22008-01-24 16:13:08 -0500100
Chris Masond1310b22008-01-24 16:13:08 -0500101#define BUFFER_LRU_MAX 64
102
103struct tree_entry {
104 u64 start;
105 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500106 struct rb_node rb_node;
107};
108
109struct extent_page_data {
110 struct bio *bio;
111 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -0500112 /* tells writepage not to lock the state bits for this range
113 * it still does the unlocking
114 */
Chris Masonffbd5172009-04-20 15:50:09 -0400115 unsigned int extent_locked:1;
116
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600117 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400118 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500119};
120
Qu Wenruod38ed272015-10-12 14:53:37 +0800121static void add_extent_changeset(struct extent_state *state, unsigned bits,
122 struct extent_changeset *changeset,
123 int set)
124{
125 int ret;
126
127 if (!changeset)
128 return;
129 if (set && (state->state & bits) == bits)
130 return;
Qu Wenruofefdc552015-10-12 15:35:38 +0800131 if (!set && (state->state & bits) == 0)
132 return;
Qu Wenruod38ed272015-10-12 14:53:37 +0800133 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100134 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800135 GFP_ATOMIC);
136 /* ENOMEM */
137 BUG_ON(ret < 0);
138}
139
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400140static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400141static inline struct btrfs_fs_info *
142tree_fs_info(struct extent_io_tree *tree)
143{
Josef Bacikc6100a42017-05-05 11:57:13 -0400144 if (tree->ops)
145 return tree->ops->tree_fs_info(tree->private_data);
146 return NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400147}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400148
Chris Masond1310b22008-01-24 16:13:08 -0500149int __init extent_io_init(void)
150{
David Sterba837e1972012-09-07 03:00:48 -0600151 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200152 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300153 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500154 if (!extent_state_cache)
155 return -ENOMEM;
156
David Sterba837e1972012-09-07 03:00:48 -0600157 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200158 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300159 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500160 if (!extent_buffer_cache)
161 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400162
163 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
NeilBrown011067b2017-06-18 14:38:57 +1000164 offsetof(struct btrfs_io_bio, bio),
165 BIOSET_NEED_BVECS);
Chris Mason9be33952013-05-17 18:30:14 -0400166 if (!btrfs_bioset)
167 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700168
169 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
170 goto free_bioset;
171
Chris Masond1310b22008-01-24 16:13:08 -0500172 return 0;
173
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700174free_bioset:
175 bioset_free(btrfs_bioset);
176 btrfs_bioset = NULL;
177
Chris Mason9be33952013-05-17 18:30:14 -0400178free_buffer_cache:
179 kmem_cache_destroy(extent_buffer_cache);
180 extent_buffer_cache = NULL;
181
Chris Masond1310b22008-01-24 16:13:08 -0500182free_state_cache:
183 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400184 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500185 return -ENOMEM;
186}
187
188void extent_io_exit(void)
189{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000190 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000191
192 /*
193 * Make sure all delayed rcu free are flushed before we
194 * destroy caches.
195 */
196 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800197 kmem_cache_destroy(extent_state_cache);
198 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400199 if (btrfs_bioset)
200 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500201}
202
203void extent_io_tree_init(struct extent_io_tree *tree,
Josef Bacikc6100a42017-05-05 11:57:13 -0400204 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500205{
Eric Paris6bef4d32010-02-23 19:43:04 +0000206 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500207 tree->ops = NULL;
208 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500209 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400210 tree->private_data = private_data;
Chris Masond1310b22008-01-24 16:13:08 -0500211}
Chris Masond1310b22008-01-24 16:13:08 -0500212
Christoph Hellwigb2950862008-12-02 09:54:17 -0500213static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500214{
215 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500216
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100217 /*
218 * The given mask might be not appropriate for the slab allocator,
219 * drop the unsupported bits
220 */
221 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500222 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400223 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500224 return state;
225 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100226 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100227 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000228 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200229 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500230 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100231 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500232 return state;
233}
Chris Masond1310b22008-01-24 16:13:08 -0500234
Chris Mason4845e442010-05-25 20:56:50 -0400235void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500236{
Chris Masond1310b22008-01-24 16:13:08 -0500237 if (!state)
238 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200239 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100240 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000241 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100242 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500243 kmem_cache_free(extent_state_cache, state);
244 }
245}
Chris Masond1310b22008-01-24 16:13:08 -0500246
Filipe Mananaf2071b22014-02-12 15:05:53 +0000247static struct rb_node *tree_insert(struct rb_root *root,
248 struct rb_node *search_start,
249 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000250 struct rb_node *node,
251 struct rb_node ***p_in,
252 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500253{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000254 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500255 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500256 struct tree_entry *entry;
257
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000258 if (p_in && parent_in) {
259 p = *p_in;
260 parent = *parent_in;
261 goto do_insert;
262 }
263
Filipe Mananaf2071b22014-02-12 15:05:53 +0000264 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500265 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500266 parent = *p;
267 entry = rb_entry(parent, struct tree_entry, rb_node);
268
269 if (offset < entry->start)
270 p = &(*p)->rb_left;
271 else if (offset > entry->end)
272 p = &(*p)->rb_right;
273 else
274 return parent;
275 }
276
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000277do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500278 rb_link_node(node, parent, p);
279 rb_insert_color(node, root);
280 return NULL;
281}
282
Chris Mason80ea96b2008-02-01 14:51:59 -0500283static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000284 struct rb_node **prev_ret,
285 struct rb_node **next_ret,
286 struct rb_node ***p_ret,
287 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500288{
Chris Mason80ea96b2008-02-01 14:51:59 -0500289 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000290 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500291 struct rb_node *prev = NULL;
292 struct rb_node *orig_prev = NULL;
293 struct tree_entry *entry;
294 struct tree_entry *prev_entry = NULL;
295
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000296 while (*n) {
297 prev = *n;
298 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500299 prev_entry = entry;
300
301 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000302 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500303 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000304 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500305 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000306 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500307 }
308
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000309 if (p_ret)
310 *p_ret = n;
311 if (parent_ret)
312 *parent_ret = prev;
313
Chris Masond1310b22008-01-24 16:13:08 -0500314 if (prev_ret) {
315 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500316 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500317 prev = rb_next(prev);
318 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
319 }
320 *prev_ret = prev;
321 prev = orig_prev;
322 }
323
324 if (next_ret) {
325 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500326 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500327 prev = rb_prev(prev);
328 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
329 }
330 *next_ret = prev;
331 }
332 return NULL;
333}
334
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000335static inline struct rb_node *
336tree_search_for_insert(struct extent_io_tree *tree,
337 u64 offset,
338 struct rb_node ***p_ret,
339 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500340{
Chris Mason70dec802008-01-29 09:59:12 -0500341 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500342 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500343
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000344 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500345 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500346 return prev;
347 return ret;
348}
349
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000350static inline struct rb_node *tree_search(struct extent_io_tree *tree,
351 u64 offset)
352{
353 return tree_search_for_insert(tree, offset, NULL, NULL);
354}
355
Josef Bacik9ed74f22009-09-11 16:12:44 -0400356static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
357 struct extent_state *other)
358{
359 if (tree->ops && tree->ops->merge_extent_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400360 tree->ops->merge_extent_hook(tree->private_data, new, other);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400361}
362
Chris Masond1310b22008-01-24 16:13:08 -0500363/*
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).
369 *
370 * This should be called with the tree lock held.
371 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000372static void merge_state(struct extent_io_tree *tree,
373 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500374{
375 struct extent_state *other;
376 struct rb_node *other_node;
377
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400378 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000379 return;
Chris Masond1310b22008-01-24 16:13:08 -0500380
381 other_node = rb_prev(&state->rb_node);
382 if (other_node) {
383 other = rb_entry(other_node, struct extent_state, rb_node);
384 if (other->end == state->start - 1 &&
385 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400386 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500387 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500388 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100389 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500390 free_extent_state(other);
391 }
392 }
393 other_node = rb_next(&state->rb_node);
394 if (other_node) {
395 other = rb_entry(other_node, struct extent_state, rb_node);
396 if (other->start == state->end + 1 &&
397 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400398 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400399 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400400 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100401 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400402 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500403 }
404 }
Chris Masond1310b22008-01-24 16:13:08 -0500405}
406
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000407static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100408 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500409{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000410 if (tree->ops && tree->ops->set_bit_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400411 tree->ops->set_bit_hook(tree->private_data, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500412}
413
414static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100415 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500416{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400417 if (tree->ops && tree->ops->clear_bit_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400418 tree->ops->clear_bit_hook(tree->private_data, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500419}
420
Xiao Guangrong3150b692011-07-14 03:19:08 +0000421static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800422 struct extent_state *state, unsigned *bits,
423 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000424
Chris Masond1310b22008-01-24 16:13:08 -0500425/*
426 * insert an extent_state struct into the tree. 'bits' are set on the
427 * struct before it is inserted.
428 *
429 * This may return -EEXIST if the extent is already there, in which case the
430 * state struct is freed.
431 *
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).
434 */
435static int insert_state(struct extent_io_tree *tree,
436 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000437 struct rb_node ***p,
438 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800439 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500440{
441 struct rb_node *node;
442
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000443 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500444 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200445 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500446 state->start = start;
447 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400448
Qu Wenruod38ed272015-10-12 14:53:37 +0800449 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000450
Filipe Mananaf2071b22014-02-12 15:05:53 +0000451 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500452 if (node) {
453 struct extent_state *found;
454 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400455 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200456 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500457 return -EEXIST;
458 }
459 merge_state(tree, state);
460 return 0;
461}
462
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000463static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400464 u64 split)
465{
466 if (tree->ops && tree->ops->split_extent_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400467 tree->ops->split_extent_hook(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400468}
469
Chris Masond1310b22008-01-24 16:13:08 -0500470/*
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.
474 *
475 * Before calling,
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 ]
480 *
481 * The tree locks are not taken by this function. They need to be held
482 * by the caller.
483 */
484static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
485 struct extent_state *prealloc, u64 split)
486{
487 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400488
489 split_cb(tree, orig, split);
490
Chris Masond1310b22008-01-24 16:13:08 -0500491 prealloc->start = orig->start;
492 prealloc->end = split - 1;
493 prealloc->state = orig->state;
494 orig->start = split;
495
Filipe Mananaf2071b22014-02-12 15:05:53 +0000496 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
497 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500498 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500499 free_extent_state(prealloc);
500 return -EEXIST;
501 }
502 return 0;
503}
504
Li Zefancdc6a392012-03-12 16:39:48 +0800505static struct extent_state *next_state(struct extent_state *state)
506{
507 struct rb_node *next = rb_next(&state->rb_node);
508 if (next)
509 return rb_entry(next, struct extent_state, rb_node);
510 else
511 return NULL;
512}
513
Chris Masond1310b22008-01-24 16:13:08 -0500514/*
515 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800516 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500517 *
518 * If no bits are set on the state struct after clearing things, the
519 * struct is freed and removed from the tree
520 */
Li Zefancdc6a392012-03-12 16:39:48 +0800521static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
522 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800523 unsigned *bits, int wake,
524 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500525{
Li Zefancdc6a392012-03-12 16:39:48 +0800526 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100527 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500528
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400529 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500530 u64 range = state->end - state->start + 1;
531 WARN_ON(range > tree->dirty_bytes);
532 tree->dirty_bytes -= range;
533 }
Chris Mason291d6732008-01-29 15:55:23 -0500534 clear_state_cb(tree, state, bits);
Qu Wenruofefdc552015-10-12 15:35:38 +0800535 add_extent_changeset(state, bits_to_clear, changeset, 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400536 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500537 if (wake)
538 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400539 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800540 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100541 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500542 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100543 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500544 free_extent_state(state);
545 } else {
546 WARN_ON(1);
547 }
548 } else {
549 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800550 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500551 }
Li Zefancdc6a392012-03-12 16:39:48 +0800552 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500553}
554
Xiao Guangrong82337672011-04-20 06:44:57 +0000555static struct extent_state *
556alloc_extent_state_atomic(struct extent_state *prealloc)
557{
558 if (!prealloc)
559 prealloc = alloc_extent_state(GFP_ATOMIC);
560
561 return prealloc;
562}
563
Eric Sandeen48a3b632013-04-25 20:41:01 +0000564static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400565{
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400566 btrfs_panic(tree_fs_info(tree), err,
567 "Locking error: Extent tree was modified by another thread while locked.");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400568}
569
Chris Masond1310b22008-01-24 16:13:08 -0500570/*
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.
574 *
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).
577 *
578 * the range [start, end] is inclusive.
579 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100580 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500581 */
David Sterba66b0c882017-10-31 16:30:47 +0100582int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800583 unsigned bits, int wake, int delete,
584 struct extent_state **cached_state,
585 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500586{
587 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400588 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500589 struct extent_state *prealloc = NULL;
590 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400591 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500592 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000593 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500594
Josef Bacika5dee372013-12-13 10:02:44 -0500595 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000596
Josef Bacik7ee9e442013-06-21 16:37:03 -0400597 if (bits & EXTENT_DELALLOC)
598 bits |= EXTENT_NORESERVE;
599
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400600 if (delete)
601 bits |= ~EXTENT_CTLBITS;
602 bits |= EXTENT_FIRST_DELALLOC;
603
Josef Bacik2ac55d42010-02-03 19:33:23 +0000604 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
605 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500606again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800607 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000608 /*
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.
614 */
Chris Masond1310b22008-01-24 16:13:08 -0500615 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500616 }
617
Chris Masoncad321a2008-12-17 14:51:42 -0500618 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400619 if (cached_state) {
620 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000621
622 if (clear) {
623 *cached_state = NULL;
624 cached_state = NULL;
625 }
626
Filipe Manana27a35072014-07-06 20:09:59 +0100627 if (cached && extent_state_in_tree(cached) &&
628 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000629 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200630 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400631 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400632 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400633 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000634 if (clear)
635 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400636 }
Chris Masond1310b22008-01-24 16:13:08 -0500637 /*
638 * this search will find the extents that end after
639 * our range starts
640 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500641 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500642 if (!node)
643 goto out;
644 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400645hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500646 if (state->start > end)
647 goto out;
648 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400649 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500650
Liu Bo04493142012-02-16 18:34:37 +0800651 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800652 if (!(state->state & bits)) {
653 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800654 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800655 }
Liu Bo04493142012-02-16 18:34:37 +0800656
Chris Masond1310b22008-01-24 16:13:08 -0500657 /*
658 * | ---- desired range ---- |
659 * | state | or
660 * | ------------- state -------------- |
661 *
662 * We need to split the extent we found, and may flip
663 * bits on second half.
664 *
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.
668 *
669 * If the extent we found is inside our range, we clear
670 * the desired bit on it.
671 */
672
673 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000674 prealloc = alloc_extent_state_atomic(prealloc);
675 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500676 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400677 if (err)
678 extent_io_tree_panic(tree, err);
679
Chris Masond1310b22008-01-24 16:13:08 -0500680 prealloc = NULL;
681 if (err)
682 goto out;
683 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800684 state = clear_state_bit(tree, state, &bits, wake,
685 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800686 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500687 }
688 goto search_again;
689 }
690 /*
691 * | ---- desired range ---- |
692 * | state |
693 * We need to split the extent, and clear the bit
694 * on the first half
695 */
696 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000697 prealloc = alloc_extent_state_atomic(prealloc);
698 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500699 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400700 if (err)
701 extent_io_tree_panic(tree, err);
702
Chris Masond1310b22008-01-24 16:13:08 -0500703 if (wake)
704 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400705
Qu Wenruofefdc552015-10-12 15:35:38 +0800706 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400707
Chris Masond1310b22008-01-24 16:13:08 -0500708 prealloc = NULL;
709 goto out;
710 }
Chris Mason42daec22009-09-23 19:51:09 -0400711
Qu Wenruofefdc552015-10-12 15:35:38 +0800712 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800713next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400714 if (last_end == (u64)-1)
715 goto out;
716 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800717 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800718 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500719
720search_again:
721 if (start > end)
722 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500723 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800724 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500725 cond_resched();
726 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200727
728out:
729 spin_unlock(&tree->lock);
730 if (prealloc)
731 free_extent_state(prealloc);
732
733 return 0;
734
Chris Masond1310b22008-01-24 16:13:08 -0500735}
Chris Masond1310b22008-01-24 16:13:08 -0500736
Jeff Mahoney143bede2012-03-01 14:56:26 +0100737static void wait_on_state(struct extent_io_tree *tree,
738 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500739 __releases(tree->lock)
740 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500741{
742 DEFINE_WAIT(wait);
743 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500744 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500745 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500746 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500747 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500748}
749
750/*
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
754 */
David Sterba41074882013-04-29 13:38:46 +0000755static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
756 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500757{
758 struct extent_state *state;
759 struct rb_node *node;
760
Josef Bacika5dee372013-12-13 10:02:44 -0500761 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000762
Chris Masoncad321a2008-12-17 14:51:42 -0500763 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500764again:
765 while (1) {
766 /*
767 * this search will find all the extents that end after
768 * our range starts
769 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500770 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100771process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500772 if (!node)
773 break;
774
775 state = rb_entry(node, struct extent_state, rb_node);
776
777 if (state->start > end)
778 goto out;
779
780 if (state->state & bits) {
781 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200782 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500783 wait_on_state(tree, state);
784 free_extent_state(state);
785 goto again;
786 }
787 start = state->end + 1;
788
789 if (start > end)
790 break;
791
Filipe Mananac50d3e72014-03-31 14:53:25 +0100792 if (!cond_resched_lock(&tree->lock)) {
793 node = rb_next(node);
794 goto process_node;
795 }
Chris Masond1310b22008-01-24 16:13:08 -0500796 }
797out:
Chris Masoncad321a2008-12-17 14:51:42 -0500798 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500799}
Chris Masond1310b22008-01-24 16:13:08 -0500800
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000801static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500802 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800803 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500804{
David Sterba9ee49a042015-01-14 19:52:13 +0100805 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400806
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000807 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400808 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500809 u64 range = state->end - state->start + 1;
810 tree->dirty_bytes += range;
811 }
Qu Wenruod38ed272015-10-12 14:53:37 +0800812 add_extent_changeset(state, bits_to_set, changeset, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400813 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500814}
815
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100816static void cache_state_if_flags(struct extent_state *state,
817 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100818 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400819{
820 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100821 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400822 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200823 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400824 }
825 }
826}
827
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100828static void cache_state(struct extent_state *state,
829 struct extent_state **cached_ptr)
830{
831 return cache_state_if_flags(state, cached_ptr,
832 EXTENT_IOBITS | EXTENT_BOUNDARY);
833}
834
Chris Masond1310b22008-01-24 16:13:08 -0500835/*
Chris Mason1edbb732009-09-02 13:24:36 -0400836 * 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.
Chris Masond1310b22008-01-24 16:13:08 -0500838 *
Chris Mason1edbb732009-09-02 13:24:36 -0400839 * 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.
Chris Masond1310b22008-01-24 16:13:08 -0500842 *
Chris Mason1edbb732009-09-02 13:24:36 -0400843 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500844 */
Chris Mason1edbb732009-09-02 13:24:36 -0400845
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100846static int __must_check
847__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100848 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000849 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800850 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500851{
852 struct extent_state *state;
853 struct extent_state *prealloc = NULL;
854 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000855 struct rb_node **p;
856 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500857 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500858 u64 last_start;
859 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400860
Josef Bacika5dee372013-12-13 10:02:44 -0500861 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000862
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400863 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500864again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800865 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200866 /*
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.
872 */
Chris Masond1310b22008-01-24 16:13:08 -0500873 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500874 }
875
Chris Masoncad321a2008-12-17 14:51:42 -0500876 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400877 if (cached_state && *cached_state) {
878 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400879 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100880 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400881 node = &state->rb_node;
882 goto hit_next;
883 }
884 }
Chris Masond1310b22008-01-24 16:13:08 -0500885 /*
886 * this search will find all the extents that end after
887 * our range starts.
888 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000889 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500890 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000891 prealloc = alloc_extent_state_atomic(prealloc);
892 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000893 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800894 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400895 if (err)
896 extent_io_tree_panic(tree, err);
897
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000898 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500899 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500900 goto out;
901 }
Chris Masond1310b22008-01-24 16:13:08 -0500902 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400903hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500904 last_start = state->start;
905 last_end = state->end;
906
907 /*
908 * | ---- desired range ---- |
909 * | state |
910 *
911 * Just lock what we found and keep going
912 */
913 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400914 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500915 *failed_start = state->start;
916 err = -EEXIST;
917 goto out;
918 }
Chris Mason42daec22009-09-23 19:51:09 -0400919
Qu Wenruod38ed272015-10-12 14:53:37 +0800920 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400921 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500922 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400923 if (last_end == (u64)-1)
924 goto out;
925 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800926 state = next_state(state);
927 if (start < end && state && state->start == start &&
928 !need_resched())
929 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500930 goto search_again;
931 }
932
933 /*
934 * | ---- desired range ---- |
935 * | state |
936 * or
937 * | ------------- state -------------- |
938 *
939 * We need to split the extent we found, and may flip bits on
940 * second half.
941 *
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.
945 *
946 * If the extent we found is inside our range, we set the
947 * desired bit on it.
948 */
949 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400950 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500951 *failed_start = start;
952 err = -EEXIST;
953 goto out;
954 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000955
956 prealloc = alloc_extent_state_atomic(prealloc);
957 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500958 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400959 if (err)
960 extent_io_tree_panic(tree, err);
961
Chris Masond1310b22008-01-24 16:13:08 -0500962 prealloc = NULL;
963 if (err)
964 goto out;
965 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800966 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400967 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500968 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400969 if (last_end == (u64)-1)
970 goto out;
971 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800972 state = next_state(state);
973 if (start < end && state && state->start == start &&
974 !need_resched())
975 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500976 }
977 goto search_again;
978 }
979 /*
980 * | ---- desired range ---- |
981 * | state | or | state |
982 *
983 * There's a hole, we need to insert something in it and
984 * ignore the extent we found.
985 */
986 if (state->start > start) {
987 u64 this_end;
988 if (end < last_start)
989 this_end = end;
990 else
Chris Masond3977122009-01-05 21:25:51 -0500991 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000992
993 prealloc = alloc_extent_state_atomic(prealloc);
994 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000995
996 /*
997 * Avoid to free 'prealloc' if it can be merged with
998 * the later extent.
999 */
Chris Masond1310b22008-01-24 16:13:08 -05001000 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001001 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001002 if (err)
1003 extent_io_tree_panic(tree, err);
1004
Chris Mason2c64c532009-09-02 15:04:12 -04001005 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001006 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001007 start = this_end + 1;
1008 goto search_again;
1009 }
1010 /*
1011 * | ---- desired range ---- |
1012 * | state |
1013 * We need to split the extent, and set the bit
1014 * on the first half
1015 */
1016 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001017 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001018 *failed_start = start;
1019 err = -EEXIST;
1020 goto out;
1021 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001022
1023 prealloc = alloc_extent_state_atomic(prealloc);
1024 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001025 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001026 if (err)
1027 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001028
Qu Wenruod38ed272015-10-12 14:53:37 +08001029 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001030 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001031 merge_state(tree, prealloc);
1032 prealloc = NULL;
1033 goto out;
1034 }
1035
David Sterbab5a4ba142016-04-27 01:02:15 +02001036search_again:
1037 if (start > end)
1038 goto out;
1039 spin_unlock(&tree->lock);
1040 if (gfpflags_allow_blocking(mask))
1041 cond_resched();
1042 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001043
1044out:
Chris Masoncad321a2008-12-17 14:51:42 -05001045 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001046 if (prealloc)
1047 free_extent_state(prealloc);
1048
1049 return err;
1050
Chris Masond1310b22008-01-24 16:13:08 -05001051}
Chris Masond1310b22008-01-24 16:13:08 -05001052
David Sterba41074882013-04-29 13:38:46 +00001053int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001054 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001055 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001056{
1057 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001058 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001059}
1060
1061
Josef Bacik462d6fa2011-09-26 13:56:12 -04001062/**
Liu Bo10983f22012-07-11 15:26:19 +08001063 * convert_extent_bit - convert all bits in a given range from one bit to
1064 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001065 * @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
Josef Bacike6138872012-09-27 17:07:30 -04001070 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001071 *
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.
David Sterba210aa272016-04-26 23:54:39 +02001077 *
1078 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001079 */
1080int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001081 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001082 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001083{
1084 struct extent_state *state;
1085 struct extent_state *prealloc = NULL;
1086 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001087 struct rb_node **p;
1088 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001089 int err = 0;
1090 u64 last_start;
1091 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001092 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001093
Josef Bacika5dee372013-12-13 10:02:44 -05001094 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001095
Josef Bacik462d6fa2011-09-26 13:56:12 -04001096again:
David Sterba210aa272016-04-26 23:54:39 +02001097 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001098 /*
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.
1104 */
David Sterba210aa272016-04-26 23:54:39 +02001105 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001106 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001107 return -ENOMEM;
1108 }
1109
1110 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001111 if (cached_state && *cached_state) {
1112 state = *cached_state;
1113 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001114 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001115 node = &state->rb_node;
1116 goto hit_next;
1117 }
1118 }
1119
Josef Bacik462d6fa2011-09-26 13:56:12 -04001120 /*
1121 * this search will find all the extents that end after
1122 * our range starts.
1123 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001124 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001125 if (!node) {
1126 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001127 if (!prealloc) {
1128 err = -ENOMEM;
1129 goto out;
1130 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001131 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001132 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001133 if (err)
1134 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001135 cache_state(prealloc, cached_state);
1136 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001137 goto out;
1138 }
1139 state = rb_entry(node, struct extent_state, rb_node);
1140hit_next:
1141 last_start = state->start;
1142 last_end = state->end;
1143
1144 /*
1145 * | ---- desired range ---- |
1146 * | state |
1147 *
1148 * Just lock what we found and keep going
1149 */
1150 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001151 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001152 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001153 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001154 if (last_end == (u64)-1)
1155 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001156 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001157 if (start < end && state && state->start == start &&
1158 !need_resched())
1159 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001160 goto search_again;
1161 }
1162
1163 /*
1164 * | ---- desired range ---- |
1165 * | state |
1166 * or
1167 * | ------------- state -------------- |
1168 *
1169 * We need to split the extent we found, and may flip bits on
1170 * second half.
1171 *
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.
1175 *
1176 * If the extent we found is inside our range, we set the
1177 * desired bit on it.
1178 */
1179 if (state->start < start) {
1180 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001181 if (!prealloc) {
1182 err = -ENOMEM;
1183 goto out;
1184 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001185 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001186 if (err)
1187 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001188 prealloc = NULL;
1189 if (err)
1190 goto out;
1191 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001192 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001193 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001194 state = clear_state_bit(tree, state, &clear_bits, 0,
1195 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001196 if (last_end == (u64)-1)
1197 goto out;
1198 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001199 if (start < end && state && state->start == start &&
1200 !need_resched())
1201 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001202 }
1203 goto search_again;
1204 }
1205 /*
1206 * | ---- desired range ---- |
1207 * | state | or | state |
1208 *
1209 * There's a hole, we need to insert something in it and
1210 * ignore the extent we found.
1211 */
1212 if (state->start > start) {
1213 u64 this_end;
1214 if (end < last_start)
1215 this_end = end;
1216 else
1217 this_end = last_start - 1;
1218
1219 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001220 if (!prealloc) {
1221 err = -ENOMEM;
1222 goto out;
1223 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001224
1225 /*
1226 * Avoid to free 'prealloc' if it can be merged with
1227 * the later extent.
1228 */
1229 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001230 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001231 if (err)
1232 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001233 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001234 prealloc = NULL;
1235 start = this_end + 1;
1236 goto search_again;
1237 }
1238 /*
1239 * | ---- desired range ---- |
1240 * | state |
1241 * We need to split the extent, and set the bit
1242 * on the first half
1243 */
1244 if (state->start <= end && state->end > end) {
1245 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001246 if (!prealloc) {
1247 err = -ENOMEM;
1248 goto out;
1249 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001250
1251 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001252 if (err)
1253 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001254
Qu Wenruod38ed272015-10-12 14:53:37 +08001255 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001256 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001257 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001258 prealloc = NULL;
1259 goto out;
1260 }
1261
Josef Bacik462d6fa2011-09-26 13:56:12 -04001262search_again:
1263 if (start > end)
1264 goto out;
1265 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001266 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001267 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001268 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001269
1270out:
1271 spin_unlock(&tree->lock);
1272 if (prealloc)
1273 free_extent_state(prealloc);
1274
1275 return err;
1276}
1277
Chris Masond1310b22008-01-24 16:13:08 -05001278/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001279int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001280 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001281{
1282 /*
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
1286 * range.
1287 */
1288 BUG_ON(bits & EXTENT_LOCKED);
1289
David Sterba2c53b912016-04-26 23:54:39 +02001290 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001291 changeset);
1292}
1293
Qu Wenruofefdc552015-10-12 15:35:38 +08001294int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1295 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001296 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001297{
1298 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001299 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001300}
1301
Qu Wenruofefdc552015-10-12 15:35:38 +08001302int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001303 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001304{
1305 /*
1306 * Don't support EXTENT_LOCKED case, same reason as
1307 * set_record_extent_bits().
1308 */
1309 BUG_ON(bits & EXTENT_LOCKED);
1310
David Sterbaf734c442016-04-26 23:54:39 +02001311 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001312 changeset);
1313}
1314
Chris Masond352ac62008-09-29 15:18:18 -04001315/*
1316 * either insert or lock state struct between start and end use mask to tell
1317 * us if waiting is desired.
1318 */
Chris Mason1edbb732009-09-02 13:24:36 -04001319int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001320 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001321{
1322 int err;
1323 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001324
Chris Masond1310b22008-01-24 16:13:08 -05001325 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001326 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001327 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001328 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001329 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001330 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1331 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001332 } else
Chris Masond1310b22008-01-24 16:13:08 -05001333 break;
Chris Masond1310b22008-01-24 16:13:08 -05001334 WARN_ON(start > end);
1335 }
1336 return err;
1337}
Chris Masond1310b22008-01-24 16:13:08 -05001338
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001339int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001340{
1341 int err;
1342 u64 failed_start;
1343
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001344 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001345 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001346 if (err == -EEXIST) {
1347 if (failed_start > start)
1348 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001349 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001350 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001351 }
Josef Bacik25179202008-10-29 14:49:05 -04001352 return 1;
1353}
Josef Bacik25179202008-10-29 14:49:05 -04001354
David Sterbabd1fa4f2015-12-03 13:08:59 +01001355void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001356{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001357 unsigned long index = start >> PAGE_SHIFT;
1358 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001359 struct page *page;
1360
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);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001365 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001366 index++;
1367 }
Chris Mason4adaa612013-03-26 13:07:00 -04001368}
1369
David Sterbaf6311572015-12-03 13:08:59 +01001370void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001371{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001372 unsigned long index = start >> PAGE_SHIFT;
1373 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001374 struct page *page;
1375
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 */
Chris Mason4adaa612013-03-26 13:07:00 -04001379 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001380 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001381 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001382 index++;
1383 }
Chris Mason4adaa612013-03-26 13:07:00 -04001384}
1385
Chris Masond1310b22008-01-24 16:13:08 -05001386/*
Chris Masond1310b22008-01-24 16:13:08 -05001387 * helper function to set both pages and extents in the tree writeback
1388 */
David Sterba35de6db2015-12-03 13:08:59 +01001389static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001390{
Josef Bacikc6100a42017-05-05 11:57:13 -04001391 tree->ops->set_range_writeback(tree->private_data, start, end);
Chris Masond1310b22008-01-24 16:13:08 -05001392}
Chris Masond1310b22008-01-24 16:13:08 -05001393
Chris Masond352ac62008-09-29 15:18:18 -04001394/* 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'
1397 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001398static struct extent_state *
1399find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001400 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001401{
1402 struct rb_node *node;
1403 struct extent_state *state;
1404
1405 /*
1406 * this search will find all the extents that end after
1407 * our range starts.
1408 */
1409 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001410 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001411 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001412
Chris Masond3977122009-01-05 21:25:51 -05001413 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001414 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001415 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001416 return state;
Chris Masond3977122009-01-05 21:25:51 -05001417
Chris Masond7fc6402008-02-18 12:12:38 -05001418 node = rb_next(node);
1419 if (!node)
1420 break;
1421 }
1422out:
1423 return NULL;
1424}
Chris Masond7fc6402008-02-18 12:12:38 -05001425
Chris Masond352ac62008-09-29 15:18:18 -04001426/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001427 * 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.
1430 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001431 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001432 */
1433int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001434 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001435 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001436{
1437 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001438 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001439 int ret = 1;
1440
1441 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001442 if (cached_state && *cached_state) {
1443 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001444 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001445 n = rb_next(&state->rb_node);
1446 while (n) {
1447 state = rb_entry(n, struct extent_state,
1448 rb_node);
1449 if (state->state & bits)
1450 goto got_it;
1451 n = rb_next(n);
1452 }
1453 free_extent_state(*cached_state);
1454 *cached_state = NULL;
1455 goto out;
1456 }
1457 free_extent_state(*cached_state);
1458 *cached_state = NULL;
1459 }
1460
Xiao Guangrong69261c42011-07-14 03:19:45 +00001461 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001462got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001463 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001464 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001465 *start_ret = state->start;
1466 *end_ret = state->end;
1467 ret = 0;
1468 }
Josef Bacike6138872012-09-27 17:07:30 -04001469out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001470 spin_unlock(&tree->lock);
1471 return ret;
1472}
1473
1474/*
Chris Masond352ac62008-09-29 15:18:18 -04001475 * 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,
1477 *
1478 * 1 is returned if we find something, 0 if nothing was in the tree
1479 */
Chris Masonc8b97812008-10-29 14:49:59 -04001480static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001481 u64 *start, u64 *end, u64 max_bytes,
1482 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001483{
1484 struct rb_node *node;
1485 struct extent_state *state;
1486 u64 cur_start = *start;
1487 u64 found = 0;
1488 u64 total_bytes = 0;
1489
Chris Masoncad321a2008-12-17 14:51:42 -05001490 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001491
Chris Masond1310b22008-01-24 16:13:08 -05001492 /*
1493 * this search will find all the extents that end after
1494 * our range starts.
1495 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001496 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001497 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001498 if (!found)
1499 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001500 goto out;
1501 }
1502
Chris Masond3977122009-01-05 21:25:51 -05001503 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001504 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001505 if (found && (state->start != cur_start ||
1506 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001507 goto out;
1508 }
1509 if (!(state->state & EXTENT_DELALLOC)) {
1510 if (!found)
1511 *end = state->end;
1512 goto out;
1513 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001514 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001515 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001516 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001517 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001518 }
Chris Masond1310b22008-01-24 16:13:08 -05001519 found++;
1520 *end = state->end;
1521 cur_start = state->end + 1;
1522 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001523 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001524 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001525 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001526 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001527 break;
1528 }
1529out:
Chris Masoncad321a2008-12-17 14:51:42 -05001530 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001531 return found;
1532}
1533
Liu Boda2c7002017-02-10 16:41:05 +01001534static 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);
1538
Jeff Mahoney143bede2012-03-01 14:56:26 +01001539static noinline void __unlock_for_delalloc(struct inode *inode,
1540 struct page *locked_page,
1541 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001542{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001543 unsigned long index = start >> PAGE_SHIFT;
1544 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001545
Liu Bo76c00212017-02-10 16:42:14 +01001546 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001547 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001548 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001549
Liu Bo76c00212017-02-10 16:42:14 +01001550 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1551 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001552}
1553
1554static noinline int lock_delalloc_pages(struct inode *inode,
1555 struct page *locked_page,
1556 u64 delalloc_start,
1557 u64 delalloc_end)
1558{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001559 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001560 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001561 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001562 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001563
Liu Bo76c00212017-02-10 16:42:14 +01001564 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001565 if (index == locked_page->index && index == end_index)
1566 return 0;
1567
Liu Bo76c00212017-02-10 16:42:14 +01001568 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1569 end_index, PAGE_LOCK, &index_ret);
1570 if (ret == -EAGAIN)
1571 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1572 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001573 return ret;
1574}
1575
1576/*
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,
1579 *
1580 * 1 is returned if we find something, 0 if nothing was in the tree
1581 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001582STATIC 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)
Chris Masonc8b97812008-10-29 14:49:59 -04001586{
1587 u64 delalloc_start;
1588 u64 delalloc_end;
1589 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001590 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001591 int ret;
1592 int loops = 0;
1593
1594again:
1595 /* step one, find a bunch of delalloc bytes starting at start */
1596 delalloc_start = *start;
1597 delalloc_end = 0;
1598 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001599 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001600 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001601 *start = delalloc_start;
1602 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001603 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001604 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001605 }
1606
1607 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001608 * start comes from the offset of locked_page. We have to lock
1609 * pages in order, so we can't process delalloc bytes before
1610 * locked_page
1611 */
Chris Masond3977122009-01-05 21:25:51 -05001612 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001613 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001614
1615 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001616 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001617 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001618 if (delalloc_end + 1 - delalloc_start > max_bytes)
1619 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001620
Chris Masonc8b97812008-10-29 14:49:59 -04001621 /* 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
1627 */
Chris Mason9655d292009-09-02 15:22:30 -04001628 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001629 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001630 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001631 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001632 loops = 1;
1633 goto again;
1634 } else {
1635 found = 0;
1636 goto out_failed;
1637 }
1638 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001639 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001640
1641 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001642 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001643
1644 /* then test to make sure it is all still delalloc */
1645 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001646 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001647 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001648 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1649 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001650 __unlock_for_delalloc(inode, locked_page,
1651 delalloc_start, delalloc_end);
1652 cond_resched();
1653 goto again;
1654 }
Chris Mason9655d292009-09-02 15:22:30 -04001655 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001656 *start = delalloc_start;
1657 *end = delalloc_end;
1658out_failed:
1659 return found;
1660}
1661
Liu Boda2c7002017-02-10 16:41:05 +01001662static 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)
Chris Masonc8b97812008-10-29 14:49:59 -04001666{
Liu Bo873695b2017-02-02 17:49:22 -08001667 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001668 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001669 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001670 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001671 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001672 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001673 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001674
Liu Boda2c7002017-02-10 16:41:05 +01001675 if (page_ops & PAGE_LOCK) {
1676 ASSERT(page_ops == PAGE_LOCK);
1677 ASSERT(index_ret && *index_ret == start_index);
1678 }
1679
Filipe Manana704de492014-10-06 22:14:22 +01001680 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001681 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001682
Chris Masond3977122009-01-05 21:25:51 -05001683 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001684 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001685 min_t(unsigned long,
1686 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001687 if (ret == 0) {
1688 /*
1689 * Only if we're going to lock these pages,
1690 * can we find nothing at @index.
1691 */
1692 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001693 err = -EAGAIN;
1694 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001695 }
Chris Mason8b62b722009-09-02 16:53:46 -04001696
Liu Boda2c7002017-02-10 16:41:05 +01001697 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001698 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001699 SetPagePrivate2(pages[i]);
1700
Chris Masonc8b97812008-10-29 14:49:59 -04001701 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001702 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001703 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001704 continue;
1705 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001706 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001707 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001708 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001709 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001710 if (page_ops & PAGE_SET_ERROR)
1711 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001712 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001713 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001714 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001715 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001716 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]);
1721 put_page(pages[i]);
1722 err = -EAGAIN;
1723 goto out;
1724 }
1725 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001726 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001727 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001728 }
1729 nr_pages -= ret;
1730 index += ret;
1731 cond_resched();
1732 }
Liu Boda2c7002017-02-10 16:41:05 +01001733out:
1734 if (err && index_ret)
1735 *index_ret = start_index + pages_locked - 1;
1736 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001737}
Chris Masonc8b97812008-10-29 14:49:59 -04001738
Liu Bo873695b2017-02-02 17:49:22 -08001739void 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)
1743{
1744 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001745 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001746
1747 __process_pages_contig(inode->i_mapping, locked_page,
1748 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001749 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001750}
1751
Chris Masond352ac62008-09-29 15:18:18 -04001752/*
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.
1756 */
Chris Masond1310b22008-01-24 16:13:08 -05001757u64 count_range_bits(struct extent_io_tree *tree,
1758 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001759 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001760{
1761 struct rb_node *node;
1762 struct extent_state *state;
1763 u64 cur_start = *start;
1764 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001765 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001766 int found = 0;
1767
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301768 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001769 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001770
Chris Masoncad321a2008-12-17 14:51:42 -05001771 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001772 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1773 total_bytes = tree->dirty_bytes;
1774 goto out;
1775 }
1776 /*
1777 * this search will find all the extents that end after
1778 * our range starts.
1779 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001780 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001781 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001782 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001783
Chris Masond3977122009-01-05 21:25:51 -05001784 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001785 state = rb_entry(node, struct extent_state, rb_node);
1786 if (state->start > search_end)
1787 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001788 if (contig && found && state->start > last + 1)
1789 break;
1790 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001791 total_bytes += min(search_end, state->end) + 1 -
1792 max(cur_start, state->start);
1793 if (total_bytes >= max_bytes)
1794 break;
1795 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001796 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001797 found = 1;
1798 }
Chris Masonec29ed52011-02-23 16:23:20 -05001799 last = state->end;
1800 } else if (contig && found) {
1801 break;
Chris Masond1310b22008-01-24 16:13:08 -05001802 }
1803 node = rb_next(node);
1804 if (!node)
1805 break;
1806 }
1807out:
Chris Masoncad321a2008-12-17 14:51:42 -05001808 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001809 return total_bytes;
1810}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001811
Chris Masond352ac62008-09-29 15:18:18 -04001812/*
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.
1815 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001816static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001817 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001818{
1819 struct rb_node *node;
1820 struct extent_state *state;
1821 int ret = 0;
1822
Chris Masoncad321a2008-12-17 14:51:42 -05001823 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001824 /*
1825 * this search will find all the extents that end after
1826 * our range starts.
1827 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001828 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001829 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001830 ret = -ENOENT;
1831 goto out;
1832 }
1833 state = rb_entry(node, struct extent_state, rb_node);
1834 if (state->start != start) {
1835 ret = -ENOENT;
1836 goto out;
1837 }
David Sterba47dc1962016-02-11 13:24:13 +01001838 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001839out:
Chris Masoncad321a2008-12-17 14:51:42 -05001840 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001841 return ret;
1842}
1843
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001844static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001845 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001846{
1847 struct rb_node *node;
1848 struct extent_state *state;
1849 int ret = 0;
1850
Chris Masoncad321a2008-12-17 14:51:42 -05001851 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001852 /*
1853 * this search will find all the extents that end after
1854 * our range starts.
1855 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001856 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001857 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001858 ret = -ENOENT;
1859 goto out;
1860 }
1861 state = rb_entry(node, struct extent_state, rb_node);
1862 if (state->start != start) {
1863 ret = -ENOENT;
1864 goto out;
1865 }
David Sterba47dc1962016-02-11 13:24:13 +01001866 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001867out:
Chris Masoncad321a2008-12-17 14:51:42 -05001868 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001869 return ret;
1870}
1871
1872/*
1873 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001874 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001875 * has the bits set. Otherwise, 1 is returned if any bit in the
1876 * range is found set.
1877 */
1878int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001879 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001880{
1881 struct extent_state *state = NULL;
1882 struct rb_node *node;
1883 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001884
Chris Masoncad321a2008-12-17 14:51:42 -05001885 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001886 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001887 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001888 node = &cached->rb_node;
1889 else
1890 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001891 while (node && start <= end) {
1892 state = rb_entry(node, struct extent_state, rb_node);
1893
1894 if (filled && state->start > start) {
1895 bitset = 0;
1896 break;
1897 }
1898
1899 if (state->start > end)
1900 break;
1901
1902 if (state->state & bits) {
1903 bitset = 1;
1904 if (!filled)
1905 break;
1906 } else if (filled) {
1907 bitset = 0;
1908 break;
1909 }
Chris Mason46562ce2009-09-23 20:23:16 -04001910
1911 if (state->end == (u64)-1)
1912 break;
1913
Chris Masond1310b22008-01-24 16:13:08 -05001914 start = state->end + 1;
1915 if (start > end)
1916 break;
1917 node = rb_next(node);
1918 if (!node) {
1919 if (filled)
1920 bitset = 0;
1921 break;
1922 }
1923 }
Chris Masoncad321a2008-12-17 14:51:42 -05001924 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001925 return bitset;
1926}
Chris Masond1310b22008-01-24 16:13:08 -05001927
1928/*
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
1931 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001932static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001933{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001934 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001935 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001936 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001937 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001938}
1939
Josef Bacik7870d082017-05-05 11:57:15 -04001940int free_io_failure(struct extent_io_tree *failure_tree,
1941 struct extent_io_tree *io_tree,
1942 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001943{
1944 int ret;
1945 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001946
David Sterba47dc1962016-02-11 13:24:13 +01001947 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001948 ret = clear_extent_bits(failure_tree, rec->start,
1949 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001950 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001951 if (ret)
1952 err = ret;
1953
Josef Bacik7870d082017-05-05 11:57:15 -04001954 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001955 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001956 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001957 if (ret && !err)
1958 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001959
1960 kfree(rec);
1961 return err;
1962}
1963
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001964/*
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.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001969 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001970 * 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.
1973 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04001974int 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)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001977{
1978 struct bio *bio;
1979 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001980 u64 map_length = 0;
1981 u64 sector;
1982 struct btrfs_bio *bbio = NULL;
1983 int ret;
1984
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001985 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001986 BUG_ON(!mirror_num);
1987
David Sterbac5e4c3d2017-06-12 17:29:41 +02001988 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001989 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001990 map_length = length;
1991
Filipe Mananab5de8d02016-05-27 22:21:27 +01001992 /*
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.
1996 */
1997 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03001998 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07001999 /*
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.
2004 */
2005 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2006 &map_length, &bbio, 0);
2007 if (ret) {
2008 btrfs_bio_counter_dec(fs_info);
2009 bio_put(bio);
2010 return -EIO;
2011 }
2012 ASSERT(bbio->mirror_num == 1);
2013 } else {
2014 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2015 &map_length, &bbio, mirror_num);
2016 if (ret) {
2017 btrfs_bio_counter_dec(fs_info);
2018 bio_put(bio);
2019 return -EIO;
2020 }
2021 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002022 }
Liu Boc7253282017-03-29 10:53:58 -07002023
2024 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002025 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002026 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002027 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002028 if (!dev || !dev->bdev || !dev->writeable) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002029 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002030 bio_put(bio);
2031 return -EIO;
2032 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002033 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002034 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002035 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002036
Mike Christie4e49ea42016-06-05 14:31:41 -05002037 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002038 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002039 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002040 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002041 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002042 return -EIO;
2043 }
2044
David Sterbab14af3b2015-10-08 10:43:10 +02002045 btrfs_info_rl_in_rcu(fs_info,
2046 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002047 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002048 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002049 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002050 bio_put(bio);
2051 return 0;
2052}
2053
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002054int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2055 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002056{
Josef Bacikea466792012-03-26 21:57:36 -04002057 u64 start = eb->start;
2058 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002059 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002060
David Howellsbc98a422017-07-17 08:45:34 +01002061 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002062 return -EROFS;
2063
Josef Bacikea466792012-03-26 21:57:36 -04002064 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002065 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002066
Josef Bacik6ec656b2017-05-05 11:57:14 -04002067 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002068 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002069 if (ret)
2070 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002071 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002072 }
2073
2074 return ret;
2075}
2076
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002077/*
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
2080 */
Josef Bacik7870d082017-05-05 11:57:15 -04002081int 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)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002085{
2086 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002087 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002088 struct extent_state *state;
2089 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002090 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091
2092 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002093 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2094 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002095 if (!ret)
2096 return 0;
2097
Josef Bacik7870d082017-05-05 11:57:15 -04002098 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099 if (ret)
2100 return 0;
2101
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002102 BUG_ON(!failrec->this_mirror);
2103
2104 if (failrec->in_validation) {
2105 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002106 btrfs_debug(fs_info,
2107 "clean_io_failure: freeing dummy error at %llu",
2108 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002109 goto out;
2110 }
David Howellsbc98a422017-07-17 08:45:34 +01002111 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002112 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002113
Josef Bacik7870d082017-05-05 11:57:15 -04002114 spin_lock(&io_tree->lock);
2115 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002116 failrec->start,
2117 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002118 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002119
Miao Xie883d0de2013-07-25 19:22:35 +08002120 if (state && state->start <= failrec->start &&
2121 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002122 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2123 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002124 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002125 repair_io_failure(fs_info, ino, start, failrec->len,
2126 failrec->logical, page, pg_offset,
2127 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002128 }
2129 }
2130
2131out:
Josef Bacik7870d082017-05-05 11:57:15 -04002132 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002133
Miao Xie454ff3d2014-09-12 18:43:58 +08002134 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002135}
2136
Miao Xief6124962014-09-12 18:44:04 +08002137/*
2138 * Can be called when
2139 * - hold extent lock
2140 * - under ordered extent
2141 * - the inode is freeing
2142 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002143void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002144{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002145 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002146 struct io_failure_record *failrec;
2147 struct extent_state *state, *next;
2148
2149 if (RB_EMPTY_ROOT(&failure_tree->state))
2150 return;
2151
2152 spin_lock(&failure_tree->lock);
2153 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2154 while (state) {
2155 if (state->start > end)
2156 break;
2157
2158 ASSERT(state->end <= end);
2159
2160 next = next_state(state);
2161
David Sterba47dc1962016-02-11 13:24:13 +01002162 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002163 free_extent_state(state);
2164 kfree(failrec);
2165
2166 state = next;
2167 }
2168 spin_unlock(&failure_tree->lock);
2169}
2170
Miao Xie2fe63032014-09-12 18:43:59 +08002171int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002172 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002173{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002174 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002175 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002176 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002177 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;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002180 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002181 u64 logical;
2182
David Sterba47dc1962016-02-11 13:24:13 +01002183 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 if (ret) {
2185 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2186 if (!failrec)
2187 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002188
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002189 failrec->start = start;
2190 failrec->len = end - start + 1;
2191 failrec->this_mirror = 0;
2192 failrec->bio_flags = 0;
2193 failrec->in_validation = 0;
2194
2195 read_lock(&em_tree->lock);
2196 em = lookup_extent_mapping(em_tree, start, failrec->len);
2197 if (!em) {
2198 read_unlock(&em_tree->lock);
2199 kfree(failrec);
2200 return -EIO;
2201 }
2202
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002203 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002204 free_extent_map(em);
2205 em = NULL;
2206 }
2207 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002208 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002209 kfree(failrec);
2210 return -EIO;
2211 }
Miao Xie2fe63032014-09-12 18:43:59 +08002212
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002213 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,
2219 em->compress_type);
2220 }
Miao Xie2fe63032014-09-12 18:43:59 +08002221
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002222 btrfs_debug(fs_info,
2223 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2224 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002225
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002226 failrec->logical = logical;
2227 free_extent_map(em);
2228
2229 /* set the bits in the private failure tree */
2230 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002231 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002232 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002233 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002234 /* set the bits in the inode's tree */
2235 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002236 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002237 if (ret < 0) {
2238 kfree(failrec);
2239 return ret;
2240 }
2241 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002242 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);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002246 /*
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.
2250 */
2251 }
Miao Xie2fe63032014-09-12 18:43:59 +08002252
2253 *failrec_ret = failrec;
2254
2255 return 0;
2256}
2257
Liu Boc3cfb652017-07-13 15:00:50 -07002258bool btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
Miao Xie2fe63032014-09-12 18:43:59 +08002259 struct io_failure_record *failrec, int failed_mirror)
2260{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002261 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002262 int num_copies;
2263
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002264 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002265 if (num_copies == 1) {
2266 /*
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.
2270 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002271 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);
Liu Boc3cfb652017-07-13 15:00:50 -07002274 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002275 }
2276
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002277 /*
2278 * there are two premises:
2279 * a) deliver good data to the caller
2280 * b) correct the bad sectors on disk
2281 */
2282 if (failed_bio->bi_vcnt > 1) {
2283 /*
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
2287 *
2288 * if the following BUG_ON triggers, our validation request got
2289 * merged. we need separate requests for our algorithm to work.
2290 */
2291 BUG_ON(failrec->in_validation);
2292 failrec->in_validation = 1;
2293 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002294 } else {
2295 /*
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.
2299 */
2300 if (failrec->in_validation) {
2301 BUG_ON(failrec->this_mirror != failed_mirror);
2302 failrec->in_validation = 0;
2303 failrec->this_mirror = 0;
2304 }
2305 failrec->failed_mirror = failed_mirror;
2306 failrec->this_mirror++;
2307 if (failrec->this_mirror == failed_mirror)
2308 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002309 }
2310
Miao Xiefacc8a222013-07-25 19:22:34 +08002311 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002312 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);
Liu Boc3cfb652017-07-13 15:00:50 -07002315 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002316 }
2317
Liu Boc3cfb652017-07-13 15:00:50 -07002318 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002319}
2320
2321
2322struct 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,
Miao Xie8b110e32014-09-12 18:44:03 +08002325 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002326{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002327 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002328 struct bio *bio;
2329 struct btrfs_io_bio *btrfs_failed_bio;
2330 struct btrfs_io_bio *btrfs_bio;
2331
David Sterbac5e4c3d2017-06-12 17:29:41 +02002332 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002333 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002334 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002335 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002336 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002337 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002338
Miao Xiefacc8a222013-07-25 19:22:34 +08002339 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2340 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002341 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2342
2343 btrfs_bio = btrfs_io_bio(bio);
2344 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002345 icsum *= csum_size;
2346 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002347 csum_size);
2348 }
2349
Miao Xie2fe63032014-09-12 18:43:59 +08002350 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002351
Miao Xie2fe63032014-09-12 18:43:59 +08002352 return bio;
2353}
2354
2355/*
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
2360 * needed
2361 */
2362
2363static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2364 struct page *page, u64 start, u64 end,
2365 int failed_mirror)
2366{
2367 struct io_failure_record *failrec;
2368 struct inode *inode = page->mapping->host;
2369 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002370 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002371 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002372 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002373 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002374 int ret;
2375
Mike Christie1f7ad752016-06-05 14:31:51 -05002376 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002377
2378 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2379 if (ret)
2380 return ret;
2381
Liu Boc3cfb652017-07-13 15:00:50 -07002382 if (!btrfs_check_repairable(inode, failed_bio, failrec,
2383 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002384 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002385 return -EIO;
2386 }
2387
2388 if (failed_bio->bi_vcnt > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002389 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002390
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),
Miao Xie8b110e32014-09-12 18:44:03 +08002394 (int)phy_offset, failed_bio->bi_end_io,
2395 NULL);
Mike Christie1f7ad752016-06-05 14:31:51 -05002396 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie2fe63032014-09-12 18:43:59 +08002397
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002398 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);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002401
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002402 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002403 failrec->bio_flags, 0);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002404 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002405 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002406 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002407 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002408 }
2409
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002410 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002411}
2412
Chris Masond1310b22008-01-24 16:13:08 -05002413/* lots and lots of room for performance fixes in the end_bio funcs */
2414
David Sterbab5227c02015-12-03 13:08:59 +01002415void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002416{
2417 int uptodate = (err == 0);
2418 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002419 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002420
2421 tree = &BTRFS_I(page->mapping->host)->io_tree;
2422
David Sterbac3988d62017-02-17 15:18:32 +01002423 if (tree->ops && tree->ops->writepage_end_io_hook)
2424 tree->ops->writepage_end_io_hook(page, start, end, NULL,
2425 uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002426
Jeff Mahoney87826df2012-02-15 16:23:57 +01002427 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002428 ClearPageUptodate(page);
2429 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002430 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002431 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002432 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002433}
2434
Chris Masond1310b22008-01-24 16:13:08 -05002435/*
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
2440 *
2441 * Scheduling is not allowed, so the extent state tree is expected
2442 * to have one and only one object corresponding to this IO.
2443 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002444static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002445{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002446 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002447 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002448 u64 start;
2449 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002450 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002451
David Sterbac09abff2017-07-13 18:10:07 +02002452 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002453 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002454 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002455 struct inode *inode = page->mapping->host;
2456 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002457
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002458 /* 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. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002463 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2464 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002465 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002466 "partial page write in btrfs with offset %u and length %u",
2467 bvec->bv_offset, bvec->bv_len);
2468 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002469 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002470 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002471 bvec->bv_offset, bvec->bv_len);
2472 }
Chris Masond1310b22008-01-24 16:13:08 -05002473
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002474 start = page_offset(page);
2475 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002476
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002477 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002478 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002479 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002480
Chris Masond1310b22008-01-24 16:13:08 -05002481 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002482}
2483
Miao Xie883d0de2013-07-25 19:22:35 +08002484static void
2485endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2486 int uptodate)
2487{
2488 struct extent_state *cached = NULL;
2489 u64 end = start + len - 1;
2490
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);
2494}
2495
Chris Masond1310b22008-01-24 16:13:08 -05002496/*
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
2503 *
2504 * Scheduling is not allowed, so the extent state tree is expected
2505 * to have one and only one object corresponding to this IO.
2506 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002507static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002508{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002509 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002510 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002511 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002512 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002513 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002514 u64 start;
2515 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002516 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002517 u64 extent_start = 0;
2518 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002519 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002520 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002521 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002522
David Sterbac09abff2017-07-13 18:10:07 +02002523 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002524 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002525 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002526 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002527 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen507903b2011-04-06 10:02:20 +00002528
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002529 btrfs_debug(fs_info,
2530 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002531 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002532 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002533 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002534 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002535
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002536 /* 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. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002541 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2542 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002543 btrfs_err(fs_info,
2544 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002545 bvec->bv_offset, bvec->bv_len);
2546 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002547 btrfs_info(fs_info,
2548 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002549 bvec->bv_offset, bvec->bv_len);
2550 }
Chris Masond1310b22008-01-24 16:13:08 -05002551
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002552 start = page_offset(page);
2553 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002554 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002555
Chris Mason9be33952013-05-17 18:30:14 -04002556 mirror = io_bio->mirror_num;
David Sterba20c98012017-02-17 15:59:35 +01002557 if (likely(uptodate && tree->ops)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002558 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2559 page, start, end,
2560 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002561 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002562 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002563 else
Josef Bacik7870d082017-05-05 11:57:15 -04002564 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2565 failure_tree, tree, start,
2566 page,
2567 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002568 }
Josef Bacikea466792012-03-26 21:57:36 -04002569
Miao Xief2a09da2013-07-25 19:22:33 +08002570 if (likely(uptodate))
2571 goto readpage_ok;
2572
David Sterba20a7db82017-02-17 16:24:29 +01002573 if (tree->ops) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002574 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Liu Bo9d0d1c82017-03-24 15:04:50 -07002575 if (ret == -EAGAIN) {
2576 /*
2577 * Data inode's readpage_io_failed_hook() always
2578 * returns -EAGAIN.
2579 *
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.
2589 */
2590 ret = bio_readpage_error(bio, offset, page,
2591 start, end, mirror);
2592 if (ret == 0) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002593 uptodate = !bio->bi_status;
Liu Bo9d0d1c82017-03-24 15:04:50 -07002594 offset += len;
2595 continue;
2596 }
Chris Mason7e383262008-04-09 16:28:12 -04002597 }
Liu Bo9d0d1c82017-03-24 15:04:50 -07002598
2599 /*
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.
2603 */
2604 ASSERT(ret == -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002605 }
Miao Xief2a09da2013-07-25 19:22:33 +08002606readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002607 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002608 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002609 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002610 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002611
2612 /* Zero out the end if this page straddles i_size */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002613 off = i_size & (PAGE_SIZE-1);
Liu Boa583c022014-08-19 23:32:22 +08002614 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002615 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002616 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002617 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002618 ClearPageUptodate(page);
2619 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002620 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002621 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002622 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002623
2624 if (unlikely(!uptodate)) {
2625 if (extent_len) {
2626 endio_readpage_release_extent(tree,
2627 extent_start,
2628 extent_len, 1);
2629 extent_start = 0;
2630 extent_len = 0;
2631 }
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;
2639 } else {
2640 endio_readpage_release_extent(tree, extent_start,
2641 extent_len, uptodate);
2642 extent_start = start;
2643 extent_len = end + 1 - start;
2644 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002645 }
Chris Masond1310b22008-01-24 16:13:08 -05002646
Miao Xie883d0de2013-07-25 19:22:35 +08002647 if (extent_len)
2648 endio_readpage_release_extent(tree, extent_start, extent_len,
2649 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002650 if (io_bio->end_io)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002651 io_bio->end_io(io_bio, blk_status_to_errno(bio->bi_status));
Chris Masond1310b22008-01-24 16:13:08 -05002652 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002653}
2654
Chris Mason9be33952013-05-17 18:30:14 -04002655/*
David Sterba184f9992017-06-12 17:29:39 +02002656 * 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.
Chris Mason9be33952013-05-17 18:30:14 -04002659 */
David Sterba184f9992017-06-12 17:29:39 +02002660static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002661{
David Sterba184f9992017-06-12 17:29:39 +02002662 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2663}
2664
2665/*
David Sterba6e707bc2017-06-02 17:26:26 +02002666 * 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
Chris Masond1310b22008-01-24 16:13:08 -05002669 */
David Sterbac821e7f32017-06-02 18:35:36 +02002670struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002671{
2672 struct bio *bio;
2673
David Sterba9f2179a2017-06-02 17:55:44 +02002674 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002675 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002676 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002677 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002678 return bio;
2679}
2680
David Sterba8b6c1d52017-06-02 17:48:13 +02002681struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002682{
Miao Xie23ea8e52014-09-12 18:43:54 +08002683 struct btrfs_io_bio *btrfs_bio;
2684 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002685
David Sterba6e707bc2017-06-02 17:26:26 +02002686 /* Bio allocation backed by a bioset does not fail */
David Sterba8b6c1d52017-06-02 17:48:13 +02002687 new = bio_clone_fast(bio, GFP_NOFS, btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002688 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002689 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002690 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002691 return new;
2692}
Chris Mason9be33952013-05-17 18:30:14 -04002693
David Sterbac5e4c3d2017-06-12 17:29:41 +02002694struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002695{
Miao Xiefacc8a222013-07-25 19:22:34 +08002696 struct bio *bio;
2697
David Sterba6e707bc2017-06-02 17:26:26 +02002698 /* Bio allocation backed by a bioset does not fail */
David Sterbac5e4c3d2017-06-12 17:29:41 +02002699 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002700 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002701 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002702}
2703
Liu Boe4770942017-05-16 10:57:14 -07002704struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002705{
2706 struct bio *bio;
2707 struct btrfs_io_bio *btrfs_bio;
2708
2709 /* this will never fail when it's backed by a bioset */
Liu Boe4770942017-05-16 10:57:14 -07002710 bio = bio_clone_fast(orig, GFP_NOFS, btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002711 ASSERT(bio);
2712
2713 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002714 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002715
2716 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002717 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002718 return bio;
2719}
Chris Mason9be33952013-05-17 18:30:14 -04002720
Mike Christie1f7ad752016-06-05 14:31:51 -05002721static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2722 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002723{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002724 blk_status_t ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002725 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;
Chris Mason70dec802008-01-29 09:59:12 -05002728 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002729
Miao Xie4eee4fa2012-12-21 09:17:45 +00002730 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002731
David Woodhouse902b22f2008-08-20 08:51:49 -04002732 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002733 bio_get(bio);
2734
David Sterba20c98012017-02-17 15:59:35 +01002735 if (tree->ops)
Josef Bacikc6100a42017-05-05 11:57:13 -04002736 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002737 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002738 else
Mike Christie4e49ea42016-06-05 14:31:41 -05002739 btrfsic_submit_bio(bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002740
Chris Masond1310b22008-01-24 16:13:08 -05002741 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002742 return blk_status_to_errno(ret);
Chris Masond1310b22008-01-24 16:13:08 -05002743}
2744
Mike Christie1f7ad752016-06-05 14:31:51 -05002745static int merge_bio(struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002746 unsigned long offset, size_t size, struct bio *bio,
2747 unsigned long bio_flags)
2748{
2749 int ret = 0;
David Sterba20c98012017-02-17 15:59:35 +01002750 if (tree->ops)
Mike Christie81a75f672016-06-05 14:31:54 -05002751 ret = tree->ops->merge_bio_hook(page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002752 bio_flags);
Jeff Mahoney3444a972011-10-03 23:23:13 -04002753 return ret;
2754
2755}
2756
David Sterba4b81ba42017-06-06 19:14:26 +02002757/*
2758 * @opf: bio REQ_OP_* and REQ_* flags as one value
2759 */
2760static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002761 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002762 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002763 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002764 struct block_device *bdev,
2765 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002766 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002767 int mirror_num,
2768 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002769 unsigned long bio_flags,
2770 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002771{
2772 int ret = 0;
2773 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002774 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002775 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002776 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002777 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002778
2779 if (bio_ret && *bio_ret) {
2780 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002781 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002782 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002783 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002784 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002785
2786 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002787 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002788 merge_bio(tree, page, pg_offset, page_size, bio, bio_flags) ||
2789 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002790 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002791 if (ret < 0) {
2792 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002793 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002794 }
Chris Masond1310b22008-01-24 16:13:08 -05002795 bio = NULL;
2796 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002797 if (wbc)
2798 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002799 return 0;
2800 }
2801 }
Chris Masonc8b97812008-10-29 14:49:59 -04002802
David Sterba6273b7f2017-10-04 17:30:11 +02002803 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002804 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002805 bio->bi_end_io = end_io_func;
2806 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002807 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002808 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002809 if (wbc) {
2810 wbc_init_bio(wbc, bio);
2811 wbc_account_io(wbc, page, page_size);
2812 }
Chris Mason70dec802008-01-29 09:59:12 -05002813
Chris Masond3977122009-01-05 21:25:51 -05002814 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002815 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002816 else
Mike Christie1f7ad752016-06-05 14:31:51 -05002817 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002818
2819 return ret;
2820}
2821
Eric Sandeen48a3b632013-04-25 20:41:01 +00002822static void attach_extent_buffer_page(struct extent_buffer *eb,
2823 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002824{
2825 if (!PagePrivate(page)) {
2826 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002827 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002828 set_page_private(page, (unsigned long)eb);
2829 } else {
2830 WARN_ON(page->private != (unsigned long)eb);
2831 }
2832}
2833
Chris Masond1310b22008-01-24 16:13:08 -05002834void set_page_extent_mapped(struct page *page)
2835{
2836 if (!PagePrivate(page)) {
2837 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002838 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002839 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002840 }
2841}
2842
Miao Xie125bac012013-07-25 19:22:37 +08002843static 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)
2847{
2848 struct extent_map *em;
2849
2850 if (em_cached && *em_cached) {
2851 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002852 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002853 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002854 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002855 return em;
2856 }
2857
2858 free_extent_map(em);
2859 *em_cached = NULL;
2860 }
2861
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002862 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002863 if (em_cached && !IS_ERR_OR_NULL(em)) {
2864 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002865 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002866 *em_cached = em;
2867 }
2868 return em;
2869}
Chris Masond1310b22008-01-24 16:13:08 -05002870/*
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
2873 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002874 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002875 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002876 */
Miao Xie99740902013-07-25 19:22:36 +08002877static int __do_readpage(struct extent_io_tree *tree,
2878 struct page *page,
2879 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002880 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002881 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002882 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002883 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002884{
2885 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002886 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002887 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002888 u64 end;
2889 u64 cur = start;
2890 u64 extent_offset;
2891 u64 last_byte = i_size_read(inode);
2892 u64 block_start;
2893 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05002894 struct extent_map *em;
2895 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002896 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002897 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002898 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002899 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002900 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002901 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002902 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002903
2904 set_page_extent_mapped(page);
2905
Miao Xie99740902013-07-25 19:22:36 +08002906 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002907 if (!PageUptodate(page)) {
2908 if (cleancache_get_page(page) == 0) {
2909 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002910 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002911 goto out;
2912 }
2913 }
2914
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002915 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002916 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002917 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002918
2919 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002920 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002921 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002922 memset(userpage + zero_offset, 0, iosize);
2923 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002924 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002925 }
2926 }
Chris Masond1310b22008-01-24 16:13:08 -05002927 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002928 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02002929 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002930
Chris Masond1310b22008-01-24 16:13:08 -05002931 if (cur >= last_byte) {
2932 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002933 struct extent_state *cached = NULL;
2934
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002935 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002936 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002937 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002938 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002939 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002940 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002941 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002942 unlock_extent_cached(tree, cur,
2943 cur + iosize - 1,
2944 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002945 break;
2946 }
Miao Xie125bac012013-07-25 19:22:37 +08002947 em = __get_extent_map(inode, page, pg_offset, cur,
2948 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002949 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002950 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00002951 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002952 break;
2953 }
Chris Masond1310b22008-01-24 16:13:08 -05002954 extent_offset = cur - em->start;
2955 BUG_ON(extent_map_end(em) <= cur);
2956 BUG_ON(end < cur);
2957
Li Zefan261507a02010-12-17 14:21:50 +08002958 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002959 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002960 extent_set_compress_type(&this_bio_flag,
2961 em->compress_type);
2962 }
Chris Masonc8b97812008-10-29 14:49:59 -04002963
Chris Masond1310b22008-01-24 16:13:08 -05002964 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2965 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002966 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002967 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2968 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02002969 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002970 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02002971 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04002972 disk_io_size = iosize;
2973 }
Chris Masond1310b22008-01-24 16:13:08 -05002974 bdev = em->bdev;
2975 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002976 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2977 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002978
2979 /*
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:
2988 *
2989 * File layout
2990 * [0 - 8K] [8K - 24K]
2991 * | |
2992 * | |
2993 * points to extent X, points to extent X,
2994 * offset 4K, length of 8K offset 0, length 16K
2995 *
2996 * [extent X, compressed length = 4K uncompressed length = 16K]
2997 *
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).
3012 */
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;
3017
3018 if (prev_em_start)
3019 *prev_em_start = em->orig_start;
3020
Chris Masond1310b22008-01-24 16:13:08 -05003021 free_extent_map(em);
3022 em = NULL;
3023
3024 /* we've found a hole, just zero and go on */
3025 if (block_start == EXTENT_MAP_HOLE) {
3026 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003027 struct extent_state *cached = NULL;
3028
Cong Wang7ac687d2011-11-25 23:14:28 +08003029 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003030 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003031 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003032 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003033
3034 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003035 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003036 unlock_extent_cached(tree, cur,
3037 cur + iosize - 1,
3038 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003039 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003040 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003041 continue;
3042 }
3043 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003044 if (test_range_bit(tree, cur, cur_end,
3045 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003046 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003047 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003048 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003049 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003050 continue;
3051 }
Chris Mason70dec802008-01-29 09:59:12 -05003052 /* we have an inline extent but it didn't get marked up
3053 * to date. Error out
3054 */
3055 if (block_start == EXTENT_MAP_INLINE) {
3056 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003057 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003058 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003059 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003060 continue;
3061 }
Chris Masond1310b22008-01-24 16:13:08 -05003062
David Sterba4b81ba42017-06-06 19:14:26 +02003063 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003064 page, offset, disk_io_size,
3065 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003066 end_bio_extent_readpage, mirror_num,
3067 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003068 this_bio_flag,
3069 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003070 if (!ret) {
3071 nr++;
3072 *bio_flags = this_bio_flag;
3073 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003074 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003075 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003076 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003077 }
Chris Masond1310b22008-01-24 16:13:08 -05003078 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003079 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003080 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003081out:
Chris Masond1310b22008-01-24 16:13:08 -05003082 if (!nr) {
3083 if (!PageError(page))
3084 SetPageUptodate(page);
3085 unlock_page(page);
3086 }
Liu Bobaf863b2016-07-11 10:39:07 -07003087 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003088}
3089
Miao Xie99740902013-07-25 19:22:36 +08003090static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3091 struct page *pages[], int nr_pages,
3092 u64 start, u64 end,
3093 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003094 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003095 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003096 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003097 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003098{
3099 struct inode *inode;
3100 struct btrfs_ordered_extent *ordered;
3101 int index;
3102
3103 inode = pages[0]->mapping->host;
3104 while (1) {
3105 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003106 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003107 end - start + 1);
3108 if (!ordered)
3109 break;
3110 unlock_extent(tree, start, end);
3111 btrfs_start_ordered_extent(inode, ordered, 1);
3112 btrfs_put_ordered_extent(ordered);
3113 }
3114
3115 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003116 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003117 0, bio_flags, 0, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003118 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003119 }
3120}
3121
3122static void __extent_readpages(struct extent_io_tree *tree,
3123 struct page *pages[],
3124 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003125 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003126 struct bio **bio, unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003127 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003128{
Stefan Behrens35a36212013-08-14 18:12:25 +02003129 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003130 u64 end = 0;
3131 u64 page_start;
3132 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003133 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003134
3135 for (index = 0; index < nr_pages; index++) {
3136 page_start = page_offset(pages[index]);
3137 if (!end) {
3138 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003139 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003140 first_index = index;
3141 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003142 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003143 } else {
3144 __do_contiguous_readpages(tree, &pages[first_index],
3145 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003146 end, get_extent, em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003147 bio, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003148 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003149 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003150 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003151 first_index = index;
3152 }
3153 }
3154
3155 if (end)
3156 __do_contiguous_readpages(tree, &pages[first_index],
3157 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003158 end, get_extent, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003159 bio_flags, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003160}
3161
3162static int __extent_read_full_page(struct extent_io_tree *tree,
3163 struct page *page,
3164 get_extent_t *get_extent,
3165 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003166 unsigned long *bio_flags,
3167 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003168{
3169 struct inode *inode = page->mapping->host;
3170 struct btrfs_ordered_extent *ordered;
3171 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003172 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003173 int ret;
3174
3175 while (1) {
3176 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003177 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003178 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003179 if (!ordered)
3180 break;
3181 unlock_extent(tree, start, end);
3182 btrfs_start_ordered_extent(inode, ordered, 1);
3183 btrfs_put_ordered_extent(ordered);
3184 }
3185
Miao Xie125bac012013-07-25 19:22:37 +08003186 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003187 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003188 return ret;
3189}
3190
Chris Masond1310b22008-01-24 16:13:08 -05003191int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003192 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003193{
3194 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003195 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003196 int ret;
3197
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003198 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003199 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003200 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003201 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003202 return ret;
3203}
Chris Masond1310b22008-01-24 16:13:08 -05003204
David Sterba3d4b9492017-02-10 19:33:41 +01003205static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003206 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003207{
3208 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003209}
3210
Chris Masond1310b22008-01-24 16:13:08 -05003211/*
Chris Mason40f76582014-05-21 13:35:51 -07003212 * helper for __extent_writepage, doing all of the delayed allocation setup.
3213 *
3214 * This returns 1 if our fill_delalloc function did all the work required
3215 * to write the page (copy into inline extent). In this case the IO has
3216 * been started and the page is already unlocked.
3217 *
3218 * This returns 0 if all went well (page still locked)
3219 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003220 */
Chris Mason40f76582014-05-21 13:35:51 -07003221static noinline_for_stack int writepage_delalloc(struct inode *inode,
3222 struct page *page, struct writeback_control *wbc,
3223 struct extent_page_data *epd,
3224 u64 delalloc_start,
3225 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003226{
Chris Mason40f76582014-05-21 13:35:51 -07003227 struct extent_io_tree *tree = epd->tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003228 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003229 u64 nr_delalloc;
3230 u64 delalloc_to_write = 0;
3231 u64 delalloc_end = 0;
3232 int ret;
3233 int page_started = 0;
3234
3235 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3236 return 0;
3237
3238 while (delalloc_end < page_end) {
3239 nr_delalloc = find_lock_delalloc_range(inode, tree,
3240 page,
3241 &delalloc_start,
3242 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003243 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003244 if (nr_delalloc == 0) {
3245 delalloc_start = delalloc_end + 1;
3246 continue;
3247 }
3248 ret = tree->ops->fill_delalloc(inode, page,
3249 delalloc_start,
3250 delalloc_end,
3251 &page_started,
Liu Bof82b7352017-10-23 23:18:16 -06003252 nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003253 /* File system has been set read-only */
3254 if (ret) {
3255 SetPageError(page);
3256 /* fill_delalloc should be return < 0 for error
3257 * but just in case, we use > 0 here meaning the
3258 * IO is started, so we don't want to return > 0
3259 * unless things are going well.
3260 */
3261 ret = ret < 0 ? ret : -EIO;
3262 goto done;
3263 }
3264 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003265 * delalloc_end is already one less than the total length, so
3266 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003267 */
3268 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003269 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003270 delalloc_start = delalloc_end + 1;
3271 }
3272 if (wbc->nr_to_write < delalloc_to_write) {
3273 int thresh = 8192;
3274
3275 if (delalloc_to_write < thresh * 2)
3276 thresh = delalloc_to_write;
3277 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3278 thresh);
3279 }
3280
3281 /* did the fill delalloc function already unlock and start
3282 * the IO?
3283 */
3284 if (page_started) {
3285 /*
3286 * we've unlocked the page, so we can't update
3287 * the mapping's writeback index, just update
3288 * nr_to_write.
3289 */
3290 wbc->nr_to_write -= *nr_written;
3291 return 1;
3292 }
3293
3294 ret = 0;
3295
3296done:
3297 return ret;
3298}
3299
3300/*
3301 * helper for __extent_writepage. This calls the writepage start hooks,
3302 * and does the loop to map the page into extents and bios.
3303 *
3304 * We return 1 if the IO is started and the page is unlocked,
3305 * 0 if all went well (page still locked)
3306 * < 0 if there were errors (page still locked)
3307 */
3308static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3309 struct page *page,
3310 struct writeback_control *wbc,
3311 struct extent_page_data *epd,
3312 loff_t i_size,
3313 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003314 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003315{
Chris Masond1310b22008-01-24 16:13:08 -05003316 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003317 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003318 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003319 u64 end;
3320 u64 cur = start;
3321 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003322 u64 block_start;
3323 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003324 struct extent_map *em;
3325 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003326 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003327 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003328 int ret = 0;
3329 int nr = 0;
3330 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003331
Chris Mason247e7432008-07-17 12:53:51 -04003332 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003333 ret = tree->ops->writepage_start_hook(page, start,
3334 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003335 if (ret) {
3336 /* Fixup worker will requeue */
3337 if (ret == -EBUSY)
3338 wbc->pages_skipped++;
3339 else
3340 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003341
David Sterba3d4b9492017-02-10 19:33:41 +01003342 update_nr_written(wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003343 unlock_page(page);
Liu Bobcf93482017-01-25 17:15:54 -08003344 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003345 }
3346 }
3347
Chris Mason11c83492009-04-20 15:50:09 -04003348 /*
3349 * we don't want to touch the inode after unlocking the page,
3350 * so we update the mapping writeback index now
3351 */
David Sterba3d4b9492017-02-10 19:33:41 +01003352 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003353
Chris Masond1310b22008-01-24 16:13:08 -05003354 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003355 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003356 if (tree->ops && tree->ops->writepage_end_io_hook)
3357 tree->ops->writepage_end_io_hook(page, start,
3358 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003359 goto done;
3360 }
3361
Chris Masond1310b22008-01-24 16:13:08 -05003362 blocksize = inode->i_sb->s_blocksize;
3363
3364 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003365 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003366 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003367
Chris Mason40f76582014-05-21 13:35:51 -07003368 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003369 if (tree->ops && tree->ops->writepage_end_io_hook)
3370 tree->ops->writepage_end_io_hook(page, cur,
3371 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003372 break;
3373 }
David Sterba3c98c622017-06-23 04:01:08 +02003374 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003375 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003376 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003377 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003378 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003379 break;
3380 }
3381
3382 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003383 em_end = extent_map_end(em);
3384 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003385 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003386 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003387 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003388 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003389 bdev = em->bdev;
3390 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003391 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003392 free_extent_map(em);
3393 em = NULL;
3394
Chris Masonc8b97812008-10-29 14:49:59 -04003395 /*
3396 * compressed and inline extents are written through other
3397 * paths in the FS
3398 */
3399 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003400 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003401 /*
3402 * end_io notification does not happen here for
3403 * compressed extents
3404 */
3405 if (!compressed && tree->ops &&
3406 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003407 tree->ops->writepage_end_io_hook(page, cur,
3408 cur + iosize - 1,
3409 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003410 else if (compressed) {
3411 /* we don't want to end_page_writeback on
3412 * a compressed extent. this happens
3413 * elsewhere
3414 */
3415 nr++;
3416 }
3417
3418 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003419 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003420 continue;
3421 }
Chris Masonc8b97812008-10-29 14:49:59 -04003422
David Sterba58409ed2016-05-04 11:46:10 +02003423 set_range_writeback(tree, cur, cur + iosize - 1);
3424 if (!PageWriteback(page)) {
3425 btrfs_err(BTRFS_I(inode)->root->fs_info,
3426 "page %lu not writeback, cur %llu end %llu",
3427 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003428 }
David Sterba58409ed2016-05-04 11:46:10 +02003429
David Sterba4b81ba42017-06-06 19:14:26 +02003430 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003431 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003432 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003433 end_bio_extent_writepage,
3434 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003435 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003436 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003437 if (PageWriteback(page))
3438 end_page_writeback(page);
3439 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003440
Chris Masond1310b22008-01-24 16:13:08 -05003441 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003442 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003443 nr++;
3444 }
3445done:
Chris Mason40f76582014-05-21 13:35:51 -07003446 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003447 return ret;
3448}
3449
3450/*
3451 * the writepage semantics are similar to regular writepage. extent
3452 * records are inserted to lock ranges in the tree, and as dirty areas
3453 * are found, they are marked writeback. Then the lock bits are removed
3454 * and the end_io handler clears the writeback ranges
3455 */
3456static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3457 void *data)
3458{
3459 struct inode *inode = page->mapping->host;
3460 struct extent_page_data *epd = data;
3461 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003462 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003463 int ret;
3464 int nr = 0;
3465 size_t pg_offset = 0;
3466 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003467 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003468 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003469 unsigned long nr_written = 0;
3470
Liu Boff40adf2017-08-24 18:19:48 -06003471 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003472
3473 trace___extent_writepage(page, inode, wbc);
3474
3475 WARN_ON(!PageLocked(page));
3476
3477 ClearPageError(page);
3478
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003479 pg_offset = i_size & (PAGE_SIZE - 1);
Chris Mason40f76582014-05-21 13:35:51 -07003480 if (page->index > end_index ||
3481 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003482 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003483 unlock_page(page);
3484 return 0;
3485 }
3486
3487 if (page->index == end_index) {
3488 char *userpage;
3489
3490 userpage = kmap_atomic(page);
3491 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003492 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003493 kunmap_atomic(userpage);
3494 flush_dcache_page(page);
3495 }
3496
3497 pg_offset = 0;
3498
3499 set_page_extent_mapped(page);
3500
3501 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3502 if (ret == 1)
3503 goto done_unlocked;
3504 if (ret)
3505 goto done;
3506
3507 ret = __extent_writepage_io(inode, page, wbc, epd,
3508 i_size, nr_written, write_flags, &nr);
3509 if (ret == 1)
3510 goto done_unlocked;
3511
3512done:
Chris Masond1310b22008-01-24 16:13:08 -05003513 if (nr == 0) {
3514 /* make sure the mapping tag for page dirty gets cleared */
3515 set_page_writeback(page);
3516 end_page_writeback(page);
3517 }
Filipe Manana61391d52014-05-09 17:17:40 +01003518 if (PageError(page)) {
3519 ret = ret < 0 ? ret : -EIO;
3520 end_extent_writepage(page, ret, start, page_end);
3521 }
Chris Masond1310b22008-01-24 16:13:08 -05003522 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003523 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003524
Chris Mason11c83492009-04-20 15:50:09 -04003525done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003526 return 0;
3527}
3528
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003529void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003530{
NeilBrown74316202014-07-07 15:16:04 +10003531 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3532 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003533}
3534
Chris Mason0e378df2014-05-19 20:55:27 -07003535static noinline_for_stack int
3536lock_extent_buffer_for_io(struct extent_buffer *eb,
3537 struct btrfs_fs_info *fs_info,
3538 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003539{
3540 unsigned long i, num_pages;
3541 int flush = 0;
3542 int ret = 0;
3543
3544 if (!btrfs_try_tree_write_lock(eb)) {
3545 flush = 1;
3546 flush_write_bio(epd);
3547 btrfs_tree_lock(eb);
3548 }
3549
3550 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3551 btrfs_tree_unlock(eb);
3552 if (!epd->sync_io)
3553 return 0;
3554 if (!flush) {
3555 flush_write_bio(epd);
3556 flush = 1;
3557 }
Chris Masona098d8e82012-03-21 12:09:56 -04003558 while (1) {
3559 wait_on_extent_buffer_writeback(eb);
3560 btrfs_tree_lock(eb);
3561 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3562 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003563 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003564 }
3565 }
3566
Josef Bacik51561ff2012-07-20 16:25:24 -04003567 /*
3568 * We need to do this to prevent races in people who check if the eb is
3569 * under IO since we can end up having no IO bits set for a short period
3570 * of time.
3571 */
3572 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003573 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3574 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003575 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003576 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003577 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3578 -eb->len,
3579 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003580 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003581 } else {
3582 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003583 }
3584
3585 btrfs_tree_unlock(eb);
3586
3587 if (!ret)
3588 return ret;
3589
3590 num_pages = num_extent_pages(eb->start, eb->len);
3591 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003592 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003593
3594 if (!trylock_page(p)) {
3595 if (!flush) {
3596 flush_write_bio(epd);
3597 flush = 1;
3598 }
3599 lock_page(p);
3600 }
3601 }
3602
3603 return ret;
3604}
3605
3606static void end_extent_buffer_writeback(struct extent_buffer *eb)
3607{
3608 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003609 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003610 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3611}
3612
Filipe Manana656f30d2014-09-26 12:25:56 +01003613static void set_btree_ioerr(struct page *page)
3614{
3615 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003616
3617 SetPageError(page);
3618 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3619 return;
3620
3621 /*
3622 * If writeback for a btree extent that doesn't belong to a log tree
3623 * failed, increment the counter transaction->eb_write_errors.
3624 * We do this because while the transaction is running and before it's
3625 * committing (when we call filemap_fdata[write|wait]_range against
3626 * the btree inode), we might have
3627 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3628 * returns an error or an error happens during writeback, when we're
3629 * committing the transaction we wouldn't know about it, since the pages
3630 * can be no longer dirty nor marked anymore for writeback (if a
3631 * subsequent modification to the extent buffer didn't happen before the
3632 * transaction commit), which makes filemap_fdata[write|wait]_range not
3633 * able to find the pages tagged with SetPageError at transaction
3634 * commit time. So if this happens we must abort the transaction,
3635 * otherwise we commit a super block with btree roots that point to
3636 * btree nodes/leafs whose content on disk is invalid - either garbage
3637 * or the content of some node/leaf from a past generation that got
3638 * cowed or deleted and is no longer valid.
3639 *
3640 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3641 * not be enough - we need to distinguish between log tree extents vs
3642 * non-log tree extents, and the next filemap_fdatawait_range() call
3643 * will catch and clear such errors in the mapping - and that call might
3644 * be from a log sync and not from a transaction commit. Also, checking
3645 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3646 * not done and would not be reliable - the eb might have been released
3647 * from memory and reading it back again means that flag would not be
3648 * set (since it's a runtime flag, not persisted on disk).
3649 *
3650 * Using the flags below in the btree inode also makes us achieve the
3651 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3652 * writeback for all dirty pages and before filemap_fdatawait_range()
3653 * is called, the writeback for all dirty pages had already finished
3654 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3655 * filemap_fdatawait_range() would return success, as it could not know
3656 * that writeback errors happened (the pages were no longer tagged for
3657 * writeback).
3658 */
3659 switch (eb->log_index) {
3660 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003661 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003662 break;
3663 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003664 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003665 break;
3666 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003667 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003668 break;
3669 default:
3670 BUG(); /* unexpected, logic error */
3671 }
3672}
3673
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003674static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003675{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003676 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003677 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003678 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003679
David Sterbac09abff2017-07-13 18:10:07 +02003680 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08003681 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003682 struct page *page = bvec->bv_page;
3683
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003684 eb = (struct extent_buffer *)page->private;
3685 BUG_ON(!eb);
3686 done = atomic_dec_and_test(&eb->io_pages);
3687
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003688 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003689 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003690 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003691 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003692 }
3693
3694 end_page_writeback(page);
3695
3696 if (!done)
3697 continue;
3698
3699 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003700 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003701
3702 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003703}
3704
Chris Mason0e378df2014-05-19 20:55:27 -07003705static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003706 struct btrfs_fs_info *fs_info,
3707 struct writeback_control *wbc,
3708 struct extent_page_data *epd)
3709{
3710 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003711 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003712 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003713 u32 nritems;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003714 unsigned long i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003715 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003716 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003717 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003718
Filipe Manana656f30d2014-09-26 12:25:56 +01003719 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003720 num_pages = num_extent_pages(eb->start, eb->len);
3721 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003722
Liu Bo851cd172016-09-23 13:44:44 -07003723 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3724 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003725 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003726 end = btrfs_node_key_ptr_offset(nritems);
3727
David Sterbab159fa22016-11-08 18:09:03 +01003728 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003729 } else {
3730 /*
3731 * leaf:
3732 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3733 */
3734 start = btrfs_item_nr_offset(nritems);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003735 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003736 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003737 }
3738
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003739 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003740 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003741
3742 clear_page_dirty_for_io(p);
3743 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003744 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003745 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003746 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003747 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003748 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003749 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003750 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003751 if (PageWriteback(p))
3752 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003753 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3754 end_extent_buffer_writeback(eb);
3755 ret = -EIO;
3756 break;
3757 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003758 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003759 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003760 unlock_page(p);
3761 }
3762
3763 if (unlikely(ret)) {
3764 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003765 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003766 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003767 unlock_page(p);
3768 }
3769 }
3770
3771 return ret;
3772}
3773
3774int btree_write_cache_pages(struct address_space *mapping,
3775 struct writeback_control *wbc)
3776{
3777 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3778 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3779 struct extent_buffer *eb, *prev_eb = NULL;
3780 struct extent_page_data epd = {
3781 .bio = NULL,
3782 .tree = tree,
3783 .extent_locked = 0,
3784 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3785 };
3786 int ret = 0;
3787 int done = 0;
3788 int nr_to_write_done = 0;
3789 struct pagevec pvec;
3790 int nr_pages;
3791 pgoff_t index;
3792 pgoff_t end; /* Inclusive */
3793 int scanned = 0;
3794 int tag;
3795
Mel Gorman86679822017-11-15 17:37:52 -08003796 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003797 if (wbc->range_cyclic) {
3798 index = mapping->writeback_index; /* Start from prev offset */
3799 end = -1;
3800 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003801 index = wbc->range_start >> PAGE_SHIFT;
3802 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003803 scanned = 1;
3804 }
3805 if (wbc->sync_mode == WB_SYNC_ALL)
3806 tag = PAGECACHE_TAG_TOWRITE;
3807 else
3808 tag = PAGECACHE_TAG_DIRTY;
3809retry:
3810 if (wbc->sync_mode == WB_SYNC_ALL)
3811 tag_pages_for_writeback(mapping, index, end);
3812 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003813 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003814 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003815 unsigned i;
3816
3817 scanned = 1;
3818 for (i = 0; i < nr_pages; i++) {
3819 struct page *page = pvec.pages[i];
3820
3821 if (!PagePrivate(page))
3822 continue;
3823
Josef Bacikb5bae262012-09-14 13:43:01 -04003824 spin_lock(&mapping->private_lock);
3825 if (!PagePrivate(page)) {
3826 spin_unlock(&mapping->private_lock);
3827 continue;
3828 }
3829
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003830 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003831
3832 /*
3833 * Shouldn't happen and normally this would be a BUG_ON
3834 * but no sense in crashing the users box for something
3835 * we can survive anyway.
3836 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303837 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003838 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003839 continue;
3840 }
3841
Josef Bacikb5bae262012-09-14 13:43:01 -04003842 if (eb == prev_eb) {
3843 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003844 continue;
3845 }
3846
Josef Bacikb5bae262012-09-14 13:43:01 -04003847 ret = atomic_inc_not_zero(&eb->refs);
3848 spin_unlock(&mapping->private_lock);
3849 if (!ret)
3850 continue;
3851
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003852 prev_eb = eb;
3853 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3854 if (!ret) {
3855 free_extent_buffer(eb);
3856 continue;
3857 }
3858
3859 ret = write_one_eb(eb, fs_info, wbc, &epd);
3860 if (ret) {
3861 done = 1;
3862 free_extent_buffer(eb);
3863 break;
3864 }
3865 free_extent_buffer(eb);
3866
3867 /*
3868 * the filesystem may choose to bump up nr_to_write.
3869 * We have to make sure to honor the new nr_to_write
3870 * at any time
3871 */
3872 nr_to_write_done = wbc->nr_to_write <= 0;
3873 }
3874 pagevec_release(&pvec);
3875 cond_resched();
3876 }
3877 if (!scanned && !done) {
3878 /*
3879 * We hit the last page and there is more work to be done: wrap
3880 * back to the start of the file
3881 */
3882 scanned = 1;
3883 index = 0;
3884 goto retry;
3885 }
3886 flush_write_bio(&epd);
3887 return ret;
3888}
3889
Chris Masond1310b22008-01-24 16:13:08 -05003890/**
Chris Mason4bef0842008-09-08 11:18:08 -04003891 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
Chris Masond1310b22008-01-24 16:13:08 -05003892 * @mapping: address space structure to write
3893 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3894 * @writepage: function called for each page
3895 * @data: data passed to writepage function
3896 *
3897 * If a page is already under I/O, write_cache_pages() skips it, even
3898 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3899 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3900 * and msync() need to guarantee that all the data which was dirty at the time
3901 * the call was made get new I/O started against them. If wbc->sync_mode is
3902 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3903 * existing IO to complete.
3904 */
David Sterba4242b642017-02-10 19:38:24 +01003905static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003906 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003907 writepage_t writepage, void *data,
3908 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003909{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003910 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003911 int ret = 0;
3912 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003913 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003914 struct pagevec pvec;
3915 int nr_pages;
3916 pgoff_t index;
3917 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003918 pgoff_t done_index;
3919 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003920 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003921 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003922
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003923 /*
3924 * We have to hold onto the inode so that ordered extents can do their
3925 * work when the IO finishes. The alternative to this is failing to add
3926 * an ordered extent if the igrab() fails there and that is a huge pain
3927 * to deal with, so instead just hold onto the inode throughout the
3928 * writepages operation. If it fails here we are freeing up the inode
3929 * anyway and we'd rather not waste our time writing out stuff that is
3930 * going to be truncated anyway.
3931 */
3932 if (!igrab(inode))
3933 return 0;
3934
Mel Gorman86679822017-11-15 17:37:52 -08003935 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003936 if (wbc->range_cyclic) {
3937 index = mapping->writeback_index; /* Start from prev offset */
3938 end = -1;
3939 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003940 index = wbc->range_start >> PAGE_SHIFT;
3941 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003942 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3943 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003944 scanned = 1;
3945 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003946 if (wbc->sync_mode == WB_SYNC_ALL)
3947 tag = PAGECACHE_TAG_TOWRITE;
3948 else
3949 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003950retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003951 if (wbc->sync_mode == WB_SYNC_ALL)
3952 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003953 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003954 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08003955 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
3956 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05003957 unsigned i;
3958
3959 scanned = 1;
3960 for (i = 0; i < nr_pages; i++) {
3961 struct page *page = pvec.pages[i];
3962
Liu Boa91326672016-03-07 16:56:21 -08003963 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003964 /*
3965 * At this point we hold neither mapping->tree_lock nor
3966 * lock on the page itself: the page may be truncated or
3967 * invalidated (changing page->mapping to NULL), or even
3968 * swizzled back from swapper_space to tmpfs file
3969 * mapping
3970 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003971 if (!trylock_page(page)) {
3972 flush_fn(data);
3973 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003974 }
Chris Masond1310b22008-01-24 16:13:08 -05003975
3976 if (unlikely(page->mapping != mapping)) {
3977 unlock_page(page);
3978 continue;
3979 }
3980
Chris Masond2c3f4f2008-11-19 12:44:22 -05003981 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003982 if (PageWriteback(page))
3983 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003984 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003985 }
Chris Masond1310b22008-01-24 16:13:08 -05003986
3987 if (PageWriteback(page) ||
3988 !clear_page_dirty_for_io(page)) {
3989 unlock_page(page);
3990 continue;
3991 }
3992
3993 ret = (*writepage)(page, wbc, data);
3994
3995 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3996 unlock_page(page);
3997 ret = 0;
3998 }
Liu Boa91326672016-03-07 16:56:21 -08003999 if (ret < 0) {
4000 /*
4001 * done_index is set past this page,
4002 * so media errors will not choke
4003 * background writeout for the entire
4004 * file. This has consequences for
4005 * range_cyclic semantics (ie. it may
4006 * not be suitable for data integrity
4007 * writeout).
4008 */
4009 done_index = page->index + 1;
4010 done = 1;
4011 break;
4012 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004013
4014 /*
4015 * the filesystem may choose to bump up nr_to_write.
4016 * We have to make sure to honor the new nr_to_write
4017 * at any time
4018 */
4019 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004020 }
4021 pagevec_release(&pvec);
4022 cond_resched();
4023 }
Liu Bo894b36e2016-03-07 16:56:22 -08004024 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004025 /*
4026 * We hit the last page and there is more work to be done: wrap
4027 * back to the start of the file
4028 */
4029 scanned = 1;
4030 index = 0;
4031 goto retry;
4032 }
Liu Boa91326672016-03-07 16:56:21 -08004033
4034 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4035 mapping->writeback_index = done_index;
4036
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004037 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004038 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004039}
Chris Masond1310b22008-01-24 16:13:08 -05004040
Chris Masonffbd5172009-04-20 15:50:09 -04004041static void flush_epd_write_bio(struct extent_page_data *epd)
4042{
4043 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004044 int ret;
4045
Liu Bo18fdc672017-09-13 12:18:22 -06004046 ret = submit_one_bio(epd->bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004047 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004048 epd->bio = NULL;
4049 }
4050}
4051
Chris Masond2c3f4f2008-11-19 12:44:22 -05004052static noinline void flush_write_bio(void *data)
4053{
4054 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004055 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004056}
4057
Chris Masond1310b22008-01-24 16:13:08 -05004058int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
Chris Masond1310b22008-01-24 16:13:08 -05004059 struct writeback_control *wbc)
4060{
4061 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004062 struct extent_page_data epd = {
4063 .bio = NULL,
4064 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004065 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004066 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004067 };
Chris Masond1310b22008-01-24 16:13:08 -05004068
Chris Masond1310b22008-01-24 16:13:08 -05004069 ret = __extent_writepage(page, wbc, &epd);
4070
Chris Masonffbd5172009-04-20 15:50:09 -04004071 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004072 return ret;
4073}
Chris Masond1310b22008-01-24 16:13:08 -05004074
Chris Mason771ed682008-11-06 22:02:51 -05004075int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
David Sterba916b9292017-06-23 03:47:28 +02004076 u64 start, u64 end, int mode)
Chris Mason771ed682008-11-06 22:02:51 -05004077{
4078 int ret = 0;
4079 struct address_space *mapping = inode->i_mapping;
4080 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004081 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4082 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004083
4084 struct extent_page_data epd = {
4085 .bio = NULL,
4086 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004087 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004088 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004089 };
4090 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004091 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004092 .nr_to_write = nr_pages * 2,
4093 .range_start = start,
4094 .range_end = end + 1,
4095 };
4096
Chris Masond3977122009-01-05 21:25:51 -05004097 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004098 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004099 if (clear_page_dirty_for_io(page))
4100 ret = __extent_writepage(page, &wbc_writepages, &epd);
4101 else {
4102 if (tree->ops && tree->ops->writepage_end_io_hook)
4103 tree->ops->writepage_end_io_hook(page, start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004104 start + PAGE_SIZE - 1,
Chris Mason771ed682008-11-06 22:02:51 -05004105 NULL, 1);
4106 unlock_page(page);
4107 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004108 put_page(page);
4109 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004110 }
4111
Chris Masonffbd5172009-04-20 15:50:09 -04004112 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004113 return ret;
4114}
Chris Masond1310b22008-01-24 16:13:08 -05004115
4116int extent_writepages(struct extent_io_tree *tree,
4117 struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004118 struct writeback_control *wbc)
4119{
4120 int ret = 0;
4121 struct extent_page_data epd = {
4122 .bio = NULL,
4123 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004124 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004125 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004126 };
4127
David Sterba4242b642017-02-10 19:38:24 +01004128 ret = extent_write_cache_pages(mapping, wbc, __extent_writepage, &epd,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004129 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004130 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004131 return ret;
4132}
Chris Masond1310b22008-01-24 16:13:08 -05004133
4134int extent_readpages(struct extent_io_tree *tree,
4135 struct address_space *mapping,
4136 struct list_head *pages, unsigned nr_pages,
4137 get_extent_t get_extent)
4138{
4139 struct bio *bio = NULL;
4140 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004141 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004142 struct page *pagepool[16];
4143 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004144 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004145 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004146 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004147
Chris Masond1310b22008-01-24 16:13:08 -05004148 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004149 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004150
4151 prefetchw(&page->flags);
4152 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004153 if (add_to_page_cache_lru(page, mapping,
Michal Hocko8a5c7432016-07-26 15:24:53 -07004154 page->index,
4155 readahead_gfp_mask(mapping))) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004156 put_page(page);
Liu Bo67c96842012-07-20 21:43:09 -06004157 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004158 }
Liu Bo67c96842012-07-20 21:43:09 -06004159
4160 pagepool[nr++] = page;
4161 if (nr < ARRAY_SIZE(pagepool))
4162 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004163 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03004164 &bio, &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004165 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004166 }
Miao Xie99740902013-07-25 19:22:36 +08004167 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004168 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03004169 &bio, &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004170
Miao Xie125bac012013-07-25 19:22:37 +08004171 if (em_cached)
4172 free_extent_map(em_cached);
4173
Chris Masond1310b22008-01-24 16:13:08 -05004174 BUG_ON(!list_empty(pages));
4175 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004176 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004177 return 0;
4178}
Chris Masond1310b22008-01-24 16:13:08 -05004179
4180/*
4181 * basic invalidatepage code, this waits on any locked or writeback
4182 * ranges corresponding to the page, and then deletes any extent state
4183 * records from the tree
4184 */
4185int extent_invalidatepage(struct extent_io_tree *tree,
4186 struct page *page, unsigned long offset)
4187{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004188 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004189 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004190 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004191 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4192
Qu Wenruofda28322013-02-26 08:10:22 +00004193 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004194 if (start > end)
4195 return 0;
4196
David Sterbaff13db42015-12-03 14:30:40 +01004197 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004198 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004199 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004200 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4201 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004202 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004203 return 0;
4204}
Chris Masond1310b22008-01-24 16:13:08 -05004205
4206/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004207 * a helper for releasepage, this tests for areas of the page that
4208 * are locked or under IO and drops the related state bits if it is safe
4209 * to drop the page.
4210 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004211static int try_release_extent_state(struct extent_map_tree *map,
4212 struct extent_io_tree *tree,
4213 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004214{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004215 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004216 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004217 int ret = 1;
4218
Chris Mason211f90e2008-07-18 11:56:15 -04004219 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004220 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004221 ret = 0;
4222 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004223 /*
4224 * at this point we can safely clear everything except the
4225 * locked bit and the nodatasum bit
4226 */
David Sterba66b0c882017-10-31 16:30:47 +01004227 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004228 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004229 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004230
4231 /* if clear_extent_bit failed for enomem reasons,
4232 * we can't allow the release to continue.
4233 */
4234 if (ret < 0)
4235 ret = 0;
4236 else
4237 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004238 }
4239 return ret;
4240}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004241
4242/*
Chris Masond1310b22008-01-24 16:13:08 -05004243 * a helper for releasepage. As long as there are no locked extents
4244 * in the range corresponding to the page, both state records and extent
4245 * map records are removed
4246 */
4247int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004248 struct extent_io_tree *tree, struct page *page,
4249 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004250{
4251 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004252 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004253 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004254
Mel Gormand0164ad2015-11-06 16:28:21 -08004255 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004256 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004257 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004258 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004259 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004260 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004261 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004262 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004263 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004264 break;
4265 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004266 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4267 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004268 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004269 free_extent_map(em);
4270 break;
4271 }
4272 if (!test_range_bit(tree, em->start,
4273 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004274 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004275 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004276 remove_extent_mapping(map, em);
4277 /* once for the rb tree */
4278 free_extent_map(em);
4279 }
4280 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004281 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004282
4283 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004284 free_extent_map(em);
4285 }
Chris Masond1310b22008-01-24 16:13:08 -05004286 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004287 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004288}
Chris Masond1310b22008-01-24 16:13:08 -05004289
Chris Masonec29ed52011-02-23 16:23:20 -05004290/*
4291 * helper function for fiemap, which doesn't want to see any holes.
4292 * This maps until we find something past 'last'
4293 */
4294static struct extent_map *get_extent_skip_holes(struct inode *inode,
4295 u64 offset,
4296 u64 last,
4297 get_extent_t *get_extent)
4298{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004299 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004300 struct extent_map *em;
4301 u64 len;
4302
4303 if (offset >= last)
4304 return NULL;
4305
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304306 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004307 len = last - offset;
4308 if (len == 0)
4309 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004310 len = ALIGN(len, sectorsize);
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02004311 em = get_extent(BTRFS_I(inode), NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004312 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004313 return em;
4314
4315 /* if this isn't a hole return it */
4316 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4317 em->block_start != EXTENT_MAP_HOLE) {
4318 return em;
4319 }
4320
4321 /* this is a hole, advance to the next extent */
4322 offset = extent_map_end(em);
4323 free_extent_map(em);
4324 if (offset >= last)
4325 break;
4326 }
4327 return NULL;
4328}
4329
Qu Wenruo47518322017-04-07 10:43:15 +08004330/*
4331 * To cache previous fiemap extent
4332 *
4333 * Will be used for merging fiemap extent
4334 */
4335struct fiemap_cache {
4336 u64 offset;
4337 u64 phys;
4338 u64 len;
4339 u32 flags;
4340 bool cached;
4341};
4342
4343/*
4344 * Helper to submit fiemap extent.
4345 *
4346 * Will try to merge current fiemap extent specified by @offset, @phys,
4347 * @len and @flags with cached one.
4348 * And only when we fails to merge, cached one will be submitted as
4349 * fiemap extent.
4350 *
4351 * Return value is the same as fiemap_fill_next_extent().
4352 */
4353static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4354 struct fiemap_cache *cache,
4355 u64 offset, u64 phys, u64 len, u32 flags)
4356{
4357 int ret = 0;
4358
4359 if (!cache->cached)
4360 goto assign;
4361
4362 /*
4363 * Sanity check, extent_fiemap() should have ensured that new
4364 * fiemap extent won't overlap with cahced one.
4365 * Not recoverable.
4366 *
4367 * NOTE: Physical address can overlap, due to compression
4368 */
4369 if (cache->offset + cache->len > offset) {
4370 WARN_ON(1);
4371 return -EINVAL;
4372 }
4373
4374 /*
4375 * Only merges fiemap extents if
4376 * 1) Their logical addresses are continuous
4377 *
4378 * 2) Their physical addresses are continuous
4379 * So truly compressed (physical size smaller than logical size)
4380 * extents won't get merged with each other
4381 *
4382 * 3) Share same flags except FIEMAP_EXTENT_LAST
4383 * So regular extent won't get merged with prealloc extent
4384 */
4385 if (cache->offset + cache->len == offset &&
4386 cache->phys + cache->len == phys &&
4387 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4388 (flags & ~FIEMAP_EXTENT_LAST)) {
4389 cache->len += len;
4390 cache->flags |= flags;
4391 goto try_submit_last;
4392 }
4393
4394 /* Not mergeable, need to submit cached one */
4395 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4396 cache->len, cache->flags);
4397 cache->cached = false;
4398 if (ret)
4399 return ret;
4400assign:
4401 cache->cached = true;
4402 cache->offset = offset;
4403 cache->phys = phys;
4404 cache->len = len;
4405 cache->flags = flags;
4406try_submit_last:
4407 if (cache->flags & FIEMAP_EXTENT_LAST) {
4408 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4409 cache->phys, cache->len, cache->flags);
4410 cache->cached = false;
4411 }
4412 return ret;
4413}
4414
4415/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004416 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004417 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004418 * The last fiemap cache may still be cached in the following case:
4419 * 0 4k 8k
4420 * |<- Fiemap range ->|
4421 * |<------------ First extent ----------->|
4422 *
4423 * In this case, the first extent range will be cached but not emitted.
4424 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004425 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004426static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4427 struct fiemap_extent_info *fieinfo,
4428 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004429{
4430 int ret;
4431
4432 if (!cache->cached)
4433 return 0;
4434
Qu Wenruo47518322017-04-07 10:43:15 +08004435 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4436 cache->len, cache->flags);
4437 cache->cached = false;
4438 if (ret > 0)
4439 ret = 0;
4440 return ret;
4441}
4442
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004443int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4444 __u64 start, __u64 len, get_extent_t *get_extent)
4445{
Josef Bacik975f84f2010-11-23 19:36:57 +00004446 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004447 u64 off = start;
4448 u64 max = start + len;
4449 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004450 u32 found_type;
4451 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004452 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004453 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004454 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004455 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004456 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004457 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004458 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004459 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004460 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004461 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004462 u64 em_start = 0;
4463 u64 em_len = 0;
4464 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004465
4466 if (len == 0)
4467 return -EINVAL;
4468
Josef Bacik975f84f2010-11-23 19:36:57 +00004469 path = btrfs_alloc_path();
4470 if (!path)
4471 return -ENOMEM;
4472 path->leave_spinning = 1;
4473
Jeff Mahoneyda170662016-06-15 09:22:56 -04004474 start = round_down(start, btrfs_inode_sectorsize(inode));
4475 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004476
Chris Masonec29ed52011-02-23 16:23:20 -05004477 /*
4478 * lookup the last file extent. We're not using i_size here
4479 * because there might be preallocation past i_size
4480 */
David Sterbaf85b7372017-01-20 14:54:07 +01004481 ret = btrfs_lookup_file_extent(NULL, root, path,
4482 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004483 if (ret < 0) {
4484 btrfs_free_path(path);
4485 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004486 } else {
4487 WARN_ON(!ret);
4488 if (ret == 1)
4489 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004490 }
Liu Bo2d324f52016-05-17 17:21:48 -07004491
Josef Bacik975f84f2010-11-23 19:36:57 +00004492 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004493 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004494 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004495
Chris Masonec29ed52011-02-23 16:23:20 -05004496 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004497 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004498 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004499 /* have to trust i_size as the end */
4500 last = (u64)-1;
4501 last_for_get_extent = isize;
4502 } else {
4503 /*
4504 * remember the start of the last extent. There are a
4505 * bunch of different factors that go into the length of the
4506 * extent, so its much less complex to remember where it started
4507 */
4508 last = found_key.offset;
4509 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004510 }
Liu Bofe09e162013-09-22 12:54:23 +08004511 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004512
Chris Masonec29ed52011-02-23 16:23:20 -05004513 /*
4514 * we might have some extents allocated but more delalloc past those
4515 * extents. so, we trust isize unless the start of the last extent is
4516 * beyond isize
4517 */
4518 if (last < isize) {
4519 last = (u64)-1;
4520 last_for_get_extent = isize;
4521 }
4522
David Sterbaff13db42015-12-03 14:30:40 +01004523 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004524 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004525
Josef Bacik4d479cf2011-11-17 11:34:31 -05004526 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004527 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004528 if (!em)
4529 goto out;
4530 if (IS_ERR(em)) {
4531 ret = PTR_ERR(em);
4532 goto out;
4533 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004534
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004535 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004536 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004537
Chris Masonea8efc72011-03-08 11:54:40 -05004538 /* break if the extent we found is outside the range */
4539 if (em->start >= max || extent_map_end(em) < off)
4540 break;
4541
4542 /*
4543 * get_extent may return an extent that starts before our
4544 * requested range. We have to make sure the ranges
4545 * we return to fiemap always move forward and don't
4546 * overlap, so adjust the offsets here
4547 */
4548 em_start = max(em->start, off);
4549
4550 /*
4551 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004552 * for adjusting the disk offset below. Only do this if the
4553 * extent isn't compressed since our in ram offset may be past
4554 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004555 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004556 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4557 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004558 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004559 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004560 disko = 0;
4561 flags = 0;
4562
Chris Masonea8efc72011-03-08 11:54:40 -05004563 /*
4564 * bump off for our next call to get_extent
4565 */
4566 off = extent_map_end(em);
4567 if (off >= max)
4568 end = 1;
4569
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004570 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004571 end = 1;
4572 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004573 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004574 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4575 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004576 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004577 flags |= (FIEMAP_EXTENT_DELALLOC |
4578 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004579 } else if (fieinfo->fi_extents_max) {
4580 u64 bytenr = em->block_start -
4581 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004582
Chris Masonea8efc72011-03-08 11:54:40 -05004583 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004584
4585 /*
4586 * As btrfs supports shared space, this information
4587 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004588 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4589 * then we're just getting a count and we can skip the
4590 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004591 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004592 ret = btrfs_check_shared(root,
4593 btrfs_ino(BTRFS_I(inode)),
4594 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004595 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004596 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004597 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004598 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004599 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004600 }
4601 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4602 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004603 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4604 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004605
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004606 free_extent_map(em);
4607 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004608 if ((em_start >= last) || em_len == (u64)-1 ||
4609 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004610 flags |= FIEMAP_EXTENT_LAST;
4611 end = 1;
4612 }
4613
Chris Masonec29ed52011-02-23 16:23:20 -05004614 /* now scan forward to see if this is really the last extent. */
4615 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4616 get_extent);
4617 if (IS_ERR(em)) {
4618 ret = PTR_ERR(em);
4619 goto out;
4620 }
4621 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004622 flags |= FIEMAP_EXTENT_LAST;
4623 end = 1;
4624 }
Qu Wenruo47518322017-04-07 10:43:15 +08004625 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4626 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004627 if (ret) {
4628 if (ret == 1)
4629 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004630 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004631 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004632 }
4633out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004634 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004635 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004636 free_extent_map(em);
4637out:
Liu Bofe09e162013-09-22 12:54:23 +08004638 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004639 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004640 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004641 return ret;
4642}
4643
Chris Mason727011e2010-08-06 13:21:20 -04004644static void __free_extent_buffer(struct extent_buffer *eb)
4645{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004646 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004647 kmem_cache_free(extent_buffer_cache, eb);
4648}
4649
Josef Bacika26e8c92014-03-28 17:07:27 -04004650int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004651{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004652 return (atomic_read(&eb->io_pages) ||
4653 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4654 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004655}
4656
Miao Xie897ca6e92010-10-26 20:57:29 -04004657/*
4658 * Helper for releasing extent buffer page.
4659 */
David Sterbaa50924e2014-07-31 00:51:36 +02004660static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004661{
4662 unsigned long index;
4663 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004664 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004665
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004666 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004667
David Sterbaa50924e2014-07-31 00:51:36 +02004668 index = num_extent_pages(eb->start, eb->len);
4669 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004670 return;
4671
4672 do {
4673 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004674 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004675 if (!page)
4676 continue;
4677 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004678 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004679 /*
4680 * We do this since we'll remove the pages after we've
4681 * removed the eb from the radix tree, so we could race
4682 * and have this page now attached to the new eb. So
4683 * only clear page_private if it's still connected to
4684 * this eb.
4685 */
4686 if (PagePrivate(page) &&
4687 page->private == (unsigned long)eb) {
4688 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4689 BUG_ON(PageDirty(page));
4690 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004691 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004692 * We need to make sure we haven't be attached
4693 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004694 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004695 ClearPagePrivate(page);
4696 set_page_private(page, 0);
4697 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004698 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004699 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004700
4701 if (mapped)
4702 spin_unlock(&page->mapping->private_lock);
4703
Nicholas D Steeves01327612016-05-19 21:18:45 -04004704 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004705 put_page(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004706 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004707}
4708
4709/*
4710 * Helper for releasing the extent buffer.
4711 */
4712static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4713{
David Sterbaa50924e2014-07-31 00:51:36 +02004714 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004715 __free_extent_buffer(eb);
4716}
4717
Josef Bacikf28491e2013-12-16 13:24:27 -05004718static struct extent_buffer *
4719__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004720 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004721{
4722 struct extent_buffer *eb = NULL;
4723
Michal Hockod1b5c562015-08-19 14:17:40 +02004724 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004725 eb->start = start;
4726 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004727 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004728 eb->bflags = 0;
4729 rwlock_init(&eb->lock);
4730 atomic_set(&eb->write_locks, 0);
4731 atomic_set(&eb->read_locks, 0);
4732 atomic_set(&eb->blocking_readers, 0);
4733 atomic_set(&eb->blocking_writers, 0);
4734 atomic_set(&eb->spinning_readers, 0);
4735 atomic_set(&eb->spinning_writers, 0);
4736 eb->lock_nested = 0;
4737 init_waitqueue_head(&eb->write_lock_wq);
4738 init_waitqueue_head(&eb->read_lock_wq);
4739
4740 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4741
4742 spin_lock_init(&eb->refs_lock);
4743 atomic_set(&eb->refs, 1);
4744 atomic_set(&eb->io_pages, 0);
4745
4746 /*
4747 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4748 */
4749 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4750 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4751 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4752
4753 return eb;
4754}
4755
4756struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4757{
4758 unsigned long i;
4759 struct page *p;
4760 struct extent_buffer *new;
4761 unsigned long num_pages = num_extent_pages(src->start, src->len);
4762
David Sterba3f556f72014-06-15 03:20:26 +02004763 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004764 if (new == NULL)
4765 return NULL;
4766
4767 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004768 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004769 if (!p) {
4770 btrfs_release_extent_buffer(new);
4771 return NULL;
4772 }
4773 attach_extent_buffer_page(new, p);
4774 WARN_ON(PageDirty(p));
4775 SetPageUptodate(p);
4776 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004777 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004778 }
4779
Josef Bacikdb7f3432013-08-07 14:54:37 -04004780 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4781 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4782
4783 return new;
4784}
4785
Omar Sandoval0f331222015-09-29 20:50:31 -07004786struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4787 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004788{
4789 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004790 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004791 unsigned long i;
4792
Omar Sandoval0f331222015-09-29 20:50:31 -07004793 num_pages = num_extent_pages(start, len);
David Sterba3f556f72014-06-15 03:20:26 +02004794
4795 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004796 if (!eb)
4797 return NULL;
4798
4799 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004800 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004801 if (!eb->pages[i])
4802 goto err;
4803 }
4804 set_extent_buffer_uptodate(eb);
4805 btrfs_set_header_nritems(eb, 0);
4806 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4807
4808 return eb;
4809err:
4810 for (; i > 0; i--)
4811 __free_page(eb->pages[i - 1]);
4812 __free_extent_buffer(eb);
4813 return NULL;
4814}
4815
Omar Sandoval0f331222015-09-29 20:50:31 -07004816struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004817 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004818{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004819 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004820}
4821
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004822static void check_buffer_tree_ref(struct extent_buffer *eb)
4823{
Chris Mason242e18c2013-01-29 17:49:37 -05004824 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004825 /* the ref bit is tricky. We have to make sure it is set
4826 * if we have the buffer dirty. Otherwise the
4827 * code to free a buffer can end up dropping a dirty
4828 * page
4829 *
4830 * Once the ref bit is set, it won't go away while the
4831 * buffer is dirty or in writeback, and it also won't
4832 * go away while we have the reference count on the
4833 * eb bumped.
4834 *
4835 * We can't just set the ref bit without bumping the
4836 * ref on the eb because free_extent_buffer might
4837 * see the ref bit and try to clear it. If this happens
4838 * free_extent_buffer might end up dropping our original
4839 * ref by mistake and freeing the page before we are able
4840 * to add one more ref.
4841 *
4842 * So bump the ref count first, then set the bit. If someone
4843 * beat us to it, drop the ref we added.
4844 */
Chris Mason242e18c2013-01-29 17:49:37 -05004845 refs = atomic_read(&eb->refs);
4846 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4847 return;
4848
Josef Bacik594831c2012-07-20 16:11:08 -04004849 spin_lock(&eb->refs_lock);
4850 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004851 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004852 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004853}
4854
Mel Gorman2457aec2014-06-04 16:10:31 -07004855static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4856 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004857{
4858 unsigned long num_pages, i;
4859
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004860 check_buffer_tree_ref(eb);
4861
Josef Bacik5df42352012-03-15 18:24:42 -04004862 num_pages = num_extent_pages(eb->start, eb->len);
4863 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004864 struct page *p = eb->pages[i];
4865
Mel Gorman2457aec2014-06-04 16:10:31 -07004866 if (p != accessed)
4867 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004868 }
4869}
4870
Josef Bacikf28491e2013-12-16 13:24:27 -05004871struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4872 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004873{
4874 struct extent_buffer *eb;
4875
4876 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004877 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004878 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004879 if (eb && atomic_inc_not_zero(&eb->refs)) {
4880 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004881 /*
4882 * Lock our eb's refs_lock to avoid races with
4883 * free_extent_buffer. When we get our eb it might be flagged
4884 * with EXTENT_BUFFER_STALE and another task running
4885 * free_extent_buffer might have seen that flag set,
4886 * eb->refs == 2, that the buffer isn't under IO (dirty and
4887 * writeback flags not set) and it's still in the tree (flag
4888 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4889 * of decrementing the extent buffer's reference count twice.
4890 * So here we could race and increment the eb's reference count,
4891 * clear its stale flag, mark it as dirty and drop our reference
4892 * before the other task finishes executing free_extent_buffer,
4893 * which would later result in an attempt to free an extent
4894 * buffer that is dirty.
4895 */
4896 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4897 spin_lock(&eb->refs_lock);
4898 spin_unlock(&eb->refs_lock);
4899 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004900 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004901 return eb;
4902 }
4903 rcu_read_unlock();
4904
4905 return NULL;
4906}
4907
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004908#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4909struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004910 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004911{
4912 struct extent_buffer *eb, *exists = NULL;
4913 int ret;
4914
4915 eb = find_extent_buffer(fs_info, start);
4916 if (eb)
4917 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004918 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004919 if (!eb)
4920 return NULL;
4921 eb->fs_info = fs_info;
4922again:
David Sterbae1860a72016-05-09 14:11:38 +02004923 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004924 if (ret)
4925 goto free_eb;
4926 spin_lock(&fs_info->buffer_lock);
4927 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004928 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004929 spin_unlock(&fs_info->buffer_lock);
4930 radix_tree_preload_end();
4931 if (ret == -EEXIST) {
4932 exists = find_extent_buffer(fs_info, start);
4933 if (exists)
4934 goto free_eb;
4935 else
4936 goto again;
4937 }
4938 check_buffer_tree_ref(eb);
4939 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4940
4941 /*
4942 * We will free dummy extent buffer's if they come into
4943 * free_extent_buffer with a ref count of 2, but if we are using this we
4944 * want the buffers to stay in memory until we're done with them, so
4945 * bump the ref count again.
4946 */
4947 atomic_inc(&eb->refs);
4948 return eb;
4949free_eb:
4950 btrfs_release_extent_buffer(eb);
4951 return exists;
4952}
4953#endif
4954
Josef Bacikf28491e2013-12-16 13:24:27 -05004955struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004956 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004957{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004958 unsigned long len = fs_info->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004959 unsigned long num_pages = num_extent_pages(start, len);
4960 unsigned long i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004961 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004962 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004963 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004964 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004965 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004966 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004967 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004968
Jeff Mahoneyda170662016-06-15 09:22:56 -04004969 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004970 btrfs_err(fs_info, "bad tree block start %llu", start);
4971 return ERR_PTR(-EINVAL);
4972 }
4973
Josef Bacikf28491e2013-12-16 13:24:27 -05004974 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004975 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004976 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004977
David Sterba23d79d82014-06-15 02:55:29 +02004978 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004979 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004980 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004981
Chris Mason727011e2010-08-06 13:21:20 -04004982 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004983 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004984 if (!p) {
4985 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004986 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004987 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004988
4989 spin_lock(&mapping->private_lock);
4990 if (PagePrivate(p)) {
4991 /*
4992 * We could have already allocated an eb for this page
4993 * and attached one so lets see if we can get a ref on
4994 * the existing eb, and if we can we know it's good and
4995 * we can just return that one, else we know we can just
4996 * overwrite page->private.
4997 */
4998 exists = (struct extent_buffer *)p->private;
4999 if (atomic_inc_not_zero(&exists->refs)) {
5000 spin_unlock(&mapping->private_lock);
5001 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005002 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005003 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005004 goto free_eb;
5005 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005006 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005007
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005008 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005009 * Do this so attach doesn't complain and we need to
5010 * drop the ref the old guy had.
5011 */
5012 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005013 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005014 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005015 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005016 attach_extent_buffer_page(eb, p);
5017 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005018 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005019 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005020 if (!PageUptodate(p))
5021 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005022
5023 /*
5024 * see below about how we avoid a nasty race with release page
5025 * and why we unlock later
5026 */
Chris Masond1310b22008-01-24 16:13:08 -05005027 }
5028 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005029 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005030again:
David Sterbae1860a72016-05-09 14:11:38 +02005031 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005032 if (ret) {
5033 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005034 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005035 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005036
Josef Bacikf28491e2013-12-16 13:24:27 -05005037 spin_lock(&fs_info->buffer_lock);
5038 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005039 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005040 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005041 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005042 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005043 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005044 if (exists)
5045 goto free_eb;
5046 else
Josef Bacik115391d2012-03-09 09:51:43 -05005047 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005048 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005049 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005050 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005051 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005052
5053 /*
5054 * there is a race where release page may have
5055 * tried to find this extent buffer in the radix
5056 * but failed. It will tell the VM it is safe to
5057 * reclaim the, and it will clear the page private bit.
5058 * We must make sure to set the page private bit properly
5059 * after the extent buffer is in the radix tree so
5060 * it doesn't get lost
5061 */
Chris Mason727011e2010-08-06 13:21:20 -04005062 SetPageChecked(eb->pages[0]);
5063 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005064 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005065 ClearPageChecked(p);
5066 unlock_page(p);
5067 }
5068 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005069 return eb;
5070
Chris Mason6af118ce2008-07-22 11:18:07 -04005071free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005072 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005073 for (i = 0; i < num_pages; i++) {
5074 if (eb->pages[i])
5075 unlock_page(eb->pages[i]);
5076 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005077
Miao Xie897ca6e92010-10-26 20:57:29 -04005078 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005079 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005080}
Chris Masond1310b22008-01-24 16:13:08 -05005081
Josef Bacik3083ee22012-03-09 16:01:49 -05005082static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5083{
5084 struct extent_buffer *eb =
5085 container_of(head, struct extent_buffer, rcu_head);
5086
5087 __free_extent_buffer(eb);
5088}
5089
Josef Bacik3083ee22012-03-09 16:01:49 -05005090/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005091static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005092{
5093 WARN_ON(atomic_read(&eb->refs) == 0);
5094 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005095 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005096 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005097
Jan Schmidt815a51c2012-05-16 17:00:02 +02005098 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005099
Josef Bacikf28491e2013-12-16 13:24:27 -05005100 spin_lock(&fs_info->buffer_lock);
5101 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005102 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005103 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005104 } else {
5105 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005106 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005107
5108 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005109 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005110#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5111 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5112 __free_extent_buffer(eb);
5113 return 1;
5114 }
5115#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005116 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005117 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005118 }
5119 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005120
5121 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005122}
5123
Chris Masond1310b22008-01-24 16:13:08 -05005124void free_extent_buffer(struct extent_buffer *eb)
5125{
Chris Mason242e18c2013-01-29 17:49:37 -05005126 int refs;
5127 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005128 if (!eb)
5129 return;
5130
Chris Mason242e18c2013-01-29 17:49:37 -05005131 while (1) {
5132 refs = atomic_read(&eb->refs);
5133 if (refs <= 3)
5134 break;
5135 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5136 if (old == refs)
5137 return;
5138 }
5139
Josef Bacik3083ee22012-03-09 16:01:49 -05005140 spin_lock(&eb->refs_lock);
5141 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005142 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5143 atomic_dec(&eb->refs);
5144
5145 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005146 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005147 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005148 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5149 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005150
Josef Bacik3083ee22012-03-09 16:01:49 -05005151 /*
5152 * I know this is terrible, but it's temporary until we stop tracking
5153 * the uptodate bits and such for the extent buffers.
5154 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005155 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005156}
Chris Masond1310b22008-01-24 16:13:08 -05005157
Josef Bacik3083ee22012-03-09 16:01:49 -05005158void free_extent_buffer_stale(struct extent_buffer *eb)
5159{
5160 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005161 return;
5162
Josef Bacik3083ee22012-03-09 16:01:49 -05005163 spin_lock(&eb->refs_lock);
5164 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5165
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005166 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005167 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5168 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005169 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005170}
5171
Chris Mason1d4284b2012-03-28 20:31:37 -04005172void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005173{
Chris Masond1310b22008-01-24 16:13:08 -05005174 unsigned long i;
5175 unsigned long num_pages;
5176 struct page *page;
5177
Chris Masond1310b22008-01-24 16:13:08 -05005178 num_pages = num_extent_pages(eb->start, eb->len);
5179
5180 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005181 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005182 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005183 continue;
5184
Chris Masona61e6f22008-07-22 11:18:08 -04005185 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005186 WARN_ON(!PagePrivate(page));
5187
Chris Masond1310b22008-01-24 16:13:08 -05005188 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005189 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005190 if (!PageDirty(page)) {
5191 radix_tree_tag_clear(&page->mapping->page_tree,
5192 page_index(page),
5193 PAGECACHE_TAG_DIRTY);
5194 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005195 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005196 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005197 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005198 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005199 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005200}
Chris Masond1310b22008-01-24 16:13:08 -05005201
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005202int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005203{
5204 unsigned long i;
5205 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005206 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005207
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005208 check_buffer_tree_ref(eb);
5209
Chris Masonb9473432009-03-13 11:00:37 -04005210 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005211
Chris Masond1310b22008-01-24 16:13:08 -05005212 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005213 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005214 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5215
Chris Masonb9473432009-03-13 11:00:37 -04005216 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005217 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005218 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005219}
Chris Masond1310b22008-01-24 16:13:08 -05005220
David Sterba69ba3922015-12-03 13:08:59 +01005221void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005222{
5223 unsigned long i;
5224 struct page *page;
5225 unsigned long num_pages;
5226
Chris Masonb4ce94d2009-02-04 09:25:08 -05005227 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005228 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005229 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005230 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005231 if (page)
5232 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005233 }
Chris Mason1259ab72008-05-12 13:39:03 -04005234}
5235
David Sterba09c25a82015-12-03 13:08:59 +01005236void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005237{
5238 unsigned long i;
5239 struct page *page;
5240 unsigned long num_pages;
5241
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005242 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005243 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005244 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005245 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005246 SetPageUptodate(page);
5247 }
Chris Masond1310b22008-01-24 16:13:08 -05005248}
Chris Masond1310b22008-01-24 16:13:08 -05005249
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005250int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005251{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005252 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005253}
Chris Masond1310b22008-01-24 16:13:08 -05005254
5255int read_extent_buffer_pages(struct extent_io_tree *tree,
Josef Bacik8436ea912016-09-02 15:40:03 -04005256 struct extent_buffer *eb, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005257 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005258{
5259 unsigned long i;
Chris Masond1310b22008-01-24 16:13:08 -05005260 struct page *page;
5261 int err;
5262 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005263 int locked_pages = 0;
5264 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005265 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005266 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005267 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005268 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005269
Chris Masonb4ce94d2009-02-04 09:25:08 -05005270 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005271 return 0;
5272
Chris Masond1310b22008-01-24 16:13:08 -05005273 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik8436ea912016-09-02 15:40:03 -04005274 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005275 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005276 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005277 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005278 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005279 } else {
5280 lock_page(page);
5281 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005282 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005283 }
5284 /*
5285 * We need to firstly lock all pages to make sure that
5286 * the uptodate bit of our pages won't be affected by
5287 * clear_extent_buffer_uptodate().
5288 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005289 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005290 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005291 if (!PageUptodate(page)) {
5292 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005293 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005294 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005295 }
Liu Bo2571e732016-08-03 12:33:01 -07005296
Chris Masonce9adaa2008-04-09 16:28:12 -04005297 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005298 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005299 goto unlock_exit;
5300 }
5301
Filipe Manana656f30d2014-09-26 12:25:56 +01005302 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005303 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005304 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005305 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005306 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005307
Chris Masonce9adaa2008-04-09 16:28:12 -04005308 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005309 if (ret) {
5310 atomic_dec(&eb->io_pages);
5311 unlock_page(page);
5312 continue;
5313 }
5314
Chris Masonf1885912008-04-09 16:28:12 -04005315 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005316 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005317 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005318 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005319 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005320 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005321 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005322 /*
5323 * We use &bio in above __extent_read_full_page,
5324 * so we ensure that if it returns error, the
5325 * current page fails to add itself to bio and
5326 * it's been unlocked.
5327 *
5328 * We must dec io_pages by ourselves.
5329 */
5330 atomic_dec(&eb->io_pages);
5331 }
Chris Masond1310b22008-01-24 16:13:08 -05005332 } else {
5333 unlock_page(page);
5334 }
5335 }
5336
Jeff Mahoney355808c2011-10-03 23:23:14 -04005337 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005338 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005339 if (err)
5340 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005341 }
Chris Masona86c12c2008-02-07 10:50:54 -05005342
Arne Jansenbb82ab82011-06-10 14:06:53 +02005343 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005344 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005345
Josef Bacik8436ea912016-09-02 15:40:03 -04005346 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005347 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005348 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005349 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005350 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005351 }
Chris Masond3977122009-01-05 21:25:51 -05005352
Chris Masond1310b22008-01-24 16:13:08 -05005353 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005354
5355unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005356 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005357 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005358 page = eb->pages[locked_pages];
5359 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005360 }
5361 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005362}
Chris Masond1310b22008-01-24 16:13:08 -05005363
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005364void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5365 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005366{
5367 size_t cur;
5368 size_t offset;
5369 struct page *page;
5370 char *kaddr;
5371 char *dst = (char *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005372 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5373 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005374
Liu Bof716abd2017-08-09 11:10:16 -06005375 if (start + len > eb->len) {
5376 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5377 eb->start, eb->len, start, len);
5378 memset(dst, 0, len);
5379 return;
5380 }
Chris Masond1310b22008-01-24 16:13:08 -05005381
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005382 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005383
Chris Masond3977122009-01-05 21:25:51 -05005384 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005385 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005386
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005387 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005388 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005389 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005390
5391 dst += cur;
5392 len -= cur;
5393 offset = 0;
5394 i++;
5395 }
5396}
Chris Masond1310b22008-01-24 16:13:08 -05005397
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005398int read_extent_buffer_to_user(const struct extent_buffer *eb,
5399 void __user *dstv,
5400 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005401{
5402 size_t cur;
5403 size_t offset;
5404 struct page *page;
5405 char *kaddr;
5406 char __user *dst = (char __user *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005407 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5408 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005409 int ret = 0;
5410
5411 WARN_ON(start > eb->len);
5412 WARN_ON(start + len > eb->start + eb->len);
5413
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005414 offset = (start_offset + start) & (PAGE_SIZE - 1);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005415
5416 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005417 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005418
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005419 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005420 kaddr = page_address(page);
5421 if (copy_to_user(dst, kaddr + offset, cur)) {
5422 ret = -EFAULT;
5423 break;
5424 }
5425
5426 dst += cur;
5427 len -= cur;
5428 offset = 0;
5429 i++;
5430 }
5431
5432 return ret;
5433}
5434
Liu Bo415b35a2016-06-17 19:16:21 -07005435/*
5436 * return 0 if the item is found within a page.
5437 * return 1 if the item spans two pages.
5438 * return -EINVAL otherwise.
5439 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005440int map_private_extent_buffer(const struct extent_buffer *eb,
5441 unsigned long start, unsigned long min_len,
5442 char **map, unsigned long *map_start,
5443 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005444{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005445 size_t offset = start & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005446 char *kaddr;
5447 struct page *p;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005448 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5449 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005450 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005451 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005452
Liu Bof716abd2017-08-09 11:10:16 -06005453 if (start + min_len > eb->len) {
5454 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5455 eb->start, eb->len, start, min_len);
5456 return -EINVAL;
5457 }
5458
Chris Masond1310b22008-01-24 16:13:08 -05005459 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005460 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005461
5462 if (i == 0) {
5463 offset = start_offset;
5464 *map_start = 0;
5465 } else {
5466 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005467 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005468 }
Chris Masond3977122009-01-05 21:25:51 -05005469
David Sterbafb85fc92014-07-31 01:03:53 +02005470 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005471 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005472 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005473 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005474 return 0;
5475}
Chris Masond1310b22008-01-24 16:13:08 -05005476
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005477int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5478 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005479{
5480 size_t cur;
5481 size_t offset;
5482 struct page *page;
5483 char *kaddr;
5484 char *ptr = (char *)ptrv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005485 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5486 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005487 int ret = 0;
5488
5489 WARN_ON(start > eb->len);
5490 WARN_ON(start + len > eb->start + eb->len);
5491
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005492 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005493
Chris Masond3977122009-01-05 21:25:51 -05005494 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005495 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005496
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005497 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005498
Chris Masona6591712011-07-19 12:04:14 -04005499 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005500 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005501 if (ret)
5502 break;
5503
5504 ptr += cur;
5505 len -= cur;
5506 offset = 0;
5507 i++;
5508 }
5509 return ret;
5510}
Chris Masond1310b22008-01-24 16:13:08 -05005511
David Sterbaf157bf72016-11-09 17:43:38 +01005512void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5513 const void *srcv)
5514{
5515 char *kaddr;
5516
5517 WARN_ON(!PageUptodate(eb->pages[0]));
5518 kaddr = page_address(eb->pages[0]);
5519 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5520 BTRFS_FSID_SIZE);
5521}
5522
5523void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5524{
5525 char *kaddr;
5526
5527 WARN_ON(!PageUptodate(eb->pages[0]));
5528 kaddr = page_address(eb->pages[0]);
5529 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5530 BTRFS_FSID_SIZE);
5531}
5532
Chris Masond1310b22008-01-24 16:13:08 -05005533void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5534 unsigned long start, unsigned long len)
5535{
5536 size_t cur;
5537 size_t offset;
5538 struct page *page;
5539 char *kaddr;
5540 char *src = (char *)srcv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005541 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5542 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005543
5544 WARN_ON(start > eb->len);
5545 WARN_ON(start + len > eb->start + eb->len);
5546
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005547 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005548
Chris Masond3977122009-01-05 21:25:51 -05005549 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005550 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005551 WARN_ON(!PageUptodate(page));
5552
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005553 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005554 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005555 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005556
5557 src += cur;
5558 len -= cur;
5559 offset = 0;
5560 i++;
5561 }
5562}
Chris Masond1310b22008-01-24 16:13:08 -05005563
David Sterbab159fa22016-11-08 18:09:03 +01005564void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5565 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005566{
5567 size_t cur;
5568 size_t offset;
5569 struct page *page;
5570 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005571 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5572 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005573
5574 WARN_ON(start > eb->len);
5575 WARN_ON(start + len > eb->start + eb->len);
5576
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005577 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005578
Chris Masond3977122009-01-05 21:25:51 -05005579 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005580 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005581 WARN_ON(!PageUptodate(page));
5582
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005583 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005584 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005585 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005586
5587 len -= cur;
5588 offset = 0;
5589 i++;
5590 }
5591}
Chris Masond1310b22008-01-24 16:13:08 -05005592
David Sterba58e80122016-11-08 18:30:31 +01005593void copy_extent_buffer_full(struct extent_buffer *dst,
5594 struct extent_buffer *src)
5595{
5596 int i;
5597 unsigned num_pages;
5598
5599 ASSERT(dst->len == src->len);
5600
5601 num_pages = num_extent_pages(dst->start, dst->len);
5602 for (i = 0; i < num_pages; i++)
5603 copy_page(page_address(dst->pages[i]),
5604 page_address(src->pages[i]));
5605}
5606
Chris Masond1310b22008-01-24 16:13:08 -05005607void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5608 unsigned long dst_offset, unsigned long src_offset,
5609 unsigned long len)
5610{
5611 u64 dst_len = dst->len;
5612 size_t cur;
5613 size_t offset;
5614 struct page *page;
5615 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005616 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
5617 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005618
5619 WARN_ON(src->len != dst_len);
5620
5621 offset = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005622 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005623
Chris Masond3977122009-01-05 21:25:51 -05005624 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005625 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005626 WARN_ON(!PageUptodate(page));
5627
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005628 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005629
Chris Masona6591712011-07-19 12:04:14 -04005630 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005631 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005632
5633 src_offset += cur;
5634 len -= cur;
5635 offset = 0;
5636 i++;
5637 }
5638}
Chris Masond1310b22008-01-24 16:13:08 -05005639
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005640void le_bitmap_set(u8 *map, unsigned int start, int len)
5641{
5642 u8 *p = map + BIT_BYTE(start);
5643 const unsigned int size = start + len;
5644 int bits_to_set = BITS_PER_BYTE - (start % BITS_PER_BYTE);
5645 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(start);
5646
5647 while (len - bits_to_set >= 0) {
5648 *p |= mask_to_set;
5649 len -= bits_to_set;
5650 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005651 mask_to_set = ~0;
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005652 p++;
5653 }
5654 if (len) {
5655 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5656 *p |= mask_to_set;
5657 }
5658}
5659
5660void le_bitmap_clear(u8 *map, unsigned int start, int len)
5661{
5662 u8 *p = map + BIT_BYTE(start);
5663 const unsigned int size = start + len;
5664 int bits_to_clear = BITS_PER_BYTE - (start % BITS_PER_BYTE);
5665 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(start);
5666
5667 while (len - bits_to_clear >= 0) {
5668 *p &= ~mask_to_clear;
5669 len -= bits_to_clear;
5670 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005671 mask_to_clear = ~0;
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005672 p++;
5673 }
5674 if (len) {
5675 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5676 *p &= ~mask_to_clear;
5677 }
5678}
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005679
5680/*
5681 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5682 * given bit number
5683 * @eb: the extent buffer
5684 * @start: offset of the bitmap item in the extent buffer
5685 * @nr: bit number
5686 * @page_index: return index of the page in the extent buffer that contains the
5687 * given bit number
5688 * @page_offset: return offset into the page given by page_index
5689 *
5690 * This helper hides the ugliness of finding the byte in an extent buffer which
5691 * contains a given bit.
5692 */
5693static inline void eb_bitmap_offset(struct extent_buffer *eb,
5694 unsigned long start, unsigned long nr,
5695 unsigned long *page_index,
5696 size_t *page_offset)
5697{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005698 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005699 size_t byte_offset = BIT_BYTE(nr);
5700 size_t offset;
5701
5702 /*
5703 * The byte we want is the offset of the extent buffer + the offset of
5704 * the bitmap item in the extent buffer + the offset of the byte in the
5705 * bitmap item.
5706 */
5707 offset = start_offset + start + byte_offset;
5708
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005709 *page_index = offset >> PAGE_SHIFT;
5710 *page_offset = offset & (PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005711}
5712
5713/**
5714 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5715 * @eb: the extent buffer
5716 * @start: offset of the bitmap item in the extent buffer
5717 * @nr: bit number to test
5718 */
5719int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5720 unsigned long nr)
5721{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005722 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005723 struct page *page;
5724 unsigned long i;
5725 size_t offset;
5726
5727 eb_bitmap_offset(eb, start, nr, &i, &offset);
5728 page = eb->pages[i];
5729 WARN_ON(!PageUptodate(page));
5730 kaddr = page_address(page);
5731 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5732}
5733
5734/**
5735 * extent_buffer_bitmap_set - set an area of a bitmap
5736 * @eb: the extent buffer
5737 * @start: offset of the bitmap item in the extent buffer
5738 * @pos: bit number of the first bit
5739 * @len: number of bits to set
5740 */
5741void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5742 unsigned long pos, unsigned long len)
5743{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005744 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005745 struct page *page;
5746 unsigned long i;
5747 size_t offset;
5748 const unsigned int size = pos + len;
5749 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005750 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005751
5752 eb_bitmap_offset(eb, start, pos, &i, &offset);
5753 page = eb->pages[i];
5754 WARN_ON(!PageUptodate(page));
5755 kaddr = page_address(page);
5756
5757 while (len >= bits_to_set) {
5758 kaddr[offset] |= mask_to_set;
5759 len -= bits_to_set;
5760 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005761 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005762 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005763 offset = 0;
5764 page = eb->pages[++i];
5765 WARN_ON(!PageUptodate(page));
5766 kaddr = page_address(page);
5767 }
5768 }
5769 if (len) {
5770 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5771 kaddr[offset] |= mask_to_set;
5772 }
5773}
5774
5775
5776/**
5777 * extent_buffer_bitmap_clear - clear an area of a bitmap
5778 * @eb: the extent buffer
5779 * @start: offset of the bitmap item in the extent buffer
5780 * @pos: bit number of the first bit
5781 * @len: number of bits to clear
5782 */
5783void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5784 unsigned long pos, unsigned long len)
5785{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005786 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005787 struct page *page;
5788 unsigned long i;
5789 size_t offset;
5790 const unsigned int size = pos + len;
5791 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005792 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005793
5794 eb_bitmap_offset(eb, start, pos, &i, &offset);
5795 page = eb->pages[i];
5796 WARN_ON(!PageUptodate(page));
5797 kaddr = page_address(page);
5798
5799 while (len >= bits_to_clear) {
5800 kaddr[offset] &= ~mask_to_clear;
5801 len -= bits_to_clear;
5802 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005803 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005804 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005805 offset = 0;
5806 page = eb->pages[++i];
5807 WARN_ON(!PageUptodate(page));
5808 kaddr = page_address(page);
5809 }
5810 }
5811 if (len) {
5812 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5813 kaddr[offset] &= ~mask_to_clear;
5814 }
5815}
5816
Sergei Trofimovich33872062011-04-11 21:52:52 +00005817static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5818{
5819 unsigned long distance = (src > dst) ? src - dst : dst - src;
5820 return distance < len;
5821}
5822
Chris Masond1310b22008-01-24 16:13:08 -05005823static void copy_pages(struct page *dst_page, struct page *src_page,
5824 unsigned long dst_off, unsigned long src_off,
5825 unsigned long len)
5826{
Chris Masona6591712011-07-19 12:04:14 -04005827 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005828 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005829 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005830
Sergei Trofimovich33872062011-04-11 21:52:52 +00005831 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005832 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005833 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005834 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005835 if (areas_overlap(src_off, dst_off, len))
5836 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005837 }
Chris Masond1310b22008-01-24 16:13:08 -05005838
Chris Mason727011e2010-08-06 13:21:20 -04005839 if (must_memmove)
5840 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5841 else
5842 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005843}
5844
5845void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5846 unsigned long src_offset, unsigned long len)
5847{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005848 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005849 size_t cur;
5850 size_t dst_off_in_page;
5851 size_t src_off_in_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005852 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005853 unsigned long dst_i;
5854 unsigned long src_i;
5855
5856 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005857 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005858 "memmove bogus src_offset %lu move len %lu dst len %lu",
5859 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005860 BUG_ON(1);
5861 }
5862 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005863 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005864 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5865 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005866 BUG_ON(1);
5867 }
5868
Chris Masond3977122009-01-05 21:25:51 -05005869 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005870 dst_off_in_page = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005871 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005872 src_off_in_page = (start_offset + src_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005873 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005874
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005875 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5876 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005877
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005878 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005879 src_off_in_page));
5880 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005881 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005882
David Sterbafb85fc92014-07-31 01:03:53 +02005883 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005884 dst_off_in_page, src_off_in_page, cur);
5885
5886 src_offset += cur;
5887 dst_offset += cur;
5888 len -= cur;
5889 }
5890}
Chris Masond1310b22008-01-24 16:13:08 -05005891
5892void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5893 unsigned long src_offset, unsigned long len)
5894{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005895 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005896 size_t cur;
5897 size_t dst_off_in_page;
5898 size_t src_off_in_page;
5899 unsigned long dst_end = dst_offset + len - 1;
5900 unsigned long src_end = src_offset + len - 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005901 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005902 unsigned long dst_i;
5903 unsigned long src_i;
5904
5905 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005906 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005907 "memmove bogus src_offset %lu move len %lu len %lu",
5908 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005909 BUG_ON(1);
5910 }
5911 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005912 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005913 "memmove bogus dst_offset %lu move len %lu len %lu",
5914 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005915 BUG_ON(1);
5916 }
Chris Mason727011e2010-08-06 13:21:20 -04005917 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005918 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5919 return;
5920 }
Chris Masond3977122009-01-05 21:25:51 -05005921 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005922 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5923 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005924
5925 dst_off_in_page = (start_offset + dst_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005926 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005927 src_off_in_page = (start_offset + src_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005928 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005929
5930 cur = min_t(unsigned long, len, src_off_in_page + 1);
5931 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005932 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005933 dst_off_in_page - cur + 1,
5934 src_off_in_page - cur + 1, cur);
5935
5936 dst_end -= cur;
5937 src_end -= cur;
5938 len -= cur;
5939 }
5940}
Chris Mason6af118ce2008-07-22 11:18:07 -04005941
David Sterbaf7a52a42013-04-26 14:56:29 +00005942int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005943{
Chris Mason6af118ce2008-07-22 11:18:07 -04005944 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005945
Miao Xie19fe0a82010-10-26 20:57:29 -04005946 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005947 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005948 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005949 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005950 spin_lock(&page->mapping->private_lock);
5951 if (!PagePrivate(page)) {
5952 spin_unlock(&page->mapping->private_lock);
5953 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005954 }
5955
Josef Bacik3083ee22012-03-09 16:01:49 -05005956 eb = (struct extent_buffer *)page->private;
5957 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005958
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005959 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005960 * This is a little awful but should be ok, we need to make sure that
5961 * the eb doesn't disappear out from under us while we're looking at
5962 * this page.
5963 */
5964 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005965 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005966 spin_unlock(&eb->refs_lock);
5967 spin_unlock(&page->mapping->private_lock);
5968 return 0;
5969 }
5970 spin_unlock(&page->mapping->private_lock);
5971
Josef Bacik3083ee22012-03-09 16:01:49 -05005972 /*
5973 * If tree ref isn't set then we know the ref on this eb is a real ref,
5974 * so just return, this page will likely be freed soon anyway.
5975 */
5976 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5977 spin_unlock(&eb->refs_lock);
5978 return 0;
5979 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005980
David Sterbaf7a52a42013-04-26 14:56:29 +00005981 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005982}