blob: b20700ad8752a52f00f4dd07859d43d0551bbc4a [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
Qu Wenruobb58eb92019-01-25 13:09:15 +0800150static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
151 unsigned long bio_flags)
152{
153 blk_status_t ret = 0;
154 struct bio_vec *bvec = bio_last_bvec_all(bio);
155 struct page *page = bvec->bv_page;
156 struct extent_io_tree *tree = bio->bi_private;
157 u64 start;
158
159 start = page_offset(page) + bvec->bv_offset;
160
161 bio->bi_private = NULL;
162
163 if (tree->ops)
164 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
165 mirror_num, bio_flags, start);
166 else
167 btrfsic_submit_bio(bio);
168
169 return blk_status_to_errno(ret);
170}
171
172static void flush_write_bio(struct extent_page_data *epd)
173{
174 if (epd->bio) {
175 int ret;
176
177 ret = submit_one_bio(epd->bio, 0, 0);
178 BUG_ON(ret < 0); /* -ENOMEM */
179 epd->bio = NULL;
180 }
181}
David Sterbae2932ee2017-06-23 04:16:17 +0200182
Chris Masond1310b22008-01-24 16:13:08 -0500183int __init extent_io_init(void)
184{
David Sterba837e1972012-09-07 03:00:48 -0600185 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200186 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300187 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500188 if (!extent_state_cache)
189 return -ENOMEM;
190
David Sterba837e1972012-09-07 03:00:48 -0600191 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200192 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300193 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500194 if (!extent_buffer_cache)
195 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400196
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400197 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
198 offsetof(struct btrfs_io_bio, bio),
199 BIOSET_NEED_BVECS))
Chris Mason9be33952013-05-17 18:30:14 -0400200 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700201
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400202 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700203 goto free_bioset;
204
Chris Masond1310b22008-01-24 16:13:08 -0500205 return 0;
206
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700207free_bioset:
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400208 bioset_exit(&btrfs_bioset);
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700209
Chris Mason9be33952013-05-17 18:30:14 -0400210free_buffer_cache:
211 kmem_cache_destroy(extent_buffer_cache);
212 extent_buffer_cache = NULL;
213
Chris Masond1310b22008-01-24 16:13:08 -0500214free_state_cache:
215 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400216 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500217 return -ENOMEM;
218}
219
David Sterbae67c7182018-02-19 17:24:18 +0100220void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500221{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000222 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000223
224 /*
225 * Make sure all delayed rcu free are flushed before we
226 * destroy caches.
227 */
228 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800229 kmem_cache_destroy(extent_state_cache);
230 kmem_cache_destroy(extent_buffer_cache);
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400231 bioset_exit(&btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500232}
233
234void extent_io_tree_init(struct extent_io_tree *tree,
Josef Bacikc6100a42017-05-05 11:57:13 -0400235 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500236{
Eric Paris6bef4d32010-02-23 19:43:04 +0000237 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500238 tree->ops = NULL;
239 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500240 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400241 tree->private_data = private_data;
Chris Masond1310b22008-01-24 16:13:08 -0500242}
Chris Masond1310b22008-01-24 16:13:08 -0500243
Christoph Hellwigb2950862008-12-02 09:54:17 -0500244static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500245{
246 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500247
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100248 /*
249 * The given mask might be not appropriate for the slab allocator,
250 * drop the unsupported bits
251 */
252 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500253 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400254 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500255 return state;
256 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100257 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100258 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000259 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200260 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500261 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100262 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500263 return state;
264}
Chris Masond1310b22008-01-24 16:13:08 -0500265
Chris Mason4845e442010-05-25 20:56:50 -0400266void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500267{
Chris Masond1310b22008-01-24 16:13:08 -0500268 if (!state)
269 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200270 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100271 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000272 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100273 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500274 kmem_cache_free(extent_state_cache, state);
275 }
276}
Chris Masond1310b22008-01-24 16:13:08 -0500277
Filipe Mananaf2071b22014-02-12 15:05:53 +0000278static struct rb_node *tree_insert(struct rb_root *root,
279 struct rb_node *search_start,
280 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000281 struct rb_node *node,
282 struct rb_node ***p_in,
283 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500284{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000285 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500286 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500287 struct tree_entry *entry;
288
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000289 if (p_in && parent_in) {
290 p = *p_in;
291 parent = *parent_in;
292 goto do_insert;
293 }
294
Filipe Mananaf2071b22014-02-12 15:05:53 +0000295 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500296 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500297 parent = *p;
298 entry = rb_entry(parent, struct tree_entry, rb_node);
299
300 if (offset < entry->start)
301 p = &(*p)->rb_left;
302 else if (offset > entry->end)
303 p = &(*p)->rb_right;
304 else
305 return parent;
306 }
307
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000308do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500309 rb_link_node(node, parent, p);
310 rb_insert_color(node, root);
311 return NULL;
312}
313
Chris Mason80ea96b2008-02-01 14:51:59 -0500314static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000315 struct rb_node **next_ret,
Nikolay Borisov352646c2019-01-30 16:51:00 +0200316 struct rb_node **prev_ret,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000317 struct rb_node ***p_ret,
318 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500319{
Chris Mason80ea96b2008-02-01 14:51:59 -0500320 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000321 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500322 struct rb_node *prev = NULL;
323 struct rb_node *orig_prev = NULL;
324 struct tree_entry *entry;
325 struct tree_entry *prev_entry = NULL;
326
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000327 while (*n) {
328 prev = *n;
329 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500330 prev_entry = entry;
331
332 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000333 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500334 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000335 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500336 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000337 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500338 }
339
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000340 if (p_ret)
341 *p_ret = n;
342 if (parent_ret)
343 *parent_ret = prev;
344
Nikolay Borisov352646c2019-01-30 16:51:00 +0200345 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500346 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500347 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500348 prev = rb_next(prev);
349 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
350 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200351 *next_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500352 prev = orig_prev;
353 }
354
Nikolay Borisov352646c2019-01-30 16:51:00 +0200355 if (prev_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500356 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500357 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500358 prev = rb_prev(prev);
359 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
360 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200361 *prev_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500362 }
363 return NULL;
364}
365
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000366static inline struct rb_node *
367tree_search_for_insert(struct extent_io_tree *tree,
368 u64 offset,
369 struct rb_node ***p_ret,
370 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500371{
Nikolay Borisov352646c2019-01-30 16:51:00 +0200372 struct rb_node *next= NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500373 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500374
Nikolay Borisov352646c2019-01-30 16:51:00 +0200375 ret = __etree_search(tree, offset, &next, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500376 if (!ret)
Nikolay Borisov352646c2019-01-30 16:51:00 +0200377 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500378 return ret;
379}
380
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000381static inline struct rb_node *tree_search(struct extent_io_tree *tree,
382 u64 offset)
383{
384 return tree_search_for_insert(tree, offset, NULL, NULL);
385}
386
Chris Masond1310b22008-01-24 16:13:08 -0500387/*
388 * utility function to look for merge candidates inside a given range.
389 * Any extents with matching state are merged together into a single
390 * extent in the tree. Extents with EXTENT_IO in their state field
391 * are not merged because the end_io handlers need to be able to do
392 * operations on them without sleeping (or doing allocations/splits).
393 *
394 * This should be called with the tree lock held.
395 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000396static void merge_state(struct extent_io_tree *tree,
397 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500398{
399 struct extent_state *other;
400 struct rb_node *other_node;
401
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400402 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000403 return;
Chris Masond1310b22008-01-24 16:13:08 -0500404
405 other_node = rb_prev(&state->rb_node);
406 if (other_node) {
407 other = rb_entry(other_node, struct extent_state, rb_node);
408 if (other->end == state->start - 1 &&
409 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200410 if (tree->private_data &&
411 is_data_inode(tree->private_data))
412 btrfs_merge_delalloc_extent(tree->private_data,
413 state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500414 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500415 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100416 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500417 free_extent_state(other);
418 }
419 }
420 other_node = rb_next(&state->rb_node);
421 if (other_node) {
422 other = rb_entry(other_node, struct extent_state, rb_node);
423 if (other->start == state->end + 1 &&
424 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200425 if (tree->private_data &&
426 is_data_inode(tree->private_data))
427 btrfs_merge_delalloc_extent(tree->private_data,
428 state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400429 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400430 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100431 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400432 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500433 }
434 }
Chris Masond1310b22008-01-24 16:13:08 -0500435}
436
Xiao Guangrong3150b692011-07-14 03:19:08 +0000437static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800438 struct extent_state *state, unsigned *bits,
439 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000440
Chris Masond1310b22008-01-24 16:13:08 -0500441/*
442 * insert an extent_state struct into the tree. 'bits' are set on the
443 * struct before it is inserted.
444 *
445 * This may return -EEXIST if the extent is already there, in which case the
446 * state struct is freed.
447 *
448 * The tree lock is not taken internally. This is a utility function and
449 * probably isn't what you want to call (see set/clear_extent_bit).
450 */
451static int insert_state(struct extent_io_tree *tree,
452 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000453 struct rb_node ***p,
454 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800455 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500456{
457 struct rb_node *node;
458
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000459 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500460 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200461 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500462 state->start = start;
463 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400464
Qu Wenruod38ed272015-10-12 14:53:37 +0800465 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000466
Filipe Mananaf2071b22014-02-12 15:05:53 +0000467 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500468 if (node) {
469 struct extent_state *found;
470 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400471 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200472 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500473 return -EEXIST;
474 }
475 merge_state(tree, state);
476 return 0;
477}
478
479/*
480 * split a given extent state struct in two, inserting the preallocated
481 * struct 'prealloc' as the newly created second half. 'split' indicates an
482 * offset inside 'orig' where it should be split.
483 *
484 * Before calling,
485 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
486 * are two extent state structs in the tree:
487 * prealloc: [orig->start, split - 1]
488 * orig: [ split, orig->end ]
489 *
490 * The tree locks are not taken by this function. They need to be held
491 * by the caller.
492 */
493static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
494 struct extent_state *prealloc, u64 split)
495{
496 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400497
Nikolay Borisovabbb55f2018-11-01 14:09:53 +0200498 if (tree->private_data && is_data_inode(tree->private_data))
499 btrfs_split_delalloc_extent(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400500
Chris Masond1310b22008-01-24 16:13:08 -0500501 prealloc->start = orig->start;
502 prealloc->end = split - 1;
503 prealloc->state = orig->state;
504 orig->start = split;
505
Filipe Mananaf2071b22014-02-12 15:05:53 +0000506 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
507 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500508 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500509 free_extent_state(prealloc);
510 return -EEXIST;
511 }
512 return 0;
513}
514
Li Zefancdc6a392012-03-12 16:39:48 +0800515static struct extent_state *next_state(struct extent_state *state)
516{
517 struct rb_node *next = rb_next(&state->rb_node);
518 if (next)
519 return rb_entry(next, struct extent_state, rb_node);
520 else
521 return NULL;
522}
523
Chris Masond1310b22008-01-24 16:13:08 -0500524/*
525 * utility function to clear some bits in an extent state struct.
Andrea Gelmini52042d82018-11-28 12:05:13 +0100526 * it will optionally wake up anyone waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500527 *
528 * If no bits are set on the state struct after clearing things, the
529 * struct is freed and removed from the tree
530 */
Li Zefancdc6a392012-03-12 16:39:48 +0800531static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
532 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800533 unsigned *bits, int wake,
534 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500535{
Li Zefancdc6a392012-03-12 16:39:48 +0800536 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100537 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100538 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500539
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400540 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500541 u64 range = state->end - state->start + 1;
542 WARN_ON(range > tree->dirty_bytes);
543 tree->dirty_bytes -= range;
544 }
Nikolay Borisova36bb5f2018-11-01 14:09:51 +0200545
546 if (tree->private_data && is_data_inode(tree->private_data))
547 btrfs_clear_delalloc_extent(tree->private_data, state, bits);
548
David Sterba57599c72018-03-01 17:56:34 +0100549 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
550 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400551 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500552 if (wake)
553 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400554 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800555 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100556 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500557 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100558 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500559 free_extent_state(state);
560 } else {
561 WARN_ON(1);
562 }
563 } else {
564 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800565 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500566 }
Li Zefancdc6a392012-03-12 16:39:48 +0800567 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500568}
569
Xiao Guangrong82337672011-04-20 06:44:57 +0000570static struct extent_state *
571alloc_extent_state_atomic(struct extent_state *prealloc)
572{
573 if (!prealloc)
574 prealloc = alloc_extent_state(GFP_ATOMIC);
575
576 return prealloc;
577}
578
Eric Sandeen48a3b632013-04-25 20:41:01 +0000579static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400580{
David Sterba05912a32018-07-18 19:23:45 +0200581 struct inode *inode = tree->private_data;
582
583 btrfs_panic(btrfs_sb(inode->i_sb), err,
584 "locking error: extent tree was modified by another thread while locked");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400585}
586
Chris Masond1310b22008-01-24 16:13:08 -0500587/*
588 * clear some bits on a range in the tree. This may require splitting
589 * or inserting elements in the tree, so the gfp mask is used to
590 * indicate which allocations or sleeping are allowed.
591 *
592 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
593 * the given range from the tree regardless of state (ie for truncate).
594 *
595 * the range [start, end] is inclusive.
596 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100597 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500598 */
David Sterba66b0c882017-10-31 16:30:47 +0100599int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800600 unsigned bits, int wake, int delete,
601 struct extent_state **cached_state,
602 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500603{
604 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400605 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500606 struct extent_state *prealloc = NULL;
607 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400608 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500609 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000610 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500611
Josef Bacika5dee372013-12-13 10:02:44 -0500612 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000613
Josef Bacik7ee9e442013-06-21 16:37:03 -0400614 if (bits & EXTENT_DELALLOC)
615 bits |= EXTENT_NORESERVE;
616
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400617 if (delete)
618 bits |= ~EXTENT_CTLBITS;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400619
Josef Bacik2ac55d42010-02-03 19:33:23 +0000620 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
621 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500622again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800623 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000624 /*
625 * Don't care for allocation failure here because we might end
626 * up not needing the pre-allocated extent state at all, which
627 * is the case if we only have in the tree extent states that
628 * cover our input range and don't cover too any other range.
629 * If we end up needing a new extent state we allocate it later.
630 */
Chris Masond1310b22008-01-24 16:13:08 -0500631 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500632 }
633
Chris Masoncad321a2008-12-17 14:51:42 -0500634 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400635 if (cached_state) {
636 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000637
638 if (clear) {
639 *cached_state = NULL;
640 cached_state = NULL;
641 }
642
Filipe Manana27a35072014-07-06 20:09:59 +0100643 if (cached && extent_state_in_tree(cached) &&
644 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000645 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200646 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400647 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400648 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400649 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000650 if (clear)
651 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400652 }
Chris Masond1310b22008-01-24 16:13:08 -0500653 /*
654 * this search will find the extents that end after
655 * our range starts
656 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500657 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500658 if (!node)
659 goto out;
660 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400661hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500662 if (state->start > end)
663 goto out;
664 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400665 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500666
Liu Bo04493142012-02-16 18:34:37 +0800667 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800668 if (!(state->state & bits)) {
669 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800670 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800671 }
Liu Bo04493142012-02-16 18:34:37 +0800672
Chris Masond1310b22008-01-24 16:13:08 -0500673 /*
674 * | ---- desired range ---- |
675 * | state | or
676 * | ------------- state -------------- |
677 *
678 * We need to split the extent we found, and may flip
679 * bits on second half.
680 *
681 * If the extent we found extends past our range, we
682 * just split and search again. It'll get split again
683 * the next time though.
684 *
685 * If the extent we found is inside our range, we clear
686 * the desired bit on it.
687 */
688
689 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000690 prealloc = alloc_extent_state_atomic(prealloc);
691 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500692 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400693 if (err)
694 extent_io_tree_panic(tree, err);
695
Chris Masond1310b22008-01-24 16:13:08 -0500696 prealloc = NULL;
697 if (err)
698 goto out;
699 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800700 state = clear_state_bit(tree, state, &bits, wake,
701 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800702 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500703 }
704 goto search_again;
705 }
706 /*
707 * | ---- desired range ---- |
708 * | state |
709 * We need to split the extent, and clear the bit
710 * on the first half
711 */
712 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000713 prealloc = alloc_extent_state_atomic(prealloc);
714 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500715 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400716 if (err)
717 extent_io_tree_panic(tree, err);
718
Chris Masond1310b22008-01-24 16:13:08 -0500719 if (wake)
720 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400721
Qu Wenruofefdc552015-10-12 15:35:38 +0800722 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400723
Chris Masond1310b22008-01-24 16:13:08 -0500724 prealloc = NULL;
725 goto out;
726 }
Chris Mason42daec22009-09-23 19:51:09 -0400727
Qu Wenruofefdc552015-10-12 15:35:38 +0800728 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800729next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400730 if (last_end == (u64)-1)
731 goto out;
732 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800733 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800734 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500735
736search_again:
737 if (start > end)
738 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500739 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800740 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500741 cond_resched();
742 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200743
744out:
745 spin_unlock(&tree->lock);
746 if (prealloc)
747 free_extent_state(prealloc);
748
749 return 0;
750
Chris Masond1310b22008-01-24 16:13:08 -0500751}
Chris Masond1310b22008-01-24 16:13:08 -0500752
Jeff Mahoney143bede2012-03-01 14:56:26 +0100753static void wait_on_state(struct extent_io_tree *tree,
754 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500755 __releases(tree->lock)
756 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500757{
758 DEFINE_WAIT(wait);
759 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500760 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500761 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500762 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500763 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500764}
765
766/*
767 * waits for one or more bits to clear on a range in the state tree.
768 * The range [start, end] is inclusive.
769 * The tree lock is taken by this function
770 */
David Sterba41074882013-04-29 13:38:46 +0000771static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
772 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500773{
774 struct extent_state *state;
775 struct rb_node *node;
776
Josef Bacika5dee372013-12-13 10:02:44 -0500777 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000778
Chris Masoncad321a2008-12-17 14:51:42 -0500779 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500780again:
781 while (1) {
782 /*
783 * this search will find all the extents that end after
784 * our range starts
785 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500786 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100787process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500788 if (!node)
789 break;
790
791 state = rb_entry(node, struct extent_state, rb_node);
792
793 if (state->start > end)
794 goto out;
795
796 if (state->state & bits) {
797 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200798 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500799 wait_on_state(tree, state);
800 free_extent_state(state);
801 goto again;
802 }
803 start = state->end + 1;
804
805 if (start > end)
806 break;
807
Filipe Mananac50d3e72014-03-31 14:53:25 +0100808 if (!cond_resched_lock(&tree->lock)) {
809 node = rb_next(node);
810 goto process_node;
811 }
Chris Masond1310b22008-01-24 16:13:08 -0500812 }
813out:
Chris Masoncad321a2008-12-17 14:51:42 -0500814 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500815}
Chris Masond1310b22008-01-24 16:13:08 -0500816
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000817static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500818 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800819 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500820{
David Sterba9ee49a042015-01-14 19:52:13 +0100821 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100822 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400823
Nikolay Borisove06a1fc2018-11-01 14:09:50 +0200824 if (tree->private_data && is_data_inode(tree->private_data))
825 btrfs_set_delalloc_extent(tree->private_data, state, bits);
826
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400827 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500828 u64 range = state->end - state->start + 1;
829 tree->dirty_bytes += range;
830 }
David Sterba57599c72018-03-01 17:56:34 +0100831 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
832 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400833 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500834}
835
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100836static void cache_state_if_flags(struct extent_state *state,
837 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100838 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400839{
840 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100841 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400842 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200843 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400844 }
845 }
846}
847
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100848static void cache_state(struct extent_state *state,
849 struct extent_state **cached_ptr)
850{
851 return cache_state_if_flags(state, cached_ptr,
852 EXTENT_IOBITS | EXTENT_BOUNDARY);
853}
854
Chris Masond1310b22008-01-24 16:13:08 -0500855/*
Chris Mason1edbb732009-09-02 13:24:36 -0400856 * set some bits on a range in the tree. This may require allocations or
857 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500858 *
Chris Mason1edbb732009-09-02 13:24:36 -0400859 * If any of the exclusive bits are set, this will fail with -EEXIST if some
860 * part of the range already has the desired bits set. The start of the
861 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500862 *
Chris Mason1edbb732009-09-02 13:24:36 -0400863 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500864 */
Chris Mason1edbb732009-09-02 13:24:36 -0400865
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100866static int __must_check
867__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100868 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000869 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800870 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500871{
872 struct extent_state *state;
873 struct extent_state *prealloc = NULL;
874 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000875 struct rb_node **p;
876 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500877 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500878 u64 last_start;
879 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400880
Josef Bacika5dee372013-12-13 10:02:44 -0500881 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000882
Chris Masond1310b22008-01-24 16:13:08 -0500883again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800884 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200885 /*
886 * Don't care for allocation failure here because we might end
887 * up not needing the pre-allocated extent state at all, which
888 * is the case if we only have in the tree extent states that
889 * cover our input range and don't cover too any other range.
890 * If we end up needing a new extent state we allocate it later.
891 */
Chris Masond1310b22008-01-24 16:13:08 -0500892 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500893 }
894
Chris Masoncad321a2008-12-17 14:51:42 -0500895 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400896 if (cached_state && *cached_state) {
897 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400898 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100899 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400900 node = &state->rb_node;
901 goto hit_next;
902 }
903 }
Chris Masond1310b22008-01-24 16:13:08 -0500904 /*
905 * this search will find all the extents that end after
906 * our range starts.
907 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000908 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500909 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000910 prealloc = alloc_extent_state_atomic(prealloc);
911 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000912 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800913 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400914 if (err)
915 extent_io_tree_panic(tree, err);
916
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000917 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500918 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500919 goto out;
920 }
Chris Masond1310b22008-01-24 16:13:08 -0500921 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400922hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500923 last_start = state->start;
924 last_end = state->end;
925
926 /*
927 * | ---- desired range ---- |
928 * | state |
929 *
930 * Just lock what we found and keep going
931 */
932 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400933 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500934 *failed_start = state->start;
935 err = -EEXIST;
936 goto out;
937 }
Chris Mason42daec22009-09-23 19:51:09 -0400938
Qu Wenruod38ed272015-10-12 14:53:37 +0800939 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400940 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500941 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400942 if (last_end == (u64)-1)
943 goto out;
944 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800945 state = next_state(state);
946 if (start < end && state && state->start == start &&
947 !need_resched())
948 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500949 goto search_again;
950 }
951
952 /*
953 * | ---- desired range ---- |
954 * | state |
955 * or
956 * | ------------- state -------------- |
957 *
958 * We need to split the extent we found, and may flip bits on
959 * second half.
960 *
961 * If the extent we found extends past our
962 * range, we just split and search again. It'll get split
963 * again the next time though.
964 *
965 * If the extent we found is inside our range, we set the
966 * desired bit on it.
967 */
968 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400969 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500970 *failed_start = start;
971 err = -EEXIST;
972 goto out;
973 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000974
975 prealloc = alloc_extent_state_atomic(prealloc);
976 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500977 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400978 if (err)
979 extent_io_tree_panic(tree, err);
980
Chris Masond1310b22008-01-24 16:13:08 -0500981 prealloc = NULL;
982 if (err)
983 goto out;
984 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800985 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400986 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500987 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400988 if (last_end == (u64)-1)
989 goto out;
990 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800991 state = next_state(state);
992 if (start < end && state && state->start == start &&
993 !need_resched())
994 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500995 }
996 goto search_again;
997 }
998 /*
999 * | ---- desired range ---- |
1000 * | state | or | state |
1001 *
1002 * There's a hole, we need to insert something in it and
1003 * ignore the extent we found.
1004 */
1005 if (state->start > start) {
1006 u64 this_end;
1007 if (end < last_start)
1008 this_end = end;
1009 else
Chris Masond3977122009-01-05 21:25:51 -05001010 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +00001011
1012 prealloc = alloc_extent_state_atomic(prealloc);
1013 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001014
1015 /*
1016 * Avoid to free 'prealloc' if it can be merged with
1017 * the later extent.
1018 */
Chris Masond1310b22008-01-24 16:13:08 -05001019 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001020 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001021 if (err)
1022 extent_io_tree_panic(tree, err);
1023
Chris Mason2c64c532009-09-02 15:04:12 -04001024 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001025 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001026 start = this_end + 1;
1027 goto search_again;
1028 }
1029 /*
1030 * | ---- desired range ---- |
1031 * | state |
1032 * We need to split the extent, and set the bit
1033 * on the first half
1034 */
1035 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001036 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001037 *failed_start = start;
1038 err = -EEXIST;
1039 goto out;
1040 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001041
1042 prealloc = alloc_extent_state_atomic(prealloc);
1043 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001044 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001045 if (err)
1046 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001047
Qu Wenruod38ed272015-10-12 14:53:37 +08001048 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001049 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001050 merge_state(tree, prealloc);
1051 prealloc = NULL;
1052 goto out;
1053 }
1054
David Sterbab5a4ba142016-04-27 01:02:15 +02001055search_again:
1056 if (start > end)
1057 goto out;
1058 spin_unlock(&tree->lock);
1059 if (gfpflags_allow_blocking(mask))
1060 cond_resched();
1061 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001062
1063out:
Chris Masoncad321a2008-12-17 14:51:42 -05001064 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001065 if (prealloc)
1066 free_extent_state(prealloc);
1067
1068 return err;
1069
Chris Masond1310b22008-01-24 16:13:08 -05001070}
Chris Masond1310b22008-01-24 16:13:08 -05001071
David Sterba41074882013-04-29 13:38:46 +00001072int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001073 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001074 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001075{
1076 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001077 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001078}
1079
1080
Josef Bacik462d6fa2011-09-26 13:56:12 -04001081/**
Liu Bo10983f22012-07-11 15:26:19 +08001082 * convert_extent_bit - convert all bits in a given range from one bit to
1083 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001084 * @tree: the io tree to search
1085 * @start: the start offset in bytes
1086 * @end: the end offset in bytes (inclusive)
1087 * @bits: the bits to set in this range
1088 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001089 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001090 *
1091 * This will go through and set bits for the given range. If any states exist
1092 * already in this range they are set with the given bit and cleared of the
1093 * clear_bits. This is only meant to be used by things that are mergeable, ie
1094 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1095 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001096 *
1097 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001098 */
1099int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001100 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001101 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102{
1103 struct extent_state *state;
1104 struct extent_state *prealloc = NULL;
1105 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001106 struct rb_node **p;
1107 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001108 int err = 0;
1109 u64 last_start;
1110 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001111 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001112
Josef Bacika5dee372013-12-13 10:02:44 -05001113 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001114
Josef Bacik462d6fa2011-09-26 13:56:12 -04001115again:
David Sterba210aa272016-04-26 23:54:39 +02001116 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001117 /*
1118 * Best effort, don't worry if extent state allocation fails
1119 * here for the first iteration. We might have a cached state
1120 * that matches exactly the target range, in which case no
1121 * extent state allocations are needed. We'll only know this
1122 * after locking the tree.
1123 */
David Sterba210aa272016-04-26 23:54:39 +02001124 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001125 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001126 return -ENOMEM;
1127 }
1128
1129 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001130 if (cached_state && *cached_state) {
1131 state = *cached_state;
1132 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001133 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001134 node = &state->rb_node;
1135 goto hit_next;
1136 }
1137 }
1138
Josef Bacik462d6fa2011-09-26 13:56:12 -04001139 /*
1140 * this search will find all the extents that end after
1141 * our range starts.
1142 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001143 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001144 if (!node) {
1145 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001146 if (!prealloc) {
1147 err = -ENOMEM;
1148 goto out;
1149 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001150 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001151 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001152 if (err)
1153 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001154 cache_state(prealloc, cached_state);
1155 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001156 goto out;
1157 }
1158 state = rb_entry(node, struct extent_state, rb_node);
1159hit_next:
1160 last_start = state->start;
1161 last_end = state->end;
1162
1163 /*
1164 * | ---- desired range ---- |
1165 * | state |
1166 *
1167 * Just lock what we found and keep going
1168 */
1169 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001170 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001171 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001172 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001173 if (last_end == (u64)-1)
1174 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001175 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001176 if (start < end && state && state->start == start &&
1177 !need_resched())
1178 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001179 goto search_again;
1180 }
1181
1182 /*
1183 * | ---- desired range ---- |
1184 * | state |
1185 * or
1186 * | ------------- state -------------- |
1187 *
1188 * We need to split the extent we found, and may flip bits on
1189 * second half.
1190 *
1191 * If the extent we found extends past our
1192 * range, we just split and search again. It'll get split
1193 * again the next time though.
1194 *
1195 * If the extent we found is inside our range, we set the
1196 * desired bit on it.
1197 */
1198 if (state->start < start) {
1199 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001200 if (!prealloc) {
1201 err = -ENOMEM;
1202 goto out;
1203 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001204 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001205 if (err)
1206 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001207 prealloc = NULL;
1208 if (err)
1209 goto out;
1210 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001211 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001212 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001213 state = clear_state_bit(tree, state, &clear_bits, 0,
1214 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001215 if (last_end == (u64)-1)
1216 goto out;
1217 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001218 if (start < end && state && state->start == start &&
1219 !need_resched())
1220 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001221 }
1222 goto search_again;
1223 }
1224 /*
1225 * | ---- desired range ---- |
1226 * | state | or | state |
1227 *
1228 * There's a hole, we need to insert something in it and
1229 * ignore the extent we found.
1230 */
1231 if (state->start > start) {
1232 u64 this_end;
1233 if (end < last_start)
1234 this_end = end;
1235 else
1236 this_end = last_start - 1;
1237
1238 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001239 if (!prealloc) {
1240 err = -ENOMEM;
1241 goto out;
1242 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001243
1244 /*
1245 * Avoid to free 'prealloc' if it can be merged with
1246 * the later extent.
1247 */
1248 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001249 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001250 if (err)
1251 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001252 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001253 prealloc = NULL;
1254 start = this_end + 1;
1255 goto search_again;
1256 }
1257 /*
1258 * | ---- desired range ---- |
1259 * | state |
1260 * We need to split the extent, and set the bit
1261 * on the first half
1262 */
1263 if (state->start <= end && state->end > end) {
1264 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001265 if (!prealloc) {
1266 err = -ENOMEM;
1267 goto out;
1268 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001269
1270 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001271 if (err)
1272 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001273
Qu Wenruod38ed272015-10-12 14:53:37 +08001274 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001275 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001276 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001277 prealloc = NULL;
1278 goto out;
1279 }
1280
Josef Bacik462d6fa2011-09-26 13:56:12 -04001281search_again:
1282 if (start > end)
1283 goto out;
1284 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001285 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001286 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001287 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001288
1289out:
1290 spin_unlock(&tree->lock);
1291 if (prealloc)
1292 free_extent_state(prealloc);
1293
1294 return err;
1295}
1296
Chris Masond1310b22008-01-24 16:13:08 -05001297/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001298int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001299 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001300{
1301 /*
1302 * We don't support EXTENT_LOCKED yet, as current changeset will
1303 * record any bits changed, so for EXTENT_LOCKED case, it will
1304 * either fail with -EEXIST or changeset will record the whole
1305 * range.
1306 */
1307 BUG_ON(bits & EXTENT_LOCKED);
1308
David Sterba2c53b912016-04-26 23:54:39 +02001309 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001310 changeset);
1311}
1312
Qu Wenruofefdc552015-10-12 15:35:38 +08001313int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1314 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001315 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001316{
1317 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001318 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001319}
1320
Qu Wenruofefdc552015-10-12 15:35:38 +08001321int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001322 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001323{
1324 /*
1325 * Don't support EXTENT_LOCKED case, same reason as
1326 * set_record_extent_bits().
1327 */
1328 BUG_ON(bits & EXTENT_LOCKED);
1329
David Sterbaf734c442016-04-26 23:54:39 +02001330 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001331 changeset);
1332}
1333
Chris Masond352ac62008-09-29 15:18:18 -04001334/*
1335 * either insert or lock state struct between start and end use mask to tell
1336 * us if waiting is desired.
1337 */
Chris Mason1edbb732009-09-02 13:24:36 -04001338int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001339 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001340{
1341 int err;
1342 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001343
Chris Masond1310b22008-01-24 16:13:08 -05001344 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001345 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001346 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001347 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001348 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001349 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1350 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001351 } else
Chris Masond1310b22008-01-24 16:13:08 -05001352 break;
Chris Masond1310b22008-01-24 16:13:08 -05001353 WARN_ON(start > end);
1354 }
1355 return err;
1356}
Chris Masond1310b22008-01-24 16:13:08 -05001357
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001358int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001359{
1360 int err;
1361 u64 failed_start;
1362
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001363 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001364 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001365 if (err == -EEXIST) {
1366 if (failed_start > start)
1367 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001368 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001369 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001370 }
Josef Bacik25179202008-10-29 14:49:05 -04001371 return 1;
1372}
Josef Bacik25179202008-10-29 14:49:05 -04001373
David Sterbabd1fa4f2015-12-03 13:08:59 +01001374void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001375{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001376 unsigned long index = start >> PAGE_SHIFT;
1377 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001378 struct page *page;
1379
1380 while (index <= end_index) {
1381 page = find_get_page(inode->i_mapping, index);
1382 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1383 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001384 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001385 index++;
1386 }
Chris Mason4adaa612013-03-26 13:07:00 -04001387}
1388
David Sterbaf6311572015-12-03 13:08:59 +01001389void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001390{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001391 unsigned long index = start >> PAGE_SHIFT;
1392 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001393 struct page *page;
1394
1395 while (index <= end_index) {
1396 page = find_get_page(inode->i_mapping, index);
1397 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001398 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001399 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001400 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001401 index++;
1402 }
Chris Mason4adaa612013-03-26 13:07:00 -04001403}
1404
Chris Masond352ac62008-09-29 15:18:18 -04001405/* find the first state struct with 'bits' set after 'start', and
1406 * return it. tree->lock must be held. NULL will returned if
1407 * nothing was found after 'start'
1408 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001409static struct extent_state *
1410find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001411 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001412{
1413 struct rb_node *node;
1414 struct extent_state *state;
1415
1416 /*
1417 * this search will find all the extents that end after
1418 * our range starts.
1419 */
1420 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001421 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001422 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001423
Chris Masond3977122009-01-05 21:25:51 -05001424 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001425 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001426 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001427 return state;
Chris Masond3977122009-01-05 21:25:51 -05001428
Chris Masond7fc6402008-02-18 12:12:38 -05001429 node = rb_next(node);
1430 if (!node)
1431 break;
1432 }
1433out:
1434 return NULL;
1435}
Chris Masond7fc6402008-02-18 12:12:38 -05001436
Chris Masond352ac62008-09-29 15:18:18 -04001437/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001438 * find the first offset in the io tree with 'bits' set. zero is
1439 * returned if we find something, and *start_ret and *end_ret are
1440 * set to reflect the state struct that was found.
1441 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001442 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001443 */
1444int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001445 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001446 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001447{
1448 struct extent_state *state;
1449 int ret = 1;
1450
1451 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001452 if (cached_state && *cached_state) {
1453 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001454 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001455 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001456 if (state->state & bits)
1457 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001458 }
1459 free_extent_state(*cached_state);
1460 *cached_state = NULL;
1461 goto out;
1462 }
1463 free_extent_state(*cached_state);
1464 *cached_state = NULL;
1465 }
1466
Xiao Guangrong69261c42011-07-14 03:19:45 +00001467 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001468got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001469 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001470 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001471 *start_ret = state->start;
1472 *end_ret = state->end;
1473 ret = 0;
1474 }
Josef Bacike6138872012-09-27 17:07:30 -04001475out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001476 spin_unlock(&tree->lock);
1477 return ret;
1478}
1479
1480/*
Chris Masond352ac62008-09-29 15:18:18 -04001481 * find a contiguous range of bytes in the file marked as delalloc, not
1482 * more than 'max_bytes'. start and end are used to return the range,
1483 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001484 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001485 */
Lu Fengqi3522e902018-11-29 11:33:38 +08001486static noinline bool find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001487 u64 *start, u64 *end, u64 max_bytes,
1488 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001489{
1490 struct rb_node *node;
1491 struct extent_state *state;
1492 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001493 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001494 u64 total_bytes = 0;
1495
Chris Masoncad321a2008-12-17 14:51:42 -05001496 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001497
Chris Masond1310b22008-01-24 16:13:08 -05001498 /*
1499 * this search will find all the extents that end after
1500 * our range starts.
1501 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001502 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001503 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001504 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001505 goto out;
1506 }
1507
Chris Masond3977122009-01-05 21:25:51 -05001508 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001509 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001510 if (found && (state->start != cur_start ||
1511 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001512 goto out;
1513 }
1514 if (!(state->state & EXTENT_DELALLOC)) {
1515 if (!found)
1516 *end = state->end;
1517 goto out;
1518 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001519 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001520 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001521 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001522 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001523 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001524 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001525 *end = state->end;
1526 cur_start = state->end + 1;
1527 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001528 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001529 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001530 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001531 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001532 break;
1533 }
1534out:
Chris Masoncad321a2008-12-17 14:51:42 -05001535 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001536 return found;
1537}
1538
Liu Boda2c7002017-02-10 16:41:05 +01001539static int __process_pages_contig(struct address_space *mapping,
1540 struct page *locked_page,
1541 pgoff_t start_index, pgoff_t end_index,
1542 unsigned long page_ops, pgoff_t *index_ret);
1543
Jeff Mahoney143bede2012-03-01 14:56:26 +01001544static noinline void __unlock_for_delalloc(struct inode *inode,
1545 struct page *locked_page,
1546 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001547{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001548 unsigned long index = start >> PAGE_SHIFT;
1549 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001550
Liu Bo76c00212017-02-10 16:42:14 +01001551 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001552 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001553 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001554
Liu Bo76c00212017-02-10 16:42:14 +01001555 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1556 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001557}
1558
1559static noinline int lock_delalloc_pages(struct inode *inode,
1560 struct page *locked_page,
1561 u64 delalloc_start,
1562 u64 delalloc_end)
1563{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001564 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001565 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001566 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001567 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001568
Liu Bo76c00212017-02-10 16:42:14 +01001569 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001570 if (index == locked_page->index && index == end_index)
1571 return 0;
1572
Liu Bo76c00212017-02-10 16:42:14 +01001573 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1574 end_index, PAGE_LOCK, &index_ret);
1575 if (ret == -EAGAIN)
1576 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1577 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001578 return ret;
1579}
1580
1581/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001582 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1583 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001584 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001585 * Return: true if we find something
1586 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001587 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001588EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001589noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001590 struct extent_io_tree *tree,
1591 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001592 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001593{
Nikolay Borisov917aace2018-10-26 14:43:20 +03001594 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001595 u64 delalloc_start;
1596 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001597 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001598 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001599 int ret;
1600 int loops = 0;
1601
1602again:
1603 /* step one, find a bunch of delalloc bytes starting at start */
1604 delalloc_start = *start;
1605 delalloc_end = 0;
1606 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001607 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001608 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001609 *start = delalloc_start;
1610 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001611 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001612 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001613 }
1614
1615 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001616 * start comes from the offset of locked_page. We have to lock
1617 * pages in order, so we can't process delalloc bytes before
1618 * locked_page
1619 */
Chris Masond3977122009-01-05 21:25:51 -05001620 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001621 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001622
1623 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001624 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001625 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001626 if (delalloc_end + 1 - delalloc_start > max_bytes)
1627 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001628
Chris Masonc8b97812008-10-29 14:49:59 -04001629 /* step two, lock all the pages after the page that has start */
1630 ret = lock_delalloc_pages(inode, locked_page,
1631 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001632 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001633 if (ret == -EAGAIN) {
1634 /* some of the pages are gone, lets avoid looping by
1635 * shortening the size of the delalloc range we're searching
1636 */
Chris Mason9655d292009-09-02 15:22:30 -04001637 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001638 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001639 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001640 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001641 loops = 1;
1642 goto again;
1643 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001644 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001645 goto out_failed;
1646 }
1647 }
Chris Masonc8b97812008-10-29 14:49:59 -04001648
1649 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001650 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001651
1652 /* then test to make sure it is all still delalloc */
1653 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001654 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001655 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001656 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001657 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001658 __unlock_for_delalloc(inode, locked_page,
1659 delalloc_start, delalloc_end);
1660 cond_resched();
1661 goto again;
1662 }
Chris Mason9655d292009-09-02 15:22:30 -04001663 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001664 *start = delalloc_start;
1665 *end = delalloc_end;
1666out_failed:
1667 return found;
1668}
1669
Liu Boda2c7002017-02-10 16:41:05 +01001670static int __process_pages_contig(struct address_space *mapping,
1671 struct page *locked_page,
1672 pgoff_t start_index, pgoff_t end_index,
1673 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001674{
Liu Bo873695b2017-02-02 17:49:22 -08001675 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001676 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001677 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001678 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001679 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001680 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001681 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001682
Liu Boda2c7002017-02-10 16:41:05 +01001683 if (page_ops & PAGE_LOCK) {
1684 ASSERT(page_ops == PAGE_LOCK);
1685 ASSERT(index_ret && *index_ret == start_index);
1686 }
1687
Filipe Manana704de492014-10-06 22:14:22 +01001688 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001689 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001690
Chris Masond3977122009-01-05 21:25:51 -05001691 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001692 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001693 min_t(unsigned long,
1694 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001695 if (ret == 0) {
1696 /*
1697 * Only if we're going to lock these pages,
1698 * can we find nothing at @index.
1699 */
1700 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001701 err = -EAGAIN;
1702 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001703 }
Chris Mason8b62b722009-09-02 16:53:46 -04001704
Liu Boda2c7002017-02-10 16:41:05 +01001705 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001706 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001707 SetPagePrivate2(pages[i]);
1708
Chris Masonc8b97812008-10-29 14:49:59 -04001709 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001710 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001711 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001712 continue;
1713 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001714 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001715 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001716 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001717 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001718 if (page_ops & PAGE_SET_ERROR)
1719 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001720 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001721 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001722 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001723 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001724 if (page_ops & PAGE_LOCK) {
1725 lock_page(pages[i]);
1726 if (!PageDirty(pages[i]) ||
1727 pages[i]->mapping != mapping) {
1728 unlock_page(pages[i]);
1729 put_page(pages[i]);
1730 err = -EAGAIN;
1731 goto out;
1732 }
1733 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001734 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001735 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001736 }
1737 nr_pages -= ret;
1738 index += ret;
1739 cond_resched();
1740 }
Liu Boda2c7002017-02-10 16:41:05 +01001741out:
1742 if (err && index_ret)
1743 *index_ret = start_index + pages_locked - 1;
1744 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001745}
Chris Masonc8b97812008-10-29 14:49:59 -04001746
Liu Bo873695b2017-02-02 17:49:22 -08001747void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1748 u64 delalloc_end, struct page *locked_page,
1749 unsigned clear_bits,
1750 unsigned long page_ops)
1751{
1752 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001753 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001754
1755 __process_pages_contig(inode->i_mapping, locked_page,
1756 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001757 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001758}
1759
Chris Masond352ac62008-09-29 15:18:18 -04001760/*
1761 * count the number of bytes in the tree that have a given bit(s)
1762 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1763 * cached. The total number found is returned.
1764 */
Chris Masond1310b22008-01-24 16:13:08 -05001765u64 count_range_bits(struct extent_io_tree *tree,
1766 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001767 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001768{
1769 struct rb_node *node;
1770 struct extent_state *state;
1771 u64 cur_start = *start;
1772 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001773 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001774 int found = 0;
1775
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301776 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001777 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001778
Chris Masoncad321a2008-12-17 14:51:42 -05001779 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001780 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1781 total_bytes = tree->dirty_bytes;
1782 goto out;
1783 }
1784 /*
1785 * this search will find all the extents that end after
1786 * our range starts.
1787 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001788 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001789 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001790 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001791
Chris Masond3977122009-01-05 21:25:51 -05001792 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001793 state = rb_entry(node, struct extent_state, rb_node);
1794 if (state->start > search_end)
1795 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001796 if (contig && found && state->start > last + 1)
1797 break;
1798 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001799 total_bytes += min(search_end, state->end) + 1 -
1800 max(cur_start, state->start);
1801 if (total_bytes >= max_bytes)
1802 break;
1803 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001804 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001805 found = 1;
1806 }
Chris Masonec29ed52011-02-23 16:23:20 -05001807 last = state->end;
1808 } else if (contig && found) {
1809 break;
Chris Masond1310b22008-01-24 16:13:08 -05001810 }
1811 node = rb_next(node);
1812 if (!node)
1813 break;
1814 }
1815out:
Chris Masoncad321a2008-12-17 14:51:42 -05001816 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001817 return total_bytes;
1818}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001819
Chris Masond352ac62008-09-29 15:18:18 -04001820/*
1821 * set the private field for a given byte offset in the tree. If there isn't
1822 * an extent_state there already, this does nothing.
1823 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001824static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001825 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001826{
1827 struct rb_node *node;
1828 struct extent_state *state;
1829 int ret = 0;
1830
Chris Masoncad321a2008-12-17 14:51:42 -05001831 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001832 /*
1833 * this search will find all the extents that end after
1834 * our range starts.
1835 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001836 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001837 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001838 ret = -ENOENT;
1839 goto out;
1840 }
1841 state = rb_entry(node, struct extent_state, rb_node);
1842 if (state->start != start) {
1843 ret = -ENOENT;
1844 goto out;
1845 }
David Sterba47dc1962016-02-11 13:24:13 +01001846 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001847out:
Chris Masoncad321a2008-12-17 14:51:42 -05001848 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001849 return ret;
1850}
1851
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001852static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001853 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001854{
1855 struct rb_node *node;
1856 struct extent_state *state;
1857 int ret = 0;
1858
Chris Masoncad321a2008-12-17 14:51:42 -05001859 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001860 /*
1861 * this search will find all the extents that end after
1862 * our range starts.
1863 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001864 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001865 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001866 ret = -ENOENT;
1867 goto out;
1868 }
1869 state = rb_entry(node, struct extent_state, rb_node);
1870 if (state->start != start) {
1871 ret = -ENOENT;
1872 goto out;
1873 }
David Sterba47dc1962016-02-11 13:24:13 +01001874 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001875out:
Chris Masoncad321a2008-12-17 14:51:42 -05001876 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001877 return ret;
1878}
1879
1880/*
1881 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001882 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001883 * has the bits set. Otherwise, 1 is returned if any bit in the
1884 * range is found set.
1885 */
1886int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001887 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001888{
1889 struct extent_state *state = NULL;
1890 struct rb_node *node;
1891 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001892
Chris Masoncad321a2008-12-17 14:51:42 -05001893 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001894 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001895 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001896 node = &cached->rb_node;
1897 else
1898 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001899 while (node && start <= end) {
1900 state = rb_entry(node, struct extent_state, rb_node);
1901
1902 if (filled && state->start > start) {
1903 bitset = 0;
1904 break;
1905 }
1906
1907 if (state->start > end)
1908 break;
1909
1910 if (state->state & bits) {
1911 bitset = 1;
1912 if (!filled)
1913 break;
1914 } else if (filled) {
1915 bitset = 0;
1916 break;
1917 }
Chris Mason46562ce2009-09-23 20:23:16 -04001918
1919 if (state->end == (u64)-1)
1920 break;
1921
Chris Masond1310b22008-01-24 16:13:08 -05001922 start = state->end + 1;
1923 if (start > end)
1924 break;
1925 node = rb_next(node);
1926 if (!node) {
1927 if (filled)
1928 bitset = 0;
1929 break;
1930 }
1931 }
Chris Masoncad321a2008-12-17 14:51:42 -05001932 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001933 return bitset;
1934}
Chris Masond1310b22008-01-24 16:13:08 -05001935
1936/*
1937 * helper function to set a given page up to date if all the
1938 * extents in the tree for that page are up to date
1939 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001940static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001941{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001942 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001943 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001944 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001945 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001946}
1947
Josef Bacik7870d082017-05-05 11:57:15 -04001948int free_io_failure(struct extent_io_tree *failure_tree,
1949 struct extent_io_tree *io_tree,
1950 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001951{
1952 int ret;
1953 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001954
David Sterba47dc1962016-02-11 13:24:13 +01001955 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001956 ret = clear_extent_bits(failure_tree, rec->start,
1957 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001958 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001959 if (ret)
1960 err = ret;
1961
Josef Bacik7870d082017-05-05 11:57:15 -04001962 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001963 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001964 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001965 if (ret && !err)
1966 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001967
1968 kfree(rec);
1969 return err;
1970}
1971
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001972/*
1973 * this bypasses the standard btrfs submit functions deliberately, as
1974 * the standard behavior is to write all copies in a raid setup. here we only
1975 * want to write the one bad copy. so we do the mapping for ourselves and issue
1976 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001977 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001978 * actually prevents the read that triggered the error from finishing.
1979 * currently, there can be no more than two copies of every data bit. thus,
1980 * exactly one rewrite is required.
1981 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04001982int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1983 u64 length, u64 logical, struct page *page,
1984 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001985{
1986 struct bio *bio;
1987 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001988 u64 map_length = 0;
1989 u64 sector;
1990 struct btrfs_bio *bbio = NULL;
1991 int ret;
1992
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001993 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001994 BUG_ON(!mirror_num);
1995
David Sterbac5e4c3d2017-06-12 17:29:41 +02001996 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001997 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001998 map_length = length;
1999
Filipe Mananab5de8d02016-05-27 22:21:27 +01002000 /*
2001 * Avoid races with device replace and make sure our bbio has devices
2002 * associated to its stripes that don't go away while we are doing the
2003 * read repair operation.
2004 */
2005 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002006 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002007 /*
2008 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2009 * to update all raid stripes, but here we just want to correct
2010 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2011 * stripe's dev and sector.
2012 */
2013 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2014 &map_length, &bbio, 0);
2015 if (ret) {
2016 btrfs_bio_counter_dec(fs_info);
2017 bio_put(bio);
2018 return -EIO;
2019 }
2020 ASSERT(bbio->mirror_num == 1);
2021 } else {
2022 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2023 &map_length, &bbio, mirror_num);
2024 if (ret) {
2025 btrfs_bio_counter_dec(fs_info);
2026 bio_put(bio);
2027 return -EIO;
2028 }
2029 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002030 }
Liu Boc7253282017-03-29 10:53:58 -07002031
2032 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002033 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002034 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002035 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002036 if (!dev || !dev->bdev ||
2037 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002038 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002039 bio_put(bio);
2040 return -EIO;
2041 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002042 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002043 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002044 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002045
Mike Christie4e49ea42016-06-05 14:31:41 -05002046 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002047 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002048 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002049 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002050 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002051 return -EIO;
2052 }
2053
David Sterbab14af3b2015-10-08 10:43:10 +02002054 btrfs_info_rl_in_rcu(fs_info,
2055 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002056 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002057 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002058 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002059 bio_put(bio);
2060 return 0;
2061}
2062
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002063int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2064 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002065{
Josef Bacikea466792012-03-26 21:57:36 -04002066 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002067 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002068 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002069
David Howellsbc98a422017-07-17 08:45:34 +01002070 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002071 return -EROFS;
2072
Josef Bacikea466792012-03-26 21:57:36 -04002073 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002074 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002075
Josef Bacik6ec656b2017-05-05 11:57:14 -04002076 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002077 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002078 if (ret)
2079 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002080 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002081 }
2082
2083 return ret;
2084}
2085
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002086/*
2087 * each time an IO finishes, we do a fast check in the IO failure tree
2088 * to see if we need to process or clean up an io_failure_record
2089 */
Josef Bacik7870d082017-05-05 11:57:15 -04002090int clean_io_failure(struct btrfs_fs_info *fs_info,
2091 struct extent_io_tree *failure_tree,
2092 struct extent_io_tree *io_tree, u64 start,
2093 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002094{
2095 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002096 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002097 struct extent_state *state;
2098 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002100
2101 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002102 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2103 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 if (!ret)
2105 return 0;
2106
Josef Bacik7870d082017-05-05 11:57:15 -04002107 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002108 if (ret)
2109 return 0;
2110
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002111 BUG_ON(!failrec->this_mirror);
2112
2113 if (failrec->in_validation) {
2114 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002115 btrfs_debug(fs_info,
2116 "clean_io_failure: freeing dummy error at %llu",
2117 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002118 goto out;
2119 }
David Howellsbc98a422017-07-17 08:45:34 +01002120 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002121 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002122
Josef Bacik7870d082017-05-05 11:57:15 -04002123 spin_lock(&io_tree->lock);
2124 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002125 failrec->start,
2126 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002127 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002128
Miao Xie883d0de2013-07-25 19:22:35 +08002129 if (state && state->start <= failrec->start &&
2130 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002131 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2132 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002133 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002134 repair_io_failure(fs_info, ino, start, failrec->len,
2135 failrec->logical, page, pg_offset,
2136 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002137 }
2138 }
2139
2140out:
Josef Bacik7870d082017-05-05 11:57:15 -04002141 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002142
Miao Xie454ff3d2014-09-12 18:43:58 +08002143 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002144}
2145
Miao Xief6124962014-09-12 18:44:04 +08002146/*
2147 * Can be called when
2148 * - hold extent lock
2149 * - under ordered extent
2150 * - the inode is freeing
2151 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002152void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002153{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002154 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002155 struct io_failure_record *failrec;
2156 struct extent_state *state, *next;
2157
2158 if (RB_EMPTY_ROOT(&failure_tree->state))
2159 return;
2160
2161 spin_lock(&failure_tree->lock);
2162 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2163 while (state) {
2164 if (state->start > end)
2165 break;
2166
2167 ASSERT(state->end <= end);
2168
2169 next = next_state(state);
2170
David Sterba47dc1962016-02-11 13:24:13 +01002171 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002172 free_extent_state(state);
2173 kfree(failrec);
2174
2175 state = next;
2176 }
2177 spin_unlock(&failure_tree->lock);
2178}
2179
Miao Xie2fe63032014-09-12 18:43:59 +08002180int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002181 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002182{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002183 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002184 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002185 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002186 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2187 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2188 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002189 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002190 u64 logical;
2191
David Sterba47dc1962016-02-11 13:24:13 +01002192 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002193 if (ret) {
2194 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2195 if (!failrec)
2196 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002197
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002198 failrec->start = start;
2199 failrec->len = end - start + 1;
2200 failrec->this_mirror = 0;
2201 failrec->bio_flags = 0;
2202 failrec->in_validation = 0;
2203
2204 read_lock(&em_tree->lock);
2205 em = lookup_extent_mapping(em_tree, start, failrec->len);
2206 if (!em) {
2207 read_unlock(&em_tree->lock);
2208 kfree(failrec);
2209 return -EIO;
2210 }
2211
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002212 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002213 free_extent_map(em);
2214 em = NULL;
2215 }
2216 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002217 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002218 kfree(failrec);
2219 return -EIO;
2220 }
Miao Xie2fe63032014-09-12 18:43:59 +08002221
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002222 logical = start - em->start;
2223 logical = em->block_start + logical;
2224 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2225 logical = em->block_start;
2226 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2227 extent_set_compress_type(&failrec->bio_flags,
2228 em->compress_type);
2229 }
Miao Xie2fe63032014-09-12 18:43:59 +08002230
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002231 btrfs_debug(fs_info,
2232 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2233 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002234
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002235 failrec->logical = logical;
2236 free_extent_map(em);
2237
2238 /* set the bits in the private failure tree */
2239 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002240 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002241 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002242 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002243 /* set the bits in the inode's tree */
2244 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002245 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002246 if (ret < 0) {
2247 kfree(failrec);
2248 return ret;
2249 }
2250 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002251 btrfs_debug(fs_info,
2252 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2253 failrec->logical, failrec->start, failrec->len,
2254 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002255 /*
2256 * when data can be on disk more than twice, add to failrec here
2257 * (e.g. with a list for failed_mirror) to make
2258 * clean_io_failure() clean all those errors at once.
2259 */
2260 }
Miao Xie2fe63032014-09-12 18:43:59 +08002261
2262 *failrec_ret = failrec;
2263
2264 return 0;
2265}
2266
Ming Leia0b60d72017-12-18 20:22:11 +08002267bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002268 struct io_failure_record *failrec, int failed_mirror)
2269{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002270 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002271 int num_copies;
2272
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002273 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002274 if (num_copies == 1) {
2275 /*
2276 * we only have a single copy of the data, so don't bother with
2277 * all the retry and error correction code that follows. no
2278 * matter what the error is, it is very likely to persist.
2279 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002280 btrfs_debug(fs_info,
2281 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2282 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002283 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002284 }
2285
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002286 /*
2287 * there are two premises:
2288 * a) deliver good data to the caller
2289 * b) correct the bad sectors on disk
2290 */
Ming Leia0b60d72017-12-18 20:22:11 +08002291 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002292 /*
2293 * to fulfill b), we need to know the exact failing sectors, as
2294 * we don't want to rewrite any more than the failed ones. thus,
2295 * we need separate read requests for the failed bio
2296 *
2297 * if the following BUG_ON triggers, our validation request got
2298 * merged. we need separate requests for our algorithm to work.
2299 */
2300 BUG_ON(failrec->in_validation);
2301 failrec->in_validation = 1;
2302 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002303 } else {
2304 /*
2305 * we're ready to fulfill a) and b) alongside. get a good copy
2306 * of the failed sector and if we succeed, we have setup
2307 * everything for repair_io_failure to do the rest for us.
2308 */
2309 if (failrec->in_validation) {
2310 BUG_ON(failrec->this_mirror != failed_mirror);
2311 failrec->in_validation = 0;
2312 failrec->this_mirror = 0;
2313 }
2314 failrec->failed_mirror = failed_mirror;
2315 failrec->this_mirror++;
2316 if (failrec->this_mirror == failed_mirror)
2317 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002318 }
2319
Miao Xiefacc8a222013-07-25 19:22:34 +08002320 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002321 btrfs_debug(fs_info,
2322 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2323 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002324 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002325 }
2326
Liu Boc3cfb652017-07-13 15:00:50 -07002327 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002328}
2329
2330
2331struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2332 struct io_failure_record *failrec,
2333 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002334 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002335{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002336 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002337 struct bio *bio;
2338 struct btrfs_io_bio *btrfs_failed_bio;
2339 struct btrfs_io_bio *btrfs_bio;
2340
David Sterbac5e4c3d2017-06-12 17:29:41 +02002341 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002342 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002343 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002344 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002345 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002346 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002347
Miao Xiefacc8a222013-07-25 19:22:34 +08002348 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2349 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002350 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2351
2352 btrfs_bio = btrfs_io_bio(bio);
2353 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002354 icsum *= csum_size;
2355 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002356 csum_size);
2357 }
2358
Miao Xie2fe63032014-09-12 18:43:59 +08002359 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002360
Miao Xie2fe63032014-09-12 18:43:59 +08002361 return bio;
2362}
2363
2364/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002365 * This is a generic handler for readpage errors. If other copies exist, read
2366 * those and write back good data to the failed position. Does not investigate
2367 * in remapping the failed extent elsewhere, hoping the device will be smart
2368 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002369 */
Miao Xie2fe63032014-09-12 18:43:59 +08002370static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2371 struct page *page, u64 start, u64 end,
2372 int failed_mirror)
2373{
2374 struct io_failure_record *failrec;
2375 struct inode *inode = page->mapping->host;
2376 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002377 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002378 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002379 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002380 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002381 int ret;
Ming Leia0b60d72017-12-18 20:22:11 +08002382 unsigned failed_bio_pages = bio_pages_all(failed_bio);
Miao Xie2fe63032014-09-12 18:43:59 +08002383
Mike Christie1f7ad752016-06-05 14:31:51 -05002384 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002385
2386 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2387 if (ret)
2388 return ret;
2389
Ming Leia0b60d72017-12-18 20:22:11 +08002390 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002391 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002392 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002393 return -EIO;
2394 }
2395
Ming Leia0b60d72017-12-18 20:22:11 +08002396 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002397 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002398
2399 phy_offset >>= inode->i_sb->s_blocksize_bits;
2400 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2401 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002402 (int)phy_offset, failed_bio->bi_end_io,
2403 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002404 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002405
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002406 btrfs_debug(btrfs_sb(inode->i_sb),
2407 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2408 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002409
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002410 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002411 failrec->bio_flags, 0);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002412 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002413 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002414 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002415 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002416 }
2417
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002418 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002419}
2420
Chris Masond1310b22008-01-24 16:13:08 -05002421/* lots and lots of room for performance fixes in the end_bio funcs */
2422
David Sterbab5227c02015-12-03 13:08:59 +01002423void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002424{
2425 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002426 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002427
Nikolay Borisovc6297322018-11-08 10:18:08 +02002428 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002429
Jeff Mahoney87826df2012-02-15 16:23:57 +01002430 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002431 ClearPageUptodate(page);
2432 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002433 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002434 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002435 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002436}
2437
Chris Masond1310b22008-01-24 16:13:08 -05002438/*
2439 * after a writepage IO is done, we need to:
2440 * clear the uptodate bits on error
2441 * clear the writeback bits in the extent tree for this IO
2442 * end_page_writeback if the page has no more pending IO
2443 *
2444 * Scheduling is not allowed, so the extent state tree is expected
2445 * to have one and only one object corresponding to this IO.
2446 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002447static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002448{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002449 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002450 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002451 u64 start;
2452 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002453 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002454
David Sterbac09abff2017-07-13 18:10:07 +02002455 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002456 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002457 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002458 struct inode *inode = page->mapping->host;
2459 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002460
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002461 /* We always issue full-page reads, but if some block
2462 * in a page fails to read, blk_update_request() will
2463 * advance bv_offset and adjust bv_len to compensate.
2464 * Print a warning for nonzero offsets, and an error
2465 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002466 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2467 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002468 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002469 "partial page write in btrfs with offset %u and length %u",
2470 bvec->bv_offset, bvec->bv_len);
2471 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002472 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002473 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002474 bvec->bv_offset, bvec->bv_len);
2475 }
Chris Masond1310b22008-01-24 16:13:08 -05002476
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002477 start = page_offset(page);
2478 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002479
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002480 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002481 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002482 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002483
Chris Masond1310b22008-01-24 16:13:08 -05002484 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002485}
2486
Miao Xie883d0de2013-07-25 19:22:35 +08002487static void
2488endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2489 int uptodate)
2490{
2491 struct extent_state *cached = NULL;
2492 u64 end = start + len - 1;
2493
2494 if (uptodate && tree->track_uptodate)
2495 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002496 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002497}
2498
Chris Masond1310b22008-01-24 16:13:08 -05002499/*
2500 * after a readpage IO is done, we need to:
2501 * clear the uptodate bits on error
2502 * set the uptodate bits if things worked
2503 * set the page up to date if all extents in the tree are uptodate
2504 * clear the lock bit in the extent tree
2505 * unlock the page if there are no other extents locked for it
2506 *
2507 * Scheduling is not allowed, so the extent state tree is expected
2508 * to have one and only one object corresponding to this IO.
2509 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002510static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002511{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002512 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002513 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002514 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002515 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002516 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002517 u64 start;
2518 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002519 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002520 u64 extent_start = 0;
2521 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002522 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002523 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002524 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002525
David Sterbac09abff2017-07-13 18:10:07 +02002526 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002527 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002528 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002529 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002530 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002531 bool data_inode = btrfs_ino(BTRFS_I(inode))
2532 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002533
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002534 btrfs_debug(fs_info,
2535 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002536 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002537 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002538 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002539 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002540
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002541 /* We always issue full-page reads, but if some block
2542 * in a page fails to read, blk_update_request() will
2543 * advance bv_offset and adjust bv_len to compensate.
2544 * Print a warning for nonzero offsets, and an error
2545 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002546 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2547 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002548 btrfs_err(fs_info,
2549 "partial 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 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002552 btrfs_info(fs_info,
2553 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002554 bvec->bv_offset, bvec->bv_len);
2555 }
Chris Masond1310b22008-01-24 16:13:08 -05002556
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002557 start = page_offset(page);
2558 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002559 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002560
Chris Mason9be33952013-05-17 18:30:14 -04002561 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002562 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002563 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2564 page, start, end,
2565 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002566 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002567 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002568 else
Josef Bacik7870d082017-05-05 11:57:15 -04002569 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2570 failure_tree, tree, start,
2571 page,
2572 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002573 }
Josef Bacikea466792012-03-26 21:57:36 -04002574
Miao Xief2a09da2013-07-25 19:22:33 +08002575 if (likely(uptodate))
2576 goto readpage_ok;
2577
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002578 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002579
2580 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002581 * The generic bio_readpage_error handles errors the
2582 * following way: If possible, new read requests are
2583 * created and submitted and will end up in
2584 * end_bio_extent_readpage as well (if we're lucky,
2585 * not in the !uptodate case). In that case it returns
2586 * 0 and we just go on with the next page in our bio.
2587 * If it can't handle the error it will return -EIO and
2588 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002589 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002590 ret = bio_readpage_error(bio, offset, page, start, end,
2591 mirror);
2592 if (ret == 0) {
2593 uptodate = !bio->bi_status;
2594 offset += len;
2595 continue;
2596 }
2597 } else {
2598 struct extent_buffer *eb;
2599
2600 eb = (struct extent_buffer *)page->private;
2601 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2602 eb->read_mirror = mirror;
2603 atomic_dec(&eb->io_pages);
2604 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2605 &eb->bflags))
2606 btree_readahead_hook(eb, -EIO);
2607
2608 ret = -EIO;
Chris Mason7e383262008-04-09 16:28:12 -04002609 }
Miao Xief2a09da2013-07-25 19:22:33 +08002610readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002611 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002612 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002613 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002614 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002615
2616 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002617 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002618 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002619 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002620 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002621 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002622 ClearPageUptodate(page);
2623 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002624 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002625 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002626 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002627
2628 if (unlikely(!uptodate)) {
2629 if (extent_len) {
2630 endio_readpage_release_extent(tree,
2631 extent_start,
2632 extent_len, 1);
2633 extent_start = 0;
2634 extent_len = 0;
2635 }
2636 endio_readpage_release_extent(tree, start,
2637 end - start + 1, 0);
2638 } else if (!extent_len) {
2639 extent_start = start;
2640 extent_len = end + 1 - start;
2641 } else if (extent_start + extent_len == start) {
2642 extent_len += end + 1 - start;
2643 } else {
2644 endio_readpage_release_extent(tree, extent_start,
2645 extent_len, uptodate);
2646 extent_start = start;
2647 extent_len = end + 1 - start;
2648 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002649 }
Chris Masond1310b22008-01-24 16:13:08 -05002650
Miao Xie883d0de2013-07-25 19:22:35 +08002651 if (extent_len)
2652 endio_readpage_release_extent(tree, extent_start, extent_len,
2653 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002654 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002655 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002656}
2657
Chris Mason9be33952013-05-17 18:30:14 -04002658/*
David Sterba184f9992017-06-12 17:29:39 +02002659 * Initialize the members up to but not including 'bio'. Use after allocating a
2660 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2661 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002662 */
David Sterba184f9992017-06-12 17:29:39 +02002663static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002664{
David Sterba184f9992017-06-12 17:29:39 +02002665 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2666}
2667
2668/*
David Sterba6e707bc2017-06-02 17:26:26 +02002669 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2670 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2671 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002672 */
David Sterbac821e7f32017-06-02 18:35:36 +02002673struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002674{
2675 struct bio *bio;
2676
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002677 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002678 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002679 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002680 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002681 return bio;
2682}
2683
David Sterba8b6c1d52017-06-02 17:48:13 +02002684struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002685{
Miao Xie23ea8e52014-09-12 18:43:54 +08002686 struct btrfs_io_bio *btrfs_bio;
2687 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002688
David Sterba6e707bc2017-06-02 17:26:26 +02002689 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002690 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002691 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002692 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002693 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002694 return new;
2695}
Chris Mason9be33952013-05-17 18:30:14 -04002696
David Sterbac5e4c3d2017-06-12 17:29:41 +02002697struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002698{
Miao Xiefacc8a222013-07-25 19:22:34 +08002699 struct bio *bio;
2700
David Sterba6e707bc2017-06-02 17:26:26 +02002701 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002702 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002703 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002704 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002705}
2706
Liu Boe4770942017-05-16 10:57:14 -07002707struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002708{
2709 struct bio *bio;
2710 struct btrfs_io_bio *btrfs_bio;
2711
2712 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002713 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002714 ASSERT(bio);
2715
2716 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002717 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002718
2719 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002720 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002721 return bio;
2722}
Chris Mason9be33952013-05-17 18:30:14 -04002723
David Sterba4b81ba42017-06-06 19:14:26 +02002724/*
2725 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002726 * @tree: tree so we can call our merge_bio hook
2727 * @wbc: optional writeback control for io accounting
2728 * @page: page to add to the bio
2729 * @pg_offset: offset of the new bio or to check whether we are adding
2730 * a contiguous page to the previous one
2731 * @size: portion of page that we want to write
2732 * @offset: starting offset in the page
2733 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002734 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002735 * @end_io_func: end_io callback for new bio
2736 * @mirror_num: desired mirror to read/write
2737 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2738 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002739 */
2740static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002741 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002742 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002743 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002744 struct block_device *bdev,
2745 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002746 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002747 int mirror_num,
2748 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002749 unsigned long bio_flags,
2750 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002751{
2752 int ret = 0;
2753 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002754 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002755 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002756
David Sterba5c2b1fd2017-06-06 19:22:55 +02002757 ASSERT(bio_ret);
2758
2759 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002760 bool contig;
2761 bool can_merge = true;
2762
Chris Masond1310b22008-01-24 16:13:08 -05002763 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002764 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002765 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002766 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002767 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002768
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002769 ASSERT(tree->ops);
2770 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002771 can_merge = false;
2772
2773 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002774 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002775 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002776 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002777 if (ret < 0) {
2778 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002779 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002780 }
Chris Masond1310b22008-01-24 16:13:08 -05002781 bio = NULL;
2782 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002783 if (wbc)
2784 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002785 return 0;
2786 }
2787 }
Chris Masonc8b97812008-10-29 14:49:59 -04002788
David Sterba6273b7f2017-10-04 17:30:11 +02002789 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002790 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002791 bio->bi_end_io = end_io_func;
2792 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002793 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002794 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002795 if (wbc) {
2796 wbc_init_bio(wbc, bio);
2797 wbc_account_io(wbc, page, page_size);
2798 }
Chris Mason70dec802008-01-29 09:59:12 -05002799
David Sterba5c2b1fd2017-06-06 19:22:55 +02002800 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002801
2802 return ret;
2803}
2804
Eric Sandeen48a3b632013-04-25 20:41:01 +00002805static void attach_extent_buffer_page(struct extent_buffer *eb,
2806 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002807{
2808 if (!PagePrivate(page)) {
2809 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002810 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002811 set_page_private(page, (unsigned long)eb);
2812 } else {
2813 WARN_ON(page->private != (unsigned long)eb);
2814 }
2815}
2816
Chris Masond1310b22008-01-24 16:13:08 -05002817void set_page_extent_mapped(struct page *page)
2818{
2819 if (!PagePrivate(page)) {
2820 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002821 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002822 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002823 }
2824}
2825
Miao Xie125bac012013-07-25 19:22:37 +08002826static struct extent_map *
2827__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2828 u64 start, u64 len, get_extent_t *get_extent,
2829 struct extent_map **em_cached)
2830{
2831 struct extent_map *em;
2832
2833 if (em_cached && *em_cached) {
2834 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002835 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002836 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002837 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002838 return em;
2839 }
2840
2841 free_extent_map(em);
2842 *em_cached = NULL;
2843 }
2844
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002845 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002846 if (em_cached && !IS_ERR_OR_NULL(em)) {
2847 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002848 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002849 *em_cached = em;
2850 }
2851 return em;
2852}
Chris Masond1310b22008-01-24 16:13:08 -05002853/*
2854 * basic readpage implementation. Locked extent state structs are inserted
2855 * into the tree that are removed when the IO is done (by the end_io
2856 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002857 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002858 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002859 */
Miao Xie99740902013-07-25 19:22:36 +08002860static int __do_readpage(struct extent_io_tree *tree,
2861 struct page *page,
2862 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002863 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002864 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002865 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002866 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002867{
2868 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002869 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02002870 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002871 u64 cur = start;
2872 u64 extent_offset;
2873 u64 last_byte = i_size_read(inode);
2874 u64 block_start;
2875 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05002876 struct extent_map *em;
2877 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002878 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002879 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002880 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002881 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002882 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002883 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002884 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002885
2886 set_page_extent_mapped(page);
2887
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002888 if (!PageUptodate(page)) {
2889 if (cleancache_get_page(page) == 0) {
2890 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002891 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002892 goto out;
2893 }
2894 }
2895
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002896 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002897 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01002898 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04002899
2900 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002901 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002902 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002903 memset(userpage + zero_offset, 0, iosize);
2904 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002905 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002906 }
2907 }
Chris Masond1310b22008-01-24 16:13:08 -05002908 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002909 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02002910 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002911
Chris Masond1310b22008-01-24 16:13:08 -05002912 if (cur >= last_byte) {
2913 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002914 struct extent_state *cached = NULL;
2915
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002916 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002917 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002918 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002919 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002920 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002921 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002922 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002923 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01002924 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05002925 break;
2926 }
Miao Xie125bac012013-07-25 19:22:37 +08002927 em = __get_extent_map(inode, page, pg_offset, cur,
2928 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002929 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002930 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00002931 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002932 break;
2933 }
Chris Masond1310b22008-01-24 16:13:08 -05002934 extent_offset = cur - em->start;
2935 BUG_ON(extent_map_end(em) <= cur);
2936 BUG_ON(end < cur);
2937
Li Zefan261507a02010-12-17 14:21:50 +08002938 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002939 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002940 extent_set_compress_type(&this_bio_flag,
2941 em->compress_type);
2942 }
Chris Masonc8b97812008-10-29 14:49:59 -04002943
Chris Masond1310b22008-01-24 16:13:08 -05002944 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2945 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002946 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002947 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2948 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02002949 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002950 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02002951 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04002952 disk_io_size = iosize;
2953 }
Chris Masond1310b22008-01-24 16:13:08 -05002954 bdev = em->bdev;
2955 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002956 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2957 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002958
2959 /*
2960 * If we have a file range that points to a compressed extent
2961 * and it's followed by a consecutive file range that points to
2962 * to the same compressed extent (possibly with a different
2963 * offset and/or length, so it either points to the whole extent
2964 * or only part of it), we must make sure we do not submit a
2965 * single bio to populate the pages for the 2 ranges because
2966 * this makes the compressed extent read zero out the pages
2967 * belonging to the 2nd range. Imagine the following scenario:
2968 *
2969 * File layout
2970 * [0 - 8K] [8K - 24K]
2971 * | |
2972 * | |
2973 * points to extent X, points to extent X,
2974 * offset 4K, length of 8K offset 0, length 16K
2975 *
2976 * [extent X, compressed length = 4K uncompressed length = 16K]
2977 *
2978 * If the bio to read the compressed extent covers both ranges,
2979 * it will decompress extent X into the pages belonging to the
2980 * first range and then it will stop, zeroing out the remaining
2981 * pages that belong to the other range that points to extent X.
2982 * So here we make sure we submit 2 bios, one for the first
2983 * range and another one for the third range. Both will target
2984 * the same physical extent from disk, but we can't currently
2985 * make the compressed bio endio callback populate the pages
2986 * for both ranges because each compressed bio is tightly
2987 * coupled with a single extent map, and each range can have
2988 * an extent map with a different offset value relative to the
2989 * uncompressed data of our extent and different lengths. This
2990 * is a corner case so we prioritize correctness over
2991 * non-optimal behavior (submitting 2 bios for the same extent).
2992 */
2993 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
2994 prev_em_start && *prev_em_start != (u64)-1 &&
Filipe Manana8e928212019-02-14 15:17:20 +00002995 *prev_em_start != em->start)
Filipe Manana005efed2015-09-14 09:09:31 +01002996 force_bio_submit = true;
2997
2998 if (prev_em_start)
Filipe Manana8e928212019-02-14 15:17:20 +00002999 *prev_em_start = em->start;
Filipe Manana005efed2015-09-14 09:09:31 +01003000
Chris Masond1310b22008-01-24 16:13:08 -05003001 free_extent_map(em);
3002 em = NULL;
3003
3004 /* we've found a hole, just zero and go on */
3005 if (block_start == EXTENT_MAP_HOLE) {
3006 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003007 struct extent_state *cached = NULL;
3008
Cong Wang7ac687d2011-11-25 23:14:28 +08003009 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003010 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003011 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003012 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003013
3014 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003015 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003016 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003017 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003018 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003019 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003020 continue;
3021 }
3022 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003023 if (test_range_bit(tree, cur, cur_end,
3024 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003025 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003026 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003027 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003028 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003029 continue;
3030 }
Chris Mason70dec802008-01-29 09:59:12 -05003031 /* we have an inline extent but it didn't get marked up
3032 * to date. Error out
3033 */
3034 if (block_start == EXTENT_MAP_INLINE) {
3035 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003036 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003037 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003038 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003039 continue;
3040 }
Chris Masond1310b22008-01-24 16:13:08 -05003041
David Sterba4b81ba42017-06-06 19:14:26 +02003042 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003043 page, offset, disk_io_size,
3044 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003045 end_bio_extent_readpage, mirror_num,
3046 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003047 this_bio_flag,
3048 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003049 if (!ret) {
3050 nr++;
3051 *bio_flags = this_bio_flag;
3052 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003053 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003054 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003055 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003056 }
Chris Masond1310b22008-01-24 16:13:08 -05003057 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003058 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003059 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003060out:
Chris Masond1310b22008-01-24 16:13:08 -05003061 if (!nr) {
3062 if (!PageError(page))
3063 SetPageUptodate(page);
3064 unlock_page(page);
3065 }
Liu Bobaf863b2016-07-11 10:39:07 -07003066 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003067}
3068
Miao Xie99740902013-07-25 19:22:36 +08003069static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3070 struct page *pages[], int nr_pages,
3071 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003072 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003073 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003074 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003075 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003076{
3077 struct inode *inode;
3078 struct btrfs_ordered_extent *ordered;
3079 int index;
3080
3081 inode = pages[0]->mapping->host;
3082 while (1) {
3083 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003084 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003085 end - start + 1);
3086 if (!ordered)
3087 break;
3088 unlock_extent(tree, start, end);
3089 btrfs_start_ordered_extent(inode, ordered, 1);
3090 btrfs_put_ordered_extent(ordered);
3091 }
3092
3093 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003094 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003095 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003096 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003097 }
3098}
3099
3100static void __extent_readpages(struct extent_io_tree *tree,
3101 struct page *pages[],
David Sterbae4d17ef2017-06-23 04:09:57 +02003102 int nr_pages,
Miao Xie125bac012013-07-25 19:22:37 +08003103 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003104 struct bio **bio, unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003105 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003106{
Stefan Behrens35a36212013-08-14 18:12:25 +02003107 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003108 u64 end = 0;
3109 u64 page_start;
3110 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003111 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003112
3113 for (index = 0; index < nr_pages; index++) {
3114 page_start = page_offset(pages[index]);
3115 if (!end) {
3116 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003117 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003118 first_index = index;
3119 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003120 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003121 } else {
3122 __do_contiguous_readpages(tree, &pages[first_index],
3123 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003124 end, em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003125 bio, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003126 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003127 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003128 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003129 first_index = index;
3130 }
3131 }
3132
3133 if (end)
3134 __do_contiguous_readpages(tree, &pages[first_index],
3135 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003136 end, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003137 bio_flags, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003138}
3139
3140static int __extent_read_full_page(struct extent_io_tree *tree,
3141 struct page *page,
3142 get_extent_t *get_extent,
3143 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003144 unsigned long *bio_flags,
3145 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003146{
3147 struct inode *inode = page->mapping->host;
3148 struct btrfs_ordered_extent *ordered;
3149 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003150 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003151 int ret;
3152
3153 while (1) {
3154 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003155 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003156 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003157 if (!ordered)
3158 break;
3159 unlock_extent(tree, start, end);
3160 btrfs_start_ordered_extent(inode, ordered, 1);
3161 btrfs_put_ordered_extent(ordered);
3162 }
3163
Miao Xie125bac012013-07-25 19:22:37 +08003164 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003165 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003166 return ret;
3167}
3168
Chris Masond1310b22008-01-24 16:13:08 -05003169int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003170 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003171{
3172 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003173 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003174 int ret;
3175
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003176 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003177 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003178 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003179 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003180 return ret;
3181}
Chris Masond1310b22008-01-24 16:13:08 -05003182
David Sterba3d4b9492017-02-10 19:33:41 +01003183static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003184 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003185{
3186 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003187}
3188
Chris Masond1310b22008-01-24 16:13:08 -05003189/*
Chris Mason40f76582014-05-21 13:35:51 -07003190 * helper for __extent_writepage, doing all of the delayed allocation setup.
3191 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003192 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003193 * to write the page (copy into inline extent). In this case the IO has
3194 * been started and the page is already unlocked.
3195 *
3196 * This returns 0 if all went well (page still locked)
3197 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003198 */
Chris Mason40f76582014-05-21 13:35:51 -07003199static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003200 struct page *page, struct writeback_control *wbc,
3201 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003202{
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003203 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003204 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003205 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003206 u64 delalloc_to_write = 0;
3207 u64 delalloc_end = 0;
3208 int ret;
3209 int page_started = 0;
3210
Chris Mason40f76582014-05-21 13:35:51 -07003211
3212 while (delalloc_end < page_end) {
Lu Fengqi3522e902018-11-29 11:33:38 +08003213 found = find_lock_delalloc_range(inode, tree,
Chris Mason40f76582014-05-21 13:35:51 -07003214 page,
3215 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003216 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003217 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003218 delalloc_start = delalloc_end + 1;
3219 continue;
3220 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003221 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3222 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003223 /* File system has been set read-only */
3224 if (ret) {
3225 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003226 /*
3227 * btrfs_run_delalloc_range should return < 0 for error
3228 * but just in case, we use > 0 here meaning the IO is
3229 * started, so we don't want to return > 0 unless
3230 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003231 */
3232 ret = ret < 0 ? ret : -EIO;
3233 goto done;
3234 }
3235 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003236 * delalloc_end is already one less than the total length, so
3237 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003238 */
3239 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003240 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003241 delalloc_start = delalloc_end + 1;
3242 }
3243 if (wbc->nr_to_write < delalloc_to_write) {
3244 int thresh = 8192;
3245
3246 if (delalloc_to_write < thresh * 2)
3247 thresh = delalloc_to_write;
3248 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3249 thresh);
3250 }
3251
3252 /* did the fill delalloc function already unlock and start
3253 * the IO?
3254 */
3255 if (page_started) {
3256 /*
3257 * we've unlocked the page, so we can't update
3258 * the mapping's writeback index, just update
3259 * nr_to_write.
3260 */
3261 wbc->nr_to_write -= *nr_written;
3262 return 1;
3263 }
3264
3265 ret = 0;
3266
3267done:
3268 return ret;
3269}
3270
3271/*
3272 * helper for __extent_writepage. This calls the writepage start hooks,
3273 * and does the loop to map the page into extents and bios.
3274 *
3275 * We return 1 if the IO is started and the page is unlocked,
3276 * 0 if all went well (page still locked)
3277 * < 0 if there were errors (page still locked)
3278 */
3279static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3280 struct page *page,
3281 struct writeback_control *wbc,
3282 struct extent_page_data *epd,
3283 loff_t i_size,
3284 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003285 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003286{
Chris Masond1310b22008-01-24 16:13:08 -05003287 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003288 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003289 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003290 u64 end;
3291 u64 cur = start;
3292 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003293 u64 block_start;
3294 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003295 struct extent_map *em;
3296 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003297 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003298 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003299 int ret = 0;
3300 int nr = 0;
3301 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003302
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003303 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3304 if (ret) {
3305 /* Fixup worker will requeue */
3306 if (ret == -EBUSY)
3307 wbc->pages_skipped++;
3308 else
3309 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003310
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003311 update_nr_written(wbc, nr_written);
3312 unlock_page(page);
3313 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003314 }
3315
Chris Mason11c83492009-04-20 15:50:09 -04003316 /*
3317 * we don't want to touch the inode after unlocking the page,
3318 * so we update the mapping writeback index now
3319 */
David Sterba3d4b9492017-02-10 19:33:41 +01003320 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003321
Chris Masond1310b22008-01-24 16:13:08 -05003322 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003323 if (i_size <= start) {
Nikolay Borisovc6297322018-11-08 10:18:08 +02003324 btrfs_writepage_endio_finish_ordered(page, start, page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003325 goto done;
3326 }
3327
Chris Masond1310b22008-01-24 16:13:08 -05003328 blocksize = inode->i_sb->s_blocksize;
3329
3330 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003331 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003332 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003333
Chris Mason40f76582014-05-21 13:35:51 -07003334 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003335 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003336 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003337 break;
3338 }
David Sterba3c98c622017-06-23 04:01:08 +02003339 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003340 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003341 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003342 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003343 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003344 break;
3345 }
3346
3347 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003348 em_end = extent_map_end(em);
3349 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003350 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003351 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003352 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003353 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003354 bdev = em->bdev;
3355 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003356 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003357 free_extent_map(em);
3358 em = NULL;
3359
Chris Masonc8b97812008-10-29 14:49:59 -04003360 /*
3361 * compressed and inline extents are written through other
3362 * paths in the FS
3363 */
3364 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003365 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003366 /*
3367 * end_io notification does not happen here for
3368 * compressed extents
3369 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003370 if (!compressed)
3371 btrfs_writepage_endio_finish_ordered(page, cur,
3372 cur + iosize - 1,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003373 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003374 else if (compressed) {
3375 /* we don't want to end_page_writeback on
3376 * a compressed extent. this happens
3377 * elsewhere
3378 */
3379 nr++;
3380 }
3381
3382 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003383 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003384 continue;
3385 }
Chris Masonc8b97812008-10-29 14:49:59 -04003386
David Sterba5cdc84b2018-07-18 20:32:52 +02003387 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003388 if (!PageWriteback(page)) {
3389 btrfs_err(BTRFS_I(inode)->root->fs_info,
3390 "page %lu not writeback, cur %llu end %llu",
3391 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003392 }
David Sterba58409ed2016-05-04 11:46:10 +02003393
David Sterba4b81ba42017-06-06 19:14:26 +02003394 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003395 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003396 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003397 end_bio_extent_writepage,
3398 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003399 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003400 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003401 if (PageWriteback(page))
3402 end_page_writeback(page);
3403 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003404
Chris Masond1310b22008-01-24 16:13:08 -05003405 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003406 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003407 nr++;
3408 }
3409done:
Chris Mason40f76582014-05-21 13:35:51 -07003410 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003411 return ret;
3412}
3413
3414/*
3415 * the writepage semantics are similar to regular writepage. extent
3416 * records are inserted to lock ranges in the tree, and as dirty areas
3417 * are found, they are marked writeback. Then the lock bits are removed
3418 * and the end_io handler clears the writeback ranges
3419 */
3420static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003421 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003422{
3423 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003424 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003425 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003426 int ret;
3427 int nr = 0;
3428 size_t pg_offset = 0;
3429 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003430 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003431 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003432 unsigned long nr_written = 0;
3433
Liu Boff40adf2017-08-24 18:19:48 -06003434 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003435
3436 trace___extent_writepage(page, inode, wbc);
3437
3438 WARN_ON(!PageLocked(page));
3439
3440 ClearPageError(page);
3441
Johannes Thumshirn70730172018-12-05 15:23:03 +01003442 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003443 if (page->index > end_index ||
3444 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003445 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003446 unlock_page(page);
3447 return 0;
3448 }
3449
3450 if (page->index == end_index) {
3451 char *userpage;
3452
3453 userpage = kmap_atomic(page);
3454 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003455 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003456 kunmap_atomic(userpage);
3457 flush_dcache_page(page);
3458 }
3459
3460 pg_offset = 0;
3461
3462 set_page_extent_mapped(page);
3463
Nikolay Borisov7789a552018-11-08 10:18:06 +02003464 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003465 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003466 if (ret == 1)
3467 goto done_unlocked;
3468 if (ret)
3469 goto done;
3470 }
Chris Mason40f76582014-05-21 13:35:51 -07003471
3472 ret = __extent_writepage_io(inode, page, wbc, epd,
3473 i_size, nr_written, write_flags, &nr);
3474 if (ret == 1)
3475 goto done_unlocked;
3476
3477done:
Chris Masond1310b22008-01-24 16:13:08 -05003478 if (nr == 0) {
3479 /* make sure the mapping tag for page dirty gets cleared */
3480 set_page_writeback(page);
3481 end_page_writeback(page);
3482 }
Filipe Manana61391d52014-05-09 17:17:40 +01003483 if (PageError(page)) {
3484 ret = ret < 0 ? ret : -EIO;
3485 end_extent_writepage(page, ret, start, page_end);
3486 }
Chris Masond1310b22008-01-24 16:13:08 -05003487 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003488 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003489
Chris Mason11c83492009-04-20 15:50:09 -04003490done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003491 return 0;
3492}
3493
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003494void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003495{
NeilBrown74316202014-07-07 15:16:04 +10003496 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3497 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003498}
3499
Chris Mason0e378df2014-05-19 20:55:27 -07003500static noinline_for_stack int
3501lock_extent_buffer_for_io(struct extent_buffer *eb,
3502 struct btrfs_fs_info *fs_info,
3503 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003504{
David Sterbacc5e31a2018-03-01 18:20:27 +01003505 int i, num_pages;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003506 int flush = 0;
3507 int ret = 0;
3508
3509 if (!btrfs_try_tree_write_lock(eb)) {
3510 flush = 1;
3511 flush_write_bio(epd);
3512 btrfs_tree_lock(eb);
3513 }
3514
3515 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3516 btrfs_tree_unlock(eb);
3517 if (!epd->sync_io)
3518 return 0;
3519 if (!flush) {
3520 flush_write_bio(epd);
3521 flush = 1;
3522 }
Chris Masona098d8e82012-03-21 12:09:56 -04003523 while (1) {
3524 wait_on_extent_buffer_writeback(eb);
3525 btrfs_tree_lock(eb);
3526 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3527 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003528 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003529 }
3530 }
3531
Josef Bacik51561ff2012-07-20 16:25:24 -04003532 /*
3533 * We need to do this to prevent races in people who check if the eb is
3534 * under IO since we can end up having no IO bits set for a short period
3535 * of time.
3536 */
3537 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003538 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3539 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003540 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003541 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003542 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3543 -eb->len,
3544 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003545 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003546 } else {
3547 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003548 }
3549
3550 btrfs_tree_unlock(eb);
3551
3552 if (!ret)
3553 return ret;
3554
David Sterba65ad0102018-06-29 10:56:49 +02003555 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003556 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003557 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003558
3559 if (!trylock_page(p)) {
3560 if (!flush) {
3561 flush_write_bio(epd);
3562 flush = 1;
3563 }
3564 lock_page(p);
3565 }
3566 }
3567
3568 return ret;
3569}
3570
3571static void end_extent_buffer_writeback(struct extent_buffer *eb)
3572{
3573 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003574 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003575 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3576}
3577
Filipe Manana656f30d2014-09-26 12:25:56 +01003578static void set_btree_ioerr(struct page *page)
3579{
3580 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003581
3582 SetPageError(page);
3583 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3584 return;
3585
3586 /*
3587 * If writeback for a btree extent that doesn't belong to a log tree
3588 * failed, increment the counter transaction->eb_write_errors.
3589 * We do this because while the transaction is running and before it's
3590 * committing (when we call filemap_fdata[write|wait]_range against
3591 * the btree inode), we might have
3592 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3593 * returns an error or an error happens during writeback, when we're
3594 * committing the transaction we wouldn't know about it, since the pages
3595 * can be no longer dirty nor marked anymore for writeback (if a
3596 * subsequent modification to the extent buffer didn't happen before the
3597 * transaction commit), which makes filemap_fdata[write|wait]_range not
3598 * able to find the pages tagged with SetPageError at transaction
3599 * commit time. So if this happens we must abort the transaction,
3600 * otherwise we commit a super block with btree roots that point to
3601 * btree nodes/leafs whose content on disk is invalid - either garbage
3602 * or the content of some node/leaf from a past generation that got
3603 * cowed or deleted and is no longer valid.
3604 *
3605 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3606 * not be enough - we need to distinguish between log tree extents vs
3607 * non-log tree extents, and the next filemap_fdatawait_range() call
3608 * will catch and clear such errors in the mapping - and that call might
3609 * be from a log sync and not from a transaction commit. Also, checking
3610 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3611 * not done and would not be reliable - the eb might have been released
3612 * from memory and reading it back again means that flag would not be
3613 * set (since it's a runtime flag, not persisted on disk).
3614 *
3615 * Using the flags below in the btree inode also makes us achieve the
3616 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3617 * writeback for all dirty pages and before filemap_fdatawait_range()
3618 * is called, the writeback for all dirty pages had already finished
3619 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3620 * filemap_fdatawait_range() would return success, as it could not know
3621 * that writeback errors happened (the pages were no longer tagged for
3622 * writeback).
3623 */
3624 switch (eb->log_index) {
3625 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003626 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003627 break;
3628 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003629 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003630 break;
3631 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003632 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003633 break;
3634 default:
3635 BUG(); /* unexpected, logic error */
3636 }
3637}
3638
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003639static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003640{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003641 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003642 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003643 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003644
David Sterbac09abff2017-07-13 18:10:07 +02003645 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08003646 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003647 struct page *page = bvec->bv_page;
3648
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003649 eb = (struct extent_buffer *)page->private;
3650 BUG_ON(!eb);
3651 done = atomic_dec_and_test(&eb->io_pages);
3652
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003653 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003654 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003655 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003656 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003657 }
3658
3659 end_page_writeback(page);
3660
3661 if (!done)
3662 continue;
3663
3664 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003665 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003666
3667 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003668}
3669
Chris Mason0e378df2014-05-19 20:55:27 -07003670static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003671 struct btrfs_fs_info *fs_info,
3672 struct writeback_control *wbc,
3673 struct extent_page_data *epd)
3674{
3675 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003676 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003677 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003678 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003679 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003680 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003681 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003682 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003683
Filipe Manana656f30d2014-09-26 12:25:56 +01003684 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003685 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003686 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003687
Liu Bo851cd172016-09-23 13:44:44 -07003688 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3689 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003690 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003691 end = btrfs_node_key_ptr_offset(nritems);
3692
David Sterbab159fa22016-11-08 18:09:03 +01003693 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003694 } else {
3695 /*
3696 * leaf:
3697 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3698 */
3699 start = btrfs_item_nr_offset(nritems);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003700 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003701 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003702 }
3703
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003704 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003705 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003706
3707 clear_page_dirty_for_io(p);
3708 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003709 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003710 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003711 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003712 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003713 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003714 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003715 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003716 if (PageWriteback(p))
3717 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003718 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3719 end_extent_buffer_writeback(eb);
3720 ret = -EIO;
3721 break;
3722 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003723 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003724 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003725 unlock_page(p);
3726 }
3727
3728 if (unlikely(ret)) {
3729 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003730 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003731 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003732 unlock_page(p);
3733 }
3734 }
3735
3736 return ret;
3737}
3738
3739int btree_write_cache_pages(struct address_space *mapping,
3740 struct writeback_control *wbc)
3741{
3742 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3743 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3744 struct extent_buffer *eb, *prev_eb = NULL;
3745 struct extent_page_data epd = {
3746 .bio = NULL,
3747 .tree = tree,
3748 .extent_locked = 0,
3749 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3750 };
3751 int ret = 0;
3752 int done = 0;
3753 int nr_to_write_done = 0;
3754 struct pagevec pvec;
3755 int nr_pages;
3756 pgoff_t index;
3757 pgoff_t end; /* Inclusive */
3758 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003759 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003760
Mel Gorman86679822017-11-15 17:37:52 -08003761 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003762 if (wbc->range_cyclic) {
3763 index = mapping->writeback_index; /* Start from prev offset */
3764 end = -1;
3765 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003766 index = wbc->range_start >> PAGE_SHIFT;
3767 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003768 scanned = 1;
3769 }
3770 if (wbc->sync_mode == WB_SYNC_ALL)
3771 tag = PAGECACHE_TAG_TOWRITE;
3772 else
3773 tag = PAGECACHE_TAG_DIRTY;
3774retry:
3775 if (wbc->sync_mode == WB_SYNC_ALL)
3776 tag_pages_for_writeback(mapping, index, end);
3777 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003778 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003779 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003780 unsigned i;
3781
3782 scanned = 1;
3783 for (i = 0; i < nr_pages; i++) {
3784 struct page *page = pvec.pages[i];
3785
3786 if (!PagePrivate(page))
3787 continue;
3788
Josef Bacikb5bae262012-09-14 13:43:01 -04003789 spin_lock(&mapping->private_lock);
3790 if (!PagePrivate(page)) {
3791 spin_unlock(&mapping->private_lock);
3792 continue;
3793 }
3794
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003795 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003796
3797 /*
3798 * Shouldn't happen and normally this would be a BUG_ON
3799 * but no sense in crashing the users box for something
3800 * we can survive anyway.
3801 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303802 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003803 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003804 continue;
3805 }
3806
Josef Bacikb5bae262012-09-14 13:43:01 -04003807 if (eb == prev_eb) {
3808 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003809 continue;
3810 }
3811
Josef Bacikb5bae262012-09-14 13:43:01 -04003812 ret = atomic_inc_not_zero(&eb->refs);
3813 spin_unlock(&mapping->private_lock);
3814 if (!ret)
3815 continue;
3816
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003817 prev_eb = eb;
3818 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3819 if (!ret) {
3820 free_extent_buffer(eb);
3821 continue;
3822 }
3823
3824 ret = write_one_eb(eb, fs_info, wbc, &epd);
3825 if (ret) {
3826 done = 1;
3827 free_extent_buffer(eb);
3828 break;
3829 }
3830 free_extent_buffer(eb);
3831
3832 /*
3833 * the filesystem may choose to bump up nr_to_write.
3834 * We have to make sure to honor the new nr_to_write
3835 * at any time
3836 */
3837 nr_to_write_done = wbc->nr_to_write <= 0;
3838 }
3839 pagevec_release(&pvec);
3840 cond_resched();
3841 }
3842 if (!scanned && !done) {
3843 /*
3844 * We hit the last page and there is more work to be done: wrap
3845 * back to the start of the file
3846 */
3847 scanned = 1;
3848 index = 0;
3849 goto retry;
3850 }
3851 flush_write_bio(&epd);
3852 return ret;
3853}
3854
Chris Masond1310b22008-01-24 16:13:08 -05003855/**
Chris Mason4bef0842008-09-08 11:18:08 -04003856 * 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 -05003857 * @mapping: address space structure to write
3858 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003859 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003860 *
3861 * If a page is already under I/O, write_cache_pages() skips it, even
3862 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3863 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3864 * and msync() need to guarantee that all the data which was dirty at the time
3865 * the call was made get new I/O started against them. If wbc->sync_mode is
3866 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3867 * existing IO to complete.
3868 */
David Sterba4242b642017-02-10 19:38:24 +01003869static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003870 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003871 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003872{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003873 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003874 int ret = 0;
3875 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003876 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003877 struct pagevec pvec;
3878 int nr_pages;
3879 pgoff_t index;
3880 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003881 pgoff_t done_index;
3882 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003883 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003884 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05003885
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003886 /*
3887 * We have to hold onto the inode so that ordered extents can do their
3888 * work when the IO finishes. The alternative to this is failing to add
3889 * an ordered extent if the igrab() fails there and that is a huge pain
3890 * to deal with, so instead just hold onto the inode throughout the
3891 * writepages operation. If it fails here we are freeing up the inode
3892 * anyway and we'd rather not waste our time writing out stuff that is
3893 * going to be truncated anyway.
3894 */
3895 if (!igrab(inode))
3896 return 0;
3897
Mel Gorman86679822017-11-15 17:37:52 -08003898 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003899 if (wbc->range_cyclic) {
3900 index = mapping->writeback_index; /* Start from prev offset */
3901 end = -1;
3902 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003903 index = wbc->range_start >> PAGE_SHIFT;
3904 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003905 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3906 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003907 scanned = 1;
3908 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08003909
3910 /*
3911 * We do the tagged writepage as long as the snapshot flush bit is set
3912 * and we are the first one who do the filemap_flush() on this inode.
3913 *
3914 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
3915 * not race in and drop the bit.
3916 */
3917 if (range_whole && wbc->nr_to_write == LONG_MAX &&
3918 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
3919 &BTRFS_I(inode)->runtime_flags))
3920 wbc->tagged_writepages = 1;
3921
3922 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00003923 tag = PAGECACHE_TAG_TOWRITE;
3924 else
3925 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003926retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08003927 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00003928 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003929 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003930 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08003931 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
3932 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05003933 unsigned i;
3934
3935 scanned = 1;
3936 for (i = 0; i < nr_pages; i++) {
3937 struct page *page = pvec.pages[i];
3938
Liu Boa91326672016-03-07 16:56:21 -08003939 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003940 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07003941 * At this point we hold neither the i_pages lock nor
3942 * the page lock: the page may be truncated or
3943 * invalidated (changing page->mapping to NULL),
3944 * or even swizzled back from swapper_space to
3945 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05003946 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003947 if (!trylock_page(page)) {
David Sterbaaab6e9e2017-11-30 18:00:02 +01003948 flush_write_bio(epd);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003949 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003950 }
Chris Masond1310b22008-01-24 16:13:08 -05003951
3952 if (unlikely(page->mapping != mapping)) {
3953 unlock_page(page);
3954 continue;
3955 }
3956
Chris Masond2c3f4f2008-11-19 12:44:22 -05003957 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003958 if (PageWriteback(page))
David Sterbaaab6e9e2017-11-30 18:00:02 +01003959 flush_write_bio(epd);
Chris Masond1310b22008-01-24 16:13:08 -05003960 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003961 }
Chris Masond1310b22008-01-24 16:13:08 -05003962
3963 if (PageWriteback(page) ||
3964 !clear_page_dirty_for_io(page)) {
3965 unlock_page(page);
3966 continue;
3967 }
3968
David Sterbaaab6e9e2017-11-30 18:00:02 +01003969 ret = __extent_writepage(page, wbc, epd);
Chris Masond1310b22008-01-24 16:13:08 -05003970
3971 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3972 unlock_page(page);
3973 ret = 0;
3974 }
Liu Boa91326672016-03-07 16:56:21 -08003975 if (ret < 0) {
3976 /*
3977 * done_index is set past this page,
3978 * so media errors will not choke
3979 * background writeout for the entire
3980 * file. This has consequences for
3981 * range_cyclic semantics (ie. it may
3982 * not be suitable for data integrity
3983 * writeout).
3984 */
3985 done_index = page->index + 1;
3986 done = 1;
3987 break;
3988 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003989
3990 /*
3991 * the filesystem may choose to bump up nr_to_write.
3992 * We have to make sure to honor the new nr_to_write
3993 * at any time
3994 */
3995 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003996 }
3997 pagevec_release(&pvec);
3998 cond_resched();
3999 }
Liu Bo894b36e2016-03-07 16:56:22 -08004000 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004001 /*
4002 * We hit the last page and there is more work to be done: wrap
4003 * back to the start of the file
4004 */
4005 scanned = 1;
4006 index = 0;
4007 goto retry;
4008 }
Liu Boa91326672016-03-07 16:56:21 -08004009
4010 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4011 mapping->writeback_index = done_index;
4012
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004013 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004014 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004015}
Chris Masond1310b22008-01-24 16:13:08 -05004016
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004017int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004018{
4019 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004020 struct extent_page_data epd = {
4021 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004022 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004023 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004024 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004025 };
Chris Masond1310b22008-01-24 16:13:08 -05004026
Chris Masond1310b22008-01-24 16:13:08 -05004027 ret = __extent_writepage(page, wbc, &epd);
4028
David Sterbae2932ee2017-06-23 04:16:17 +02004029 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004030 return ret;
4031}
Chris Masond1310b22008-01-24 16:13:08 -05004032
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004033int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004034 int mode)
4035{
4036 int ret = 0;
4037 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004038 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004039 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004040 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4041 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004042
4043 struct extent_page_data epd = {
4044 .bio = NULL,
4045 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004046 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004047 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004048 };
4049 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004050 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004051 .nr_to_write = nr_pages * 2,
4052 .range_start = start,
4053 .range_end = end + 1,
4054 };
4055
Chris Masond3977122009-01-05 21:25:51 -05004056 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004057 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004058 if (clear_page_dirty_for_io(page))
4059 ret = __extent_writepage(page, &wbc_writepages, &epd);
4060 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004061 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004062 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004063 unlock_page(page);
4064 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004065 put_page(page);
4066 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004067 }
4068
David Sterbae2932ee2017-06-23 04:16:17 +02004069 flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004070 return ret;
4071}
Chris Masond1310b22008-01-24 16:13:08 -05004072
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004073int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004074 struct writeback_control *wbc)
4075{
4076 int ret = 0;
4077 struct extent_page_data epd = {
4078 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004079 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004080 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004081 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004082 };
4083
David Sterba935db852017-06-23 04:30:28 +02004084 ret = extent_write_cache_pages(mapping, wbc, &epd);
David Sterbae2932ee2017-06-23 04:16:17 +02004085 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004086 return ret;
4087}
Chris Masond1310b22008-01-24 16:13:08 -05004088
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004089int extent_readpages(struct address_space *mapping, struct list_head *pages,
4090 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004091{
4092 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004093 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004094 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004095 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004096 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004097 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004098 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004099
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004100 while (!list_empty(pages)) {
4101 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004102 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004103
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004104 prefetchw(&page->flags);
4105 list_del(&page->lru);
4106 if (add_to_page_cache_lru(page, mapping, page->index,
4107 readahead_gfp_mask(mapping))) {
4108 put_page(page);
4109 continue;
4110 }
4111
4112 pagepool[nr++] = page;
Chris Masond1310b22008-01-24 16:13:08 -05004113 }
Liu Bo67c96842012-07-20 21:43:09 -06004114
David Sterbae4d17ef2017-06-23 04:09:57 +02004115 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004116 &bio_flags, &prev_em_start);
Chris Masond1310b22008-01-24 16:13:08 -05004117 }
Liu Bo67c96842012-07-20 21:43:09 -06004118
Miao Xie125bac012013-07-25 19:22:37 +08004119 if (em_cached)
4120 free_extent_map(em_cached);
4121
Chris Masond1310b22008-01-24 16:13:08 -05004122 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004123 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004124 return 0;
4125}
Chris Masond1310b22008-01-24 16:13:08 -05004126
4127/*
4128 * basic invalidatepage code, this waits on any locked or writeback
4129 * ranges corresponding to the page, and then deletes any extent state
4130 * records from the tree
4131 */
4132int extent_invalidatepage(struct extent_io_tree *tree,
4133 struct page *page, unsigned long offset)
4134{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004135 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004136 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004137 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004138 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4139
Qu Wenruofda28322013-02-26 08:10:22 +00004140 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004141 if (start > end)
4142 return 0;
4143
David Sterbaff13db42015-12-03 14:30:40 +01004144 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004145 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004146 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004147 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4148 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004149 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004150 return 0;
4151}
Chris Masond1310b22008-01-24 16:13:08 -05004152
4153/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004154 * a helper for releasepage, this tests for areas of the page that
4155 * are locked or under IO and drops the related state bits if it is safe
4156 * to drop the page.
4157 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004158static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004159 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004160{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004161 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004162 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004163 int ret = 1;
4164
Chris Mason211f90e2008-07-18 11:56:15 -04004165 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004166 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004167 ret = 0;
4168 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004169 /*
4170 * at this point we can safely clear everything except the
4171 * locked bit and the nodatasum bit
4172 */
David Sterba66b0c882017-10-31 16:30:47 +01004173 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004174 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004175 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004176
4177 /* if clear_extent_bit failed for enomem reasons,
4178 * we can't allow the release to continue.
4179 */
4180 if (ret < 0)
4181 ret = 0;
4182 else
4183 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004184 }
4185 return ret;
4186}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004187
4188/*
Chris Masond1310b22008-01-24 16:13:08 -05004189 * a helper for releasepage. As long as there are no locked extents
4190 * in the range corresponding to the page, both state records and extent
4191 * map records are removed
4192 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004193int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004194{
4195 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004196 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004197 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004198 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4199 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4200 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004201
Mel Gormand0164ad2015-11-06 16:28:21 -08004202 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004203 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004204 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004205 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004206 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004207 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004208 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004209 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004210 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004211 break;
4212 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004213 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4214 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004215 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004216 free_extent_map(em);
4217 break;
4218 }
4219 if (!test_range_bit(tree, em->start,
4220 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004221 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004222 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004223 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4224 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004225 remove_extent_mapping(map, em);
4226 /* once for the rb tree */
4227 free_extent_map(em);
4228 }
4229 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004230 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004231
4232 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004233 free_extent_map(em);
4234 }
Chris Masond1310b22008-01-24 16:13:08 -05004235 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004236 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004237}
Chris Masond1310b22008-01-24 16:13:08 -05004238
Chris Masonec29ed52011-02-23 16:23:20 -05004239/*
4240 * helper function for fiemap, which doesn't want to see any holes.
4241 * This maps until we find something past 'last'
4242 */
4243static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004244 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004245{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004246 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004247 struct extent_map *em;
4248 u64 len;
4249
4250 if (offset >= last)
4251 return NULL;
4252
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304253 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004254 len = last - offset;
4255 if (len == 0)
4256 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004257 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004258 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004259 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004260 return em;
4261
4262 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004263 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004264 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004265
4266 /* this is a hole, advance to the next extent */
4267 offset = extent_map_end(em);
4268 free_extent_map(em);
4269 if (offset >= last)
4270 break;
4271 }
4272 return NULL;
4273}
4274
Qu Wenruo47518322017-04-07 10:43:15 +08004275/*
4276 * To cache previous fiemap extent
4277 *
4278 * Will be used for merging fiemap extent
4279 */
4280struct fiemap_cache {
4281 u64 offset;
4282 u64 phys;
4283 u64 len;
4284 u32 flags;
4285 bool cached;
4286};
4287
4288/*
4289 * Helper to submit fiemap extent.
4290 *
4291 * Will try to merge current fiemap extent specified by @offset, @phys,
4292 * @len and @flags with cached one.
4293 * And only when we fails to merge, cached one will be submitted as
4294 * fiemap extent.
4295 *
4296 * Return value is the same as fiemap_fill_next_extent().
4297 */
4298static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4299 struct fiemap_cache *cache,
4300 u64 offset, u64 phys, u64 len, u32 flags)
4301{
4302 int ret = 0;
4303
4304 if (!cache->cached)
4305 goto assign;
4306
4307 /*
4308 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004309 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004310 * Not recoverable.
4311 *
4312 * NOTE: Physical address can overlap, due to compression
4313 */
4314 if (cache->offset + cache->len > offset) {
4315 WARN_ON(1);
4316 return -EINVAL;
4317 }
4318
4319 /*
4320 * Only merges fiemap extents if
4321 * 1) Their logical addresses are continuous
4322 *
4323 * 2) Their physical addresses are continuous
4324 * So truly compressed (physical size smaller than logical size)
4325 * extents won't get merged with each other
4326 *
4327 * 3) Share same flags except FIEMAP_EXTENT_LAST
4328 * So regular extent won't get merged with prealloc extent
4329 */
4330 if (cache->offset + cache->len == offset &&
4331 cache->phys + cache->len == phys &&
4332 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4333 (flags & ~FIEMAP_EXTENT_LAST)) {
4334 cache->len += len;
4335 cache->flags |= flags;
4336 goto try_submit_last;
4337 }
4338
4339 /* Not mergeable, need to submit cached one */
4340 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4341 cache->len, cache->flags);
4342 cache->cached = false;
4343 if (ret)
4344 return ret;
4345assign:
4346 cache->cached = true;
4347 cache->offset = offset;
4348 cache->phys = phys;
4349 cache->len = len;
4350 cache->flags = flags;
4351try_submit_last:
4352 if (cache->flags & FIEMAP_EXTENT_LAST) {
4353 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4354 cache->phys, cache->len, cache->flags);
4355 cache->cached = false;
4356 }
4357 return ret;
4358}
4359
4360/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004361 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004362 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004363 * The last fiemap cache may still be cached in the following case:
4364 * 0 4k 8k
4365 * |<- Fiemap range ->|
4366 * |<------------ First extent ----------->|
4367 *
4368 * In this case, the first extent range will be cached but not emitted.
4369 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004370 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004371static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4372 struct fiemap_extent_info *fieinfo,
4373 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004374{
4375 int ret;
4376
4377 if (!cache->cached)
4378 return 0;
4379
Qu Wenruo47518322017-04-07 10:43:15 +08004380 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4381 cache->len, cache->flags);
4382 cache->cached = false;
4383 if (ret > 0)
4384 ret = 0;
4385 return ret;
4386}
4387
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004388int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004389 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004390{
Josef Bacik975f84f2010-11-23 19:36:57 +00004391 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004392 u64 off = start;
4393 u64 max = start + len;
4394 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004395 u32 found_type;
4396 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004397 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004398 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004399 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004400 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004401 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004402 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004403 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004404 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004405 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004406 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004407 u64 em_start = 0;
4408 u64 em_len = 0;
4409 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004410
4411 if (len == 0)
4412 return -EINVAL;
4413
Josef Bacik975f84f2010-11-23 19:36:57 +00004414 path = btrfs_alloc_path();
4415 if (!path)
4416 return -ENOMEM;
4417 path->leave_spinning = 1;
4418
Jeff Mahoneyda170662016-06-15 09:22:56 -04004419 start = round_down(start, btrfs_inode_sectorsize(inode));
4420 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004421
Chris Masonec29ed52011-02-23 16:23:20 -05004422 /*
4423 * lookup the last file extent. We're not using i_size here
4424 * because there might be preallocation past i_size
4425 */
David Sterbaf85b7372017-01-20 14:54:07 +01004426 ret = btrfs_lookup_file_extent(NULL, root, path,
4427 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004428 if (ret < 0) {
4429 btrfs_free_path(path);
4430 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004431 } else {
4432 WARN_ON(!ret);
4433 if (ret == 1)
4434 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004435 }
Liu Bo2d324f52016-05-17 17:21:48 -07004436
Josef Bacik975f84f2010-11-23 19:36:57 +00004437 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004438 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004439 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004440
Chris Masonec29ed52011-02-23 16:23:20 -05004441 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004442 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004443 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004444 /* have to trust i_size as the end */
4445 last = (u64)-1;
4446 last_for_get_extent = isize;
4447 } else {
4448 /*
4449 * remember the start of the last extent. There are a
4450 * bunch of different factors that go into the length of the
4451 * extent, so its much less complex to remember where it started
4452 */
4453 last = found_key.offset;
4454 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004455 }
Liu Bofe09e162013-09-22 12:54:23 +08004456 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004457
Chris Masonec29ed52011-02-23 16:23:20 -05004458 /*
4459 * we might have some extents allocated but more delalloc past those
4460 * extents. so, we trust isize unless the start of the last extent is
4461 * beyond isize
4462 */
4463 if (last < isize) {
4464 last = (u64)-1;
4465 last_for_get_extent = isize;
4466 }
4467
David Sterbaff13db42015-12-03 14:30:40 +01004468 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004469 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004470
David Sterbae3350e12017-06-23 04:09:57 +02004471 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004472 if (!em)
4473 goto out;
4474 if (IS_ERR(em)) {
4475 ret = PTR_ERR(em);
4476 goto out;
4477 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004478
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004479 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004480 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004481
Chris Masonea8efc72011-03-08 11:54:40 -05004482 /* break if the extent we found is outside the range */
4483 if (em->start >= max || extent_map_end(em) < off)
4484 break;
4485
4486 /*
4487 * get_extent may return an extent that starts before our
4488 * requested range. We have to make sure the ranges
4489 * we return to fiemap always move forward and don't
4490 * overlap, so adjust the offsets here
4491 */
4492 em_start = max(em->start, off);
4493
4494 /*
4495 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004496 * for adjusting the disk offset below. Only do this if the
4497 * extent isn't compressed since our in ram offset may be past
4498 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004499 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004500 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4501 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004502 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004503 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004504 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004505 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4506 disko = em->block_start + offset_in_extent;
4507 else
4508 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004509
Chris Masonea8efc72011-03-08 11:54:40 -05004510 /*
4511 * bump off for our next call to get_extent
4512 */
4513 off = extent_map_end(em);
4514 if (off >= max)
4515 end = 1;
4516
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004517 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004518 end = 1;
4519 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004520 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004521 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4522 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004523 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004524 flags |= (FIEMAP_EXTENT_DELALLOC |
4525 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004526 } else if (fieinfo->fi_extents_max) {
4527 u64 bytenr = em->block_start -
4528 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004529
Liu Bofe09e162013-09-22 12:54:23 +08004530 /*
4531 * As btrfs supports shared space, this information
4532 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004533 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4534 * then we're just getting a count and we can skip the
4535 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004536 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004537 ret = btrfs_check_shared(root,
4538 btrfs_ino(BTRFS_I(inode)),
4539 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004540 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004541 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004542 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004543 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004544 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004545 }
4546 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4547 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004548 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4549 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004550
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004551 free_extent_map(em);
4552 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004553 if ((em_start >= last) || em_len == (u64)-1 ||
4554 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004555 flags |= FIEMAP_EXTENT_LAST;
4556 end = 1;
4557 }
4558
Chris Masonec29ed52011-02-23 16:23:20 -05004559 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004560 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004561 if (IS_ERR(em)) {
4562 ret = PTR_ERR(em);
4563 goto out;
4564 }
4565 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004566 flags |= FIEMAP_EXTENT_LAST;
4567 end = 1;
4568 }
Qu Wenruo47518322017-04-07 10:43:15 +08004569 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4570 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004571 if (ret) {
4572 if (ret == 1)
4573 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004574 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004575 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004576 }
4577out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004578 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004579 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004580 free_extent_map(em);
4581out:
Liu Bofe09e162013-09-22 12:54:23 +08004582 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004583 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004584 &cached_state);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004585 return ret;
4586}
4587
Chris Mason727011e2010-08-06 13:21:20 -04004588static void __free_extent_buffer(struct extent_buffer *eb)
4589{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004590 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004591 kmem_cache_free(extent_buffer_cache, eb);
4592}
4593
Josef Bacika26e8c92014-03-28 17:07:27 -04004594int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004595{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004596 return (atomic_read(&eb->io_pages) ||
4597 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4598 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004599}
4600
Miao Xie897ca6e92010-10-26 20:57:29 -04004601/*
David Sterba55ac0132018-07-19 17:24:32 +02004602 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004603 */
David Sterba55ac0132018-07-19 17:24:32 +02004604static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004605{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004606 int i;
4607 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004608 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004609
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004610 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004611
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004612 num_pages = num_extent_pages(eb);
4613 for (i = 0; i < num_pages; i++) {
4614 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004615
Forrest Liu5d2361d2015-02-09 17:31:45 +08004616 if (!page)
4617 continue;
4618 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004619 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004620 /*
4621 * We do this since we'll remove the pages after we've
4622 * removed the eb from the radix tree, so we could race
4623 * and have this page now attached to the new eb. So
4624 * only clear page_private if it's still connected to
4625 * this eb.
4626 */
4627 if (PagePrivate(page) &&
4628 page->private == (unsigned long)eb) {
4629 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4630 BUG_ON(PageDirty(page));
4631 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004632 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004633 * We need to make sure we haven't be attached
4634 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004635 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004636 ClearPagePrivate(page);
4637 set_page_private(page, 0);
4638 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004639 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004640 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004641
4642 if (mapped)
4643 spin_unlock(&page->mapping->private_lock);
4644
Nicholas D Steeves01327612016-05-19 21:18:45 -04004645 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004646 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004647 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004648}
4649
4650/*
4651 * Helper for releasing the extent buffer.
4652 */
4653static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4654{
David Sterba55ac0132018-07-19 17:24:32 +02004655 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004656 __free_extent_buffer(eb);
4657}
4658
Josef Bacikf28491e2013-12-16 13:24:27 -05004659static struct extent_buffer *
4660__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004661 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004662{
4663 struct extent_buffer *eb = NULL;
4664
Michal Hockod1b5c562015-08-19 14:17:40 +02004665 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004666 eb->start = start;
4667 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004668 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004669 eb->bflags = 0;
4670 rwlock_init(&eb->lock);
4671 atomic_set(&eb->write_locks, 0);
4672 atomic_set(&eb->read_locks, 0);
4673 atomic_set(&eb->blocking_readers, 0);
4674 atomic_set(&eb->blocking_writers, 0);
4675 atomic_set(&eb->spinning_readers, 0);
4676 atomic_set(&eb->spinning_writers, 0);
4677 eb->lock_nested = 0;
4678 init_waitqueue_head(&eb->write_lock_wq);
4679 init_waitqueue_head(&eb->read_lock_wq);
4680
4681 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4682
4683 spin_lock_init(&eb->refs_lock);
4684 atomic_set(&eb->refs, 1);
4685 atomic_set(&eb->io_pages, 0);
4686
4687 /*
4688 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4689 */
4690 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4691 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4692 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4693
4694 return eb;
4695}
4696
4697struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4698{
David Sterbacc5e31a2018-03-01 18:20:27 +01004699 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004700 struct page *p;
4701 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004702 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004703
David Sterba3f556f72014-06-15 03:20:26 +02004704 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004705 if (new == NULL)
4706 return NULL;
4707
4708 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004709 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004710 if (!p) {
4711 btrfs_release_extent_buffer(new);
4712 return NULL;
4713 }
4714 attach_extent_buffer_page(new, p);
4715 WARN_ON(PageDirty(p));
4716 SetPageUptodate(p);
4717 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004718 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004719 }
4720
Josef Bacikdb7f3432013-08-07 14:54:37 -04004721 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004722 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004723
4724 return new;
4725}
4726
Omar Sandoval0f331222015-09-29 20:50:31 -07004727struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4728 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004729{
4730 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004731 int num_pages;
4732 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004733
David Sterba3f556f72014-06-15 03:20:26 +02004734 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004735 if (!eb)
4736 return NULL;
4737
David Sterba65ad0102018-06-29 10:56:49 +02004738 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004739 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004740 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004741 if (!eb->pages[i])
4742 goto err;
4743 }
4744 set_extent_buffer_uptodate(eb);
4745 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004746 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004747
4748 return eb;
4749err:
4750 for (; i > 0; i--)
4751 __free_page(eb->pages[i - 1]);
4752 __free_extent_buffer(eb);
4753 return NULL;
4754}
4755
Omar Sandoval0f331222015-09-29 20:50:31 -07004756struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004757 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004758{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004759 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004760}
4761
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004762static void check_buffer_tree_ref(struct extent_buffer *eb)
4763{
Chris Mason242e18c2013-01-29 17:49:37 -05004764 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004765 /* the ref bit is tricky. We have to make sure it is set
4766 * if we have the buffer dirty. Otherwise the
4767 * code to free a buffer can end up dropping a dirty
4768 * page
4769 *
4770 * Once the ref bit is set, it won't go away while the
4771 * buffer is dirty or in writeback, and it also won't
4772 * go away while we have the reference count on the
4773 * eb bumped.
4774 *
4775 * We can't just set the ref bit without bumping the
4776 * ref on the eb because free_extent_buffer might
4777 * see the ref bit and try to clear it. If this happens
4778 * free_extent_buffer might end up dropping our original
4779 * ref by mistake and freeing the page before we are able
4780 * to add one more ref.
4781 *
4782 * So bump the ref count first, then set the bit. If someone
4783 * beat us to it, drop the ref we added.
4784 */
Chris Mason242e18c2013-01-29 17:49:37 -05004785 refs = atomic_read(&eb->refs);
4786 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4787 return;
4788
Josef Bacik594831c2012-07-20 16:11:08 -04004789 spin_lock(&eb->refs_lock);
4790 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004791 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004792 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004793}
4794
Mel Gorman2457aec2014-06-04 16:10:31 -07004795static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4796 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004797{
David Sterbacc5e31a2018-03-01 18:20:27 +01004798 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004799
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004800 check_buffer_tree_ref(eb);
4801
David Sterba65ad0102018-06-29 10:56:49 +02004802 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004803 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004804 struct page *p = eb->pages[i];
4805
Mel Gorman2457aec2014-06-04 16:10:31 -07004806 if (p != accessed)
4807 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004808 }
4809}
4810
Josef Bacikf28491e2013-12-16 13:24:27 -05004811struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4812 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004813{
4814 struct extent_buffer *eb;
4815
4816 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004817 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004818 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004819 if (eb && atomic_inc_not_zero(&eb->refs)) {
4820 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004821 /*
4822 * Lock our eb's refs_lock to avoid races with
4823 * free_extent_buffer. When we get our eb it might be flagged
4824 * with EXTENT_BUFFER_STALE and another task running
4825 * free_extent_buffer might have seen that flag set,
4826 * eb->refs == 2, that the buffer isn't under IO (dirty and
4827 * writeback flags not set) and it's still in the tree (flag
4828 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4829 * of decrementing the extent buffer's reference count twice.
4830 * So here we could race and increment the eb's reference count,
4831 * clear its stale flag, mark it as dirty and drop our reference
4832 * before the other task finishes executing free_extent_buffer,
4833 * which would later result in an attempt to free an extent
4834 * buffer that is dirty.
4835 */
4836 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4837 spin_lock(&eb->refs_lock);
4838 spin_unlock(&eb->refs_lock);
4839 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004840 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004841 return eb;
4842 }
4843 rcu_read_unlock();
4844
4845 return NULL;
4846}
4847
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004848#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4849struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004850 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004851{
4852 struct extent_buffer *eb, *exists = NULL;
4853 int ret;
4854
4855 eb = find_extent_buffer(fs_info, start);
4856 if (eb)
4857 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004858 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004859 if (!eb)
4860 return NULL;
4861 eb->fs_info = fs_info;
4862again:
David Sterbae1860a72016-05-09 14:11:38 +02004863 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004864 if (ret)
4865 goto free_eb;
4866 spin_lock(&fs_info->buffer_lock);
4867 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004868 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004869 spin_unlock(&fs_info->buffer_lock);
4870 radix_tree_preload_end();
4871 if (ret == -EEXIST) {
4872 exists = find_extent_buffer(fs_info, start);
4873 if (exists)
4874 goto free_eb;
4875 else
4876 goto again;
4877 }
4878 check_buffer_tree_ref(eb);
4879 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4880
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004881 return eb;
4882free_eb:
4883 btrfs_release_extent_buffer(eb);
4884 return exists;
4885}
4886#endif
4887
Josef Bacikf28491e2013-12-16 13:24:27 -05004888struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004889 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004890{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004891 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01004892 int num_pages;
4893 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004894 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004895 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004896 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004897 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004898 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004899 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004900 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004901
Jeff Mahoneyda170662016-06-15 09:22:56 -04004902 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004903 btrfs_err(fs_info, "bad tree block start %llu", start);
4904 return ERR_PTR(-EINVAL);
4905 }
4906
Josef Bacikf28491e2013-12-16 13:24:27 -05004907 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004908 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004909 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004910
David Sterba23d79d82014-06-15 02:55:29 +02004911 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004912 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004913 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004914
David Sterba65ad0102018-06-29 10:56:49 +02004915 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04004916 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004917 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004918 if (!p) {
4919 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004920 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004921 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004922
4923 spin_lock(&mapping->private_lock);
4924 if (PagePrivate(p)) {
4925 /*
4926 * We could have already allocated an eb for this page
4927 * and attached one so lets see if we can get a ref on
4928 * the existing eb, and if we can we know it's good and
4929 * we can just return that one, else we know we can just
4930 * overwrite page->private.
4931 */
4932 exists = (struct extent_buffer *)p->private;
4933 if (atomic_inc_not_zero(&exists->refs)) {
4934 spin_unlock(&mapping->private_lock);
4935 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004936 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004937 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004938 goto free_eb;
4939 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004940 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004941
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004942 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004943 * Do this so attach doesn't complain and we need to
4944 * drop the ref the old guy had.
4945 */
4946 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004947 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004948 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05004949 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004950 attach_extent_buffer_page(eb, p);
4951 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004952 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004953 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004954 if (!PageUptodate(p))
4955 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004956
4957 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03004958 * We can't unlock the pages just yet since the extent buffer
4959 * hasn't been properly inserted in the radix tree, this
4960 * opens a race with btree_releasepage which can free a page
4961 * while we are still filling in all pages for the buffer and
4962 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05004963 */
Chris Masond1310b22008-01-24 16:13:08 -05004964 }
4965 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004966 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004967again:
David Sterbae1860a72016-05-09 14:11:38 +02004968 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07004969 if (ret) {
4970 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04004971 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004972 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004973
Josef Bacikf28491e2013-12-16 13:24:27 -05004974 spin_lock(&fs_info->buffer_lock);
4975 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004976 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05004977 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004978 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004979 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004980 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004981 if (exists)
4982 goto free_eb;
4983 else
Josef Bacik115391d2012-03-09 09:51:43 -05004984 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004985 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004986 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004987 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004988 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004989
4990 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03004991 * Now it's safe to unlock the pages because any calls to
4992 * btree_releasepage will correctly detect that a page belongs to a
4993 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05004994 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03004995 for (i = 0; i < num_pages; i++)
4996 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05004997 return eb;
4998
Chris Mason6af118ce2008-07-22 11:18:07 -04004999free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005000 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005001 for (i = 0; i < num_pages; i++) {
5002 if (eb->pages[i])
5003 unlock_page(eb->pages[i]);
5004 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005005
Miao Xie897ca6e92010-10-26 20:57:29 -04005006 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005007 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005008}
Chris Masond1310b22008-01-24 16:13:08 -05005009
Josef Bacik3083ee22012-03-09 16:01:49 -05005010static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5011{
5012 struct extent_buffer *eb =
5013 container_of(head, struct extent_buffer, rcu_head);
5014
5015 __free_extent_buffer(eb);
5016}
5017
David Sterbaf7a52a42013-04-26 14:56:29 +00005018static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005019{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005020 lockdep_assert_held(&eb->refs_lock);
5021
Josef Bacik3083ee22012-03-09 16:01:49 -05005022 WARN_ON(atomic_read(&eb->refs) == 0);
5023 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005024 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005025 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005026
Jan Schmidt815a51c2012-05-16 17:00:02 +02005027 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005028
Josef Bacikf28491e2013-12-16 13:24:27 -05005029 spin_lock(&fs_info->buffer_lock);
5030 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005031 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005032 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005033 } else {
5034 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005035 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005036
5037 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005038 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005039#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005040 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005041 __free_extent_buffer(eb);
5042 return 1;
5043 }
5044#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005045 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005046 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005047 }
5048 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005049
5050 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005051}
5052
Chris Masond1310b22008-01-24 16:13:08 -05005053void free_extent_buffer(struct extent_buffer *eb)
5054{
Chris Mason242e18c2013-01-29 17:49:37 -05005055 int refs;
5056 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005057 if (!eb)
5058 return;
5059
Chris Mason242e18c2013-01-29 17:49:37 -05005060 while (1) {
5061 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005062 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5063 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5064 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005065 break;
5066 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5067 if (old == refs)
5068 return;
5069 }
5070
Josef Bacik3083ee22012-03-09 16:01:49 -05005071 spin_lock(&eb->refs_lock);
5072 if (atomic_read(&eb->refs) == 2 &&
5073 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005074 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005075 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5076 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005077
Josef Bacik3083ee22012-03-09 16:01:49 -05005078 /*
5079 * I know this is terrible, but it's temporary until we stop tracking
5080 * the uptodate bits and such for the extent buffers.
5081 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005082 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005083}
Chris Masond1310b22008-01-24 16:13:08 -05005084
Josef Bacik3083ee22012-03-09 16:01:49 -05005085void free_extent_buffer_stale(struct extent_buffer *eb)
5086{
5087 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005088 return;
5089
Josef Bacik3083ee22012-03-09 16:01:49 -05005090 spin_lock(&eb->refs_lock);
5091 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5092
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005093 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005094 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5095 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005096 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005097}
5098
Chris Mason1d4284b2012-03-28 20:31:37 -04005099void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005100{
David Sterbacc5e31a2018-03-01 18:20:27 +01005101 int i;
5102 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005103 struct page *page;
5104
David Sterba65ad0102018-06-29 10:56:49 +02005105 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005106
5107 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005108 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005109 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005110 continue;
5111
Chris Masona61e6f22008-07-22 11:18:08 -04005112 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005113 WARN_ON(!PagePrivate(page));
5114
Chris Masond1310b22008-01-24 16:13:08 -05005115 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005116 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005117 if (!PageDirty(page))
5118 __xa_clear_mark(&page->mapping->i_pages,
5119 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005120 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005121 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005122 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005123 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005124 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005125}
Chris Masond1310b22008-01-24 16:13:08 -05005126
Liu Boabb57ef2018-09-14 01:44:42 +08005127bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005128{
David Sterbacc5e31a2018-03-01 18:20:27 +01005129 int i;
5130 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005131 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005132
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005133 check_buffer_tree_ref(eb);
5134
Chris Masonb9473432009-03-13 11:00:37 -04005135 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005136
David Sterba65ad0102018-06-29 10:56:49 +02005137 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005138 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005139 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5140
Liu Boabb57ef2018-09-14 01:44:42 +08005141 if (!was_dirty)
5142 for (i = 0; i < num_pages; i++)
5143 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005144
5145#ifdef CONFIG_BTRFS_DEBUG
5146 for (i = 0; i < num_pages; i++)
5147 ASSERT(PageDirty(eb->pages[i]));
5148#endif
5149
Chris Masonb9473432009-03-13 11:00:37 -04005150 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005151}
Chris Masond1310b22008-01-24 16:13:08 -05005152
David Sterba69ba3922015-12-03 13:08:59 +01005153void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005154{
David Sterbacc5e31a2018-03-01 18:20:27 +01005155 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005156 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005157 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005158
Chris Masonb4ce94d2009-02-04 09:25:08 -05005159 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005160 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005161 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005162 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005163 if (page)
5164 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005165 }
Chris Mason1259ab72008-05-12 13:39:03 -04005166}
5167
David Sterba09c25a82015-12-03 13:08:59 +01005168void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005169{
David Sterbacc5e31a2018-03-01 18:20:27 +01005170 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005171 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005172 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005173
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005174 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005175 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005176 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005177 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005178 SetPageUptodate(page);
5179 }
Chris Masond1310b22008-01-24 16:13:08 -05005180}
Chris Masond1310b22008-01-24 16:13:08 -05005181
Chris Masond1310b22008-01-24 16:13:08 -05005182int read_extent_buffer_pages(struct extent_io_tree *tree,
David Sterba6af49db2017-06-23 04:09:57 +02005183 struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005184{
David Sterbacc5e31a2018-03-01 18:20:27 +01005185 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005186 struct page *page;
5187 int err;
5188 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005189 int locked_pages = 0;
5190 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005191 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005192 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005193 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005194 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005195
Chris Masonb4ce94d2009-02-04 09:25:08 -05005196 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005197 return 0;
5198
David Sterba65ad0102018-06-29 10:56:49 +02005199 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005200 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005201 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005202 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005203 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005204 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005205 } else {
5206 lock_page(page);
5207 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005208 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005209 }
5210 /*
5211 * We need to firstly lock all pages to make sure that
5212 * the uptodate bit of our pages won't be affected by
5213 * clear_extent_buffer_uptodate().
5214 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005215 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005216 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005217 if (!PageUptodate(page)) {
5218 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005219 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005220 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005221 }
Liu Bo2571e732016-08-03 12:33:01 -07005222
Chris Masonce9adaa2008-04-09 16:28:12 -04005223 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005224 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005225 goto unlock_exit;
5226 }
5227
Filipe Manana656f30d2014-09-26 12:25:56 +01005228 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005229 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005230 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005231 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005232 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005233
Chris Masonce9adaa2008-04-09 16:28:12 -04005234 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005235 if (ret) {
5236 atomic_dec(&eb->io_pages);
5237 unlock_page(page);
5238 continue;
5239 }
5240
Chris Masonf1885912008-04-09 16:28:12 -04005241 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005242 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005243 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005244 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005245 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005246 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005247 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005248 /*
5249 * We use &bio in above __extent_read_full_page,
5250 * so we ensure that if it returns error, the
5251 * current page fails to add itself to bio and
5252 * it's been unlocked.
5253 *
5254 * We must dec io_pages by ourselves.
5255 */
5256 atomic_dec(&eb->io_pages);
5257 }
Chris Masond1310b22008-01-24 16:13:08 -05005258 } else {
5259 unlock_page(page);
5260 }
5261 }
5262
Jeff Mahoney355808c2011-10-03 23:23:14 -04005263 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005264 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005265 if (err)
5266 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005267 }
Chris Masona86c12c2008-02-07 10:50:54 -05005268
Arne Jansenbb82ab82011-06-10 14:06:53 +02005269 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005270 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005271
Josef Bacik8436ea912016-09-02 15:40:03 -04005272 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005273 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005274 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005275 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005276 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005277 }
Chris Masond3977122009-01-05 21:25:51 -05005278
Chris Masond1310b22008-01-24 16:13:08 -05005279 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005280
5281unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005282 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005283 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005284 page = eb->pages[locked_pages];
5285 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005286 }
5287 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005288}
Chris Masond1310b22008-01-24 16:13:08 -05005289
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005290void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5291 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005292{
5293 size_t cur;
5294 size_t offset;
5295 struct page *page;
5296 char *kaddr;
5297 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005298 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005299 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005300
Liu Bof716abd2017-08-09 11:10:16 -06005301 if (start + len > eb->len) {
5302 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5303 eb->start, eb->len, start, len);
5304 memset(dst, 0, len);
5305 return;
5306 }
Chris Masond1310b22008-01-24 16:13:08 -05005307
Johannes Thumshirn70730172018-12-05 15:23:03 +01005308 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005309
Chris Masond3977122009-01-05 21:25:51 -05005310 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005311 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005312
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005313 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005314 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005315 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005316
5317 dst += cur;
5318 len -= cur;
5319 offset = 0;
5320 i++;
5321 }
5322}
Chris Masond1310b22008-01-24 16:13:08 -05005323
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005324int read_extent_buffer_to_user(const struct extent_buffer *eb,
5325 void __user *dstv,
5326 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005327{
5328 size_t cur;
5329 size_t offset;
5330 struct page *page;
5331 char *kaddr;
5332 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005333 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005334 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005335 int ret = 0;
5336
5337 WARN_ON(start > eb->len);
5338 WARN_ON(start + len > eb->start + eb->len);
5339
Johannes Thumshirn70730172018-12-05 15:23:03 +01005340 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005341
5342 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005343 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005344
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005345 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005346 kaddr = page_address(page);
5347 if (copy_to_user(dst, kaddr + offset, cur)) {
5348 ret = -EFAULT;
5349 break;
5350 }
5351
5352 dst += cur;
5353 len -= cur;
5354 offset = 0;
5355 i++;
5356 }
5357
5358 return ret;
5359}
5360
Liu Bo415b35a2016-06-17 19:16:21 -07005361/*
5362 * return 0 if the item is found within a page.
5363 * return 1 if the item spans two pages.
5364 * return -EINVAL otherwise.
5365 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005366int map_private_extent_buffer(const struct extent_buffer *eb,
5367 unsigned long start, unsigned long min_len,
5368 char **map, unsigned long *map_start,
5369 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005370{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005371 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005372 char *kaddr;
5373 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005374 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005375 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005376 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005377 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005378
Liu Bof716abd2017-08-09 11:10:16 -06005379 if (start + min_len > eb->len) {
5380 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5381 eb->start, eb->len, start, min_len);
5382 return -EINVAL;
5383 }
5384
Chris Masond1310b22008-01-24 16:13:08 -05005385 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005386 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005387
5388 if (i == 0) {
5389 offset = start_offset;
5390 *map_start = 0;
5391 } else {
5392 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005393 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005394 }
Chris Masond3977122009-01-05 21:25:51 -05005395
David Sterbafb85fc92014-07-31 01:03:53 +02005396 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005397 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005398 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005399 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005400 return 0;
5401}
Chris Masond1310b22008-01-24 16:13:08 -05005402
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005403int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5404 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005405{
5406 size_t cur;
5407 size_t offset;
5408 struct page *page;
5409 char *kaddr;
5410 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005411 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005412 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005413 int ret = 0;
5414
5415 WARN_ON(start > eb->len);
5416 WARN_ON(start + len > eb->start + eb->len);
5417
Johannes Thumshirn70730172018-12-05 15:23:03 +01005418 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005419
Chris Masond3977122009-01-05 21:25:51 -05005420 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005421 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005422
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005423 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005424
Chris Masona6591712011-07-19 12:04:14 -04005425 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005426 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005427 if (ret)
5428 break;
5429
5430 ptr += cur;
5431 len -= cur;
5432 offset = 0;
5433 i++;
5434 }
5435 return ret;
5436}
Chris Masond1310b22008-01-24 16:13:08 -05005437
David Sterbaf157bf72016-11-09 17:43:38 +01005438void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5439 const void *srcv)
5440{
5441 char *kaddr;
5442
5443 WARN_ON(!PageUptodate(eb->pages[0]));
5444 kaddr = page_address(eb->pages[0]);
5445 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5446 BTRFS_FSID_SIZE);
5447}
5448
5449void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5450{
5451 char *kaddr;
5452
5453 WARN_ON(!PageUptodate(eb->pages[0]));
5454 kaddr = page_address(eb->pages[0]);
5455 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5456 BTRFS_FSID_SIZE);
5457}
5458
Chris Masond1310b22008-01-24 16:13:08 -05005459void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5460 unsigned long start, unsigned long len)
5461{
5462 size_t cur;
5463 size_t offset;
5464 struct page *page;
5465 char *kaddr;
5466 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005467 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005468 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005469
5470 WARN_ON(start > eb->len);
5471 WARN_ON(start + len > eb->start + eb->len);
5472
Johannes Thumshirn70730172018-12-05 15:23:03 +01005473 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005474
Chris Masond3977122009-01-05 21:25:51 -05005475 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005476 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005477 WARN_ON(!PageUptodate(page));
5478
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005479 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005480 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005481 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005482
5483 src += cur;
5484 len -= cur;
5485 offset = 0;
5486 i++;
5487 }
5488}
Chris Masond1310b22008-01-24 16:13:08 -05005489
David Sterbab159fa22016-11-08 18:09:03 +01005490void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5491 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005492{
5493 size_t cur;
5494 size_t offset;
5495 struct page *page;
5496 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005497 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005498 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005499
5500 WARN_ON(start > eb->len);
5501 WARN_ON(start + len > eb->start + eb->len);
5502
Johannes Thumshirn70730172018-12-05 15:23:03 +01005503 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005504
Chris Masond3977122009-01-05 21:25:51 -05005505 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005506 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005507 WARN_ON(!PageUptodate(page));
5508
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005509 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005510 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005511 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005512
5513 len -= cur;
5514 offset = 0;
5515 i++;
5516 }
5517}
Chris Masond1310b22008-01-24 16:13:08 -05005518
David Sterba58e80122016-11-08 18:30:31 +01005519void copy_extent_buffer_full(struct extent_buffer *dst,
5520 struct extent_buffer *src)
5521{
5522 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005523 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005524
5525 ASSERT(dst->len == src->len);
5526
David Sterba65ad0102018-06-29 10:56:49 +02005527 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005528 for (i = 0; i < num_pages; i++)
5529 copy_page(page_address(dst->pages[i]),
5530 page_address(src->pages[i]));
5531}
5532
Chris Masond1310b22008-01-24 16:13:08 -05005533void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5534 unsigned long dst_offset, unsigned long src_offset,
5535 unsigned long len)
5536{
5537 u64 dst_len = dst->len;
5538 size_t cur;
5539 size_t offset;
5540 struct page *page;
5541 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005542 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005543 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005544
5545 WARN_ON(src->len != dst_len);
5546
Johannes Thumshirn70730172018-12-05 15:23:03 +01005547 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005548
Chris Masond3977122009-01-05 21:25:51 -05005549 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005550 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005551 WARN_ON(!PageUptodate(page));
5552
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005553 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005554
Chris Masona6591712011-07-19 12:04:14 -04005555 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005556 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005557
5558 src_offset += cur;
5559 len -= cur;
5560 offset = 0;
5561 i++;
5562 }
5563}
Chris Masond1310b22008-01-24 16:13:08 -05005564
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005565/*
5566 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5567 * given bit number
5568 * @eb: the extent buffer
5569 * @start: offset of the bitmap item in the extent buffer
5570 * @nr: bit number
5571 * @page_index: return index of the page in the extent buffer that contains the
5572 * given bit number
5573 * @page_offset: return offset into the page given by page_index
5574 *
5575 * This helper hides the ugliness of finding the byte in an extent buffer which
5576 * contains a given bit.
5577 */
5578static inline void eb_bitmap_offset(struct extent_buffer *eb,
5579 unsigned long start, unsigned long nr,
5580 unsigned long *page_index,
5581 size_t *page_offset)
5582{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005583 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005584 size_t byte_offset = BIT_BYTE(nr);
5585 size_t offset;
5586
5587 /*
5588 * The byte we want is the offset of the extent buffer + the offset of
5589 * the bitmap item in the extent buffer + the offset of the byte in the
5590 * bitmap item.
5591 */
5592 offset = start_offset + start + byte_offset;
5593
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005594 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005595 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005596}
5597
5598/**
5599 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5600 * @eb: the extent buffer
5601 * @start: offset of the bitmap item in the extent buffer
5602 * @nr: bit number to test
5603 */
5604int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5605 unsigned long nr)
5606{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005607 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005608 struct page *page;
5609 unsigned long i;
5610 size_t offset;
5611
5612 eb_bitmap_offset(eb, start, nr, &i, &offset);
5613 page = eb->pages[i];
5614 WARN_ON(!PageUptodate(page));
5615 kaddr = page_address(page);
5616 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5617}
5618
5619/**
5620 * extent_buffer_bitmap_set - set an area of a bitmap
5621 * @eb: the extent buffer
5622 * @start: offset of the bitmap item in the extent buffer
5623 * @pos: bit number of the first bit
5624 * @len: number of bits to set
5625 */
5626void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5627 unsigned long pos, unsigned long len)
5628{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005629 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005630 struct page *page;
5631 unsigned long i;
5632 size_t offset;
5633 const unsigned int size = pos + len;
5634 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005635 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005636
5637 eb_bitmap_offset(eb, start, pos, &i, &offset);
5638 page = eb->pages[i];
5639 WARN_ON(!PageUptodate(page));
5640 kaddr = page_address(page);
5641
5642 while (len >= bits_to_set) {
5643 kaddr[offset] |= mask_to_set;
5644 len -= bits_to_set;
5645 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005646 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005647 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005648 offset = 0;
5649 page = eb->pages[++i];
5650 WARN_ON(!PageUptodate(page));
5651 kaddr = page_address(page);
5652 }
5653 }
5654 if (len) {
5655 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5656 kaddr[offset] |= mask_to_set;
5657 }
5658}
5659
5660
5661/**
5662 * extent_buffer_bitmap_clear - clear an area of a bitmap
5663 * @eb: the extent buffer
5664 * @start: offset of the bitmap item in the extent buffer
5665 * @pos: bit number of the first bit
5666 * @len: number of bits to clear
5667 */
5668void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5669 unsigned long pos, unsigned long len)
5670{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005671 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005672 struct page *page;
5673 unsigned long i;
5674 size_t offset;
5675 const unsigned int size = pos + len;
5676 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005677 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005678
5679 eb_bitmap_offset(eb, start, pos, &i, &offset);
5680 page = eb->pages[i];
5681 WARN_ON(!PageUptodate(page));
5682 kaddr = page_address(page);
5683
5684 while (len >= bits_to_clear) {
5685 kaddr[offset] &= ~mask_to_clear;
5686 len -= bits_to_clear;
5687 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005688 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005689 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005690 offset = 0;
5691 page = eb->pages[++i];
5692 WARN_ON(!PageUptodate(page));
5693 kaddr = page_address(page);
5694 }
5695 }
5696 if (len) {
5697 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5698 kaddr[offset] &= ~mask_to_clear;
5699 }
5700}
5701
Sergei Trofimovich33872062011-04-11 21:52:52 +00005702static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5703{
5704 unsigned long distance = (src > dst) ? src - dst : dst - src;
5705 return distance < len;
5706}
5707
Chris Masond1310b22008-01-24 16:13:08 -05005708static void copy_pages(struct page *dst_page, struct page *src_page,
5709 unsigned long dst_off, unsigned long src_off,
5710 unsigned long len)
5711{
Chris Masona6591712011-07-19 12:04:14 -04005712 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005713 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005714 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005715
Sergei Trofimovich33872062011-04-11 21:52:52 +00005716 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005717 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005718 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005719 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005720 if (areas_overlap(src_off, dst_off, len))
5721 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005722 }
Chris Masond1310b22008-01-24 16:13:08 -05005723
Chris Mason727011e2010-08-06 13:21:20 -04005724 if (must_memmove)
5725 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5726 else
5727 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005728}
5729
5730void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5731 unsigned long src_offset, unsigned long len)
5732{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005733 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005734 size_t cur;
5735 size_t dst_off_in_page;
5736 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005737 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005738 unsigned long dst_i;
5739 unsigned long src_i;
5740
5741 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005742 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005743 "memmove bogus src_offset %lu move len %lu dst len %lu",
5744 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005745 BUG_ON(1);
5746 }
5747 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005748 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005749 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5750 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005751 BUG_ON(1);
5752 }
5753
Chris Masond3977122009-01-05 21:25:51 -05005754 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01005755 dst_off_in_page = offset_in_page(start_offset + dst_offset);
5756 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005757
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005758 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5759 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005760
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005761 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005762 src_off_in_page));
5763 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005764 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005765
David Sterbafb85fc92014-07-31 01:03:53 +02005766 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005767 dst_off_in_page, src_off_in_page, cur);
5768
5769 src_offset += cur;
5770 dst_offset += cur;
5771 len -= cur;
5772 }
5773}
Chris Masond1310b22008-01-24 16:13:08 -05005774
5775void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5776 unsigned long src_offset, unsigned long len)
5777{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005778 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005779 size_t cur;
5780 size_t dst_off_in_page;
5781 size_t src_off_in_page;
5782 unsigned long dst_end = dst_offset + len - 1;
5783 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005784 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005785 unsigned long dst_i;
5786 unsigned long src_i;
5787
5788 if (src_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 src_offset %lu move len %lu len %lu",
5791 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005792 BUG_ON(1);
5793 }
5794 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005795 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005796 "memmove bogus dst_offset %lu move len %lu len %lu",
5797 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005798 BUG_ON(1);
5799 }
Chris Mason727011e2010-08-06 13:21:20 -04005800 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005801 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5802 return;
5803 }
Chris Masond3977122009-01-05 21:25:51 -05005804 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005805 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5806 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005807
Johannes Thumshirn70730172018-12-05 15:23:03 +01005808 dst_off_in_page = offset_in_page(start_offset + dst_end);
5809 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05005810
5811 cur = min_t(unsigned long, len, src_off_in_page + 1);
5812 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005813 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005814 dst_off_in_page - cur + 1,
5815 src_off_in_page - cur + 1, cur);
5816
5817 dst_end -= cur;
5818 src_end -= cur;
5819 len -= cur;
5820 }
5821}
Chris Mason6af118ce2008-07-22 11:18:07 -04005822
David Sterbaf7a52a42013-04-26 14:56:29 +00005823int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005824{
Chris Mason6af118ce2008-07-22 11:18:07 -04005825 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005826
Miao Xie19fe0a82010-10-26 20:57:29 -04005827 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005828 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005829 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005830 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005831 spin_lock(&page->mapping->private_lock);
5832 if (!PagePrivate(page)) {
5833 spin_unlock(&page->mapping->private_lock);
5834 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005835 }
5836
Josef Bacik3083ee22012-03-09 16:01:49 -05005837 eb = (struct extent_buffer *)page->private;
5838 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005839
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005840 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005841 * This is a little awful but should be ok, we need to make sure that
5842 * the eb doesn't disappear out from under us while we're looking at
5843 * this page.
5844 */
5845 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005846 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005847 spin_unlock(&eb->refs_lock);
5848 spin_unlock(&page->mapping->private_lock);
5849 return 0;
5850 }
5851 spin_unlock(&page->mapping->private_lock);
5852
Josef Bacik3083ee22012-03-09 16:01:49 -05005853 /*
5854 * If tree ref isn't set then we know the ref on this eb is a real ref,
5855 * so just return, this page will likely be freed soon anyway.
5856 */
5857 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5858 spin_unlock(&eb->refs_lock);
5859 return 0;
5860 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005861
David Sterbaf7a52a42013-04-26 14:56:29 +00005862 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005863}