blob: c63334c6b0082d356371e4f7505ee61ee68a1732 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
David Sterbac1d7c512018-04-03 19:23:33 +02002
Chris Masond1310b22008-01-24 16:13:08 -05003#include <linux/bitops.h>
4#include <linux/slab.h>
5#include <linux/bio.h>
6#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/pagemap.h>
8#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05009#include <linux/spinlock.h>
10#include <linux/blkdev.h>
11#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050012#include <linux/writeback.h>
13#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070014#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060015#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050016#include "extent_io.h"
17#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040018#include "ctree.h"
19#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020020#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010021#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040022#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040023#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080024#include "backref.h"
David Sterba6af49db2017-06-23 04:09:57 +020025#include "disk-io.h"
Chris Masond1310b22008-01-24 16:13:08 -050026
Chris Masond1310b22008-01-24 16:13:08 -050027static struct kmem_cache *extent_state_cache;
28static struct kmem_cache *extent_buffer_cache;
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -040029static struct bio_set btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050030
Filipe Manana27a35072014-07-06 20:09:59 +010031static inline bool extent_state_in_tree(const struct extent_state *state)
32{
33 return !RB_EMPTY_NODE(&state->rb_node);
34}
35
Eric Sandeen6d49ba12013-04-22 16:12:31 +000036#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050037static LIST_HEAD(buffers);
38static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040039
Chris Masond3977122009-01-05 21:25:51 -050040static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000041
42static inline
43void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
44{
45 unsigned long flags;
46
47 spin_lock_irqsave(&leak_lock, flags);
48 list_add(new, head);
49 spin_unlock_irqrestore(&leak_lock, flags);
50}
51
52static inline
53void btrfs_leak_debug_del(struct list_head *entry)
54{
55 unsigned long flags;
56
57 spin_lock_irqsave(&leak_lock, flags);
58 list_del(entry);
59 spin_unlock_irqrestore(&leak_lock, flags);
60}
61
62static inline
63void btrfs_leak_debug_check(void)
64{
65 struct extent_state *state;
66 struct extent_buffer *eb;
67
68 while (!list_empty(&states)) {
69 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010070 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010071 state->start, state->end, state->state,
72 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020073 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000074 list_del(&state->leak_list);
75 kmem_cache_free(extent_state_cache, state);
76 }
77
78 while (!list_empty(&buffers)) {
79 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Liu Boaf2679e2018-01-25 11:02:48 -070080 pr_err("BTRFS: buffer leak start %llu len %lu refs %d bflags %lu\n",
81 eb->start, eb->len, atomic_read(&eb->refs), eb->bflags);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000082 list_del(&eb->leak_list);
83 kmem_cache_free(extent_buffer_cache, eb);
84 }
85}
David Sterba8d599ae2013-04-30 15:22:23 +000086
Josef Bacika5dee372013-12-13 10:02:44 -050087#define btrfs_debug_check_extent_io_range(tree, start, end) \
88 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000089static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050090 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000091{
Nikolay Borisov65a680f2018-11-01 14:09:49 +020092 struct inode *inode = tree->private_data;
93 u64 isize;
94
95 if (!inode || !is_data_inode(inode))
96 return;
97
98 isize = i_size_read(inode);
99 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
100 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
101 "%s: ino %llu isize %llu odd range [%llu,%llu]",
102 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
103 }
David Sterba8d599ae2013-04-30 15:22:23 +0000104}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000105#else
106#define btrfs_leak_debug_add(new, head) do {} while (0)
107#define btrfs_leak_debug_del(entry) do {} while (0)
108#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000109#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400110#endif
Chris Masond1310b22008-01-24 16:13:08 -0500111
Chris Masond1310b22008-01-24 16:13:08 -0500112#define BUFFER_LRU_MAX 64
113
114struct tree_entry {
115 u64 start;
116 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500117 struct rb_node rb_node;
118};
119
120struct extent_page_data {
121 struct bio *bio;
122 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -0500123 /* tells writepage not to lock the state bits for this range
124 * it still does the unlocking
125 */
Chris Masonffbd5172009-04-20 15:50:09 -0400126 unsigned int extent_locked:1;
127
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600128 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400129 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500130};
131
David Sterba57599c72018-03-01 17:56:34 +0100132static int add_extent_changeset(struct extent_state *state, unsigned bits,
Qu Wenruod38ed272015-10-12 14:53:37 +0800133 struct extent_changeset *changeset,
134 int set)
135{
136 int ret;
137
138 if (!changeset)
David Sterba57599c72018-03-01 17:56:34 +0100139 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800140 if (set && (state->state & bits) == bits)
David Sterba57599c72018-03-01 17:56:34 +0100141 return 0;
Qu Wenruofefdc552015-10-12 15:35:38 +0800142 if (!set && (state->state & bits) == 0)
David Sterba57599c72018-03-01 17:56:34 +0100143 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800144 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100145 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800146 GFP_ATOMIC);
David Sterba57599c72018-03-01 17:56:34 +0100147 return ret;
Qu Wenruod38ed272015-10-12 14:53:37 +0800148}
149
David Sterbaaab6e9e2017-11-30 18:00:02 +0100150static void flush_write_bio(struct extent_page_data *epd);
David Sterbae2932ee2017-06-23 04:16:17 +0200151
Chris Masond1310b22008-01-24 16:13:08 -0500152int __init extent_io_init(void)
153{
David Sterba837e1972012-09-07 03:00:48 -0600154 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200155 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300156 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500157 if (!extent_state_cache)
158 return -ENOMEM;
159
David Sterba837e1972012-09-07 03:00:48 -0600160 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200161 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300162 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500163 if (!extent_buffer_cache)
164 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400165
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400166 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
167 offsetof(struct btrfs_io_bio, bio),
168 BIOSET_NEED_BVECS))
Chris Mason9be33952013-05-17 18:30:14 -0400169 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700170
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400171 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700172 goto free_bioset;
173
Chris Masond1310b22008-01-24 16:13:08 -0500174 return 0;
175
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700176free_bioset:
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400177 bioset_exit(&btrfs_bioset);
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700178
Chris Mason9be33952013-05-17 18:30:14 -0400179free_buffer_cache:
180 kmem_cache_destroy(extent_buffer_cache);
181 extent_buffer_cache = NULL;
182
Chris Masond1310b22008-01-24 16:13:08 -0500183free_state_cache:
184 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400185 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500186 return -ENOMEM;
187}
188
David Sterbae67c7182018-02-19 17:24:18 +0100189void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500190{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000191 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000192
193 /*
194 * Make sure all delayed rcu free are flushed before we
195 * destroy caches.
196 */
197 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800198 kmem_cache_destroy(extent_state_cache);
199 kmem_cache_destroy(extent_buffer_cache);
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400200 bioset_exit(&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;
David Sterba57599c72018-03-01 17:56:34 +0100528 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500529
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400530 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500531 u64 range = state->end - state->start + 1;
532 WARN_ON(range > tree->dirty_bytes);
533 tree->dirty_bytes -= range;
534 }
Chris Mason291d6732008-01-29 15:55:23 -0500535 clear_state_cb(tree, state, bits);
David Sterba57599c72018-03-01 17:56:34 +0100536 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
537 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400538 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500539 if (wake)
540 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400541 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800542 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100543 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500544 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100545 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500546 free_extent_state(state);
547 } else {
548 WARN_ON(1);
549 }
550 } else {
551 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800552 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500553 }
Li Zefancdc6a392012-03-12 16:39:48 +0800554 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500555}
556
Xiao Guangrong82337672011-04-20 06:44:57 +0000557static struct extent_state *
558alloc_extent_state_atomic(struct extent_state *prealloc)
559{
560 if (!prealloc)
561 prealloc = alloc_extent_state(GFP_ATOMIC);
562
563 return prealloc;
564}
565
Eric Sandeen48a3b632013-04-25 20:41:01 +0000566static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400567{
David Sterba05912a32018-07-18 19:23:45 +0200568 struct inode *inode = tree->private_data;
569
570 btrfs_panic(btrfs_sb(inode->i_sb), err,
571 "locking error: extent tree was modified by another thread while locked");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400572}
573
Chris Masond1310b22008-01-24 16:13:08 -0500574/*
575 * clear some bits on a range in the tree. This may require splitting
576 * or inserting elements in the tree, so the gfp mask is used to
577 * indicate which allocations or sleeping are allowed.
578 *
579 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
580 * the given range from the tree regardless of state (ie for truncate).
581 *
582 * the range [start, end] is inclusive.
583 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100584 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500585 */
David Sterba66b0c882017-10-31 16:30:47 +0100586int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800587 unsigned bits, int wake, int delete,
588 struct extent_state **cached_state,
589 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500590{
591 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400592 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500593 struct extent_state *prealloc = NULL;
594 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400595 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500596 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000597 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500598
Josef Bacika5dee372013-12-13 10:02:44 -0500599 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000600
Josef Bacik7ee9e442013-06-21 16:37:03 -0400601 if (bits & EXTENT_DELALLOC)
602 bits |= EXTENT_NORESERVE;
603
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400604 if (delete)
605 bits |= ~EXTENT_CTLBITS;
606 bits |= EXTENT_FIRST_DELALLOC;
607
Josef Bacik2ac55d42010-02-03 19:33:23 +0000608 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
609 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500610again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800611 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000612 /*
613 * Don't care for allocation failure here because we might end
614 * up not needing the pre-allocated extent state at all, which
615 * is the case if we only have in the tree extent states that
616 * cover our input range and don't cover too any other range.
617 * If we end up needing a new extent state we allocate it later.
618 */
Chris Masond1310b22008-01-24 16:13:08 -0500619 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500620 }
621
Chris Masoncad321a2008-12-17 14:51:42 -0500622 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400623 if (cached_state) {
624 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000625
626 if (clear) {
627 *cached_state = NULL;
628 cached_state = NULL;
629 }
630
Filipe Manana27a35072014-07-06 20:09:59 +0100631 if (cached && extent_state_in_tree(cached) &&
632 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000633 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200634 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400635 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400636 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400637 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000638 if (clear)
639 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400640 }
Chris Masond1310b22008-01-24 16:13:08 -0500641 /*
642 * this search will find the extents that end after
643 * our range starts
644 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500645 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500646 if (!node)
647 goto out;
648 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400649hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500650 if (state->start > end)
651 goto out;
652 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400653 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500654
Liu Bo04493142012-02-16 18:34:37 +0800655 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800656 if (!(state->state & bits)) {
657 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800658 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800659 }
Liu Bo04493142012-02-16 18:34:37 +0800660
Chris Masond1310b22008-01-24 16:13:08 -0500661 /*
662 * | ---- desired range ---- |
663 * | state | or
664 * | ------------- state -------------- |
665 *
666 * We need to split the extent we found, and may flip
667 * bits on second half.
668 *
669 * If the extent we found extends past our range, we
670 * just split and search again. It'll get split again
671 * the next time though.
672 *
673 * If the extent we found is inside our range, we clear
674 * the desired bit on it.
675 */
676
677 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000678 prealloc = alloc_extent_state_atomic(prealloc);
679 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500680 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400681 if (err)
682 extent_io_tree_panic(tree, err);
683
Chris Masond1310b22008-01-24 16:13:08 -0500684 prealloc = NULL;
685 if (err)
686 goto out;
687 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800688 state = clear_state_bit(tree, state, &bits, wake,
689 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800690 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500691 }
692 goto search_again;
693 }
694 /*
695 * | ---- desired range ---- |
696 * | state |
697 * We need to split the extent, and clear the bit
698 * on the first half
699 */
700 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000701 prealloc = alloc_extent_state_atomic(prealloc);
702 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500703 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400704 if (err)
705 extent_io_tree_panic(tree, err);
706
Chris Masond1310b22008-01-24 16:13:08 -0500707 if (wake)
708 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400709
Qu Wenruofefdc552015-10-12 15:35:38 +0800710 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400711
Chris Masond1310b22008-01-24 16:13:08 -0500712 prealloc = NULL;
713 goto out;
714 }
Chris Mason42daec22009-09-23 19:51:09 -0400715
Qu Wenruofefdc552015-10-12 15:35:38 +0800716 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800717next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400718 if (last_end == (u64)-1)
719 goto out;
720 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800721 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800722 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500723
724search_again:
725 if (start > end)
726 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500727 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800728 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500729 cond_resched();
730 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200731
732out:
733 spin_unlock(&tree->lock);
734 if (prealloc)
735 free_extent_state(prealloc);
736
737 return 0;
738
Chris Masond1310b22008-01-24 16:13:08 -0500739}
Chris Masond1310b22008-01-24 16:13:08 -0500740
Jeff Mahoney143bede2012-03-01 14:56:26 +0100741static void wait_on_state(struct extent_io_tree *tree,
742 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500743 __releases(tree->lock)
744 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500745{
746 DEFINE_WAIT(wait);
747 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500748 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500749 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500750 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500751 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500752}
753
754/*
755 * waits for one or more bits to clear on a range in the state tree.
756 * The range [start, end] is inclusive.
757 * The tree lock is taken by this function
758 */
David Sterba41074882013-04-29 13:38:46 +0000759static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
760 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500761{
762 struct extent_state *state;
763 struct rb_node *node;
764
Josef Bacika5dee372013-12-13 10:02:44 -0500765 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000766
Chris Masoncad321a2008-12-17 14:51:42 -0500767 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500768again:
769 while (1) {
770 /*
771 * this search will find all the extents that end after
772 * our range starts
773 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500774 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100775process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500776 if (!node)
777 break;
778
779 state = rb_entry(node, struct extent_state, rb_node);
780
781 if (state->start > end)
782 goto out;
783
784 if (state->state & bits) {
785 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200786 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500787 wait_on_state(tree, state);
788 free_extent_state(state);
789 goto again;
790 }
791 start = state->end + 1;
792
793 if (start > end)
794 break;
795
Filipe Mananac50d3e72014-03-31 14:53:25 +0100796 if (!cond_resched_lock(&tree->lock)) {
797 node = rb_next(node);
798 goto process_node;
799 }
Chris Masond1310b22008-01-24 16:13:08 -0500800 }
801out:
Chris Masoncad321a2008-12-17 14:51:42 -0500802 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500803}
Chris Masond1310b22008-01-24 16:13:08 -0500804
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000805static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500806 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800807 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500808{
David Sterba9ee49a042015-01-14 19:52:13 +0100809 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100810 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400811
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000812 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400813 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500814 u64 range = state->end - state->start + 1;
815 tree->dirty_bytes += range;
816 }
David Sterba57599c72018-03-01 17:56:34 +0100817 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
818 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400819 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500820}
821
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100822static void cache_state_if_flags(struct extent_state *state,
823 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100824 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400825{
826 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100827 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400828 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200829 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400830 }
831 }
832}
833
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100834static void cache_state(struct extent_state *state,
835 struct extent_state **cached_ptr)
836{
837 return cache_state_if_flags(state, cached_ptr,
838 EXTENT_IOBITS | EXTENT_BOUNDARY);
839}
840
Chris Masond1310b22008-01-24 16:13:08 -0500841/*
Chris Mason1edbb732009-09-02 13:24:36 -0400842 * set some bits on a range in the tree. This may require allocations or
843 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500844 *
Chris Mason1edbb732009-09-02 13:24:36 -0400845 * If any of the exclusive bits are set, this will fail with -EEXIST if some
846 * part of the range already has the desired bits set. The start of the
847 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500848 *
Chris Mason1edbb732009-09-02 13:24:36 -0400849 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500850 */
Chris Mason1edbb732009-09-02 13:24:36 -0400851
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100852static int __must_check
853__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100854 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000855 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800856 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500857{
858 struct extent_state *state;
859 struct extent_state *prealloc = NULL;
860 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000861 struct rb_node **p;
862 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500863 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500864 u64 last_start;
865 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400866
Josef Bacika5dee372013-12-13 10:02:44 -0500867 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000868
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400869 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500870again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800871 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200872 /*
873 * Don't care for allocation failure here because we might end
874 * up not needing the pre-allocated extent state at all, which
875 * is the case if we only have in the tree extent states that
876 * cover our input range and don't cover too any other range.
877 * If we end up needing a new extent state we allocate it later.
878 */
Chris Masond1310b22008-01-24 16:13:08 -0500879 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500880 }
881
Chris Masoncad321a2008-12-17 14:51:42 -0500882 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400883 if (cached_state && *cached_state) {
884 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400885 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100886 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400887 node = &state->rb_node;
888 goto hit_next;
889 }
890 }
Chris Masond1310b22008-01-24 16:13:08 -0500891 /*
892 * this search will find all the extents that end after
893 * our range starts.
894 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000895 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500896 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000897 prealloc = alloc_extent_state_atomic(prealloc);
898 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000899 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800900 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400901 if (err)
902 extent_io_tree_panic(tree, err);
903
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000904 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500905 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500906 goto out;
907 }
Chris Masond1310b22008-01-24 16:13:08 -0500908 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400909hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500910 last_start = state->start;
911 last_end = state->end;
912
913 /*
914 * | ---- desired range ---- |
915 * | state |
916 *
917 * Just lock what we found and keep going
918 */
919 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400920 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500921 *failed_start = state->start;
922 err = -EEXIST;
923 goto out;
924 }
Chris Mason42daec22009-09-23 19:51:09 -0400925
Qu Wenruod38ed272015-10-12 14:53:37 +0800926 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400927 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500928 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400929 if (last_end == (u64)-1)
930 goto out;
931 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800932 state = next_state(state);
933 if (start < end && state && state->start == start &&
934 !need_resched())
935 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500936 goto search_again;
937 }
938
939 /*
940 * | ---- desired range ---- |
941 * | state |
942 * or
943 * | ------------- state -------------- |
944 *
945 * We need to split the extent we found, and may flip bits on
946 * second half.
947 *
948 * If the extent we found extends past our
949 * range, we just split and search again. It'll get split
950 * again the next time though.
951 *
952 * If the extent we found is inside our range, we set the
953 * desired bit on it.
954 */
955 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400956 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500957 *failed_start = start;
958 err = -EEXIST;
959 goto out;
960 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000961
962 prealloc = alloc_extent_state_atomic(prealloc);
963 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500964 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400965 if (err)
966 extent_io_tree_panic(tree, err);
967
Chris Masond1310b22008-01-24 16:13:08 -0500968 prealloc = NULL;
969 if (err)
970 goto out;
971 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800972 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400973 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500974 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400975 if (last_end == (u64)-1)
976 goto out;
977 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800978 state = next_state(state);
979 if (start < end && state && state->start == start &&
980 !need_resched())
981 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500982 }
983 goto search_again;
984 }
985 /*
986 * | ---- desired range ---- |
987 * | state | or | state |
988 *
989 * There's a hole, we need to insert something in it and
990 * ignore the extent we found.
991 */
992 if (state->start > start) {
993 u64 this_end;
994 if (end < last_start)
995 this_end = end;
996 else
Chris Masond3977122009-01-05 21:25:51 -0500997 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000998
999 prealloc = alloc_extent_state_atomic(prealloc);
1000 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001001
1002 /*
1003 * Avoid to free 'prealloc' if it can be merged with
1004 * the later extent.
1005 */
Chris Masond1310b22008-01-24 16:13:08 -05001006 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001007 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001008 if (err)
1009 extent_io_tree_panic(tree, err);
1010
Chris Mason2c64c532009-09-02 15:04:12 -04001011 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001012 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001013 start = this_end + 1;
1014 goto search_again;
1015 }
1016 /*
1017 * | ---- desired range ---- |
1018 * | state |
1019 * We need to split the extent, and set the bit
1020 * on the first half
1021 */
1022 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001023 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001024 *failed_start = start;
1025 err = -EEXIST;
1026 goto out;
1027 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001028
1029 prealloc = alloc_extent_state_atomic(prealloc);
1030 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001031 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001032 if (err)
1033 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001034
Qu Wenruod38ed272015-10-12 14:53:37 +08001035 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001036 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001037 merge_state(tree, prealloc);
1038 prealloc = NULL;
1039 goto out;
1040 }
1041
David Sterbab5a4ba12016-04-27 01:02:15 +02001042search_again:
1043 if (start > end)
1044 goto out;
1045 spin_unlock(&tree->lock);
1046 if (gfpflags_allow_blocking(mask))
1047 cond_resched();
1048 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001049
1050out:
Chris Masoncad321a2008-12-17 14:51:42 -05001051 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001052 if (prealloc)
1053 free_extent_state(prealloc);
1054
1055 return err;
1056
Chris Masond1310b22008-01-24 16:13:08 -05001057}
Chris Masond1310b22008-01-24 16:13:08 -05001058
David Sterba41074882013-04-29 13:38:46 +00001059int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001060 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001061 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001062{
1063 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001064 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001065}
1066
1067
Josef Bacik462d6fa2011-09-26 13:56:12 -04001068/**
Liu Bo10983f22012-07-11 15:26:19 +08001069 * convert_extent_bit - convert all bits in a given range from one bit to
1070 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001071 * @tree: the io tree to search
1072 * @start: the start offset in bytes
1073 * @end: the end offset in bytes (inclusive)
1074 * @bits: the bits to set in this range
1075 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001076 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001077 *
1078 * This will go through and set bits for the given range. If any states exist
1079 * already in this range they are set with the given bit and cleared of the
1080 * clear_bits. This is only meant to be used by things that are mergeable, ie
1081 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1082 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001083 *
1084 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001085 */
1086int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001087 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001088 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001089{
1090 struct extent_state *state;
1091 struct extent_state *prealloc = NULL;
1092 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001093 struct rb_node **p;
1094 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001095 int err = 0;
1096 u64 last_start;
1097 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001098 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001099
Josef Bacika5dee372013-12-13 10:02:44 -05001100 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001101
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102again:
David Sterba210aa272016-04-26 23:54:39 +02001103 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001104 /*
1105 * Best effort, don't worry if extent state allocation fails
1106 * here for the first iteration. We might have a cached state
1107 * that matches exactly the target range, in which case no
1108 * extent state allocations are needed. We'll only know this
1109 * after locking the tree.
1110 */
David Sterba210aa272016-04-26 23:54:39 +02001111 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001112 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001113 return -ENOMEM;
1114 }
1115
1116 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001117 if (cached_state && *cached_state) {
1118 state = *cached_state;
1119 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001120 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001121 node = &state->rb_node;
1122 goto hit_next;
1123 }
1124 }
1125
Josef Bacik462d6fa2011-09-26 13:56:12 -04001126 /*
1127 * this search will find all the extents that end after
1128 * our range starts.
1129 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001130 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001131 if (!node) {
1132 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001133 if (!prealloc) {
1134 err = -ENOMEM;
1135 goto out;
1136 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001137 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001138 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001139 if (err)
1140 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001141 cache_state(prealloc, cached_state);
1142 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001143 goto out;
1144 }
1145 state = rb_entry(node, struct extent_state, rb_node);
1146hit_next:
1147 last_start = state->start;
1148 last_end = state->end;
1149
1150 /*
1151 * | ---- desired range ---- |
1152 * | state |
1153 *
1154 * Just lock what we found and keep going
1155 */
1156 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001157 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001158 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001159 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001160 if (last_end == (u64)-1)
1161 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001163 if (start < end && state && state->start == start &&
1164 !need_resched())
1165 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001166 goto search_again;
1167 }
1168
1169 /*
1170 * | ---- desired range ---- |
1171 * | state |
1172 * or
1173 * | ------------- state -------------- |
1174 *
1175 * We need to split the extent we found, and may flip bits on
1176 * second half.
1177 *
1178 * If the extent we found extends past our
1179 * range, we just split and search again. It'll get split
1180 * again the next time though.
1181 *
1182 * If the extent we found is inside our range, we set the
1183 * desired bit on it.
1184 */
1185 if (state->start < start) {
1186 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001187 if (!prealloc) {
1188 err = -ENOMEM;
1189 goto out;
1190 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001191 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001192 if (err)
1193 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001194 prealloc = NULL;
1195 if (err)
1196 goto out;
1197 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001198 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001199 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001200 state = clear_state_bit(tree, state, &clear_bits, 0,
1201 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001202 if (last_end == (u64)-1)
1203 goto out;
1204 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001205 if (start < end && state && state->start == start &&
1206 !need_resched())
1207 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001208 }
1209 goto search_again;
1210 }
1211 /*
1212 * | ---- desired range ---- |
1213 * | state | or | state |
1214 *
1215 * There's a hole, we need to insert something in it and
1216 * ignore the extent we found.
1217 */
1218 if (state->start > start) {
1219 u64 this_end;
1220 if (end < last_start)
1221 this_end = end;
1222 else
1223 this_end = last_start - 1;
1224
1225 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001226 if (!prealloc) {
1227 err = -ENOMEM;
1228 goto out;
1229 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001230
1231 /*
1232 * Avoid to free 'prealloc' if it can be merged with
1233 * the later extent.
1234 */
1235 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001236 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001237 if (err)
1238 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001239 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001240 prealloc = NULL;
1241 start = this_end + 1;
1242 goto search_again;
1243 }
1244 /*
1245 * | ---- desired range ---- |
1246 * | state |
1247 * We need to split the extent, and set the bit
1248 * on the first half
1249 */
1250 if (state->start <= end && state->end > end) {
1251 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001252 if (!prealloc) {
1253 err = -ENOMEM;
1254 goto out;
1255 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001256
1257 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001258 if (err)
1259 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001260
Qu Wenruod38ed272015-10-12 14:53:37 +08001261 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001262 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001263 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001264 prealloc = NULL;
1265 goto out;
1266 }
1267
Josef Bacik462d6fa2011-09-26 13:56:12 -04001268search_again:
1269 if (start > end)
1270 goto out;
1271 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001272 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001273 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001274 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001275
1276out:
1277 spin_unlock(&tree->lock);
1278 if (prealloc)
1279 free_extent_state(prealloc);
1280
1281 return err;
1282}
1283
Chris Masond1310b22008-01-24 16:13:08 -05001284/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001285int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001286 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001287{
1288 /*
1289 * We don't support EXTENT_LOCKED yet, as current changeset will
1290 * record any bits changed, so for EXTENT_LOCKED case, it will
1291 * either fail with -EEXIST or changeset will record the whole
1292 * range.
1293 */
1294 BUG_ON(bits & EXTENT_LOCKED);
1295
David Sterba2c53b912016-04-26 23:54:39 +02001296 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001297 changeset);
1298}
1299
Qu Wenruofefdc552015-10-12 15:35:38 +08001300int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1301 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001302 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001303{
1304 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001305 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001306}
1307
Qu Wenruofefdc552015-10-12 15:35:38 +08001308int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001309 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001310{
1311 /*
1312 * Don't support EXTENT_LOCKED case, same reason as
1313 * set_record_extent_bits().
1314 */
1315 BUG_ON(bits & EXTENT_LOCKED);
1316
David Sterbaf734c442016-04-26 23:54:39 +02001317 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001318 changeset);
1319}
1320
Chris Masond352ac62008-09-29 15:18:18 -04001321/*
1322 * either insert or lock state struct between start and end use mask to tell
1323 * us if waiting is desired.
1324 */
Chris Mason1edbb732009-09-02 13:24:36 -04001325int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001326 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001327{
1328 int err;
1329 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001330
Chris Masond1310b22008-01-24 16:13:08 -05001331 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001332 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001333 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001334 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001335 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001336 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1337 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001338 } else
Chris Masond1310b22008-01-24 16:13:08 -05001339 break;
Chris Masond1310b22008-01-24 16:13:08 -05001340 WARN_ON(start > end);
1341 }
1342 return err;
1343}
Chris Masond1310b22008-01-24 16:13:08 -05001344
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001345int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001346{
1347 int err;
1348 u64 failed_start;
1349
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001350 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001351 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001352 if (err == -EEXIST) {
1353 if (failed_start > start)
1354 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001355 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001356 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001357 }
Josef Bacik25179202008-10-29 14:49:05 -04001358 return 1;
1359}
Josef Bacik25179202008-10-29 14:49:05 -04001360
David Sterbabd1fa4f2015-12-03 13:08:59 +01001361void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001362{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001363 unsigned long index = start >> PAGE_SHIFT;
1364 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001365 struct page *page;
1366
1367 while (index <= end_index) {
1368 page = find_get_page(inode->i_mapping, index);
1369 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1370 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001371 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001372 index++;
1373 }
Chris Mason4adaa612013-03-26 13:07:00 -04001374}
1375
David Sterbaf6311572015-12-03 13:08:59 +01001376void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001377{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001378 unsigned long index = start >> PAGE_SHIFT;
1379 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001380 struct page *page;
1381
1382 while (index <= end_index) {
1383 page = find_get_page(inode->i_mapping, index);
1384 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001385 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001386 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001387 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001388 index++;
1389 }
Chris Mason4adaa612013-03-26 13:07:00 -04001390}
1391
Chris Masond352ac62008-09-29 15:18:18 -04001392/* find the first state struct with 'bits' set after 'start', and
1393 * return it. tree->lock must be held. NULL will returned if
1394 * nothing was found after 'start'
1395 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001396static struct extent_state *
1397find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001398 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001399{
1400 struct rb_node *node;
1401 struct extent_state *state;
1402
1403 /*
1404 * this search will find all the extents that end after
1405 * our range starts.
1406 */
1407 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001408 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001409 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001410
Chris Masond3977122009-01-05 21:25:51 -05001411 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001412 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001413 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001414 return state;
Chris Masond3977122009-01-05 21:25:51 -05001415
Chris Masond7fc6402008-02-18 12:12:38 -05001416 node = rb_next(node);
1417 if (!node)
1418 break;
1419 }
1420out:
1421 return NULL;
1422}
Chris Masond7fc6402008-02-18 12:12:38 -05001423
Chris Masond352ac62008-09-29 15:18:18 -04001424/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001425 * find the first offset in the io tree with 'bits' set. zero is
1426 * returned if we find something, and *start_ret and *end_ret are
1427 * set to reflect the state struct that was found.
1428 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001429 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001430 */
1431int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001432 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001433 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001434{
1435 struct extent_state *state;
1436 int ret = 1;
1437
1438 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001439 if (cached_state && *cached_state) {
1440 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001441 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001442 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001443 if (state->state & bits)
1444 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001445 }
1446 free_extent_state(*cached_state);
1447 *cached_state = NULL;
1448 goto out;
1449 }
1450 free_extent_state(*cached_state);
1451 *cached_state = NULL;
1452 }
1453
Xiao Guangrong69261c42011-07-14 03:19:45 +00001454 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001455got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001456 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001457 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001458 *start_ret = state->start;
1459 *end_ret = state->end;
1460 ret = 0;
1461 }
Josef Bacike6138872012-09-27 17:07:30 -04001462out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001463 spin_unlock(&tree->lock);
1464 return ret;
1465}
1466
1467/*
Chris Masond352ac62008-09-29 15:18:18 -04001468 * find a contiguous range of bytes in the file marked as delalloc, not
1469 * more than 'max_bytes'. start and end are used to return the range,
1470 *
1471 * 1 is returned if we find something, 0 if nothing was in the tree
1472 */
Chris Masonc8b97812008-10-29 14:49:59 -04001473static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001474 u64 *start, u64 *end, u64 max_bytes,
1475 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001476{
1477 struct rb_node *node;
1478 struct extent_state *state;
1479 u64 cur_start = *start;
1480 u64 found = 0;
1481 u64 total_bytes = 0;
1482
Chris Masoncad321a2008-12-17 14:51:42 -05001483 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001484
Chris Masond1310b22008-01-24 16:13:08 -05001485 /*
1486 * this search will find all the extents that end after
1487 * our range starts.
1488 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001489 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001490 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001491 if (!found)
1492 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001493 goto out;
1494 }
1495
Chris Masond3977122009-01-05 21:25:51 -05001496 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001497 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001498 if (found && (state->start != cur_start ||
1499 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001500 goto out;
1501 }
1502 if (!(state->state & EXTENT_DELALLOC)) {
1503 if (!found)
1504 *end = state->end;
1505 goto out;
1506 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001507 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001508 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001509 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001510 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001511 }
Chris Masond1310b22008-01-24 16:13:08 -05001512 found++;
1513 *end = state->end;
1514 cur_start = state->end + 1;
1515 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001516 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001517 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001518 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001519 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001520 break;
1521 }
1522out:
Chris Masoncad321a2008-12-17 14:51:42 -05001523 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001524 return found;
1525}
1526
Liu Boda2c7002017-02-10 16:41:05 +01001527static int __process_pages_contig(struct address_space *mapping,
1528 struct page *locked_page,
1529 pgoff_t start_index, pgoff_t end_index,
1530 unsigned long page_ops, pgoff_t *index_ret);
1531
Jeff Mahoney143bede2012-03-01 14:56:26 +01001532static noinline void __unlock_for_delalloc(struct inode *inode,
1533 struct page *locked_page,
1534 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001535{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001536 unsigned long index = start >> PAGE_SHIFT;
1537 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001538
Liu Bo76c00212017-02-10 16:42:14 +01001539 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001540 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001541 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001542
Liu Bo76c00212017-02-10 16:42:14 +01001543 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1544 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001545}
1546
1547static noinline int lock_delalloc_pages(struct inode *inode,
1548 struct page *locked_page,
1549 u64 delalloc_start,
1550 u64 delalloc_end)
1551{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001552 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001553 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001554 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001555 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001556
Liu Bo76c00212017-02-10 16:42:14 +01001557 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001558 if (index == locked_page->index && index == end_index)
1559 return 0;
1560
Liu Bo76c00212017-02-10 16:42:14 +01001561 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1562 end_index, PAGE_LOCK, &index_ret);
1563 if (ret == -EAGAIN)
1564 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1565 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001566 return ret;
1567}
1568
1569/*
1570 * find a contiguous range of bytes in the file marked as delalloc, not
1571 * more than 'max_bytes'. start and end are used to return the range,
1572 *
1573 * 1 is returned if we find something, 0 if nothing was in the tree
1574 */
David Sterba9c363962018-08-17 17:28:06 +02001575static noinline_for_stack u64 find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001576 struct extent_io_tree *tree,
1577 struct page *locked_page, u64 *start,
1578 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001579{
1580 u64 delalloc_start;
1581 u64 delalloc_end;
1582 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001583 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001584 int ret;
1585 int loops = 0;
1586
1587again:
1588 /* step one, find a bunch of delalloc bytes starting at start */
1589 delalloc_start = *start;
1590 delalloc_end = 0;
1591 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001592 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001593 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001594 *start = delalloc_start;
1595 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001596 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001597 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001598 }
1599
1600 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001601 * start comes from the offset of locked_page. We have to lock
1602 * pages in order, so we can't process delalloc bytes before
1603 * locked_page
1604 */
Chris Masond3977122009-01-05 21:25:51 -05001605 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001606 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001607
1608 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001609 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001610 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001611 if (delalloc_end + 1 - delalloc_start > max_bytes)
1612 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001613
Chris Masonc8b97812008-10-29 14:49:59 -04001614 /* step two, lock all the pages after the page that has start */
1615 ret = lock_delalloc_pages(inode, locked_page,
1616 delalloc_start, delalloc_end);
1617 if (ret == -EAGAIN) {
1618 /* some of the pages are gone, lets avoid looping by
1619 * shortening the size of the delalloc range we're searching
1620 */
Chris Mason9655d292009-09-02 15:22:30 -04001621 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001622 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001623 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001624 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001625 loops = 1;
1626 goto again;
1627 } else {
1628 found = 0;
1629 goto out_failed;
1630 }
1631 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001632 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001633
1634 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001635 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001636
1637 /* then test to make sure it is all still delalloc */
1638 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001639 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001640 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001641 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001642 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001643 __unlock_for_delalloc(inode, locked_page,
1644 delalloc_start, delalloc_end);
1645 cond_resched();
1646 goto again;
1647 }
Chris Mason9655d292009-09-02 15:22:30 -04001648 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001649 *start = delalloc_start;
1650 *end = delalloc_end;
1651out_failed:
1652 return found;
1653}
1654
David Sterba9c363962018-08-17 17:28:06 +02001655#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
1656u64 btrfs_find_lock_delalloc_range(struct inode *inode,
1657 struct extent_io_tree *tree,
1658 struct page *locked_page, u64 *start,
1659 u64 *end, u64 max_bytes)
1660{
1661 return find_lock_delalloc_range(inode, tree, locked_page, start, end,
1662 max_bytes);
1663}
1664#endif
1665
Liu Boda2c7002017-02-10 16:41:05 +01001666static int __process_pages_contig(struct address_space *mapping,
1667 struct page *locked_page,
1668 pgoff_t start_index, pgoff_t end_index,
1669 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001670{
Liu Bo873695b2017-02-02 17:49:22 -08001671 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001672 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001673 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001674 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001675 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001676 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001677 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001678
Liu Boda2c7002017-02-10 16:41:05 +01001679 if (page_ops & PAGE_LOCK) {
1680 ASSERT(page_ops == PAGE_LOCK);
1681 ASSERT(index_ret && *index_ret == start_index);
1682 }
1683
Filipe Manana704de492014-10-06 22:14:22 +01001684 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001685 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001686
Chris Masond3977122009-01-05 21:25:51 -05001687 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001688 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001689 min_t(unsigned long,
1690 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001691 if (ret == 0) {
1692 /*
1693 * Only if we're going to lock these pages,
1694 * can we find nothing at @index.
1695 */
1696 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001697 err = -EAGAIN;
1698 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001699 }
Chris Mason8b62b722009-09-02 16:53:46 -04001700
Liu Boda2c7002017-02-10 16:41:05 +01001701 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001702 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001703 SetPagePrivate2(pages[i]);
1704
Chris Masonc8b97812008-10-29 14:49:59 -04001705 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001706 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001707 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001708 continue;
1709 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001710 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001711 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001712 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001713 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001714 if (page_ops & PAGE_SET_ERROR)
1715 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001716 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001717 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001718 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001719 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001720 if (page_ops & PAGE_LOCK) {
1721 lock_page(pages[i]);
1722 if (!PageDirty(pages[i]) ||
1723 pages[i]->mapping != mapping) {
1724 unlock_page(pages[i]);
1725 put_page(pages[i]);
1726 err = -EAGAIN;
1727 goto out;
1728 }
1729 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001730 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001731 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001732 }
1733 nr_pages -= ret;
1734 index += ret;
1735 cond_resched();
1736 }
Liu Boda2c7002017-02-10 16:41:05 +01001737out:
1738 if (err && index_ret)
1739 *index_ret = start_index + pages_locked - 1;
1740 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001741}
Chris Masonc8b97812008-10-29 14:49:59 -04001742
Liu Bo873695b2017-02-02 17:49:22 -08001743void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1744 u64 delalloc_end, struct page *locked_page,
1745 unsigned clear_bits,
1746 unsigned long page_ops)
1747{
1748 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001749 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001750
1751 __process_pages_contig(inode->i_mapping, locked_page,
1752 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001753 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001754}
1755
Chris Masond352ac62008-09-29 15:18:18 -04001756/*
1757 * count the number of bytes in the tree that have a given bit(s)
1758 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1759 * cached. The total number found is returned.
1760 */
Chris Masond1310b22008-01-24 16:13:08 -05001761u64 count_range_bits(struct extent_io_tree *tree,
1762 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001763 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001764{
1765 struct rb_node *node;
1766 struct extent_state *state;
1767 u64 cur_start = *start;
1768 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001769 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001770 int found = 0;
1771
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301772 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001773 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001774
Chris Masoncad321a2008-12-17 14:51:42 -05001775 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001776 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1777 total_bytes = tree->dirty_bytes;
1778 goto out;
1779 }
1780 /*
1781 * this search will find all the extents that end after
1782 * our range starts.
1783 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001784 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001785 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001786 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001787
Chris Masond3977122009-01-05 21:25:51 -05001788 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001789 state = rb_entry(node, struct extent_state, rb_node);
1790 if (state->start > search_end)
1791 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001792 if (contig && found && state->start > last + 1)
1793 break;
1794 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001795 total_bytes += min(search_end, state->end) + 1 -
1796 max(cur_start, state->start);
1797 if (total_bytes >= max_bytes)
1798 break;
1799 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001800 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001801 found = 1;
1802 }
Chris Masonec29ed52011-02-23 16:23:20 -05001803 last = state->end;
1804 } else if (contig && found) {
1805 break;
Chris Masond1310b22008-01-24 16:13:08 -05001806 }
1807 node = rb_next(node);
1808 if (!node)
1809 break;
1810 }
1811out:
Chris Masoncad321a2008-12-17 14:51:42 -05001812 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001813 return total_bytes;
1814}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001815
Chris Masond352ac62008-09-29 15:18:18 -04001816/*
1817 * set the private field for a given byte offset in the tree. If there isn't
1818 * an extent_state there already, this does nothing.
1819 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001820static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001821 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001822{
1823 struct rb_node *node;
1824 struct extent_state *state;
1825 int ret = 0;
1826
Chris Masoncad321a2008-12-17 14:51:42 -05001827 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001828 /*
1829 * this search will find all the extents that end after
1830 * our range starts.
1831 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001832 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001833 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001834 ret = -ENOENT;
1835 goto out;
1836 }
1837 state = rb_entry(node, struct extent_state, rb_node);
1838 if (state->start != start) {
1839 ret = -ENOENT;
1840 goto out;
1841 }
David Sterba47dc1962016-02-11 13:24:13 +01001842 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001843out:
Chris Masoncad321a2008-12-17 14:51:42 -05001844 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001845 return ret;
1846}
1847
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001848static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001849 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001850{
1851 struct rb_node *node;
1852 struct extent_state *state;
1853 int ret = 0;
1854
Chris Masoncad321a2008-12-17 14:51:42 -05001855 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001856 /*
1857 * this search will find all the extents that end after
1858 * our range starts.
1859 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001860 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001861 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001862 ret = -ENOENT;
1863 goto out;
1864 }
1865 state = rb_entry(node, struct extent_state, rb_node);
1866 if (state->start != start) {
1867 ret = -ENOENT;
1868 goto out;
1869 }
David Sterba47dc1962016-02-11 13:24:13 +01001870 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001871out:
Chris Masoncad321a2008-12-17 14:51:42 -05001872 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001873 return ret;
1874}
1875
1876/*
1877 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001878 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001879 * has the bits set. Otherwise, 1 is returned if any bit in the
1880 * range is found set.
1881 */
1882int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001883 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001884{
1885 struct extent_state *state = NULL;
1886 struct rb_node *node;
1887 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001888
Chris Masoncad321a2008-12-17 14:51:42 -05001889 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001890 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001891 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001892 node = &cached->rb_node;
1893 else
1894 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001895 while (node && start <= end) {
1896 state = rb_entry(node, struct extent_state, rb_node);
1897
1898 if (filled && state->start > start) {
1899 bitset = 0;
1900 break;
1901 }
1902
1903 if (state->start > end)
1904 break;
1905
1906 if (state->state & bits) {
1907 bitset = 1;
1908 if (!filled)
1909 break;
1910 } else if (filled) {
1911 bitset = 0;
1912 break;
1913 }
Chris Mason46562ce2009-09-23 20:23:16 -04001914
1915 if (state->end == (u64)-1)
1916 break;
1917
Chris Masond1310b22008-01-24 16:13:08 -05001918 start = state->end + 1;
1919 if (start > end)
1920 break;
1921 node = rb_next(node);
1922 if (!node) {
1923 if (filled)
1924 bitset = 0;
1925 break;
1926 }
1927 }
Chris Masoncad321a2008-12-17 14:51:42 -05001928 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001929 return bitset;
1930}
Chris Masond1310b22008-01-24 16:13:08 -05001931
1932/*
1933 * helper function to set a given page up to date if all the
1934 * extents in the tree for that page are up to date
1935 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001936static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001937{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001938 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001939 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001940 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001941 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001942}
1943
Josef Bacik7870d082017-05-05 11:57:15 -04001944int free_io_failure(struct extent_io_tree *failure_tree,
1945 struct extent_io_tree *io_tree,
1946 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001947{
1948 int ret;
1949 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001950
David Sterba47dc1962016-02-11 13:24:13 +01001951 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001952 ret = clear_extent_bits(failure_tree, rec->start,
1953 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001954 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001955 if (ret)
1956 err = ret;
1957
Josef Bacik7870d082017-05-05 11:57:15 -04001958 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001959 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001960 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001961 if (ret && !err)
1962 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001963
1964 kfree(rec);
1965 return err;
1966}
1967
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001968/*
1969 * this bypasses the standard btrfs submit functions deliberately, as
1970 * the standard behavior is to write all copies in a raid setup. here we only
1971 * want to write the one bad copy. so we do the mapping for ourselves and issue
1972 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001973 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001974 * actually prevents the read that triggered the error from finishing.
1975 * currently, there can be no more than two copies of every data bit. thus,
1976 * exactly one rewrite is required.
1977 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04001978int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1979 u64 length, u64 logical, struct page *page,
1980 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001981{
1982 struct bio *bio;
1983 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001984 u64 map_length = 0;
1985 u64 sector;
1986 struct btrfs_bio *bbio = NULL;
1987 int ret;
1988
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001989 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001990 BUG_ON(!mirror_num);
1991
David Sterbac5e4c3d2017-06-12 17:29:41 +02001992 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001993 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001994 map_length = length;
1995
Filipe Mananab5de8d02016-05-27 22:21:27 +01001996 /*
1997 * Avoid races with device replace and make sure our bbio has devices
1998 * associated to its stripes that don't go away while we are doing the
1999 * read repair operation.
2000 */
2001 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002002 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002003 /*
2004 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2005 * to update all raid stripes, but here we just want to correct
2006 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2007 * stripe's dev and sector.
2008 */
2009 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2010 &map_length, &bbio, 0);
2011 if (ret) {
2012 btrfs_bio_counter_dec(fs_info);
2013 bio_put(bio);
2014 return -EIO;
2015 }
2016 ASSERT(bbio->mirror_num == 1);
2017 } else {
2018 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2019 &map_length, &bbio, mirror_num);
2020 if (ret) {
2021 btrfs_bio_counter_dec(fs_info);
2022 bio_put(bio);
2023 return -EIO;
2024 }
2025 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002026 }
Liu Boc7253282017-03-29 10:53:58 -07002027
2028 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002029 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002030 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002031 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002032 if (!dev || !dev->bdev ||
2033 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002034 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002035 bio_put(bio);
2036 return -EIO;
2037 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002038 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002039 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002040 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002041
Mike Christie4e49ea42016-06-05 14:31:41 -05002042 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002043 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002044 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002045 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002046 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002047 return -EIO;
2048 }
2049
David Sterbab14af3b2015-10-08 10:43:10 +02002050 btrfs_info_rl_in_rcu(fs_info,
2051 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002052 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002053 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002054 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002055 bio_put(bio);
2056 return 0;
2057}
2058
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002059int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2060 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002061{
Josef Bacikea466792012-03-26 21:57:36 -04002062 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002063 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002064 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002065
David Howellsbc98a422017-07-17 08:45:34 +01002066 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002067 return -EROFS;
2068
Josef Bacikea466792012-03-26 21:57:36 -04002069 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002070 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002071
Josef Bacik6ec656b2017-05-05 11:57:14 -04002072 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002073 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002074 if (ret)
2075 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002076 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002077 }
2078
2079 return ret;
2080}
2081
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002082/*
2083 * each time an IO finishes, we do a fast check in the IO failure tree
2084 * to see if we need to process or clean up an io_failure_record
2085 */
Josef Bacik7870d082017-05-05 11:57:15 -04002086int clean_io_failure(struct btrfs_fs_info *fs_info,
2087 struct extent_io_tree *failure_tree,
2088 struct extent_io_tree *io_tree, u64 start,
2089 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002090{
2091 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002092 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002093 struct extent_state *state;
2094 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002095 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002096
2097 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002098 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2099 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002100 if (!ret)
2101 return 0;
2102
Josef Bacik7870d082017-05-05 11:57:15 -04002103 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 if (ret)
2105 return 0;
2106
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002107 BUG_ON(!failrec->this_mirror);
2108
2109 if (failrec->in_validation) {
2110 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002111 btrfs_debug(fs_info,
2112 "clean_io_failure: freeing dummy error at %llu",
2113 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002114 goto out;
2115 }
David Howellsbc98a422017-07-17 08:45:34 +01002116 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002117 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002118
Josef Bacik7870d082017-05-05 11:57:15 -04002119 spin_lock(&io_tree->lock);
2120 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002121 failrec->start,
2122 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002123 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002124
Miao Xie883d0de2013-07-25 19:22:35 +08002125 if (state && state->start <= failrec->start &&
2126 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002127 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2128 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002129 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002130 repair_io_failure(fs_info, ino, start, failrec->len,
2131 failrec->logical, page, pg_offset,
2132 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002133 }
2134 }
2135
2136out:
Josef Bacik7870d082017-05-05 11:57:15 -04002137 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002138
Miao Xie454ff3d2014-09-12 18:43:58 +08002139 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002140}
2141
Miao Xief6124962014-09-12 18:44:04 +08002142/*
2143 * Can be called when
2144 * - hold extent lock
2145 * - under ordered extent
2146 * - the inode is freeing
2147 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002148void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002149{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002150 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002151 struct io_failure_record *failrec;
2152 struct extent_state *state, *next;
2153
2154 if (RB_EMPTY_ROOT(&failure_tree->state))
2155 return;
2156
2157 spin_lock(&failure_tree->lock);
2158 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2159 while (state) {
2160 if (state->start > end)
2161 break;
2162
2163 ASSERT(state->end <= end);
2164
2165 next = next_state(state);
2166
David Sterba47dc1962016-02-11 13:24:13 +01002167 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002168 free_extent_state(state);
2169 kfree(failrec);
2170
2171 state = next;
2172 }
2173 spin_unlock(&failure_tree->lock);
2174}
2175
Miao Xie2fe63032014-09-12 18:43:59 +08002176int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002177 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002178{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002179 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002180 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002181 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002182 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2183 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2184 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002185 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002186 u64 logical;
2187
David Sterba47dc1962016-02-11 13:24:13 +01002188 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002189 if (ret) {
2190 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2191 if (!failrec)
2192 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002193
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002194 failrec->start = start;
2195 failrec->len = end - start + 1;
2196 failrec->this_mirror = 0;
2197 failrec->bio_flags = 0;
2198 failrec->in_validation = 0;
2199
2200 read_lock(&em_tree->lock);
2201 em = lookup_extent_mapping(em_tree, start, failrec->len);
2202 if (!em) {
2203 read_unlock(&em_tree->lock);
2204 kfree(failrec);
2205 return -EIO;
2206 }
2207
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002208 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002209 free_extent_map(em);
2210 em = NULL;
2211 }
2212 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002213 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002214 kfree(failrec);
2215 return -EIO;
2216 }
Miao Xie2fe63032014-09-12 18:43:59 +08002217
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002218 logical = start - em->start;
2219 logical = em->block_start + logical;
2220 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2221 logical = em->block_start;
2222 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2223 extent_set_compress_type(&failrec->bio_flags,
2224 em->compress_type);
2225 }
Miao Xie2fe63032014-09-12 18:43:59 +08002226
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002227 btrfs_debug(fs_info,
2228 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2229 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002230
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002231 failrec->logical = logical;
2232 free_extent_map(em);
2233
2234 /* set the bits in the private failure tree */
2235 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002236 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002237 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002238 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002239 /* set the bits in the inode's tree */
2240 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002241 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002242 if (ret < 0) {
2243 kfree(failrec);
2244 return ret;
2245 }
2246 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002247 btrfs_debug(fs_info,
2248 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2249 failrec->logical, failrec->start, failrec->len,
2250 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002251 /*
2252 * when data can be on disk more than twice, add to failrec here
2253 * (e.g. with a list for failed_mirror) to make
2254 * clean_io_failure() clean all those errors at once.
2255 */
2256 }
Miao Xie2fe63032014-09-12 18:43:59 +08002257
2258 *failrec_ret = failrec;
2259
2260 return 0;
2261}
2262
Ming Leia0b60d72017-12-18 20:22:11 +08002263bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002264 struct io_failure_record *failrec, int failed_mirror)
2265{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002266 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002267 int num_copies;
2268
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002269 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002270 if (num_copies == 1) {
2271 /*
2272 * we only have a single copy of the data, so don't bother with
2273 * all the retry and error correction code that follows. no
2274 * matter what the error is, it is very likely to persist.
2275 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002276 btrfs_debug(fs_info,
2277 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2278 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002279 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002280 }
2281
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002282 /*
2283 * there are two premises:
2284 * a) deliver good data to the caller
2285 * b) correct the bad sectors on disk
2286 */
Ming Leia0b60d72017-12-18 20:22:11 +08002287 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002288 /*
2289 * to fulfill b), we need to know the exact failing sectors, as
2290 * we don't want to rewrite any more than the failed ones. thus,
2291 * we need separate read requests for the failed bio
2292 *
2293 * if the following BUG_ON triggers, our validation request got
2294 * merged. we need separate requests for our algorithm to work.
2295 */
2296 BUG_ON(failrec->in_validation);
2297 failrec->in_validation = 1;
2298 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002299 } else {
2300 /*
2301 * we're ready to fulfill a) and b) alongside. get a good copy
2302 * of the failed sector and if we succeed, we have setup
2303 * everything for repair_io_failure to do the rest for us.
2304 */
2305 if (failrec->in_validation) {
2306 BUG_ON(failrec->this_mirror != failed_mirror);
2307 failrec->in_validation = 0;
2308 failrec->this_mirror = 0;
2309 }
2310 failrec->failed_mirror = failed_mirror;
2311 failrec->this_mirror++;
2312 if (failrec->this_mirror == failed_mirror)
2313 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002314 }
2315
Miao Xiefacc8a222013-07-25 19:22:34 +08002316 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002317 btrfs_debug(fs_info,
2318 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2319 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002320 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002321 }
2322
Liu Boc3cfb652017-07-13 15:00:50 -07002323 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002324}
2325
2326
2327struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2328 struct io_failure_record *failrec,
2329 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002330 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002331{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002332 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002333 struct bio *bio;
2334 struct btrfs_io_bio *btrfs_failed_bio;
2335 struct btrfs_io_bio *btrfs_bio;
2336
David Sterbac5e4c3d2017-06-12 17:29:41 +02002337 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002338 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002339 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002340 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002341 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002342 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002343
Miao Xiefacc8a222013-07-25 19:22:34 +08002344 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2345 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002346 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2347
2348 btrfs_bio = btrfs_io_bio(bio);
2349 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002350 icsum *= csum_size;
2351 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002352 csum_size);
2353 }
2354
Miao Xie2fe63032014-09-12 18:43:59 +08002355 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002356
Miao Xie2fe63032014-09-12 18:43:59 +08002357 return bio;
2358}
2359
2360/*
2361 * this is a generic handler for readpage errors (default
2362 * readpage_io_failed_hook). if other copies exist, read those and write back
2363 * good data to the failed position. does not investigate in remapping the
2364 * failed extent elsewhere, hoping the device will be smart enough to do this as
2365 * needed
2366 */
2367
2368static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2369 struct page *page, u64 start, u64 end,
2370 int failed_mirror)
2371{
2372 struct io_failure_record *failrec;
2373 struct inode *inode = page->mapping->host;
2374 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002375 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002376 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002377 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002378 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002379 int ret;
Ming Leia0b60d72017-12-18 20:22:11 +08002380 unsigned failed_bio_pages = bio_pages_all(failed_bio);
Miao Xie2fe63032014-09-12 18:43:59 +08002381
Mike Christie1f7ad752016-06-05 14:31:51 -05002382 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002383
2384 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2385 if (ret)
2386 return ret;
2387
Ming Leia0b60d72017-12-18 20:22:11 +08002388 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002389 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002390 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002391 return -EIO;
2392 }
2393
Ming Leia0b60d72017-12-18 20:22:11 +08002394 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002395 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002396
2397 phy_offset >>= inode->i_sb->s_blocksize_bits;
2398 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2399 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002400 (int)phy_offset, failed_bio->bi_end_io,
2401 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002402 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002403
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002404 btrfs_debug(btrfs_sb(inode->i_sb),
2405 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2406 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002407
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002408 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002409 failrec->bio_flags, 0);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002410 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002411 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002412 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002413 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002414 }
2415
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002416 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002417}
2418
Chris Masond1310b22008-01-24 16:13:08 -05002419/* lots and lots of room for performance fixes in the end_bio funcs */
2420
David Sterbab5227c02015-12-03 13:08:59 +01002421void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002422{
2423 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002424 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002425
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02002426 btrfs_writepage_endio_finish_ordered(page, start, end, NULL, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002427
Jeff Mahoney87826df2012-02-15 16:23:57 +01002428 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002429 ClearPageUptodate(page);
2430 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002431 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002432 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002433 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002434}
2435
Chris Masond1310b22008-01-24 16:13:08 -05002436/*
2437 * after a writepage IO is done, we need to:
2438 * clear the uptodate bits on error
2439 * clear the writeback bits in the extent tree for this IO
2440 * end_page_writeback if the page has no more pending IO
2441 *
2442 * Scheduling is not allowed, so the extent state tree is expected
2443 * to have one and only one object corresponding to this IO.
2444 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002445static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002446{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002447 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002448 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002449 u64 start;
2450 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002451 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002452
David Sterbac09abff2017-07-13 18:10:07 +02002453 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002454 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002455 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002456 struct inode *inode = page->mapping->host;
2457 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002458
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002459 /* We always issue full-page reads, but if some block
2460 * in a page fails to read, blk_update_request() will
2461 * advance bv_offset and adjust bv_len to compensate.
2462 * Print a warning for nonzero offsets, and an error
2463 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002464 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2465 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002466 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002467 "partial page write in btrfs with offset %u and length %u",
2468 bvec->bv_offset, bvec->bv_len);
2469 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002470 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002471 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002472 bvec->bv_offset, bvec->bv_len);
2473 }
Chris Masond1310b22008-01-24 16:13:08 -05002474
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002475 start = page_offset(page);
2476 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002477
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002478 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002479 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002480 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002481
Chris Masond1310b22008-01-24 16:13:08 -05002482 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002483}
2484
Miao Xie883d0de2013-07-25 19:22:35 +08002485static void
2486endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2487 int uptodate)
2488{
2489 struct extent_state *cached = NULL;
2490 u64 end = start + len - 1;
2491
2492 if (uptodate && tree->track_uptodate)
2493 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002494 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002495}
2496
Chris Masond1310b22008-01-24 16:13:08 -05002497/*
2498 * after a readpage IO is done, we need to:
2499 * clear the uptodate bits on error
2500 * set the uptodate bits if things worked
2501 * set the page up to date if all extents in the tree are uptodate
2502 * clear the lock bit in the extent tree
2503 * unlock the page if there are no other extents locked for it
2504 *
2505 * Scheduling is not allowed, so the extent state tree is expected
2506 * to have one and only one object corresponding to this IO.
2507 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002508static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002509{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002510 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002511 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002512 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002513 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002514 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002515 u64 start;
2516 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002517 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002518 u64 extent_start = 0;
2519 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002520 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002521 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002522 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002523
David Sterbac09abff2017-07-13 18:10:07 +02002524 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002525 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002526 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002527 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002528 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen507903b2011-04-06 10:02:20 +00002529
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002530 btrfs_debug(fs_info,
2531 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002532 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002533 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002534 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002535 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002536
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002537 /* We always issue full-page reads, but if some block
2538 * in a page fails to read, blk_update_request() will
2539 * advance bv_offset and adjust bv_len to compensate.
2540 * Print a warning for nonzero offsets, and an error
2541 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002542 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2543 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002544 btrfs_err(fs_info,
2545 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002546 bvec->bv_offset, bvec->bv_len);
2547 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002548 btrfs_info(fs_info,
2549 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002550 bvec->bv_offset, bvec->bv_len);
2551 }
Chris Masond1310b22008-01-24 16:13:08 -05002552
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002553 start = page_offset(page);
2554 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002555 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002556
Chris Mason9be33952013-05-17 18:30:14 -04002557 mirror = io_bio->mirror_num;
David Sterba20c98012017-02-17 15:59:35 +01002558 if (likely(uptodate && tree->ops)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002559 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2560 page, start, end,
2561 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002562 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002563 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002564 else
Josef Bacik7870d082017-05-05 11:57:15 -04002565 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2566 failure_tree, tree, start,
2567 page,
2568 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002569 }
Josef Bacikea466792012-03-26 21:57:36 -04002570
Miao Xief2a09da2013-07-25 19:22:33 +08002571 if (likely(uptodate))
2572 goto readpage_ok;
2573
David Sterba20a7db82017-02-17 16:24:29 +01002574 if (tree->ops) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002575 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Liu Bo9d0d1c82017-03-24 15:04:50 -07002576 if (ret == -EAGAIN) {
2577 /*
2578 * Data inode's readpage_io_failed_hook() always
2579 * returns -EAGAIN.
2580 *
2581 * The generic bio_readpage_error handles errors
2582 * the following way: If possible, new read
2583 * requests are created and submitted and will
2584 * end up in end_bio_extent_readpage as well (if
2585 * we're lucky, not in the !uptodate case). In
2586 * that case it returns 0 and we just go on with
2587 * the next page in our bio. If it can't handle
2588 * the error it will return -EIO and we remain
2589 * responsible for that page.
2590 */
2591 ret = bio_readpage_error(bio, offset, page,
2592 start, end, mirror);
2593 if (ret == 0) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002594 uptodate = !bio->bi_status;
Liu Bo9d0d1c82017-03-24 15:04:50 -07002595 offset += len;
2596 continue;
2597 }
Chris Mason7e383262008-04-09 16:28:12 -04002598 }
Liu Bo9d0d1c82017-03-24 15:04:50 -07002599
2600 /*
2601 * metadata's readpage_io_failed_hook() always returns
2602 * -EIO and fixes nothing. -EIO is also returned if
2603 * data inode error could not be fixed.
2604 */
2605 ASSERT(ret == -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002606 }
Miao Xief2a09da2013-07-25 19:22:33 +08002607readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002608 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002609 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002610 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002611 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002612
2613 /* Zero out the end if this page straddles i_size */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002614 off = i_size & (PAGE_SIZE-1);
Liu Boa583c022014-08-19 23:32:22 +08002615 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002616 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002617 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002618 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002619 ClearPageUptodate(page);
2620 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002621 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002622 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002623 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002624
2625 if (unlikely(!uptodate)) {
2626 if (extent_len) {
2627 endio_readpage_release_extent(tree,
2628 extent_start,
2629 extent_len, 1);
2630 extent_start = 0;
2631 extent_len = 0;
2632 }
2633 endio_readpage_release_extent(tree, start,
2634 end - start + 1, 0);
2635 } else if (!extent_len) {
2636 extent_start = start;
2637 extent_len = end + 1 - start;
2638 } else if (extent_start + extent_len == start) {
2639 extent_len += end + 1 - start;
2640 } else {
2641 endio_readpage_release_extent(tree, extent_start,
2642 extent_len, uptodate);
2643 extent_start = start;
2644 extent_len = end + 1 - start;
2645 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002646 }
Chris Masond1310b22008-01-24 16:13:08 -05002647
Miao Xie883d0de2013-07-25 19:22:35 +08002648 if (extent_len)
2649 endio_readpage_release_extent(tree, extent_start, extent_len,
2650 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002651 if (io_bio->end_io)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002652 io_bio->end_io(io_bio, blk_status_to_errno(bio->bi_status));
Chris Masond1310b22008-01-24 16:13:08 -05002653 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002654}
2655
Chris Mason9be33952013-05-17 18:30:14 -04002656/*
David Sterba184f9992017-06-12 17:29:39 +02002657 * Initialize the members up to but not including 'bio'. Use after allocating a
2658 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2659 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002660 */
David Sterba184f9992017-06-12 17:29:39 +02002661static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002662{
David Sterba184f9992017-06-12 17:29:39 +02002663 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2664}
2665
2666/*
David Sterba6e707bc2017-06-02 17:26:26 +02002667 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2668 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2669 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002670 */
David Sterbac821e7f32017-06-02 18:35:36 +02002671struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002672{
2673 struct bio *bio;
2674
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002675 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002676 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002677 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002678 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002679 return bio;
2680}
2681
David Sterba8b6c1d52017-06-02 17:48:13 +02002682struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002683{
Miao Xie23ea8e52014-09-12 18:43:54 +08002684 struct btrfs_io_bio *btrfs_bio;
2685 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002686
David Sterba6e707bc2017-06-02 17:26:26 +02002687 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002688 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002689 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002690 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002691 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002692 return new;
2693}
Chris Mason9be33952013-05-17 18:30:14 -04002694
David Sterbac5e4c3d2017-06-12 17:29:41 +02002695struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002696{
Miao Xiefacc8a222013-07-25 19:22:34 +08002697 struct bio *bio;
2698
David Sterba6e707bc2017-06-02 17:26:26 +02002699 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002700 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002701 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002702 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002703}
2704
Liu Boe4770942017-05-16 10:57:14 -07002705struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002706{
2707 struct bio *bio;
2708 struct btrfs_io_bio *btrfs_bio;
2709
2710 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002711 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002712 ASSERT(bio);
2713
2714 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002715 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002716
2717 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002718 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002719 return bio;
2720}
Chris Mason9be33952013-05-17 18:30:14 -04002721
Mike Christie1f7ad752016-06-05 14:31:51 -05002722static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2723 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002724{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002725 blk_status_t ret = 0;
Ming Leic45a8f22017-12-18 20:22:05 +08002726 struct bio_vec *bvec = bio_last_bvec_all(bio);
Chris Mason70dec802008-01-29 09:59:12 -05002727 struct page *page = bvec->bv_page;
2728 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002729 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002730
Miao Xie4eee4fa2012-12-21 09:17:45 +00002731 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002732
David Woodhouse902b22f2008-08-20 08:51:49 -04002733 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002734
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
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002741 return blk_status_to_errno(ret);
Chris Masond1310b22008-01-24 16:13:08 -05002742}
2743
David Sterba4b81ba42017-06-06 19:14:26 +02002744/*
2745 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002746 * @tree: tree so we can call our merge_bio hook
2747 * @wbc: optional writeback control for io accounting
2748 * @page: page to add to the bio
2749 * @pg_offset: offset of the new bio or to check whether we are adding
2750 * a contiguous page to the previous one
2751 * @size: portion of page that we want to write
2752 * @offset: starting offset in the page
2753 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002754 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002755 * @end_io_func: end_io callback for new bio
2756 * @mirror_num: desired mirror to read/write
2757 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2758 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002759 */
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;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002774 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002775 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002776
David Sterba5c2b1fd2017-06-06 19:22:55 +02002777 ASSERT(bio_ret);
2778
2779 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002780 bool contig;
2781 bool can_merge = true;
2782
Chris Masond1310b22008-01-24 16:13:08 -05002783 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002784 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002785 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002786 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002787 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002788
David Sterba00032d32018-07-18 19:28:09 +02002789 if (tree->ops && btrfs_merge_bio_hook(page, offset, page_size,
2790 bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002791 can_merge = false;
2792
2793 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002794 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002795 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002796 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002797 if (ret < 0) {
2798 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002799 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002800 }
Chris Masond1310b22008-01-24 16:13:08 -05002801 bio = NULL;
2802 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002803 if (wbc)
2804 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002805 return 0;
2806 }
2807 }
Chris Masonc8b97812008-10-29 14:49:59 -04002808
David Sterba6273b7f2017-10-04 17:30:11 +02002809 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002810 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002811 bio->bi_end_io = end_io_func;
2812 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002813 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002814 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002815 if (wbc) {
2816 wbc_init_bio(wbc, bio);
2817 wbc_account_io(wbc, page, page_size);
2818 }
Chris Mason70dec802008-01-29 09:59:12 -05002819
David Sterba5c2b1fd2017-06-06 19:22:55 +02002820 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002821
2822 return ret;
2823}
2824
Eric Sandeen48a3b632013-04-25 20:41:01 +00002825static void attach_extent_buffer_page(struct extent_buffer *eb,
2826 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002827{
2828 if (!PagePrivate(page)) {
2829 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002830 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002831 set_page_private(page, (unsigned long)eb);
2832 } else {
2833 WARN_ON(page->private != (unsigned long)eb);
2834 }
2835}
2836
Chris Masond1310b22008-01-24 16:13:08 -05002837void set_page_extent_mapped(struct page *page)
2838{
2839 if (!PagePrivate(page)) {
2840 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002841 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002842 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002843 }
2844}
2845
Miao Xie125bac012013-07-25 19:22:37 +08002846static struct extent_map *
2847__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2848 u64 start, u64 len, get_extent_t *get_extent,
2849 struct extent_map **em_cached)
2850{
2851 struct extent_map *em;
2852
2853 if (em_cached && *em_cached) {
2854 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002855 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002856 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002857 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002858 return em;
2859 }
2860
2861 free_extent_map(em);
2862 *em_cached = NULL;
2863 }
2864
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002865 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002866 if (em_cached && !IS_ERR_OR_NULL(em)) {
2867 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002868 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002869 *em_cached = em;
2870 }
2871 return em;
2872}
Chris Masond1310b22008-01-24 16:13:08 -05002873/*
2874 * basic readpage implementation. Locked extent state structs are inserted
2875 * into the tree that are removed when the IO is done (by the end_io
2876 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002877 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002878 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002879 */
Miao Xie99740902013-07-25 19:22:36 +08002880static int __do_readpage(struct extent_io_tree *tree,
2881 struct page *page,
2882 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002883 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002884 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002885 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002886 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002887{
2888 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002889 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02002890 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002891 u64 cur = start;
2892 u64 extent_offset;
2893 u64 last_byte = i_size_read(inode);
2894 u64 block_start;
2895 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05002896 struct extent_map *em;
2897 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002898 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002899 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002900 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002901 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002902 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002903 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002904 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002905
2906 set_page_extent_mapped(page);
2907
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002908 if (!PageUptodate(page)) {
2909 if (cleancache_get_page(page) == 0) {
2910 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002911 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002912 goto out;
2913 }
2914 }
2915
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002916 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002917 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002918 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002919
2920 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002921 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002922 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002923 memset(userpage + zero_offset, 0, iosize);
2924 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002925 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002926 }
2927 }
Chris Masond1310b22008-01-24 16:13:08 -05002928 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002929 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02002930 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002931
Chris Masond1310b22008-01-24 16:13:08 -05002932 if (cur >= last_byte) {
2933 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002934 struct extent_state *cached = NULL;
2935
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002936 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002937 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002938 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002939 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002940 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002941 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002942 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002943 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01002944 cur + iosize - 1, &cached);
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,
David Sterbae43bbe52017-12-12 21:43:52 +01003037 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003038 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003039 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003040 continue;
3041 }
3042 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003043 if (test_range_bit(tree, cur, cur_end,
3044 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003045 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003046 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003047 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003048 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003049 continue;
3050 }
Chris Mason70dec802008-01-29 09:59:12 -05003051 /* we have an inline extent but it didn't get marked up
3052 * to date. Error out
3053 */
3054 if (block_start == EXTENT_MAP_INLINE) {
3055 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003056 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003057 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003058 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003059 continue;
3060 }
Chris Masond1310b22008-01-24 16:13:08 -05003061
David Sterba4b81ba42017-06-06 19:14:26 +02003062 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003063 page, offset, disk_io_size,
3064 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003065 end_bio_extent_readpage, mirror_num,
3066 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003067 this_bio_flag,
3068 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003069 if (!ret) {
3070 nr++;
3071 *bio_flags = this_bio_flag;
3072 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003073 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003074 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003075 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003076 }
Chris Masond1310b22008-01-24 16:13:08 -05003077 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003078 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003079 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003080out:
Chris Masond1310b22008-01-24 16:13:08 -05003081 if (!nr) {
3082 if (!PageError(page))
3083 SetPageUptodate(page);
3084 unlock_page(page);
3085 }
Liu Bobaf863b2016-07-11 10:39:07 -07003086 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003087}
3088
Miao Xie99740902013-07-25 19:22:36 +08003089static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3090 struct page *pages[], int nr_pages,
3091 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003092 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003093 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003094 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003095 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003096{
3097 struct inode *inode;
3098 struct btrfs_ordered_extent *ordered;
3099 int index;
3100
3101 inode = pages[0]->mapping->host;
3102 while (1) {
3103 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003104 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003105 end - start + 1);
3106 if (!ordered)
3107 break;
3108 unlock_extent(tree, start, end);
3109 btrfs_start_ordered_extent(inode, ordered, 1);
3110 btrfs_put_ordered_extent(ordered);
3111 }
3112
3113 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003114 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003115 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003116 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003117 }
3118}
3119
3120static void __extent_readpages(struct extent_io_tree *tree,
3121 struct page *pages[],
David Sterbae4d17ef2017-06-23 04:09:57 +02003122 int nr_pages,
Miao Xie125bac012013-07-25 19:22:37 +08003123 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003124 struct bio **bio, unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003125 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003126{
Stefan Behrens35a36212013-08-14 18:12:25 +02003127 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003128 u64 end = 0;
3129 u64 page_start;
3130 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003131 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003132
3133 for (index = 0; index < nr_pages; index++) {
3134 page_start = page_offset(pages[index]);
3135 if (!end) {
3136 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003137 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003138 first_index = index;
3139 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003140 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003141 } else {
3142 __do_contiguous_readpages(tree, &pages[first_index],
3143 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003144 end, em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003145 bio, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003146 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003147 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003148 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003149 first_index = index;
3150 }
3151 }
3152
3153 if (end)
3154 __do_contiguous_readpages(tree, &pages[first_index],
3155 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003156 end, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003157 bio_flags, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003158}
3159
3160static int __extent_read_full_page(struct extent_io_tree *tree,
3161 struct page *page,
3162 get_extent_t *get_extent,
3163 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003164 unsigned long *bio_flags,
3165 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003166{
3167 struct inode *inode = page->mapping->host;
3168 struct btrfs_ordered_extent *ordered;
3169 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003170 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003171 int ret;
3172
3173 while (1) {
3174 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003175 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003176 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003177 if (!ordered)
3178 break;
3179 unlock_extent(tree, start, end);
3180 btrfs_start_ordered_extent(inode, ordered, 1);
3181 btrfs_put_ordered_extent(ordered);
3182 }
3183
Miao Xie125bac012013-07-25 19:22:37 +08003184 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003185 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003186 return ret;
3187}
3188
Chris Masond1310b22008-01-24 16:13:08 -05003189int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003190 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003191{
3192 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003193 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003194 int ret;
3195
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003196 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003197 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003198 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003199 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003200 return ret;
3201}
Chris Masond1310b22008-01-24 16:13:08 -05003202
David Sterba3d4b9492017-02-10 19:33:41 +01003203static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003204 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003205{
3206 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003207}
3208
Chris Masond1310b22008-01-24 16:13:08 -05003209/*
Chris Mason40f76582014-05-21 13:35:51 -07003210 * helper for __extent_writepage, doing all of the delayed allocation setup.
3211 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003212 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003213 * to write the page (copy into inline extent). In this case the IO has
3214 * been started and the page is already unlocked.
3215 *
3216 * This returns 0 if all went well (page still locked)
3217 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003218 */
Chris Mason40f76582014-05-21 13:35:51 -07003219static noinline_for_stack int writepage_delalloc(struct inode *inode,
3220 struct page *page, struct writeback_control *wbc,
3221 struct extent_page_data *epd,
3222 u64 delalloc_start,
3223 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003224{
Chris Mason40f76582014-05-21 13:35:51 -07003225 struct extent_io_tree *tree = epd->tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003226 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003227 u64 nr_delalloc;
3228 u64 delalloc_to_write = 0;
3229 u64 delalloc_end = 0;
3230 int ret;
3231 int page_started = 0;
3232
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003233 if (epd->extent_locked)
Chris Mason40f76582014-05-21 13:35:51 -07003234 return 0;
3235
3236 while (delalloc_end < page_end) {
3237 nr_delalloc = find_lock_delalloc_range(inode, tree,
3238 page,
3239 &delalloc_start,
3240 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003241 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003242 if (nr_delalloc == 0) {
3243 delalloc_start = delalloc_end + 1;
3244 continue;
3245 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003246 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3247 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003248 /* File system has been set read-only */
3249 if (ret) {
3250 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003251 /*
3252 * btrfs_run_delalloc_range should return < 0 for error
3253 * but just in case, we use > 0 here meaning the IO is
3254 * started, so we don't want to return > 0 unless
3255 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003256 */
3257 ret = ret < 0 ? ret : -EIO;
3258 goto done;
3259 }
3260 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003261 * delalloc_end is already one less than the total length, so
3262 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003263 */
3264 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003265 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003266 delalloc_start = delalloc_end + 1;
3267 }
3268 if (wbc->nr_to_write < delalloc_to_write) {
3269 int thresh = 8192;
3270
3271 if (delalloc_to_write < thresh * 2)
3272 thresh = delalloc_to_write;
3273 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3274 thresh);
3275 }
3276
3277 /* did the fill delalloc function already unlock and start
3278 * the IO?
3279 */
3280 if (page_started) {
3281 /*
3282 * we've unlocked the page, so we can't update
3283 * the mapping's writeback index, just update
3284 * nr_to_write.
3285 */
3286 wbc->nr_to_write -= *nr_written;
3287 return 1;
3288 }
3289
3290 ret = 0;
3291
3292done:
3293 return ret;
3294}
3295
3296/*
3297 * helper for __extent_writepage. This calls the writepage start hooks,
3298 * and does the loop to map the page into extents and bios.
3299 *
3300 * We return 1 if the IO is started and the page is unlocked,
3301 * 0 if all went well (page still locked)
3302 * < 0 if there were errors (page still locked)
3303 */
3304static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3305 struct page *page,
3306 struct writeback_control *wbc,
3307 struct extent_page_data *epd,
3308 loff_t i_size,
3309 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003310 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003311{
Chris Masond1310b22008-01-24 16:13:08 -05003312 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003313 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003314 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003315 u64 end;
3316 u64 cur = start;
3317 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003318 u64 block_start;
3319 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003320 struct extent_map *em;
3321 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003322 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003323 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003324 int ret = 0;
3325 int nr = 0;
3326 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003327
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003328 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3329 if (ret) {
3330 /* Fixup worker will requeue */
3331 if (ret == -EBUSY)
3332 wbc->pages_skipped++;
3333 else
3334 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003335
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003336 update_nr_written(wbc, nr_written);
3337 unlock_page(page);
3338 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003339 }
3340
Chris Mason11c83492009-04-20 15:50:09 -04003341 /*
3342 * we don't want to touch the inode after unlocking the page,
3343 * so we update the mapping writeback index now
3344 */
David Sterba3d4b9492017-02-10 19:33:41 +01003345 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003346
Chris Masond1310b22008-01-24 16:13:08 -05003347 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003348 if (i_size <= start) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003349 btrfs_writepage_endio_finish_ordered(page, start, page_end,
3350 NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003351 goto done;
3352 }
3353
Chris Masond1310b22008-01-24 16:13:08 -05003354 blocksize = inode->i_sb->s_blocksize;
3355
3356 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003357 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003358 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003359
Chris Mason40f76582014-05-21 13:35:51 -07003360 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003361 btrfs_writepage_endio_finish_ordered(page, cur,
3362 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003363 break;
3364 }
David Sterba3c98c622017-06-23 04:01:08 +02003365 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003366 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003367 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003368 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003369 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003370 break;
3371 }
3372
3373 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003374 em_end = extent_map_end(em);
3375 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003376 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003377 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003378 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003379 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003380 bdev = em->bdev;
3381 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003382 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003383 free_extent_map(em);
3384 em = NULL;
3385
Chris Masonc8b97812008-10-29 14:49:59 -04003386 /*
3387 * compressed and inline extents are written through other
3388 * paths in the FS
3389 */
3390 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003391 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003392 /*
3393 * end_io notification does not happen here for
3394 * compressed extents
3395 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003396 if (!compressed)
3397 btrfs_writepage_endio_finish_ordered(page, cur,
3398 cur + iosize - 1,
3399 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003400 else if (compressed) {
3401 /* we don't want to end_page_writeback on
3402 * a compressed extent. this happens
3403 * elsewhere
3404 */
3405 nr++;
3406 }
3407
3408 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003409 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003410 continue;
3411 }
Chris Masonc8b97812008-10-29 14:49:59 -04003412
David Sterba5cdc84b2018-07-18 20:32:52 +02003413 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003414 if (!PageWriteback(page)) {
3415 btrfs_err(BTRFS_I(inode)->root->fs_info,
3416 "page %lu not writeback, cur %llu end %llu",
3417 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003418 }
David Sterba58409ed2016-05-04 11:46:10 +02003419
David Sterba4b81ba42017-06-06 19:14:26 +02003420 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003421 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003422 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003423 end_bio_extent_writepage,
3424 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003425 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003426 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003427 if (PageWriteback(page))
3428 end_page_writeback(page);
3429 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003430
Chris Masond1310b22008-01-24 16:13:08 -05003431 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003432 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003433 nr++;
3434 }
3435done:
Chris Mason40f76582014-05-21 13:35:51 -07003436 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003437 return ret;
3438}
3439
3440/*
3441 * the writepage semantics are similar to regular writepage. extent
3442 * records are inserted to lock ranges in the tree, and as dirty areas
3443 * are found, they are marked writeback. Then the lock bits are removed
3444 * and the end_io handler clears the writeback ranges
3445 */
3446static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003447 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003448{
3449 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003450 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003451 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003452 int ret;
3453 int nr = 0;
3454 size_t pg_offset = 0;
3455 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003456 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003457 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003458 unsigned long nr_written = 0;
3459
Liu Boff40adf2017-08-24 18:19:48 -06003460 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003461
3462 trace___extent_writepage(page, inode, wbc);
3463
3464 WARN_ON(!PageLocked(page));
3465
3466 ClearPageError(page);
3467
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003468 pg_offset = i_size & (PAGE_SIZE - 1);
Chris Mason40f76582014-05-21 13:35:51 -07003469 if (page->index > end_index ||
3470 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003471 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003472 unlock_page(page);
3473 return 0;
3474 }
3475
3476 if (page->index == end_index) {
3477 char *userpage;
3478
3479 userpage = kmap_atomic(page);
3480 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003481 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003482 kunmap_atomic(userpage);
3483 flush_dcache_page(page);
3484 }
3485
3486 pg_offset = 0;
3487
3488 set_page_extent_mapped(page);
3489
3490 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3491 if (ret == 1)
3492 goto done_unlocked;
3493 if (ret)
3494 goto done;
3495
3496 ret = __extent_writepage_io(inode, page, wbc, epd,
3497 i_size, nr_written, write_flags, &nr);
3498 if (ret == 1)
3499 goto done_unlocked;
3500
3501done:
Chris Masond1310b22008-01-24 16:13:08 -05003502 if (nr == 0) {
3503 /* make sure the mapping tag for page dirty gets cleared */
3504 set_page_writeback(page);
3505 end_page_writeback(page);
3506 }
Filipe Manana61391d52014-05-09 17:17:40 +01003507 if (PageError(page)) {
3508 ret = ret < 0 ? ret : -EIO;
3509 end_extent_writepage(page, ret, start, page_end);
3510 }
Chris Masond1310b22008-01-24 16:13:08 -05003511 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003512 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003513
Chris Mason11c83492009-04-20 15:50:09 -04003514done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003515 return 0;
3516}
3517
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003518void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003519{
NeilBrown74316202014-07-07 15:16:04 +10003520 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3521 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003522}
3523
Chris Mason0e378df2014-05-19 20:55:27 -07003524static noinline_for_stack int
3525lock_extent_buffer_for_io(struct extent_buffer *eb,
3526 struct btrfs_fs_info *fs_info,
3527 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003528{
David Sterbacc5e31a2018-03-01 18:20:27 +01003529 int i, num_pages;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003530 int flush = 0;
3531 int ret = 0;
3532
3533 if (!btrfs_try_tree_write_lock(eb)) {
3534 flush = 1;
3535 flush_write_bio(epd);
3536 btrfs_tree_lock(eb);
3537 }
3538
3539 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3540 btrfs_tree_unlock(eb);
3541 if (!epd->sync_io)
3542 return 0;
3543 if (!flush) {
3544 flush_write_bio(epd);
3545 flush = 1;
3546 }
Chris Masona098d8e2012-03-21 12:09:56 -04003547 while (1) {
3548 wait_on_extent_buffer_writeback(eb);
3549 btrfs_tree_lock(eb);
3550 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3551 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003552 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003553 }
3554 }
3555
Josef Bacik51561ff2012-07-20 16:25:24 -04003556 /*
3557 * We need to do this to prevent races in people who check if the eb is
3558 * under IO since we can end up having no IO bits set for a short period
3559 * of time.
3560 */
3561 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003562 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3563 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003564 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003565 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003566 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3567 -eb->len,
3568 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003569 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003570 } else {
3571 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003572 }
3573
3574 btrfs_tree_unlock(eb);
3575
3576 if (!ret)
3577 return ret;
3578
David Sterba65ad0102018-06-29 10:56:49 +02003579 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003580 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003581 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003582
3583 if (!trylock_page(p)) {
3584 if (!flush) {
3585 flush_write_bio(epd);
3586 flush = 1;
3587 }
3588 lock_page(p);
3589 }
3590 }
3591
3592 return ret;
3593}
3594
3595static void end_extent_buffer_writeback(struct extent_buffer *eb)
3596{
3597 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003598 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003599 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3600}
3601
Filipe Manana656f30d2014-09-26 12:25:56 +01003602static void set_btree_ioerr(struct page *page)
3603{
3604 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003605
3606 SetPageError(page);
3607 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3608 return;
3609
3610 /*
3611 * If writeback for a btree extent that doesn't belong to a log tree
3612 * failed, increment the counter transaction->eb_write_errors.
3613 * We do this because while the transaction is running and before it's
3614 * committing (when we call filemap_fdata[write|wait]_range against
3615 * the btree inode), we might have
3616 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3617 * returns an error or an error happens during writeback, when we're
3618 * committing the transaction we wouldn't know about it, since the pages
3619 * can be no longer dirty nor marked anymore for writeback (if a
3620 * subsequent modification to the extent buffer didn't happen before the
3621 * transaction commit), which makes filemap_fdata[write|wait]_range not
3622 * able to find the pages tagged with SetPageError at transaction
3623 * commit time. So if this happens we must abort the transaction,
3624 * otherwise we commit a super block with btree roots that point to
3625 * btree nodes/leafs whose content on disk is invalid - either garbage
3626 * or the content of some node/leaf from a past generation that got
3627 * cowed or deleted and is no longer valid.
3628 *
3629 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3630 * not be enough - we need to distinguish between log tree extents vs
3631 * non-log tree extents, and the next filemap_fdatawait_range() call
3632 * will catch and clear such errors in the mapping - and that call might
3633 * be from a log sync and not from a transaction commit. Also, checking
3634 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3635 * not done and would not be reliable - the eb might have been released
3636 * from memory and reading it back again means that flag would not be
3637 * set (since it's a runtime flag, not persisted on disk).
3638 *
3639 * Using the flags below in the btree inode also makes us achieve the
3640 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3641 * writeback for all dirty pages and before filemap_fdatawait_range()
3642 * is called, the writeback for all dirty pages had already finished
3643 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3644 * filemap_fdatawait_range() would return success, as it could not know
3645 * that writeback errors happened (the pages were no longer tagged for
3646 * writeback).
3647 */
3648 switch (eb->log_index) {
3649 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003650 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003651 break;
3652 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003653 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003654 break;
3655 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003656 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003657 break;
3658 default:
3659 BUG(); /* unexpected, logic error */
3660 }
3661}
3662
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003663static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003664{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003665 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003666 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003667 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003668
David Sterbac09abff2017-07-13 18:10:07 +02003669 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08003670 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003671 struct page *page = bvec->bv_page;
3672
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003673 eb = (struct extent_buffer *)page->private;
3674 BUG_ON(!eb);
3675 done = atomic_dec_and_test(&eb->io_pages);
3676
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003677 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003678 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003679 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003680 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003681 }
3682
3683 end_page_writeback(page);
3684
3685 if (!done)
3686 continue;
3687
3688 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003689 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003690
3691 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003692}
3693
Chris Mason0e378df2014-05-19 20:55:27 -07003694static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003695 struct btrfs_fs_info *fs_info,
3696 struct writeback_control *wbc,
3697 struct extent_page_data *epd)
3698{
3699 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003700 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003701 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003702 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003703 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003704 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003705 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003706 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003707
Filipe Manana656f30d2014-09-26 12:25:56 +01003708 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003709 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003710 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003711
Liu Bo851cd172016-09-23 13:44:44 -07003712 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3713 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003714 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003715 end = btrfs_node_key_ptr_offset(nritems);
3716
David Sterbab159fa22016-11-08 18:09:03 +01003717 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003718 } else {
3719 /*
3720 * leaf:
3721 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3722 */
3723 start = btrfs_item_nr_offset(nritems);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003724 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003725 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003726 }
3727
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003728 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003729 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003730
3731 clear_page_dirty_for_io(p);
3732 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003733 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003734 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003735 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003736 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003737 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003738 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003739 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003740 if (PageWriteback(p))
3741 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003742 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3743 end_extent_buffer_writeback(eb);
3744 ret = -EIO;
3745 break;
3746 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003747 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003748 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003749 unlock_page(p);
3750 }
3751
3752 if (unlikely(ret)) {
3753 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003754 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003755 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003756 unlock_page(p);
3757 }
3758 }
3759
3760 return ret;
3761}
3762
3763int btree_write_cache_pages(struct address_space *mapping,
3764 struct writeback_control *wbc)
3765{
3766 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3767 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3768 struct extent_buffer *eb, *prev_eb = NULL;
3769 struct extent_page_data epd = {
3770 .bio = NULL,
3771 .tree = tree,
3772 .extent_locked = 0,
3773 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3774 };
3775 int ret = 0;
3776 int done = 0;
3777 int nr_to_write_done = 0;
3778 struct pagevec pvec;
3779 int nr_pages;
3780 pgoff_t index;
3781 pgoff_t end; /* Inclusive */
3782 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003783 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003784
Mel Gorman86679822017-11-15 17:37:52 -08003785 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003786 if (wbc->range_cyclic) {
3787 index = mapping->writeback_index; /* Start from prev offset */
3788 end = -1;
3789 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003790 index = wbc->range_start >> PAGE_SHIFT;
3791 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003792 scanned = 1;
3793 }
3794 if (wbc->sync_mode == WB_SYNC_ALL)
3795 tag = PAGECACHE_TAG_TOWRITE;
3796 else
3797 tag = PAGECACHE_TAG_DIRTY;
3798retry:
3799 if (wbc->sync_mode == WB_SYNC_ALL)
3800 tag_pages_for_writeback(mapping, index, end);
3801 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003802 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003803 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003804 unsigned i;
3805
3806 scanned = 1;
3807 for (i = 0; i < nr_pages; i++) {
3808 struct page *page = pvec.pages[i];
3809
3810 if (!PagePrivate(page))
3811 continue;
3812
Josef Bacikb5bae262012-09-14 13:43:01 -04003813 spin_lock(&mapping->private_lock);
3814 if (!PagePrivate(page)) {
3815 spin_unlock(&mapping->private_lock);
3816 continue;
3817 }
3818
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003819 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003820
3821 /*
3822 * Shouldn't happen and normally this would be a BUG_ON
3823 * but no sense in crashing the users box for something
3824 * we can survive anyway.
3825 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303826 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003827 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003828 continue;
3829 }
3830
Josef Bacikb5bae262012-09-14 13:43:01 -04003831 if (eb == prev_eb) {
3832 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003833 continue;
3834 }
3835
Josef Bacikb5bae262012-09-14 13:43:01 -04003836 ret = atomic_inc_not_zero(&eb->refs);
3837 spin_unlock(&mapping->private_lock);
3838 if (!ret)
3839 continue;
3840
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003841 prev_eb = eb;
3842 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3843 if (!ret) {
3844 free_extent_buffer(eb);
3845 continue;
3846 }
3847
3848 ret = write_one_eb(eb, fs_info, wbc, &epd);
3849 if (ret) {
3850 done = 1;
3851 free_extent_buffer(eb);
3852 break;
3853 }
3854 free_extent_buffer(eb);
3855
3856 /*
3857 * the filesystem may choose to bump up nr_to_write.
3858 * We have to make sure to honor the new nr_to_write
3859 * at any time
3860 */
3861 nr_to_write_done = wbc->nr_to_write <= 0;
3862 }
3863 pagevec_release(&pvec);
3864 cond_resched();
3865 }
3866 if (!scanned && !done) {
3867 /*
3868 * We hit the last page and there is more work to be done: wrap
3869 * back to the start of the file
3870 */
3871 scanned = 1;
3872 index = 0;
3873 goto retry;
3874 }
3875 flush_write_bio(&epd);
3876 return ret;
3877}
3878
Chris Masond1310b22008-01-24 16:13:08 -05003879/**
Chris Mason4bef0842008-09-08 11:18:08 -04003880 * 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 -05003881 * @mapping: address space structure to write
3882 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003883 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003884 *
3885 * If a page is already under I/O, write_cache_pages() skips it, even
3886 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3887 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3888 * and msync() need to guarantee that all the data which was dirty at the time
3889 * the call was made get new I/O started against them. If wbc->sync_mode is
3890 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3891 * existing IO to complete.
3892 */
David Sterba4242b642017-02-10 19:38:24 +01003893static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003894 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003895 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003896{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003897 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003898 int ret = 0;
3899 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003900 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003901 struct pagevec pvec;
3902 int nr_pages;
3903 pgoff_t index;
3904 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003905 pgoff_t done_index;
3906 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003907 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003908 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05003909
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003910 /*
3911 * We have to hold onto the inode so that ordered extents can do their
3912 * work when the IO finishes. The alternative to this is failing to add
3913 * an ordered extent if the igrab() fails there and that is a huge pain
3914 * to deal with, so instead just hold onto the inode throughout the
3915 * writepages operation. If it fails here we are freeing up the inode
3916 * anyway and we'd rather not waste our time writing out stuff that is
3917 * going to be truncated anyway.
3918 */
3919 if (!igrab(inode))
3920 return 0;
3921
Mel Gorman86679822017-11-15 17:37:52 -08003922 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003923 if (wbc->range_cyclic) {
3924 index = mapping->writeback_index; /* Start from prev offset */
3925 end = -1;
3926 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003927 index = wbc->range_start >> PAGE_SHIFT;
3928 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003929 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3930 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003931 scanned = 1;
3932 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003933 if (wbc->sync_mode == WB_SYNC_ALL)
3934 tag = PAGECACHE_TAG_TOWRITE;
3935 else
3936 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003937retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003938 if (wbc->sync_mode == WB_SYNC_ALL)
3939 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003940 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003941 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08003942 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
3943 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05003944 unsigned i;
3945
3946 scanned = 1;
3947 for (i = 0; i < nr_pages; i++) {
3948 struct page *page = pvec.pages[i];
3949
Liu Boa91326672016-03-07 16:56:21 -08003950 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003951 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07003952 * At this point we hold neither the i_pages lock nor
3953 * the page lock: the page may be truncated or
3954 * invalidated (changing page->mapping to NULL),
3955 * or even swizzled back from swapper_space to
3956 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05003957 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003958 if (!trylock_page(page)) {
David Sterbaaab6e9e2017-11-30 18:00:02 +01003959 flush_write_bio(epd);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003960 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003961 }
Chris Masond1310b22008-01-24 16:13:08 -05003962
3963 if (unlikely(page->mapping != mapping)) {
3964 unlock_page(page);
3965 continue;
3966 }
3967
Chris Masond2c3f4f2008-11-19 12:44:22 -05003968 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003969 if (PageWriteback(page))
David Sterbaaab6e9e2017-11-30 18:00:02 +01003970 flush_write_bio(epd);
Chris Masond1310b22008-01-24 16:13:08 -05003971 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003972 }
Chris Masond1310b22008-01-24 16:13:08 -05003973
3974 if (PageWriteback(page) ||
3975 !clear_page_dirty_for_io(page)) {
3976 unlock_page(page);
3977 continue;
3978 }
3979
David Sterbaaab6e9e2017-11-30 18:00:02 +01003980 ret = __extent_writepage(page, wbc, epd);
Chris Masond1310b22008-01-24 16:13:08 -05003981
3982 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3983 unlock_page(page);
3984 ret = 0;
3985 }
Liu Boa91326672016-03-07 16:56:21 -08003986 if (ret < 0) {
3987 /*
3988 * done_index is set past this page,
3989 * so media errors will not choke
3990 * background writeout for the entire
3991 * file. This has consequences for
3992 * range_cyclic semantics (ie. it may
3993 * not be suitable for data integrity
3994 * writeout).
3995 */
3996 done_index = page->index + 1;
3997 done = 1;
3998 break;
3999 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004000
4001 /*
4002 * the filesystem may choose to bump up nr_to_write.
4003 * We have to make sure to honor the new nr_to_write
4004 * at any time
4005 */
4006 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004007 }
4008 pagevec_release(&pvec);
4009 cond_resched();
4010 }
Liu Bo894b36e2016-03-07 16:56:22 -08004011 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004012 /*
4013 * We hit the last page and there is more work to be done: wrap
4014 * back to the start of the file
4015 */
4016 scanned = 1;
4017 index = 0;
4018 goto retry;
4019 }
Liu Boa91326672016-03-07 16:56:21 -08004020
4021 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4022 mapping->writeback_index = done_index;
4023
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004024 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004025 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004026}
Chris Masond1310b22008-01-24 16:13:08 -05004027
David Sterbaaab6e9e2017-11-30 18:00:02 +01004028static void flush_write_bio(struct extent_page_data *epd)
Chris Masonffbd5172009-04-20 15:50:09 -04004029{
4030 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004031 int ret;
4032
Liu Bo18fdc672017-09-13 12:18:22 -06004033 ret = submit_one_bio(epd->bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004034 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004035 epd->bio = NULL;
4036 }
4037}
4038
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004039int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004040{
4041 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004042 struct extent_page_data epd = {
4043 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004044 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004045 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004046 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004047 };
Chris Masond1310b22008-01-24 16:13:08 -05004048
Chris Masond1310b22008-01-24 16:13:08 -05004049 ret = __extent_writepage(page, wbc, &epd);
4050
David Sterbae2932ee2017-06-23 04:16:17 +02004051 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004052 return ret;
4053}
Chris Masond1310b22008-01-24 16:13:08 -05004054
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004055int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004056 int mode)
4057{
4058 int ret = 0;
4059 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004060 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004061 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004062 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4063 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004064
4065 struct extent_page_data epd = {
4066 .bio = NULL,
4067 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004068 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004069 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004070 };
4071 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004072 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004073 .nr_to_write = nr_pages * 2,
4074 .range_start = start,
4075 .range_end = end + 1,
4076 };
4077
Chris Masond3977122009-01-05 21:25:51 -05004078 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004079 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004080 if (clear_page_dirty_for_io(page))
4081 ret = __extent_writepage(page, &wbc_writepages, &epd);
4082 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004083 btrfs_writepage_endio_finish_ordered(page, start,
4084 start + PAGE_SIZE - 1,
4085 NULL, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004086 unlock_page(page);
4087 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004088 put_page(page);
4089 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004090 }
4091
David Sterbae2932ee2017-06-23 04:16:17 +02004092 flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004093 return ret;
4094}
Chris Masond1310b22008-01-24 16:13:08 -05004095
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004096int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004097 struct writeback_control *wbc)
4098{
4099 int ret = 0;
4100 struct extent_page_data epd = {
4101 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004102 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004103 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004104 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004105 };
4106
David Sterba935db852017-06-23 04:30:28 +02004107 ret = extent_write_cache_pages(mapping, wbc, &epd);
David Sterbae2932ee2017-06-23 04:16:17 +02004108 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004109 return ret;
4110}
Chris Masond1310b22008-01-24 16:13:08 -05004111
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004112int extent_readpages(struct address_space *mapping, struct list_head *pages,
4113 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004114{
4115 struct bio *bio = NULL;
4116 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004117 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004118 struct page *pagepool[16];
4119 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004120 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004121 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004122 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004123 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004124
Chris Masond1310b22008-01-24 16:13:08 -05004125 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004126 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004127
4128 prefetchw(&page->flags);
4129 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004130 if (add_to_page_cache_lru(page, mapping,
Michal Hocko8a5c7432016-07-26 15:24:53 -07004131 page->index,
4132 readahead_gfp_mask(mapping))) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004133 put_page(page);
Liu Bo67c96842012-07-20 21:43:09 -06004134 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004135 }
Liu Bo67c96842012-07-20 21:43:09 -06004136
4137 pagepool[nr++] = page;
4138 if (nr < ARRAY_SIZE(pagepool))
4139 continue;
David Sterbae4d17ef2017-06-23 04:09:57 +02004140 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
4141 &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004142 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004143 }
Miao Xie99740902013-07-25 19:22:36 +08004144 if (nr)
David Sterbae4d17ef2017-06-23 04:09:57 +02004145 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
4146 &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004147
Miao Xie125bac012013-07-25 19:22:37 +08004148 if (em_cached)
4149 free_extent_map(em_cached);
4150
Chris Masond1310b22008-01-24 16:13:08 -05004151 BUG_ON(!list_empty(pages));
4152 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004153 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004154 return 0;
4155}
Chris Masond1310b22008-01-24 16:13:08 -05004156
4157/*
4158 * basic invalidatepage code, this waits on any locked or writeback
4159 * ranges corresponding to the page, and then deletes any extent state
4160 * records from the tree
4161 */
4162int extent_invalidatepage(struct extent_io_tree *tree,
4163 struct page *page, unsigned long offset)
4164{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004165 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004166 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004167 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004168 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4169
Qu Wenruofda28322013-02-26 08:10:22 +00004170 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004171 if (start > end)
4172 return 0;
4173
David Sterbaff13db42015-12-03 14:30:40 +01004174 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004175 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004176 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004177 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4178 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004179 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004180 return 0;
4181}
Chris Masond1310b22008-01-24 16:13:08 -05004182
4183/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004184 * a helper for releasepage, this tests for areas of the page that
4185 * are locked or under IO and drops the related state bits if it is safe
4186 * to drop the page.
4187 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004188static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004189 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004190{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004191 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004192 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004193 int ret = 1;
4194
Chris Mason211f90e2008-07-18 11:56:15 -04004195 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004196 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004197 ret = 0;
4198 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004199 /*
4200 * at this point we can safely clear everything except the
4201 * locked bit and the nodatasum bit
4202 */
David Sterba66b0c882017-10-31 16:30:47 +01004203 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004204 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004205 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004206
4207 /* if clear_extent_bit failed for enomem reasons,
4208 * we can't allow the release to continue.
4209 */
4210 if (ret < 0)
4211 ret = 0;
4212 else
4213 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004214 }
4215 return ret;
4216}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004217
4218/*
Chris Masond1310b22008-01-24 16:13:08 -05004219 * a helper for releasepage. As long as there are no locked extents
4220 * in the range corresponding to the page, both state records and extent
4221 * map records are removed
4222 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004223int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004224{
4225 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004226 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004227 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004228 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4229 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4230 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004231
Mel Gormand0164ad2015-11-06 16:28:21 -08004232 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004233 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004234 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004235 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004236 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004237 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004238 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004239 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004240 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004241 break;
4242 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004243 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4244 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004245 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004246 free_extent_map(em);
4247 break;
4248 }
4249 if (!test_range_bit(tree, em->start,
4250 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004251 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004252 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004253 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4254 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004255 remove_extent_mapping(map, em);
4256 /* once for the rb tree */
4257 free_extent_map(em);
4258 }
4259 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004260 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004261
4262 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004263 free_extent_map(em);
4264 }
Chris Masond1310b22008-01-24 16:13:08 -05004265 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004266 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004267}
Chris Masond1310b22008-01-24 16:13:08 -05004268
Chris Masonec29ed52011-02-23 16:23:20 -05004269/*
4270 * helper function for fiemap, which doesn't want to see any holes.
4271 * This maps until we find something past 'last'
4272 */
4273static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004274 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004275{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004276 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004277 struct extent_map *em;
4278 u64 len;
4279
4280 if (offset >= last)
4281 return NULL;
4282
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304283 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004284 len = last - offset;
4285 if (len == 0)
4286 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004287 len = ALIGN(len, sectorsize);
David Sterbae3350e12017-06-23 04:09:57 +02004288 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0, offset,
4289 len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004290 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004291 return em;
4292
4293 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004294 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004295 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004296
4297 /* this is a hole, advance to the next extent */
4298 offset = extent_map_end(em);
4299 free_extent_map(em);
4300 if (offset >= last)
4301 break;
4302 }
4303 return NULL;
4304}
4305
Qu Wenruo47518322017-04-07 10:43:15 +08004306/*
4307 * To cache previous fiemap extent
4308 *
4309 * Will be used for merging fiemap extent
4310 */
4311struct fiemap_cache {
4312 u64 offset;
4313 u64 phys;
4314 u64 len;
4315 u32 flags;
4316 bool cached;
4317};
4318
4319/*
4320 * Helper to submit fiemap extent.
4321 *
4322 * Will try to merge current fiemap extent specified by @offset, @phys,
4323 * @len and @flags with cached one.
4324 * And only when we fails to merge, cached one will be submitted as
4325 * fiemap extent.
4326 *
4327 * Return value is the same as fiemap_fill_next_extent().
4328 */
4329static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4330 struct fiemap_cache *cache,
4331 u64 offset, u64 phys, u64 len, u32 flags)
4332{
4333 int ret = 0;
4334
4335 if (!cache->cached)
4336 goto assign;
4337
4338 /*
4339 * Sanity check, extent_fiemap() should have ensured that new
4340 * fiemap extent won't overlap with cahced one.
4341 * Not recoverable.
4342 *
4343 * NOTE: Physical address can overlap, due to compression
4344 */
4345 if (cache->offset + cache->len > offset) {
4346 WARN_ON(1);
4347 return -EINVAL;
4348 }
4349
4350 /*
4351 * Only merges fiemap extents if
4352 * 1) Their logical addresses are continuous
4353 *
4354 * 2) Their physical addresses are continuous
4355 * So truly compressed (physical size smaller than logical size)
4356 * extents won't get merged with each other
4357 *
4358 * 3) Share same flags except FIEMAP_EXTENT_LAST
4359 * So regular extent won't get merged with prealloc extent
4360 */
4361 if (cache->offset + cache->len == offset &&
4362 cache->phys + cache->len == phys &&
4363 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4364 (flags & ~FIEMAP_EXTENT_LAST)) {
4365 cache->len += len;
4366 cache->flags |= flags;
4367 goto try_submit_last;
4368 }
4369
4370 /* Not mergeable, need to submit cached one */
4371 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4372 cache->len, cache->flags);
4373 cache->cached = false;
4374 if (ret)
4375 return ret;
4376assign:
4377 cache->cached = true;
4378 cache->offset = offset;
4379 cache->phys = phys;
4380 cache->len = len;
4381 cache->flags = flags;
4382try_submit_last:
4383 if (cache->flags & FIEMAP_EXTENT_LAST) {
4384 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4385 cache->phys, cache->len, cache->flags);
4386 cache->cached = false;
4387 }
4388 return ret;
4389}
4390
4391/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004392 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004393 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004394 * The last fiemap cache may still be cached in the following case:
4395 * 0 4k 8k
4396 * |<- Fiemap range ->|
4397 * |<------------ First extent ----------->|
4398 *
4399 * In this case, the first extent range will be cached but not emitted.
4400 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004401 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004402static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4403 struct fiemap_extent_info *fieinfo,
4404 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004405{
4406 int ret;
4407
4408 if (!cache->cached)
4409 return 0;
4410
Qu Wenruo47518322017-04-07 10:43:15 +08004411 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4412 cache->len, cache->flags);
4413 cache->cached = false;
4414 if (ret > 0)
4415 ret = 0;
4416 return ret;
4417}
4418
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004419int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004420 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004421{
Josef Bacik975f84f2010-11-23 19:36:57 +00004422 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004423 u64 off = start;
4424 u64 max = start + len;
4425 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004426 u32 found_type;
4427 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004428 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004429 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004430 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004431 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004432 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004433 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004434 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004435 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004436 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004437 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004438 u64 em_start = 0;
4439 u64 em_len = 0;
4440 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004441
4442 if (len == 0)
4443 return -EINVAL;
4444
Josef Bacik975f84f2010-11-23 19:36:57 +00004445 path = btrfs_alloc_path();
4446 if (!path)
4447 return -ENOMEM;
4448 path->leave_spinning = 1;
4449
Jeff Mahoneyda170662016-06-15 09:22:56 -04004450 start = round_down(start, btrfs_inode_sectorsize(inode));
4451 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004452
Chris Masonec29ed52011-02-23 16:23:20 -05004453 /*
4454 * lookup the last file extent. We're not using i_size here
4455 * because there might be preallocation past i_size
4456 */
David Sterbaf85b7372017-01-20 14:54:07 +01004457 ret = btrfs_lookup_file_extent(NULL, root, path,
4458 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004459 if (ret < 0) {
4460 btrfs_free_path(path);
4461 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004462 } else {
4463 WARN_ON(!ret);
4464 if (ret == 1)
4465 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004466 }
Liu Bo2d324f52016-05-17 17:21:48 -07004467
Josef Bacik975f84f2010-11-23 19:36:57 +00004468 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004469 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004470 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004471
Chris Masonec29ed52011-02-23 16:23:20 -05004472 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004473 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004474 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004475 /* have to trust i_size as the end */
4476 last = (u64)-1;
4477 last_for_get_extent = isize;
4478 } else {
4479 /*
4480 * remember the start of the last extent. There are a
4481 * bunch of different factors that go into the length of the
4482 * extent, so its much less complex to remember where it started
4483 */
4484 last = found_key.offset;
4485 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004486 }
Liu Bofe09e162013-09-22 12:54:23 +08004487 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004488
Chris Masonec29ed52011-02-23 16:23:20 -05004489 /*
4490 * we might have some extents allocated but more delalloc past those
4491 * extents. so, we trust isize unless the start of the last extent is
4492 * beyond isize
4493 */
4494 if (last < isize) {
4495 last = (u64)-1;
4496 last_for_get_extent = isize;
4497 }
4498
David Sterbaff13db42015-12-03 14:30:40 +01004499 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004500 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004501
David Sterbae3350e12017-06-23 04:09:57 +02004502 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004503 if (!em)
4504 goto out;
4505 if (IS_ERR(em)) {
4506 ret = PTR_ERR(em);
4507 goto out;
4508 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004509
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004510 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004511 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004512
Chris Masonea8efc72011-03-08 11:54:40 -05004513 /* break if the extent we found is outside the range */
4514 if (em->start >= max || extent_map_end(em) < off)
4515 break;
4516
4517 /*
4518 * get_extent may return an extent that starts before our
4519 * requested range. We have to make sure the ranges
4520 * we return to fiemap always move forward and don't
4521 * overlap, so adjust the offsets here
4522 */
4523 em_start = max(em->start, off);
4524
4525 /*
4526 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004527 * for adjusting the disk offset below. Only do this if the
4528 * extent isn't compressed since our in ram offset may be past
4529 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004530 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004531 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4532 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004533 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004534 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004535 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004536 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4537 disko = em->block_start + offset_in_extent;
4538 else
4539 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004540
Chris Masonea8efc72011-03-08 11:54:40 -05004541 /*
4542 * bump off for our next call to get_extent
4543 */
4544 off = extent_map_end(em);
4545 if (off >= max)
4546 end = 1;
4547
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004548 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004549 end = 1;
4550 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004551 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004552 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4553 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004554 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004555 flags |= (FIEMAP_EXTENT_DELALLOC |
4556 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004557 } else if (fieinfo->fi_extents_max) {
4558 u64 bytenr = em->block_start -
4559 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004560
Liu Bofe09e162013-09-22 12:54:23 +08004561 /*
4562 * As btrfs supports shared space, this information
4563 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004564 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4565 * then we're just getting a count and we can skip the
4566 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004567 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004568 ret = btrfs_check_shared(root,
4569 btrfs_ino(BTRFS_I(inode)),
4570 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004571 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004572 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004573 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004574 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004575 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004576 }
4577 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4578 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004579 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4580 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004581
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004582 free_extent_map(em);
4583 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004584 if ((em_start >= last) || em_len == (u64)-1 ||
4585 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004586 flags |= FIEMAP_EXTENT_LAST;
4587 end = 1;
4588 }
4589
Chris Masonec29ed52011-02-23 16:23:20 -05004590 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004591 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004592 if (IS_ERR(em)) {
4593 ret = PTR_ERR(em);
4594 goto out;
4595 }
4596 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004597 flags |= FIEMAP_EXTENT_LAST;
4598 end = 1;
4599 }
Qu Wenruo47518322017-04-07 10:43:15 +08004600 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4601 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004602 if (ret) {
4603 if (ret == 1)
4604 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004605 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004606 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004607 }
4608out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004609 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004610 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004611 free_extent_map(em);
4612out:
Liu Bofe09e162013-09-22 12:54:23 +08004613 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004614 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004615 &cached_state);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004616 return ret;
4617}
4618
Chris Mason727011e2010-08-06 13:21:20 -04004619static void __free_extent_buffer(struct extent_buffer *eb)
4620{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004621 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004622 kmem_cache_free(extent_buffer_cache, eb);
4623}
4624
Josef Bacika26e8c92014-03-28 17:07:27 -04004625int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004626{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004627 return (atomic_read(&eb->io_pages) ||
4628 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4629 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004630}
4631
Miao Xie897ca6e92010-10-26 20:57:29 -04004632/*
David Sterba55ac0132018-07-19 17:24:32 +02004633 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004634 */
David Sterba55ac0132018-07-19 17:24:32 +02004635static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004636{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004637 int i;
4638 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004639 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004640
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004641 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004642
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004643 num_pages = num_extent_pages(eb);
4644 for (i = 0; i < num_pages; i++) {
4645 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004646
Forrest Liu5d2361d2015-02-09 17:31:45 +08004647 if (!page)
4648 continue;
4649 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004650 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004651 /*
4652 * We do this since we'll remove the pages after we've
4653 * removed the eb from the radix tree, so we could race
4654 * and have this page now attached to the new eb. So
4655 * only clear page_private if it's still connected to
4656 * this eb.
4657 */
4658 if (PagePrivate(page) &&
4659 page->private == (unsigned long)eb) {
4660 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4661 BUG_ON(PageDirty(page));
4662 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004663 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004664 * We need to make sure we haven't be attached
4665 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004666 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004667 ClearPagePrivate(page);
4668 set_page_private(page, 0);
4669 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004670 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004671 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004672
4673 if (mapped)
4674 spin_unlock(&page->mapping->private_lock);
4675
Nicholas D Steeves01327612016-05-19 21:18:45 -04004676 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004677 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004678 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004679}
4680
4681/*
4682 * Helper for releasing the extent buffer.
4683 */
4684static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4685{
David Sterba55ac0132018-07-19 17:24:32 +02004686 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004687 __free_extent_buffer(eb);
4688}
4689
Josef Bacikf28491e2013-12-16 13:24:27 -05004690static struct extent_buffer *
4691__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004692 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004693{
4694 struct extent_buffer *eb = NULL;
4695
Michal Hockod1b5c562015-08-19 14:17:40 +02004696 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004697 eb->start = start;
4698 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004699 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004700 eb->bflags = 0;
4701 rwlock_init(&eb->lock);
4702 atomic_set(&eb->write_locks, 0);
4703 atomic_set(&eb->read_locks, 0);
4704 atomic_set(&eb->blocking_readers, 0);
4705 atomic_set(&eb->blocking_writers, 0);
4706 atomic_set(&eb->spinning_readers, 0);
4707 atomic_set(&eb->spinning_writers, 0);
4708 eb->lock_nested = 0;
4709 init_waitqueue_head(&eb->write_lock_wq);
4710 init_waitqueue_head(&eb->read_lock_wq);
4711
4712 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4713
4714 spin_lock_init(&eb->refs_lock);
4715 atomic_set(&eb->refs, 1);
4716 atomic_set(&eb->io_pages, 0);
4717
4718 /*
4719 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4720 */
4721 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4722 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4723 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4724
4725 return eb;
4726}
4727
4728struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4729{
David Sterbacc5e31a2018-03-01 18:20:27 +01004730 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004731 struct page *p;
4732 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004733 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004734
David Sterba3f556f72014-06-15 03:20:26 +02004735 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004736 if (new == NULL)
4737 return NULL;
4738
4739 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004740 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004741 if (!p) {
4742 btrfs_release_extent_buffer(new);
4743 return NULL;
4744 }
4745 attach_extent_buffer_page(new, p);
4746 WARN_ON(PageDirty(p));
4747 SetPageUptodate(p);
4748 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004749 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004750 }
4751
Josef Bacikdb7f3432013-08-07 14:54:37 -04004752 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004753 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004754
4755 return new;
4756}
4757
Omar Sandoval0f331222015-09-29 20:50:31 -07004758struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4759 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004760{
4761 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004762 int num_pages;
4763 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004764
David Sterba3f556f72014-06-15 03:20:26 +02004765 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004766 if (!eb)
4767 return NULL;
4768
David Sterba65ad0102018-06-29 10:56:49 +02004769 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004770 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004771 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004772 if (!eb->pages[i])
4773 goto err;
4774 }
4775 set_extent_buffer_uptodate(eb);
4776 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004777 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004778
4779 return eb;
4780err:
4781 for (; i > 0; i--)
4782 __free_page(eb->pages[i - 1]);
4783 __free_extent_buffer(eb);
4784 return NULL;
4785}
4786
Omar Sandoval0f331222015-09-29 20:50:31 -07004787struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004788 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004789{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004790 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004791}
4792
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004793static void check_buffer_tree_ref(struct extent_buffer *eb)
4794{
Chris Mason242e18c2013-01-29 17:49:37 -05004795 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004796 /* the ref bit is tricky. We have to make sure it is set
4797 * if we have the buffer dirty. Otherwise the
4798 * code to free a buffer can end up dropping a dirty
4799 * page
4800 *
4801 * Once the ref bit is set, it won't go away while the
4802 * buffer is dirty or in writeback, and it also won't
4803 * go away while we have the reference count on the
4804 * eb bumped.
4805 *
4806 * We can't just set the ref bit without bumping the
4807 * ref on the eb because free_extent_buffer might
4808 * see the ref bit and try to clear it. If this happens
4809 * free_extent_buffer might end up dropping our original
4810 * ref by mistake and freeing the page before we are able
4811 * to add one more ref.
4812 *
4813 * So bump the ref count first, then set the bit. If someone
4814 * beat us to it, drop the ref we added.
4815 */
Chris Mason242e18c2013-01-29 17:49:37 -05004816 refs = atomic_read(&eb->refs);
4817 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4818 return;
4819
Josef Bacik594831c2012-07-20 16:11:08 -04004820 spin_lock(&eb->refs_lock);
4821 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004822 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004823 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004824}
4825
Mel Gorman2457aec2014-06-04 16:10:31 -07004826static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4827 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004828{
David Sterbacc5e31a2018-03-01 18:20:27 +01004829 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004830
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004831 check_buffer_tree_ref(eb);
4832
David Sterba65ad0102018-06-29 10:56:49 +02004833 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004834 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004835 struct page *p = eb->pages[i];
4836
Mel Gorman2457aec2014-06-04 16:10:31 -07004837 if (p != accessed)
4838 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004839 }
4840}
4841
Josef Bacikf28491e2013-12-16 13:24:27 -05004842struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4843 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004844{
4845 struct extent_buffer *eb;
4846
4847 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004848 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004849 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004850 if (eb && atomic_inc_not_zero(&eb->refs)) {
4851 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004852 /*
4853 * Lock our eb's refs_lock to avoid races with
4854 * free_extent_buffer. When we get our eb it might be flagged
4855 * with EXTENT_BUFFER_STALE and another task running
4856 * free_extent_buffer might have seen that flag set,
4857 * eb->refs == 2, that the buffer isn't under IO (dirty and
4858 * writeback flags not set) and it's still in the tree (flag
4859 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4860 * of decrementing the extent buffer's reference count twice.
4861 * So here we could race and increment the eb's reference count,
4862 * clear its stale flag, mark it as dirty and drop our reference
4863 * before the other task finishes executing free_extent_buffer,
4864 * which would later result in an attempt to free an extent
4865 * buffer that is dirty.
4866 */
4867 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4868 spin_lock(&eb->refs_lock);
4869 spin_unlock(&eb->refs_lock);
4870 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004871 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004872 return eb;
4873 }
4874 rcu_read_unlock();
4875
4876 return NULL;
4877}
4878
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004879#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4880struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004881 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004882{
4883 struct extent_buffer *eb, *exists = NULL;
4884 int ret;
4885
4886 eb = find_extent_buffer(fs_info, start);
4887 if (eb)
4888 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004889 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004890 if (!eb)
4891 return NULL;
4892 eb->fs_info = fs_info;
4893again:
David Sterbae1860a72016-05-09 14:11:38 +02004894 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004895 if (ret)
4896 goto free_eb;
4897 spin_lock(&fs_info->buffer_lock);
4898 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004899 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004900 spin_unlock(&fs_info->buffer_lock);
4901 radix_tree_preload_end();
4902 if (ret == -EEXIST) {
4903 exists = find_extent_buffer(fs_info, start);
4904 if (exists)
4905 goto free_eb;
4906 else
4907 goto again;
4908 }
4909 check_buffer_tree_ref(eb);
4910 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4911
4912 /*
4913 * We will free dummy extent buffer's if they come into
4914 * free_extent_buffer with a ref count of 2, but if we are using this we
4915 * want the buffers to stay in memory until we're done with them, so
4916 * bump the ref count again.
4917 */
4918 atomic_inc(&eb->refs);
4919 return eb;
4920free_eb:
4921 btrfs_release_extent_buffer(eb);
4922 return exists;
4923}
4924#endif
4925
Josef Bacikf28491e2013-12-16 13:24:27 -05004926struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004927 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004928{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004929 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01004930 int num_pages;
4931 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004932 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004933 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004934 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004935 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004936 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004937 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004938 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004939
Jeff Mahoneyda170662016-06-15 09:22:56 -04004940 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004941 btrfs_err(fs_info, "bad tree block start %llu", start);
4942 return ERR_PTR(-EINVAL);
4943 }
4944
Josef Bacikf28491e2013-12-16 13:24:27 -05004945 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004946 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004947 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004948
David Sterba23d79d82014-06-15 02:55:29 +02004949 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004950 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004951 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004952
David Sterba65ad0102018-06-29 10:56:49 +02004953 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04004954 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004955 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004956 if (!p) {
4957 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004958 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004959 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004960
4961 spin_lock(&mapping->private_lock);
4962 if (PagePrivate(p)) {
4963 /*
4964 * We could have already allocated an eb for this page
4965 * and attached one so lets see if we can get a ref on
4966 * the existing eb, and if we can we know it's good and
4967 * we can just return that one, else we know we can just
4968 * overwrite page->private.
4969 */
4970 exists = (struct extent_buffer *)p->private;
4971 if (atomic_inc_not_zero(&exists->refs)) {
4972 spin_unlock(&mapping->private_lock);
4973 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004974 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004975 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004976 goto free_eb;
4977 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004978 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004979
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004980 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004981 * Do this so attach doesn't complain and we need to
4982 * drop the ref the old guy had.
4983 */
4984 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004985 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004986 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05004987 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004988 attach_extent_buffer_page(eb, p);
4989 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004990 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004991 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004992 if (!PageUptodate(p))
4993 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004994
4995 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03004996 * We can't unlock the pages just yet since the extent buffer
4997 * hasn't been properly inserted in the radix tree, this
4998 * opens a race with btree_releasepage which can free a page
4999 * while we are still filling in all pages for the buffer and
5000 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05005001 */
Chris Masond1310b22008-01-24 16:13:08 -05005002 }
5003 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005004 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005005again:
David Sterbae1860a72016-05-09 14:11:38 +02005006 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005007 if (ret) {
5008 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005009 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005010 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005011
Josef Bacikf28491e2013-12-16 13:24:27 -05005012 spin_lock(&fs_info->buffer_lock);
5013 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005014 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005015 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005016 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005017 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005018 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005019 if (exists)
5020 goto free_eb;
5021 else
Josef Bacik115391d2012-03-09 09:51:43 -05005022 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005023 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005024 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005025 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005026 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005027
5028 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005029 * Now it's safe to unlock the pages because any calls to
5030 * btree_releasepage will correctly detect that a page belongs to a
5031 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005032 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005033 for (i = 0; i < num_pages; i++)
5034 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005035 return eb;
5036
Chris Mason6af118ce2008-07-22 11:18:07 -04005037free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005038 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005039 for (i = 0; i < num_pages; i++) {
5040 if (eb->pages[i])
5041 unlock_page(eb->pages[i]);
5042 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005043
Miao Xie897ca6e92010-10-26 20:57:29 -04005044 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005045 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005046}
Chris Masond1310b22008-01-24 16:13:08 -05005047
Josef Bacik3083ee22012-03-09 16:01:49 -05005048static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5049{
5050 struct extent_buffer *eb =
5051 container_of(head, struct extent_buffer, rcu_head);
5052
5053 __free_extent_buffer(eb);
5054}
5055
David Sterbaf7a52a42013-04-26 14:56:29 +00005056static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005057{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005058 lockdep_assert_held(&eb->refs_lock);
5059
Josef Bacik3083ee22012-03-09 16:01:49 -05005060 WARN_ON(atomic_read(&eb->refs) == 0);
5061 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005062 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005063 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005064
Jan Schmidt815a51c2012-05-16 17:00:02 +02005065 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005066
Josef Bacikf28491e2013-12-16 13:24:27 -05005067 spin_lock(&fs_info->buffer_lock);
5068 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005069 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005070 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005071 } else {
5072 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005073 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005074
5075 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005076 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005077#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005078 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005079 __free_extent_buffer(eb);
5080 return 1;
5081 }
5082#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005083 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005084 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005085 }
5086 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005087
5088 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005089}
5090
Chris Masond1310b22008-01-24 16:13:08 -05005091void free_extent_buffer(struct extent_buffer *eb)
5092{
Chris Mason242e18c2013-01-29 17:49:37 -05005093 int refs;
5094 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005095 if (!eb)
5096 return;
5097
Chris Mason242e18c2013-01-29 17:49:37 -05005098 while (1) {
5099 refs = atomic_read(&eb->refs);
5100 if (refs <= 3)
5101 break;
5102 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5103 if (old == refs)
5104 return;
5105 }
5106
Josef Bacik3083ee22012-03-09 16:01:49 -05005107 spin_lock(&eb->refs_lock);
5108 if (atomic_read(&eb->refs) == 2 &&
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005109 test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))
Jan Schmidt815a51c2012-05-16 17:00:02 +02005110 atomic_dec(&eb->refs);
5111
5112 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005113 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005114 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005115 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5116 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005117
Josef Bacik3083ee22012-03-09 16:01:49 -05005118 /*
5119 * I know this is terrible, but it's temporary until we stop tracking
5120 * the uptodate bits and such for the extent buffers.
5121 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005122 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005123}
Chris Masond1310b22008-01-24 16:13:08 -05005124
Josef Bacik3083ee22012-03-09 16:01:49 -05005125void free_extent_buffer_stale(struct extent_buffer *eb)
5126{
5127 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005128 return;
5129
Josef Bacik3083ee22012-03-09 16:01:49 -05005130 spin_lock(&eb->refs_lock);
5131 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5132
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005133 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005134 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5135 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005136 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005137}
5138
Chris Mason1d4284b2012-03-28 20:31:37 -04005139void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005140{
David Sterbacc5e31a2018-03-01 18:20:27 +01005141 int i;
5142 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005143 struct page *page;
5144
David Sterba65ad0102018-06-29 10:56:49 +02005145 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005146
5147 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005148 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005149 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005150 continue;
5151
Chris Masona61e6f22008-07-22 11:18:08 -04005152 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005153 WARN_ON(!PagePrivate(page));
5154
Chris Masond1310b22008-01-24 16:13:08 -05005155 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005156 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005157 if (!PageDirty(page))
5158 __xa_clear_mark(&page->mapping->i_pages,
5159 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005160 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005161 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005162 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005163 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005164 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005165}
Chris Masond1310b22008-01-24 16:13:08 -05005166
Liu Boabb57ef2018-09-14 01:44:42 +08005167bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005168{
David Sterbacc5e31a2018-03-01 18:20:27 +01005169 int i;
5170 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005171 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005172
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005173 check_buffer_tree_ref(eb);
5174
Chris Masonb9473432009-03-13 11:00:37 -04005175 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005176
David Sterba65ad0102018-06-29 10:56:49 +02005177 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005178 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005179 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5180
Liu Boabb57ef2018-09-14 01:44:42 +08005181 if (!was_dirty)
5182 for (i = 0; i < num_pages; i++)
5183 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005184
5185#ifdef CONFIG_BTRFS_DEBUG
5186 for (i = 0; i < num_pages; i++)
5187 ASSERT(PageDirty(eb->pages[i]));
5188#endif
5189
Chris Masonb9473432009-03-13 11:00:37 -04005190 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005191}
Chris Masond1310b22008-01-24 16:13:08 -05005192
David Sterba69ba3922015-12-03 13:08:59 +01005193void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005194{
David Sterbacc5e31a2018-03-01 18:20:27 +01005195 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005196 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005197 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005198
Chris Masonb4ce94d2009-02-04 09:25:08 -05005199 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005200 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005201 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005202 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005203 if (page)
5204 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005205 }
Chris Mason1259ab72008-05-12 13:39:03 -04005206}
5207
David Sterba09c25a82015-12-03 13:08:59 +01005208void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005209{
David Sterbacc5e31a2018-03-01 18:20:27 +01005210 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005211 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005212 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005213
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005214 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005215 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005216 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005217 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005218 SetPageUptodate(page);
5219 }
Chris Masond1310b22008-01-24 16:13:08 -05005220}
Chris Masond1310b22008-01-24 16:13:08 -05005221
Chris Masond1310b22008-01-24 16:13:08 -05005222int read_extent_buffer_pages(struct extent_io_tree *tree,
David Sterba6af49db2017-06-23 04:09:57 +02005223 struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005224{
David Sterbacc5e31a2018-03-01 18:20:27 +01005225 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005226 struct page *page;
5227 int err;
5228 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005229 int locked_pages = 0;
5230 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005231 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005232 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005233 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005234 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005235
Chris Masonb4ce94d2009-02-04 09:25:08 -05005236 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005237 return 0;
5238
David Sterba65ad0102018-06-29 10:56:49 +02005239 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005240 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005241 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005242 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005243 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005244 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005245 } else {
5246 lock_page(page);
5247 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005248 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005249 }
5250 /*
5251 * We need to firstly lock all pages to make sure that
5252 * the uptodate bit of our pages won't be affected by
5253 * clear_extent_buffer_uptodate().
5254 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005255 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005256 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005257 if (!PageUptodate(page)) {
5258 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005259 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005260 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005261 }
Liu Bo2571e732016-08-03 12:33:01 -07005262
Chris Masonce9adaa2008-04-09 16:28:12 -04005263 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005264 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005265 goto unlock_exit;
5266 }
5267
Filipe Manana656f30d2014-09-26 12:25:56 +01005268 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005269 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005270 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005271 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005272 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005273
Chris Masonce9adaa2008-04-09 16:28:12 -04005274 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005275 if (ret) {
5276 atomic_dec(&eb->io_pages);
5277 unlock_page(page);
5278 continue;
5279 }
5280
Chris Masonf1885912008-04-09 16:28:12 -04005281 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005282 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005283 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005284 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005285 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005286 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005287 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005288 /*
5289 * We use &bio in above __extent_read_full_page,
5290 * so we ensure that if it returns error, the
5291 * current page fails to add itself to bio and
5292 * it's been unlocked.
5293 *
5294 * We must dec io_pages by ourselves.
5295 */
5296 atomic_dec(&eb->io_pages);
5297 }
Chris Masond1310b22008-01-24 16:13:08 -05005298 } else {
5299 unlock_page(page);
5300 }
5301 }
5302
Jeff Mahoney355808c2011-10-03 23:23:14 -04005303 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005304 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005305 if (err)
5306 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005307 }
Chris Masona86c12c2008-02-07 10:50:54 -05005308
Arne Jansenbb82ab82011-06-10 14:06:53 +02005309 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005310 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005311
Josef Bacik8436ea912016-09-02 15:40:03 -04005312 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005313 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005314 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005315 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005316 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005317 }
Chris Masond3977122009-01-05 21:25:51 -05005318
Chris Masond1310b22008-01-24 16:13:08 -05005319 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005320
5321unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005322 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005323 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005324 page = eb->pages[locked_pages];
5325 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005326 }
5327 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005328}
Chris Masond1310b22008-01-24 16:13:08 -05005329
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005330void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5331 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005332{
5333 size_t cur;
5334 size_t offset;
5335 struct page *page;
5336 char *kaddr;
5337 char *dst = (char *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005338 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5339 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005340
Liu Bof716abd2017-08-09 11:10:16 -06005341 if (start + len > eb->len) {
5342 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5343 eb->start, eb->len, start, len);
5344 memset(dst, 0, len);
5345 return;
5346 }
Chris Masond1310b22008-01-24 16:13:08 -05005347
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005348 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005349
Chris Masond3977122009-01-05 21:25:51 -05005350 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005351 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005352
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005353 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005354 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005355 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005356
5357 dst += cur;
5358 len -= cur;
5359 offset = 0;
5360 i++;
5361 }
5362}
Chris Masond1310b22008-01-24 16:13:08 -05005363
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005364int read_extent_buffer_to_user(const struct extent_buffer *eb,
5365 void __user *dstv,
5366 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005367{
5368 size_t cur;
5369 size_t offset;
5370 struct page *page;
5371 char *kaddr;
5372 char __user *dst = (char __user *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005373 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5374 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005375 int ret = 0;
5376
5377 WARN_ON(start > eb->len);
5378 WARN_ON(start + len > eb->start + eb->len);
5379
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005380 offset = (start_offset + start) & (PAGE_SIZE - 1);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005381
5382 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005383 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005384
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005385 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005386 kaddr = page_address(page);
5387 if (copy_to_user(dst, kaddr + offset, cur)) {
5388 ret = -EFAULT;
5389 break;
5390 }
5391
5392 dst += cur;
5393 len -= cur;
5394 offset = 0;
5395 i++;
5396 }
5397
5398 return ret;
5399}
5400
Liu Bo415b35a2016-06-17 19:16:21 -07005401/*
5402 * return 0 if the item is found within a page.
5403 * return 1 if the item spans two pages.
5404 * return -EINVAL otherwise.
5405 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005406int map_private_extent_buffer(const struct extent_buffer *eb,
5407 unsigned long start, unsigned long min_len,
5408 char **map, unsigned long *map_start,
5409 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005410{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005411 size_t offset = start & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005412 char *kaddr;
5413 struct page *p;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005414 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5415 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005416 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005417 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005418
Liu Bof716abd2017-08-09 11:10:16 -06005419 if (start + min_len > eb->len) {
5420 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5421 eb->start, eb->len, start, min_len);
5422 return -EINVAL;
5423 }
5424
Chris Masond1310b22008-01-24 16:13:08 -05005425 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005426 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005427
5428 if (i == 0) {
5429 offset = start_offset;
5430 *map_start = 0;
5431 } else {
5432 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005433 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005434 }
Chris Masond3977122009-01-05 21:25:51 -05005435
David Sterbafb85fc92014-07-31 01:03:53 +02005436 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005437 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005438 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005439 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005440 return 0;
5441}
Chris Masond1310b22008-01-24 16:13:08 -05005442
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005443int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5444 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005445{
5446 size_t cur;
5447 size_t offset;
5448 struct page *page;
5449 char *kaddr;
5450 char *ptr = (char *)ptrv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005451 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5452 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005453 int ret = 0;
5454
5455 WARN_ON(start > eb->len);
5456 WARN_ON(start + len > eb->start + eb->len);
5457
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005458 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005459
Chris Masond3977122009-01-05 21:25:51 -05005460 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005461 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005462
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005463 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005464
Chris Masona6591712011-07-19 12:04:14 -04005465 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005466 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005467 if (ret)
5468 break;
5469
5470 ptr += cur;
5471 len -= cur;
5472 offset = 0;
5473 i++;
5474 }
5475 return ret;
5476}
Chris Masond1310b22008-01-24 16:13:08 -05005477
David Sterbaf157bf72016-11-09 17:43:38 +01005478void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5479 const void *srcv)
5480{
5481 char *kaddr;
5482
5483 WARN_ON(!PageUptodate(eb->pages[0]));
5484 kaddr = page_address(eb->pages[0]);
5485 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5486 BTRFS_FSID_SIZE);
5487}
5488
5489void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5490{
5491 char *kaddr;
5492
5493 WARN_ON(!PageUptodate(eb->pages[0]));
5494 kaddr = page_address(eb->pages[0]);
5495 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5496 BTRFS_FSID_SIZE);
5497}
5498
Chris Masond1310b22008-01-24 16:13:08 -05005499void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5500 unsigned long start, unsigned long len)
5501{
5502 size_t cur;
5503 size_t offset;
5504 struct page *page;
5505 char *kaddr;
5506 char *src = (char *)srcv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005507 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5508 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005509
5510 WARN_ON(start > eb->len);
5511 WARN_ON(start + len > eb->start + eb->len);
5512
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005513 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005514
Chris Masond3977122009-01-05 21:25:51 -05005515 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005516 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005517 WARN_ON(!PageUptodate(page));
5518
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005519 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005520 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005521 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005522
5523 src += cur;
5524 len -= cur;
5525 offset = 0;
5526 i++;
5527 }
5528}
Chris Masond1310b22008-01-24 16:13:08 -05005529
David Sterbab159fa22016-11-08 18:09:03 +01005530void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5531 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005532{
5533 size_t cur;
5534 size_t offset;
5535 struct page *page;
5536 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005537 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5538 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005539
5540 WARN_ON(start > eb->len);
5541 WARN_ON(start + len > eb->start + eb->len);
5542
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005543 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005544
Chris Masond3977122009-01-05 21:25:51 -05005545 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005546 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005547 WARN_ON(!PageUptodate(page));
5548
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005549 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005550 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005551 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005552
5553 len -= cur;
5554 offset = 0;
5555 i++;
5556 }
5557}
Chris Masond1310b22008-01-24 16:13:08 -05005558
David Sterba58e80122016-11-08 18:30:31 +01005559void copy_extent_buffer_full(struct extent_buffer *dst,
5560 struct extent_buffer *src)
5561{
5562 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005563 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005564
5565 ASSERT(dst->len == src->len);
5566
David Sterba65ad0102018-06-29 10:56:49 +02005567 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005568 for (i = 0; i < num_pages; i++)
5569 copy_page(page_address(dst->pages[i]),
5570 page_address(src->pages[i]));
5571}
5572
Chris Masond1310b22008-01-24 16:13:08 -05005573void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5574 unsigned long dst_offset, unsigned long src_offset,
5575 unsigned long len)
5576{
5577 u64 dst_len = dst->len;
5578 size_t cur;
5579 size_t offset;
5580 struct page *page;
5581 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005582 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
5583 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005584
5585 WARN_ON(src->len != dst_len);
5586
5587 offset = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005588 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005589
Chris Masond3977122009-01-05 21:25:51 -05005590 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005591 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005592 WARN_ON(!PageUptodate(page));
5593
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005594 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005595
Chris Masona6591712011-07-19 12:04:14 -04005596 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005597 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005598
5599 src_offset += cur;
5600 len -= cur;
5601 offset = 0;
5602 i++;
5603 }
5604}
Chris Masond1310b22008-01-24 16:13:08 -05005605
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005606/*
5607 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5608 * given bit number
5609 * @eb: the extent buffer
5610 * @start: offset of the bitmap item in the extent buffer
5611 * @nr: bit number
5612 * @page_index: return index of the page in the extent buffer that contains the
5613 * given bit number
5614 * @page_offset: return offset into the page given by page_index
5615 *
5616 * This helper hides the ugliness of finding the byte in an extent buffer which
5617 * contains a given bit.
5618 */
5619static inline void eb_bitmap_offset(struct extent_buffer *eb,
5620 unsigned long start, unsigned long nr,
5621 unsigned long *page_index,
5622 size_t *page_offset)
5623{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005624 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005625 size_t byte_offset = BIT_BYTE(nr);
5626 size_t offset;
5627
5628 /*
5629 * The byte we want is the offset of the extent buffer + the offset of
5630 * the bitmap item in the extent buffer + the offset of the byte in the
5631 * bitmap item.
5632 */
5633 offset = start_offset + start + byte_offset;
5634
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005635 *page_index = offset >> PAGE_SHIFT;
5636 *page_offset = offset & (PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005637}
5638
5639/**
5640 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5641 * @eb: the extent buffer
5642 * @start: offset of the bitmap item in the extent buffer
5643 * @nr: bit number to test
5644 */
5645int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5646 unsigned long nr)
5647{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005648 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005649 struct page *page;
5650 unsigned long i;
5651 size_t offset;
5652
5653 eb_bitmap_offset(eb, start, nr, &i, &offset);
5654 page = eb->pages[i];
5655 WARN_ON(!PageUptodate(page));
5656 kaddr = page_address(page);
5657 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5658}
5659
5660/**
5661 * extent_buffer_bitmap_set - set an area of a bitmap
5662 * @eb: the extent buffer
5663 * @start: offset of the bitmap item in the extent buffer
5664 * @pos: bit number of the first bit
5665 * @len: number of bits to set
5666 */
5667void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5668 unsigned long pos, unsigned long len)
5669{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005670 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005671 struct page *page;
5672 unsigned long i;
5673 size_t offset;
5674 const unsigned int size = pos + len;
5675 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005676 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005677
5678 eb_bitmap_offset(eb, start, pos, &i, &offset);
5679 page = eb->pages[i];
5680 WARN_ON(!PageUptodate(page));
5681 kaddr = page_address(page);
5682
5683 while (len >= bits_to_set) {
5684 kaddr[offset] |= mask_to_set;
5685 len -= bits_to_set;
5686 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005687 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005688 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005689 offset = 0;
5690 page = eb->pages[++i];
5691 WARN_ON(!PageUptodate(page));
5692 kaddr = page_address(page);
5693 }
5694 }
5695 if (len) {
5696 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5697 kaddr[offset] |= mask_to_set;
5698 }
5699}
5700
5701
5702/**
5703 * extent_buffer_bitmap_clear - clear an area of a bitmap
5704 * @eb: the extent buffer
5705 * @start: offset of the bitmap item in the extent buffer
5706 * @pos: bit number of the first bit
5707 * @len: number of bits to clear
5708 */
5709void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5710 unsigned long pos, unsigned long len)
5711{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005712 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005713 struct page *page;
5714 unsigned long i;
5715 size_t offset;
5716 const unsigned int size = pos + len;
5717 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005718 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005719
5720 eb_bitmap_offset(eb, start, pos, &i, &offset);
5721 page = eb->pages[i];
5722 WARN_ON(!PageUptodate(page));
5723 kaddr = page_address(page);
5724
5725 while (len >= bits_to_clear) {
5726 kaddr[offset] &= ~mask_to_clear;
5727 len -= bits_to_clear;
5728 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005729 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005730 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005731 offset = 0;
5732 page = eb->pages[++i];
5733 WARN_ON(!PageUptodate(page));
5734 kaddr = page_address(page);
5735 }
5736 }
5737 if (len) {
5738 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5739 kaddr[offset] &= ~mask_to_clear;
5740 }
5741}
5742
Sergei Trofimovich33872062011-04-11 21:52:52 +00005743static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5744{
5745 unsigned long distance = (src > dst) ? src - dst : dst - src;
5746 return distance < len;
5747}
5748
Chris Masond1310b22008-01-24 16:13:08 -05005749static void copy_pages(struct page *dst_page, struct page *src_page,
5750 unsigned long dst_off, unsigned long src_off,
5751 unsigned long len)
5752{
Chris Masona6591712011-07-19 12:04:14 -04005753 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005754 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005755 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005756
Sergei Trofimovich33872062011-04-11 21:52:52 +00005757 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005758 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005759 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005760 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005761 if (areas_overlap(src_off, dst_off, len))
5762 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005763 }
Chris Masond1310b22008-01-24 16:13:08 -05005764
Chris Mason727011e2010-08-06 13:21:20 -04005765 if (must_memmove)
5766 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5767 else
5768 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005769}
5770
5771void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5772 unsigned long src_offset, unsigned long len)
5773{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005774 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005775 size_t cur;
5776 size_t dst_off_in_page;
5777 size_t src_off_in_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005778 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005779 unsigned long dst_i;
5780 unsigned long src_i;
5781
5782 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005783 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005784 "memmove bogus src_offset %lu move len %lu dst len %lu",
5785 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005786 BUG_ON(1);
5787 }
5788 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005789 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005790 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5791 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005792 BUG_ON(1);
5793 }
5794
Chris Masond3977122009-01-05 21:25:51 -05005795 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005796 dst_off_in_page = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005797 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005798 src_off_in_page = (start_offset + src_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005799 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005800
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005801 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5802 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005803
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005804 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005805 src_off_in_page));
5806 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005807 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005808
David Sterbafb85fc92014-07-31 01:03:53 +02005809 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005810 dst_off_in_page, src_off_in_page, cur);
5811
5812 src_offset += cur;
5813 dst_offset += cur;
5814 len -= cur;
5815 }
5816}
Chris Masond1310b22008-01-24 16:13:08 -05005817
5818void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5819 unsigned long src_offset, unsigned long len)
5820{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005821 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005822 size_t cur;
5823 size_t dst_off_in_page;
5824 size_t src_off_in_page;
5825 unsigned long dst_end = dst_offset + len - 1;
5826 unsigned long src_end = src_offset + len - 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005827 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005828 unsigned long dst_i;
5829 unsigned long src_i;
5830
5831 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005832 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005833 "memmove bogus src_offset %lu move len %lu len %lu",
5834 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005835 BUG_ON(1);
5836 }
5837 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005838 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005839 "memmove bogus dst_offset %lu move len %lu len %lu",
5840 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005841 BUG_ON(1);
5842 }
Chris Mason727011e2010-08-06 13:21:20 -04005843 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005844 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5845 return;
5846 }
Chris Masond3977122009-01-05 21:25:51 -05005847 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005848 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5849 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005850
5851 dst_off_in_page = (start_offset + dst_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005852 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005853 src_off_in_page = (start_offset + src_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005854 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005855
5856 cur = min_t(unsigned long, len, src_off_in_page + 1);
5857 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005858 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005859 dst_off_in_page - cur + 1,
5860 src_off_in_page - cur + 1, cur);
5861
5862 dst_end -= cur;
5863 src_end -= cur;
5864 len -= cur;
5865 }
5866}
Chris Mason6af118ce2008-07-22 11:18:07 -04005867
David Sterbaf7a52a42013-04-26 14:56:29 +00005868int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005869{
Chris Mason6af118ce2008-07-22 11:18:07 -04005870 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005871
Miao Xie19fe0a82010-10-26 20:57:29 -04005872 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005873 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005874 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005875 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005876 spin_lock(&page->mapping->private_lock);
5877 if (!PagePrivate(page)) {
5878 spin_unlock(&page->mapping->private_lock);
5879 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005880 }
5881
Josef Bacik3083ee22012-03-09 16:01:49 -05005882 eb = (struct extent_buffer *)page->private;
5883 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005884
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005885 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005886 * This is a little awful but should be ok, we need to make sure that
5887 * the eb doesn't disappear out from under us while we're looking at
5888 * this page.
5889 */
5890 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005891 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005892 spin_unlock(&eb->refs_lock);
5893 spin_unlock(&page->mapping->private_lock);
5894 return 0;
5895 }
5896 spin_unlock(&page->mapping->private_lock);
5897
Josef Bacik3083ee22012-03-09 16:01:49 -05005898 /*
5899 * If tree ref isn't set then we know the ref on this eb is a real ref,
5900 * so just return, this page will likely be freed soon anyway.
5901 */
5902 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5903 spin_unlock(&eb->refs_lock);
5904 return 0;
5905 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005906
David Sterbaf7a52a42013-04-26 14:56:29 +00005907 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005908}