blob: 9591ecfaa57e201f0f183a31892846f4db8b4d46 [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 -0500112struct tree_entry {
113 u64 start;
114 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500115 struct rb_node rb_node;
116};
117
118struct extent_page_data {
119 struct bio *bio;
120 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -0500121 /* tells writepage not to lock the state bits for this range
122 * it still does the unlocking
123 */
Chris Masonffbd5172009-04-20 15:50:09 -0400124 unsigned int extent_locked:1;
125
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600126 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400127 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500128};
129
David Sterba57599c72018-03-01 17:56:34 +0100130static int add_extent_changeset(struct extent_state *state, unsigned bits,
Qu Wenruod38ed272015-10-12 14:53:37 +0800131 struct extent_changeset *changeset,
132 int set)
133{
134 int ret;
135
136 if (!changeset)
David Sterba57599c72018-03-01 17:56:34 +0100137 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800138 if (set && (state->state & bits) == bits)
David Sterba57599c72018-03-01 17:56:34 +0100139 return 0;
Qu Wenruofefdc552015-10-12 15:35:38 +0800140 if (!set && (state->state & bits) == 0)
David Sterba57599c72018-03-01 17:56:34 +0100141 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800142 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100143 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800144 GFP_ATOMIC);
David Sterba57599c72018-03-01 17:56:34 +0100145 return ret;
Qu Wenruod38ed272015-10-12 14:53:37 +0800146}
147
Qu Wenruobb58eb92019-01-25 13:09:15 +0800148static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
149 unsigned long bio_flags)
150{
151 blk_status_t ret = 0;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800152 struct extent_io_tree *tree = bio->bi_private;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800153
154 bio->bi_private = NULL;
155
156 if (tree->ops)
157 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Nikolay Borisov50489a52019-04-10 19:46:04 +0300158 mirror_num, bio_flags);
Qu Wenruobb58eb92019-01-25 13:09:15 +0800159 else
160 btrfsic_submit_bio(bio);
161
162 return blk_status_to_errno(ret);
163}
164
Qu Wenruo30659762019-03-20 14:27:42 +0800165/* Cleanup unsubmitted bios */
166static void end_write_bio(struct extent_page_data *epd, int ret)
167{
168 if (epd->bio) {
169 epd->bio->bi_status = errno_to_blk_status(ret);
170 bio_endio(epd->bio);
171 epd->bio = NULL;
172 }
173}
174
Qu Wenruof4340622019-03-20 14:27:41 +0800175/*
176 * Submit bio from extent page data via submit_one_bio
177 *
178 * Return 0 if everything is OK.
179 * Return <0 for error.
180 */
181static int __must_check flush_write_bio(struct extent_page_data *epd)
Qu Wenruobb58eb92019-01-25 13:09:15 +0800182{
Qu Wenruof4340622019-03-20 14:27:41 +0800183 int ret = 0;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800184
Qu Wenruof4340622019-03-20 14:27:41 +0800185 if (epd->bio) {
Qu Wenruobb58eb92019-01-25 13:09:15 +0800186 ret = submit_one_bio(epd->bio, 0, 0);
Qu Wenruof4340622019-03-20 14:27:41 +0800187 /*
188 * Clean up of epd->bio is handled by its endio function.
189 * And endio is either triggered by successful bio execution
190 * or the error handler of submit bio hook.
191 * So at this point, no matter what happened, we don't need
192 * to clean up epd->bio.
193 */
Qu Wenruobb58eb92019-01-25 13:09:15 +0800194 epd->bio = NULL;
195 }
Qu Wenruof4340622019-03-20 14:27:41 +0800196 return ret;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800197}
David Sterbae2932ee2017-06-23 04:16:17 +0200198
Chris Masond1310b22008-01-24 16:13:08 -0500199int __init extent_io_init(void)
200{
David Sterba837e1972012-09-07 03:00:48 -0600201 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200202 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300203 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500204 if (!extent_state_cache)
205 return -ENOMEM;
206
David Sterba837e1972012-09-07 03:00:48 -0600207 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200208 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300209 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500210 if (!extent_buffer_cache)
211 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400212
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400213 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
214 offsetof(struct btrfs_io_bio, bio),
215 BIOSET_NEED_BVECS))
Chris Mason9be33952013-05-17 18:30:14 -0400216 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700217
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400218 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700219 goto free_bioset;
220
Chris Masond1310b22008-01-24 16:13:08 -0500221 return 0;
222
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700223free_bioset:
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400224 bioset_exit(&btrfs_bioset);
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700225
Chris Mason9be33952013-05-17 18:30:14 -0400226free_buffer_cache:
227 kmem_cache_destroy(extent_buffer_cache);
228 extent_buffer_cache = NULL;
229
Chris Masond1310b22008-01-24 16:13:08 -0500230free_state_cache:
231 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400232 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500233 return -ENOMEM;
234}
235
David Sterbae67c7182018-02-19 17:24:18 +0100236void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500237{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000238 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000239
240 /*
241 * Make sure all delayed rcu free are flushed before we
242 * destroy caches.
243 */
244 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800245 kmem_cache_destroy(extent_state_cache);
246 kmem_cache_destroy(extent_buffer_cache);
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400247 bioset_exit(&btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500248}
249
Qu Wenruoc258d6e2019-03-01 10:47:58 +0800250void extent_io_tree_init(struct btrfs_fs_info *fs_info,
Qu Wenruo43eb5f22019-03-01 10:47:59 +0800251 struct extent_io_tree *tree, unsigned int owner,
252 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500253{
Qu Wenruoc258d6e2019-03-01 10:47:58 +0800254 tree->fs_info = fs_info;
Eric Paris6bef4d32010-02-23 19:43:04 +0000255 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500256 tree->ops = NULL;
257 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500258 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400259 tree->private_data = private_data;
Qu Wenruo43eb5f22019-03-01 10:47:59 +0800260 tree->owner = owner;
Chris Masond1310b22008-01-24 16:13:08 -0500261}
Chris Masond1310b22008-01-24 16:13:08 -0500262
Nikolay Borisov41e7acd2019-03-25 14:31:24 +0200263void extent_io_tree_release(struct extent_io_tree *tree)
264{
265 spin_lock(&tree->lock);
266 /*
267 * Do a single barrier for the waitqueue_active check here, the state
268 * of the waitqueue should not change once extent_io_tree_release is
269 * called.
270 */
271 smp_mb();
272 while (!RB_EMPTY_ROOT(&tree->state)) {
273 struct rb_node *node;
274 struct extent_state *state;
275
276 node = rb_first(&tree->state);
277 state = rb_entry(node, struct extent_state, rb_node);
278 rb_erase(&state->rb_node, &tree->state);
279 RB_CLEAR_NODE(&state->rb_node);
280 /*
281 * btree io trees aren't supposed to have tasks waiting for
282 * changes in the flags of extent states ever.
283 */
284 ASSERT(!waitqueue_active(&state->wq));
285 free_extent_state(state);
286
287 cond_resched_lock(&tree->lock);
288 }
289 spin_unlock(&tree->lock);
290}
291
Christoph Hellwigb2950862008-12-02 09:54:17 -0500292static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500293{
294 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500295
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100296 /*
297 * The given mask might be not appropriate for the slab allocator,
298 * drop the unsupported bits
299 */
300 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500301 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400302 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500303 return state;
304 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100305 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100306 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000307 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200308 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500309 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100310 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500311 return state;
312}
Chris Masond1310b22008-01-24 16:13:08 -0500313
Chris Mason4845e442010-05-25 20:56:50 -0400314void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500315{
Chris Masond1310b22008-01-24 16:13:08 -0500316 if (!state)
317 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200318 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100319 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000320 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100321 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500322 kmem_cache_free(extent_state_cache, state);
323 }
324}
Chris Masond1310b22008-01-24 16:13:08 -0500325
Filipe Mananaf2071b22014-02-12 15:05:53 +0000326static struct rb_node *tree_insert(struct rb_root *root,
327 struct rb_node *search_start,
328 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000329 struct rb_node *node,
330 struct rb_node ***p_in,
331 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500332{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000333 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500334 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500335 struct tree_entry *entry;
336
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000337 if (p_in && parent_in) {
338 p = *p_in;
339 parent = *parent_in;
340 goto do_insert;
341 }
342
Filipe Mananaf2071b22014-02-12 15:05:53 +0000343 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500344 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500345 parent = *p;
346 entry = rb_entry(parent, struct tree_entry, rb_node);
347
348 if (offset < entry->start)
349 p = &(*p)->rb_left;
350 else if (offset > entry->end)
351 p = &(*p)->rb_right;
352 else
353 return parent;
354 }
355
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000356do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500357 rb_link_node(node, parent, p);
358 rb_insert_color(node, root);
359 return NULL;
360}
361
Chris Mason80ea96b2008-02-01 14:51:59 -0500362static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000363 struct rb_node **next_ret,
Nikolay Borisov352646c2019-01-30 16:51:00 +0200364 struct rb_node **prev_ret,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000365 struct rb_node ***p_ret,
366 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500367{
Chris Mason80ea96b2008-02-01 14:51:59 -0500368 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000369 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500370 struct rb_node *prev = NULL;
371 struct rb_node *orig_prev = NULL;
372 struct tree_entry *entry;
373 struct tree_entry *prev_entry = NULL;
374
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000375 while (*n) {
376 prev = *n;
377 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500378 prev_entry = entry;
379
380 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000381 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500382 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000383 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500384 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000385 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500386 }
387
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000388 if (p_ret)
389 *p_ret = n;
390 if (parent_ret)
391 *parent_ret = prev;
392
Nikolay Borisov352646c2019-01-30 16:51:00 +0200393 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500394 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500395 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500396 prev = rb_next(prev);
397 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
398 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200399 *next_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500400 prev = orig_prev;
401 }
402
Nikolay Borisov352646c2019-01-30 16:51:00 +0200403 if (prev_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500404 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500405 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500406 prev = rb_prev(prev);
407 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
408 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200409 *prev_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500410 }
411 return NULL;
412}
413
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000414static inline struct rb_node *
415tree_search_for_insert(struct extent_io_tree *tree,
416 u64 offset,
417 struct rb_node ***p_ret,
418 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500419{
Nikolay Borisov352646c2019-01-30 16:51:00 +0200420 struct rb_node *next= NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500421 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500422
Nikolay Borisov352646c2019-01-30 16:51:00 +0200423 ret = __etree_search(tree, offset, &next, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500424 if (!ret)
Nikolay Borisov352646c2019-01-30 16:51:00 +0200425 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500426 return ret;
427}
428
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000429static inline struct rb_node *tree_search(struct extent_io_tree *tree,
430 u64 offset)
431{
432 return tree_search_for_insert(tree, offset, NULL, NULL);
433}
434
Chris Masond1310b22008-01-24 16:13:08 -0500435/*
436 * utility function to look for merge candidates inside a given range.
437 * Any extents with matching state are merged together into a single
438 * extent in the tree. Extents with EXTENT_IO in their state field
439 * are not merged because the end_io handlers need to be able to do
440 * operations on them without sleeping (or doing allocations/splits).
441 *
442 * This should be called with the tree lock held.
443 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000444static void merge_state(struct extent_io_tree *tree,
445 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500446{
447 struct extent_state *other;
448 struct rb_node *other_node;
449
Nikolay Borisov88826792019-03-14 15:28:31 +0200450 if (state->state & (EXTENT_LOCKED | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000451 return;
Chris Masond1310b22008-01-24 16:13:08 -0500452
453 other_node = rb_prev(&state->rb_node);
454 if (other_node) {
455 other = rb_entry(other_node, struct extent_state, rb_node);
456 if (other->end == state->start - 1 &&
457 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200458 if (tree->private_data &&
459 is_data_inode(tree->private_data))
460 btrfs_merge_delalloc_extent(tree->private_data,
461 state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500462 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500463 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100464 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500465 free_extent_state(other);
466 }
467 }
468 other_node = rb_next(&state->rb_node);
469 if (other_node) {
470 other = rb_entry(other_node, struct extent_state, rb_node);
471 if (other->start == state->end + 1 &&
472 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200473 if (tree->private_data &&
474 is_data_inode(tree->private_data))
475 btrfs_merge_delalloc_extent(tree->private_data,
476 state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400477 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400478 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100479 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400480 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500481 }
482 }
Chris Masond1310b22008-01-24 16:13:08 -0500483}
484
Xiao Guangrong3150b692011-07-14 03:19:08 +0000485static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800486 struct extent_state *state, unsigned *bits,
487 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000488
Chris Masond1310b22008-01-24 16:13:08 -0500489/*
490 * insert an extent_state struct into the tree. 'bits' are set on the
491 * struct before it is inserted.
492 *
493 * This may return -EEXIST if the extent is already there, in which case the
494 * state struct is freed.
495 *
496 * The tree lock is not taken internally. This is a utility function and
497 * probably isn't what you want to call (see set/clear_extent_bit).
498 */
499static int insert_state(struct extent_io_tree *tree,
500 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000501 struct rb_node ***p,
502 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800503 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500504{
505 struct rb_node *node;
506
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000507 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500508 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200509 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500510 state->start = start;
511 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400512
Qu Wenruod38ed272015-10-12 14:53:37 +0800513 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000514
Filipe Mananaf2071b22014-02-12 15:05:53 +0000515 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500516 if (node) {
517 struct extent_state *found;
518 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400519 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200520 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500521 return -EEXIST;
522 }
523 merge_state(tree, state);
524 return 0;
525}
526
527/*
528 * split a given extent state struct in two, inserting the preallocated
529 * struct 'prealloc' as the newly created second half. 'split' indicates an
530 * offset inside 'orig' where it should be split.
531 *
532 * Before calling,
533 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
534 * are two extent state structs in the tree:
535 * prealloc: [orig->start, split - 1]
536 * orig: [ split, orig->end ]
537 *
538 * The tree locks are not taken by this function. They need to be held
539 * by the caller.
540 */
541static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
542 struct extent_state *prealloc, u64 split)
543{
544 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400545
Nikolay Borisovabbb55f2018-11-01 14:09:53 +0200546 if (tree->private_data && is_data_inode(tree->private_data))
547 btrfs_split_delalloc_extent(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400548
Chris Masond1310b22008-01-24 16:13:08 -0500549 prealloc->start = orig->start;
550 prealloc->end = split - 1;
551 prealloc->state = orig->state;
552 orig->start = split;
553
Filipe Mananaf2071b22014-02-12 15:05:53 +0000554 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
555 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500556 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500557 free_extent_state(prealloc);
558 return -EEXIST;
559 }
560 return 0;
561}
562
Li Zefancdc6a392012-03-12 16:39:48 +0800563static struct extent_state *next_state(struct extent_state *state)
564{
565 struct rb_node *next = rb_next(&state->rb_node);
566 if (next)
567 return rb_entry(next, struct extent_state, rb_node);
568 else
569 return NULL;
570}
571
Chris Masond1310b22008-01-24 16:13:08 -0500572/*
573 * utility function to clear some bits in an extent state struct.
Andrea Gelmini52042d82018-11-28 12:05:13 +0100574 * it will optionally wake up anyone waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500575 *
576 * If no bits are set on the state struct after clearing things, the
577 * struct is freed and removed from the tree
578 */
Li Zefancdc6a392012-03-12 16:39:48 +0800579static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
580 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800581 unsigned *bits, int wake,
582 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500583{
Li Zefancdc6a392012-03-12 16:39:48 +0800584 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100585 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100586 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500587
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400588 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500589 u64 range = state->end - state->start + 1;
590 WARN_ON(range > tree->dirty_bytes);
591 tree->dirty_bytes -= range;
592 }
Nikolay Borisova36bb5f2018-11-01 14:09:51 +0200593
594 if (tree->private_data && is_data_inode(tree->private_data))
595 btrfs_clear_delalloc_extent(tree->private_data, state, bits);
596
David Sterba57599c72018-03-01 17:56:34 +0100597 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
598 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400599 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500600 if (wake)
601 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400602 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800603 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100604 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500605 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100606 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500607 free_extent_state(state);
608 } else {
609 WARN_ON(1);
610 }
611 } else {
612 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800613 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500614 }
Li Zefancdc6a392012-03-12 16:39:48 +0800615 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500616}
617
Xiao Guangrong82337672011-04-20 06:44:57 +0000618static struct extent_state *
619alloc_extent_state_atomic(struct extent_state *prealloc)
620{
621 if (!prealloc)
622 prealloc = alloc_extent_state(GFP_ATOMIC);
623
624 return prealloc;
625}
626
Eric Sandeen48a3b632013-04-25 20:41:01 +0000627static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400628{
David Sterba05912a32018-07-18 19:23:45 +0200629 struct inode *inode = tree->private_data;
630
631 btrfs_panic(btrfs_sb(inode->i_sb), err,
632 "locking error: extent tree was modified by another thread while locked");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400633}
634
Chris Masond1310b22008-01-24 16:13:08 -0500635/*
636 * clear some bits on a range in the tree. This may require splitting
637 * or inserting elements in the tree, so the gfp mask is used to
638 * indicate which allocations or sleeping are allowed.
639 *
640 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
641 * the given range from the tree regardless of state (ie for truncate).
642 *
643 * the range [start, end] is inclusive.
644 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100645 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500646 */
David Sterba66b0c882017-10-31 16:30:47 +0100647int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800648 unsigned bits, int wake, int delete,
649 struct extent_state **cached_state,
650 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500651{
652 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400653 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500654 struct extent_state *prealloc = NULL;
655 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400656 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500657 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000658 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500659
Josef Bacika5dee372013-12-13 10:02:44 -0500660 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +0800661 trace_btrfs_clear_extent_bit(tree, start, end - start + 1, bits);
David Sterba8d599ae2013-04-30 15:22:23 +0000662
Josef Bacik7ee9e442013-06-21 16:37:03 -0400663 if (bits & EXTENT_DELALLOC)
664 bits |= EXTENT_NORESERVE;
665
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400666 if (delete)
667 bits |= ~EXTENT_CTLBITS;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400668
Nikolay Borisov88826792019-03-14 15:28:31 +0200669 if (bits & (EXTENT_LOCKED | EXTENT_BOUNDARY))
Josef Bacik2ac55d42010-02-03 19:33:23 +0000670 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500671again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800672 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000673 /*
674 * Don't care for allocation failure here because we might end
675 * up not needing the pre-allocated extent state at all, which
676 * is the case if we only have in the tree extent states that
677 * cover our input range and don't cover too any other range.
678 * If we end up needing a new extent state we allocate it later.
679 */
Chris Masond1310b22008-01-24 16:13:08 -0500680 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500681 }
682
Chris Masoncad321a2008-12-17 14:51:42 -0500683 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400684 if (cached_state) {
685 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000686
687 if (clear) {
688 *cached_state = NULL;
689 cached_state = NULL;
690 }
691
Filipe Manana27a35072014-07-06 20:09:59 +0100692 if (cached && extent_state_in_tree(cached) &&
693 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000694 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200695 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400696 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400697 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400698 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000699 if (clear)
700 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400701 }
Chris Masond1310b22008-01-24 16:13:08 -0500702 /*
703 * this search will find the extents that end after
704 * our range starts
705 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500706 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500707 if (!node)
708 goto out;
709 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400710hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500711 if (state->start > end)
712 goto out;
713 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400714 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500715
Liu Bo04493142012-02-16 18:34:37 +0800716 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800717 if (!(state->state & bits)) {
718 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800719 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800720 }
Liu Bo04493142012-02-16 18:34:37 +0800721
Chris Masond1310b22008-01-24 16:13:08 -0500722 /*
723 * | ---- desired range ---- |
724 * | state | or
725 * | ------------- state -------------- |
726 *
727 * We need to split the extent we found, and may flip
728 * bits on second half.
729 *
730 * If the extent we found extends past our range, we
731 * just split and search again. It'll get split again
732 * the next time though.
733 *
734 * If the extent we found is inside our range, we clear
735 * the desired bit on it.
736 */
737
738 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000739 prealloc = alloc_extent_state_atomic(prealloc);
740 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500741 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400742 if (err)
743 extent_io_tree_panic(tree, err);
744
Chris Masond1310b22008-01-24 16:13:08 -0500745 prealloc = NULL;
746 if (err)
747 goto out;
748 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800749 state = clear_state_bit(tree, state, &bits, wake,
750 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800751 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500752 }
753 goto search_again;
754 }
755 /*
756 * | ---- desired range ---- |
757 * | state |
758 * We need to split the extent, and clear the bit
759 * on the first half
760 */
761 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000762 prealloc = alloc_extent_state_atomic(prealloc);
763 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500764 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400765 if (err)
766 extent_io_tree_panic(tree, err);
767
Chris Masond1310b22008-01-24 16:13:08 -0500768 if (wake)
769 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400770
Qu Wenruofefdc552015-10-12 15:35:38 +0800771 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400772
Chris Masond1310b22008-01-24 16:13:08 -0500773 prealloc = NULL;
774 goto out;
775 }
Chris Mason42daec22009-09-23 19:51:09 -0400776
Qu Wenruofefdc552015-10-12 15:35:38 +0800777 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800778next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400779 if (last_end == (u64)-1)
780 goto out;
781 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800782 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800783 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500784
785search_again:
786 if (start > end)
787 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500788 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800789 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500790 cond_resched();
791 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200792
793out:
794 spin_unlock(&tree->lock);
795 if (prealloc)
796 free_extent_state(prealloc);
797
798 return 0;
799
Chris Masond1310b22008-01-24 16:13:08 -0500800}
Chris Masond1310b22008-01-24 16:13:08 -0500801
Jeff Mahoney143bede2012-03-01 14:56:26 +0100802static void wait_on_state(struct extent_io_tree *tree,
803 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500804 __releases(tree->lock)
805 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500806{
807 DEFINE_WAIT(wait);
808 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500809 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500810 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500811 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500812 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500813}
814
815/*
816 * waits for one or more bits to clear on a range in the state tree.
817 * The range [start, end] is inclusive.
818 * The tree lock is taken by this function
819 */
David Sterba41074882013-04-29 13:38:46 +0000820static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
821 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500822{
823 struct extent_state *state;
824 struct rb_node *node;
825
Josef Bacika5dee372013-12-13 10:02:44 -0500826 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000827
Chris Masoncad321a2008-12-17 14:51:42 -0500828 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500829again:
830 while (1) {
831 /*
832 * this search will find all the extents that end after
833 * our range starts
834 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500835 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100836process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500837 if (!node)
838 break;
839
840 state = rb_entry(node, struct extent_state, rb_node);
841
842 if (state->start > end)
843 goto out;
844
845 if (state->state & bits) {
846 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200847 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500848 wait_on_state(tree, state);
849 free_extent_state(state);
850 goto again;
851 }
852 start = state->end + 1;
853
854 if (start > end)
855 break;
856
Filipe Mananac50d3e72014-03-31 14:53:25 +0100857 if (!cond_resched_lock(&tree->lock)) {
858 node = rb_next(node);
859 goto process_node;
860 }
Chris Masond1310b22008-01-24 16:13:08 -0500861 }
862out:
Chris Masoncad321a2008-12-17 14:51:42 -0500863 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500864}
Chris Masond1310b22008-01-24 16:13:08 -0500865
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000866static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500867 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800868 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500869{
David Sterba9ee49a042015-01-14 19:52:13 +0100870 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100871 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400872
Nikolay Borisove06a1fc2018-11-01 14:09:50 +0200873 if (tree->private_data && is_data_inode(tree->private_data))
874 btrfs_set_delalloc_extent(tree->private_data, state, bits);
875
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400876 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500877 u64 range = state->end - state->start + 1;
878 tree->dirty_bytes += range;
879 }
David Sterba57599c72018-03-01 17:56:34 +0100880 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
881 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400882 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500883}
884
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100885static void cache_state_if_flags(struct extent_state *state,
886 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100887 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400888{
889 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100890 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400891 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200892 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400893 }
894 }
895}
896
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100897static void cache_state(struct extent_state *state,
898 struct extent_state **cached_ptr)
899{
900 return cache_state_if_flags(state, cached_ptr,
Nikolay Borisov88826792019-03-14 15:28:31 +0200901 EXTENT_LOCKED | EXTENT_BOUNDARY);
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100902}
903
Chris Masond1310b22008-01-24 16:13:08 -0500904/*
Chris Mason1edbb732009-09-02 13:24:36 -0400905 * set some bits on a range in the tree. This may require allocations or
906 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500907 *
Chris Mason1edbb732009-09-02 13:24:36 -0400908 * If any of the exclusive bits are set, this will fail with -EEXIST if some
909 * part of the range already has the desired bits set. The start of the
910 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500911 *
Chris Mason1edbb732009-09-02 13:24:36 -0400912 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500913 */
Chris Mason1edbb732009-09-02 13:24:36 -0400914
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100915static int __must_check
916__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100917 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000918 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800919 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500920{
921 struct extent_state *state;
922 struct extent_state *prealloc = NULL;
923 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000924 struct rb_node **p;
925 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500926 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500927 u64 last_start;
928 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400929
Josef Bacika5dee372013-12-13 10:02:44 -0500930 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +0800931 trace_btrfs_set_extent_bit(tree, start, end - start + 1, bits);
David Sterba8d599ae2013-04-30 15:22:23 +0000932
Chris Masond1310b22008-01-24 16:13:08 -0500933again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800934 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200935 /*
936 * Don't care for allocation failure here because we might end
937 * up not needing the pre-allocated extent state at all, which
938 * is the case if we only have in the tree extent states that
939 * cover our input range and don't cover too any other range.
940 * If we end up needing a new extent state we allocate it later.
941 */
Chris Masond1310b22008-01-24 16:13:08 -0500942 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500943 }
944
Chris Masoncad321a2008-12-17 14:51:42 -0500945 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400946 if (cached_state && *cached_state) {
947 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400948 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100949 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400950 node = &state->rb_node;
951 goto hit_next;
952 }
953 }
Chris Masond1310b22008-01-24 16:13:08 -0500954 /*
955 * this search will find all the extents that end after
956 * our range starts.
957 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000958 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500959 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000960 prealloc = alloc_extent_state_atomic(prealloc);
961 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000962 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800963 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400964 if (err)
965 extent_io_tree_panic(tree, err);
966
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000967 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500968 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500969 goto out;
970 }
Chris Masond1310b22008-01-24 16:13:08 -0500971 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400972hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500973 last_start = state->start;
974 last_end = state->end;
975
976 /*
977 * | ---- desired range ---- |
978 * | state |
979 *
980 * Just lock what we found and keep going
981 */
982 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400983 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500984 *failed_start = state->start;
985 err = -EEXIST;
986 goto out;
987 }
Chris Mason42daec22009-09-23 19:51:09 -0400988
Qu Wenruod38ed272015-10-12 14:53:37 +0800989 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400990 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500991 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400992 if (last_end == (u64)-1)
993 goto out;
994 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800995 state = next_state(state);
996 if (start < end && state && state->start == start &&
997 !need_resched())
998 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500999 goto search_again;
1000 }
1001
1002 /*
1003 * | ---- desired range ---- |
1004 * | state |
1005 * or
1006 * | ------------- state -------------- |
1007 *
1008 * We need to split the extent we found, and may flip bits on
1009 * second half.
1010 *
1011 * If the extent we found extends past our
1012 * range, we just split and search again. It'll get split
1013 * again the next time though.
1014 *
1015 * If the extent we found is inside our range, we set the
1016 * desired bit on it.
1017 */
1018 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -04001019 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001020 *failed_start = start;
1021 err = -EEXIST;
1022 goto out;
1023 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001024
1025 prealloc = alloc_extent_state_atomic(prealloc);
1026 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001027 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001028 if (err)
1029 extent_io_tree_panic(tree, err);
1030
Chris Masond1310b22008-01-24 16:13:08 -05001031 prealloc = NULL;
1032 if (err)
1033 goto out;
1034 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001035 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001036 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001037 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -04001038 if (last_end == (u64)-1)
1039 goto out;
1040 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001041 state = next_state(state);
1042 if (start < end && state && state->start == start &&
1043 !need_resched())
1044 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -05001045 }
1046 goto search_again;
1047 }
1048 /*
1049 * | ---- desired range ---- |
1050 * | state | or | state |
1051 *
1052 * There's a hole, we need to insert something in it and
1053 * ignore the extent we found.
1054 */
1055 if (state->start > start) {
1056 u64 this_end;
1057 if (end < last_start)
1058 this_end = end;
1059 else
Chris Masond3977122009-01-05 21:25:51 -05001060 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +00001061
1062 prealloc = alloc_extent_state_atomic(prealloc);
1063 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001064
1065 /*
1066 * Avoid to free 'prealloc' if it can be merged with
1067 * the later extent.
1068 */
Chris Masond1310b22008-01-24 16:13:08 -05001069 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001070 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001071 if (err)
1072 extent_io_tree_panic(tree, err);
1073
Chris Mason2c64c532009-09-02 15:04:12 -04001074 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001075 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001076 start = this_end + 1;
1077 goto search_again;
1078 }
1079 /*
1080 * | ---- desired range ---- |
1081 * | state |
1082 * We need to split the extent, and set the bit
1083 * on the first half
1084 */
1085 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001086 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001087 *failed_start = start;
1088 err = -EEXIST;
1089 goto out;
1090 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001091
1092 prealloc = alloc_extent_state_atomic(prealloc);
1093 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001094 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001095 if (err)
1096 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001097
Qu Wenruod38ed272015-10-12 14:53:37 +08001098 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001099 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001100 merge_state(tree, prealloc);
1101 prealloc = NULL;
1102 goto out;
1103 }
1104
David Sterbab5a4ba142016-04-27 01:02:15 +02001105search_again:
1106 if (start > end)
1107 goto out;
1108 spin_unlock(&tree->lock);
1109 if (gfpflags_allow_blocking(mask))
1110 cond_resched();
1111 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001112
1113out:
Chris Masoncad321a2008-12-17 14:51:42 -05001114 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001115 if (prealloc)
1116 free_extent_state(prealloc);
1117
1118 return err;
1119
Chris Masond1310b22008-01-24 16:13:08 -05001120}
Chris Masond1310b22008-01-24 16:13:08 -05001121
David Sterba41074882013-04-29 13:38:46 +00001122int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001123 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001124 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001125{
1126 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001127 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001128}
1129
1130
Josef Bacik462d6fa2011-09-26 13:56:12 -04001131/**
Liu Bo10983f22012-07-11 15:26:19 +08001132 * convert_extent_bit - convert all bits in a given range from one bit to
1133 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001134 * @tree: the io tree to search
1135 * @start: the start offset in bytes
1136 * @end: the end offset in bytes (inclusive)
1137 * @bits: the bits to set in this range
1138 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001139 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001140 *
1141 * This will go through and set bits for the given range. If any states exist
1142 * already in this range they are set with the given bit and cleared of the
1143 * clear_bits. This is only meant to be used by things that are mergeable, ie
1144 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1145 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001146 *
1147 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001148 */
1149int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001150 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001151 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001152{
1153 struct extent_state *state;
1154 struct extent_state *prealloc = NULL;
1155 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001156 struct rb_node **p;
1157 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001158 int err = 0;
1159 u64 last_start;
1160 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001161 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162
Josef Bacika5dee372013-12-13 10:02:44 -05001163 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +08001164 trace_btrfs_convert_extent_bit(tree, start, end - start + 1, bits,
1165 clear_bits);
David Sterba8d599ae2013-04-30 15:22:23 +00001166
Josef Bacik462d6fa2011-09-26 13:56:12 -04001167again:
David Sterba210aa272016-04-26 23:54:39 +02001168 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001169 /*
1170 * Best effort, don't worry if extent state allocation fails
1171 * here for the first iteration. We might have a cached state
1172 * that matches exactly the target range, in which case no
1173 * extent state allocations are needed. We'll only know this
1174 * after locking the tree.
1175 */
David Sterba210aa272016-04-26 23:54:39 +02001176 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001177 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001178 return -ENOMEM;
1179 }
1180
1181 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001182 if (cached_state && *cached_state) {
1183 state = *cached_state;
1184 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001185 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001186 node = &state->rb_node;
1187 goto hit_next;
1188 }
1189 }
1190
Josef Bacik462d6fa2011-09-26 13:56:12 -04001191 /*
1192 * this search will find all the extents that end after
1193 * our range starts.
1194 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001195 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001196 if (!node) {
1197 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001198 if (!prealloc) {
1199 err = -ENOMEM;
1200 goto out;
1201 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001202 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001203 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001204 if (err)
1205 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001206 cache_state(prealloc, cached_state);
1207 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001208 goto out;
1209 }
1210 state = rb_entry(node, struct extent_state, rb_node);
1211hit_next:
1212 last_start = state->start;
1213 last_end = state->end;
1214
1215 /*
1216 * | ---- desired range ---- |
1217 * | state |
1218 *
1219 * Just lock what we found and keep going
1220 */
1221 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001222 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001223 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001224 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001225 if (last_end == (u64)-1)
1226 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001227 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001228 if (start < end && state && state->start == start &&
1229 !need_resched())
1230 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001231 goto search_again;
1232 }
1233
1234 /*
1235 * | ---- desired range ---- |
1236 * | state |
1237 * or
1238 * | ------------- state -------------- |
1239 *
1240 * We need to split the extent we found, and may flip bits on
1241 * second half.
1242 *
1243 * If the extent we found extends past our
1244 * range, we just split and search again. It'll get split
1245 * again the next time though.
1246 *
1247 * If the extent we found is inside our range, we set the
1248 * desired bit on it.
1249 */
1250 if (state->start < start) {
1251 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001252 if (!prealloc) {
1253 err = -ENOMEM;
1254 goto out;
1255 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001256 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001257 if (err)
1258 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001259 prealloc = NULL;
1260 if (err)
1261 goto out;
1262 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001263 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001264 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001265 state = clear_state_bit(tree, state, &clear_bits, 0,
1266 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001267 if (last_end == (u64)-1)
1268 goto out;
1269 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001270 if (start < end && state && state->start == start &&
1271 !need_resched())
1272 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001273 }
1274 goto search_again;
1275 }
1276 /*
1277 * | ---- desired range ---- |
1278 * | state | or | state |
1279 *
1280 * There's a hole, we need to insert something in it and
1281 * ignore the extent we found.
1282 */
1283 if (state->start > start) {
1284 u64 this_end;
1285 if (end < last_start)
1286 this_end = end;
1287 else
1288 this_end = last_start - 1;
1289
1290 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001291 if (!prealloc) {
1292 err = -ENOMEM;
1293 goto out;
1294 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001295
1296 /*
1297 * Avoid to free 'prealloc' if it can be merged with
1298 * the later extent.
1299 */
1300 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001301 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001302 if (err)
1303 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001304 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001305 prealloc = NULL;
1306 start = this_end + 1;
1307 goto search_again;
1308 }
1309 /*
1310 * | ---- desired range ---- |
1311 * | state |
1312 * We need to split the extent, and set the bit
1313 * on the first half
1314 */
1315 if (state->start <= end && state->end > end) {
1316 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001317 if (!prealloc) {
1318 err = -ENOMEM;
1319 goto out;
1320 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001321
1322 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001323 if (err)
1324 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001325
Qu Wenruod38ed272015-10-12 14:53:37 +08001326 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001327 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001328 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001329 prealloc = NULL;
1330 goto out;
1331 }
1332
Josef Bacik462d6fa2011-09-26 13:56:12 -04001333search_again:
1334 if (start > end)
1335 goto out;
1336 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001337 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001338 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001339 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001340
1341out:
1342 spin_unlock(&tree->lock);
1343 if (prealloc)
1344 free_extent_state(prealloc);
1345
1346 return err;
1347}
1348
Chris Masond1310b22008-01-24 16:13:08 -05001349/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001350int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001351 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001352{
1353 /*
1354 * We don't support EXTENT_LOCKED yet, as current changeset will
1355 * record any bits changed, so for EXTENT_LOCKED case, it will
1356 * either fail with -EEXIST or changeset will record the whole
1357 * range.
1358 */
1359 BUG_ON(bits & EXTENT_LOCKED);
1360
David Sterba2c53b912016-04-26 23:54:39 +02001361 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001362 changeset);
1363}
1364
Nikolay Borisov4ca73652019-03-27 14:24:10 +02001365int set_extent_bits_nowait(struct extent_io_tree *tree, u64 start, u64 end,
1366 unsigned bits)
1367{
1368 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL,
1369 GFP_NOWAIT, NULL);
1370}
1371
Qu Wenruofefdc552015-10-12 15:35:38 +08001372int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1373 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001374 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001375{
1376 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001377 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001378}
1379
Qu Wenruofefdc552015-10-12 15:35:38 +08001380int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001381 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001382{
1383 /*
1384 * Don't support EXTENT_LOCKED case, same reason as
1385 * set_record_extent_bits().
1386 */
1387 BUG_ON(bits & EXTENT_LOCKED);
1388
David Sterbaf734c442016-04-26 23:54:39 +02001389 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001390 changeset);
1391}
1392
Chris Masond352ac62008-09-29 15:18:18 -04001393/*
1394 * either insert or lock state struct between start and end use mask to tell
1395 * us if waiting is desired.
1396 */
Chris Mason1edbb732009-09-02 13:24:36 -04001397int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001398 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001399{
1400 int err;
1401 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001402
Chris Masond1310b22008-01-24 16:13:08 -05001403 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001404 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001405 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001406 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001407 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001408 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1409 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001410 } else
Chris Masond1310b22008-01-24 16:13:08 -05001411 break;
Chris Masond1310b22008-01-24 16:13:08 -05001412 WARN_ON(start > end);
1413 }
1414 return err;
1415}
Chris Masond1310b22008-01-24 16:13:08 -05001416
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001417int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001418{
1419 int err;
1420 u64 failed_start;
1421
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001422 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001423 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001424 if (err == -EEXIST) {
1425 if (failed_start > start)
1426 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001427 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001428 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001429 }
Josef Bacik25179202008-10-29 14:49:05 -04001430 return 1;
1431}
Josef Bacik25179202008-10-29 14:49:05 -04001432
David Sterbabd1fa4f2015-12-03 13:08:59 +01001433void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001434{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001435 unsigned long index = start >> PAGE_SHIFT;
1436 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001437 struct page *page;
1438
1439 while (index <= end_index) {
1440 page = find_get_page(inode->i_mapping, index);
1441 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1442 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001443 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001444 index++;
1445 }
Chris Mason4adaa612013-03-26 13:07:00 -04001446}
1447
David Sterbaf6311572015-12-03 13:08:59 +01001448void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001449{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001450 unsigned long index = start >> PAGE_SHIFT;
1451 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001452 struct page *page;
1453
1454 while (index <= end_index) {
1455 page = find_get_page(inode->i_mapping, index);
1456 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001457 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001458 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001459 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001460 index++;
1461 }
Chris Mason4adaa612013-03-26 13:07:00 -04001462}
1463
Chris Masond352ac62008-09-29 15:18:18 -04001464/* find the first state struct with 'bits' set after 'start', and
1465 * return it. tree->lock must be held. NULL will returned if
1466 * nothing was found after 'start'
1467 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001468static struct extent_state *
1469find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001470 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001471{
1472 struct rb_node *node;
1473 struct extent_state *state;
1474
1475 /*
1476 * this search will find all the extents that end after
1477 * our range starts.
1478 */
1479 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001480 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001481 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001482
Chris Masond3977122009-01-05 21:25:51 -05001483 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001484 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001485 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001486 return state;
Chris Masond3977122009-01-05 21:25:51 -05001487
Chris Masond7fc6402008-02-18 12:12:38 -05001488 node = rb_next(node);
1489 if (!node)
1490 break;
1491 }
1492out:
1493 return NULL;
1494}
Chris Masond7fc6402008-02-18 12:12:38 -05001495
Chris Masond352ac62008-09-29 15:18:18 -04001496/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001497 * find the first offset in the io tree with 'bits' set. zero is
1498 * returned if we find something, and *start_ret and *end_ret are
1499 * set to reflect the state struct that was found.
1500 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001501 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001502 */
1503int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001504 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001505 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001506{
1507 struct extent_state *state;
1508 int ret = 1;
1509
1510 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001511 if (cached_state && *cached_state) {
1512 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001513 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001514 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001515 if (state->state & bits)
1516 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001517 }
1518 free_extent_state(*cached_state);
1519 *cached_state = NULL;
1520 goto out;
1521 }
1522 free_extent_state(*cached_state);
1523 *cached_state = NULL;
1524 }
1525
Xiao Guangrong69261c42011-07-14 03:19:45 +00001526 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001527got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001528 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001529 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001530 *start_ret = state->start;
1531 *end_ret = state->end;
1532 ret = 0;
1533 }
Josef Bacike6138872012-09-27 17:07:30 -04001534out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001535 spin_unlock(&tree->lock);
1536 return ret;
1537}
1538
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001539/**
1540 * find_first_clear_extent_bit - finds the first range that has @bits not set
1541 * and that starts after @start
1542 *
1543 * @tree - the tree to search
1544 * @start - the offset at/after which the found extent should start
1545 * @start_ret - records the beginning of the range
1546 * @end_ret - records the end of the range (inclusive)
1547 * @bits - the set of bits which must be unset
1548 *
1549 * Since unallocated range is also considered one which doesn't have the bits
1550 * set it's possible that @end_ret contains -1, this happens in case the range
1551 * spans (last_range_end, end of device]. In this case it's up to the caller to
1552 * trim @end_ret to the appropriate size.
1553 */
1554void find_first_clear_extent_bit(struct extent_io_tree *tree, u64 start,
1555 u64 *start_ret, u64 *end_ret, unsigned bits)
1556{
1557 struct extent_state *state;
1558 struct rb_node *node, *prev = NULL, *next;
1559
1560 spin_lock(&tree->lock);
1561
1562 /* Find first extent with bits cleared */
1563 while (1) {
1564 node = __etree_search(tree, start, &next, &prev, NULL, NULL);
1565 if (!node) {
1566 node = next;
1567 if (!node) {
1568 /*
1569 * We are past the last allocated chunk,
1570 * set start at the end of the last extent. The
1571 * device alloc tree should never be empty so
1572 * prev is always set.
1573 */
1574 ASSERT(prev);
1575 state = rb_entry(prev, struct extent_state, rb_node);
1576 *start_ret = state->end + 1;
1577 *end_ret = -1;
1578 goto out;
1579 }
1580 }
1581 state = rb_entry(node, struct extent_state, rb_node);
1582 if (in_range(start, state->start, state->end - state->start + 1) &&
1583 (state->state & bits)) {
1584 start = state->end + 1;
1585 } else {
1586 *start_ret = start;
1587 break;
1588 }
1589 }
1590
1591 /*
1592 * Find the longest stretch from start until an entry which has the
1593 * bits set
1594 */
1595 while (1) {
1596 state = rb_entry(node, struct extent_state, rb_node);
1597 if (state->end >= start && !(state->state & bits)) {
1598 *end_ret = state->end;
1599 } else {
1600 *end_ret = state->start - 1;
1601 break;
1602 }
1603
1604 node = rb_next(node);
1605 if (!node)
1606 break;
1607 }
1608out:
1609 spin_unlock(&tree->lock);
1610}
1611
Xiao Guangrong69261c42011-07-14 03:19:45 +00001612/*
Chris Masond352ac62008-09-29 15:18:18 -04001613 * find a contiguous range of bytes in the file marked as delalloc, not
1614 * more than 'max_bytes'. start and end are used to return the range,
1615 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001616 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001617 */
Lu Fengqi3522e902018-11-29 11:33:38 +08001618static noinline bool find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001619 u64 *start, u64 *end, u64 max_bytes,
1620 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001621{
1622 struct rb_node *node;
1623 struct extent_state *state;
1624 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001625 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001626 u64 total_bytes = 0;
1627
Chris Masoncad321a2008-12-17 14:51:42 -05001628 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001629
Chris Masond1310b22008-01-24 16:13:08 -05001630 /*
1631 * this search will find all the extents that end after
1632 * our range starts.
1633 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001634 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001635 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001636 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001637 goto out;
1638 }
1639
Chris Masond3977122009-01-05 21:25:51 -05001640 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001641 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001642 if (found && (state->start != cur_start ||
1643 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001644 goto out;
1645 }
1646 if (!(state->state & EXTENT_DELALLOC)) {
1647 if (!found)
1648 *end = state->end;
1649 goto out;
1650 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001651 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001652 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001653 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001654 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001655 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001656 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001657 *end = state->end;
1658 cur_start = state->end + 1;
1659 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001660 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001661 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001662 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001663 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001664 break;
1665 }
1666out:
Chris Masoncad321a2008-12-17 14:51:42 -05001667 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001668 return found;
1669}
1670
Liu Boda2c7002017-02-10 16:41:05 +01001671static int __process_pages_contig(struct address_space *mapping,
1672 struct page *locked_page,
1673 pgoff_t start_index, pgoff_t end_index,
1674 unsigned long page_ops, pgoff_t *index_ret);
1675
Jeff Mahoney143bede2012-03-01 14:56:26 +01001676static noinline void __unlock_for_delalloc(struct inode *inode,
1677 struct page *locked_page,
1678 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001679{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001680 unsigned long index = start >> PAGE_SHIFT;
1681 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001682
Liu Bo76c00212017-02-10 16:42:14 +01001683 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001684 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001685 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001686
Liu Bo76c00212017-02-10 16:42:14 +01001687 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1688 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001689}
1690
1691static noinline int lock_delalloc_pages(struct inode *inode,
1692 struct page *locked_page,
1693 u64 delalloc_start,
1694 u64 delalloc_end)
1695{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001696 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001697 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001698 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001699 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001700
Liu Bo76c00212017-02-10 16:42:14 +01001701 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001702 if (index == locked_page->index && index == end_index)
1703 return 0;
1704
Liu Bo76c00212017-02-10 16:42:14 +01001705 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1706 end_index, PAGE_LOCK, &index_ret);
1707 if (ret == -EAGAIN)
1708 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1709 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001710 return ret;
1711}
1712
1713/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001714 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1715 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001716 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001717 * Return: true if we find something
1718 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001719 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001720EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001721noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001722 struct extent_io_tree *tree,
1723 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001724 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001725{
Nikolay Borisov917aace2018-10-26 14:43:20 +03001726 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001727 u64 delalloc_start;
1728 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001729 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001730 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001731 int ret;
1732 int loops = 0;
1733
1734again:
1735 /* step one, find a bunch of delalloc bytes starting at start */
1736 delalloc_start = *start;
1737 delalloc_end = 0;
1738 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001739 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001740 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001741 *start = delalloc_start;
1742 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001743 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001744 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001745 }
1746
1747 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001748 * start comes from the offset of locked_page. We have to lock
1749 * pages in order, so we can't process delalloc bytes before
1750 * locked_page
1751 */
Chris Masond3977122009-01-05 21:25:51 -05001752 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001753 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001754
1755 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001756 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001757 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001758 if (delalloc_end + 1 - delalloc_start > max_bytes)
1759 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001760
Chris Masonc8b97812008-10-29 14:49:59 -04001761 /* step two, lock all the pages after the page that has start */
1762 ret = lock_delalloc_pages(inode, locked_page,
1763 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001764 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001765 if (ret == -EAGAIN) {
1766 /* some of the pages are gone, lets avoid looping by
1767 * shortening the size of the delalloc range we're searching
1768 */
Chris Mason9655d292009-09-02 15:22:30 -04001769 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001770 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001771 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001772 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001773 loops = 1;
1774 goto again;
1775 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001776 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001777 goto out_failed;
1778 }
1779 }
Chris Masonc8b97812008-10-29 14:49:59 -04001780
1781 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001782 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001783
1784 /* then test to make sure it is all still delalloc */
1785 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001786 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001787 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001788 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001789 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001790 __unlock_for_delalloc(inode, locked_page,
1791 delalloc_start, delalloc_end);
1792 cond_resched();
1793 goto again;
1794 }
Chris Mason9655d292009-09-02 15:22:30 -04001795 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001796 *start = delalloc_start;
1797 *end = delalloc_end;
1798out_failed:
1799 return found;
1800}
1801
Liu Boda2c7002017-02-10 16:41:05 +01001802static int __process_pages_contig(struct address_space *mapping,
1803 struct page *locked_page,
1804 pgoff_t start_index, pgoff_t end_index,
1805 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001806{
Liu Bo873695b2017-02-02 17:49:22 -08001807 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001808 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001809 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001810 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001811 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001812 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001813 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001814
Liu Boda2c7002017-02-10 16:41:05 +01001815 if (page_ops & PAGE_LOCK) {
1816 ASSERT(page_ops == PAGE_LOCK);
1817 ASSERT(index_ret && *index_ret == start_index);
1818 }
1819
Filipe Manana704de492014-10-06 22:14:22 +01001820 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001821 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001822
Chris Masond3977122009-01-05 21:25:51 -05001823 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001824 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001825 min_t(unsigned long,
1826 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001827 if (ret == 0) {
1828 /*
1829 * Only if we're going to lock these pages,
1830 * can we find nothing at @index.
1831 */
1832 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001833 err = -EAGAIN;
1834 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001835 }
Chris Mason8b62b722009-09-02 16:53:46 -04001836
Liu Boda2c7002017-02-10 16:41:05 +01001837 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001838 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001839 SetPagePrivate2(pages[i]);
1840
Chris Masonc8b97812008-10-29 14:49:59 -04001841 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001842 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001843 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001844 continue;
1845 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001846 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001847 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001848 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001849 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001850 if (page_ops & PAGE_SET_ERROR)
1851 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001852 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001853 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001854 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001855 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001856 if (page_ops & PAGE_LOCK) {
1857 lock_page(pages[i]);
1858 if (!PageDirty(pages[i]) ||
1859 pages[i]->mapping != mapping) {
1860 unlock_page(pages[i]);
1861 put_page(pages[i]);
1862 err = -EAGAIN;
1863 goto out;
1864 }
1865 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001866 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001867 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001868 }
1869 nr_pages -= ret;
1870 index += ret;
1871 cond_resched();
1872 }
Liu Boda2c7002017-02-10 16:41:05 +01001873out:
1874 if (err && index_ret)
1875 *index_ret = start_index + pages_locked - 1;
1876 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001877}
Chris Masonc8b97812008-10-29 14:49:59 -04001878
Liu Bo873695b2017-02-02 17:49:22 -08001879void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1880 u64 delalloc_end, struct page *locked_page,
1881 unsigned clear_bits,
1882 unsigned long page_ops)
1883{
1884 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001885 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001886
1887 __process_pages_contig(inode->i_mapping, locked_page,
1888 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001889 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001890}
1891
Chris Masond352ac62008-09-29 15:18:18 -04001892/*
1893 * count the number of bytes in the tree that have a given bit(s)
1894 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1895 * cached. The total number found is returned.
1896 */
Chris Masond1310b22008-01-24 16:13:08 -05001897u64 count_range_bits(struct extent_io_tree *tree,
1898 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001899 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001900{
1901 struct rb_node *node;
1902 struct extent_state *state;
1903 u64 cur_start = *start;
1904 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001905 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001906 int found = 0;
1907
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301908 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001909 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001910
Chris Masoncad321a2008-12-17 14:51:42 -05001911 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001912 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1913 total_bytes = tree->dirty_bytes;
1914 goto out;
1915 }
1916 /*
1917 * this search will find all the extents that end after
1918 * our range starts.
1919 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001920 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001921 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001922 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001923
Chris Masond3977122009-01-05 21:25:51 -05001924 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001925 state = rb_entry(node, struct extent_state, rb_node);
1926 if (state->start > search_end)
1927 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001928 if (contig && found && state->start > last + 1)
1929 break;
1930 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001931 total_bytes += min(search_end, state->end) + 1 -
1932 max(cur_start, state->start);
1933 if (total_bytes >= max_bytes)
1934 break;
1935 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001936 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001937 found = 1;
1938 }
Chris Masonec29ed52011-02-23 16:23:20 -05001939 last = state->end;
1940 } else if (contig && found) {
1941 break;
Chris Masond1310b22008-01-24 16:13:08 -05001942 }
1943 node = rb_next(node);
1944 if (!node)
1945 break;
1946 }
1947out:
Chris Masoncad321a2008-12-17 14:51:42 -05001948 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001949 return total_bytes;
1950}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001951
Chris Masond352ac62008-09-29 15:18:18 -04001952/*
1953 * set the private field for a given byte offset in the tree. If there isn't
1954 * an extent_state there already, this does nothing.
1955 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001956static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001957 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001958{
1959 struct rb_node *node;
1960 struct extent_state *state;
1961 int ret = 0;
1962
Chris Masoncad321a2008-12-17 14:51:42 -05001963 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001964 /*
1965 * this search will find all the extents that end after
1966 * our range starts.
1967 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001968 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001969 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001970 ret = -ENOENT;
1971 goto out;
1972 }
1973 state = rb_entry(node, struct extent_state, rb_node);
1974 if (state->start != start) {
1975 ret = -ENOENT;
1976 goto out;
1977 }
David Sterba47dc1962016-02-11 13:24:13 +01001978 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001979out:
Chris Masoncad321a2008-12-17 14:51:42 -05001980 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001981 return ret;
1982}
1983
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001984static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001985 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001986{
1987 struct rb_node *node;
1988 struct extent_state *state;
1989 int ret = 0;
1990
Chris Masoncad321a2008-12-17 14:51:42 -05001991 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001992 /*
1993 * this search will find all the extents that end after
1994 * our range starts.
1995 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001996 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001997 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001998 ret = -ENOENT;
1999 goto out;
2000 }
2001 state = rb_entry(node, struct extent_state, rb_node);
2002 if (state->start != start) {
2003 ret = -ENOENT;
2004 goto out;
2005 }
David Sterba47dc1962016-02-11 13:24:13 +01002006 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002007out:
Chris Masoncad321a2008-12-17 14:51:42 -05002008 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002009 return ret;
2010}
2011
2012/*
2013 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05002014 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05002015 * has the bits set. Otherwise, 1 is returned if any bit in the
2016 * range is found set.
2017 */
2018int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01002019 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05002020{
2021 struct extent_state *state = NULL;
2022 struct rb_node *node;
2023 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002024
Chris Masoncad321a2008-12-17 14:51:42 -05002025 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002026 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002027 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002028 node = &cached->rb_node;
2029 else
2030 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002031 while (node && start <= end) {
2032 state = rb_entry(node, struct extent_state, rb_node);
2033
2034 if (filled && state->start > start) {
2035 bitset = 0;
2036 break;
2037 }
2038
2039 if (state->start > end)
2040 break;
2041
2042 if (state->state & bits) {
2043 bitset = 1;
2044 if (!filled)
2045 break;
2046 } else if (filled) {
2047 bitset = 0;
2048 break;
2049 }
Chris Mason46562ce2009-09-23 20:23:16 -04002050
2051 if (state->end == (u64)-1)
2052 break;
2053
Chris Masond1310b22008-01-24 16:13:08 -05002054 start = state->end + 1;
2055 if (start > end)
2056 break;
2057 node = rb_next(node);
2058 if (!node) {
2059 if (filled)
2060 bitset = 0;
2061 break;
2062 }
2063 }
Chris Masoncad321a2008-12-17 14:51:42 -05002064 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002065 return bitset;
2066}
Chris Masond1310b22008-01-24 16:13:08 -05002067
2068/*
2069 * helper function to set a given page up to date if all the
2070 * extents in the tree for that page are up to date
2071 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002072static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002073{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002074 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002075 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002076 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002077 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002078}
2079
Josef Bacik7870d082017-05-05 11:57:15 -04002080int free_io_failure(struct extent_io_tree *failure_tree,
2081 struct extent_io_tree *io_tree,
2082 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002083{
2084 int ret;
2085 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002086
David Sterba47dc1962016-02-11 13:24:13 +01002087 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002088 ret = clear_extent_bits(failure_tree, rec->start,
2089 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002090 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091 if (ret)
2092 err = ret;
2093
Josef Bacik7870d082017-05-05 11:57:15 -04002094 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05002095 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002096 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05002097 if (ret && !err)
2098 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099
2100 kfree(rec);
2101 return err;
2102}
2103
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104/*
2105 * this bypasses the standard btrfs submit functions deliberately, as
2106 * the standard behavior is to write all copies in a raid setup. here we only
2107 * want to write the one bad copy. so we do the mapping for ourselves and issue
2108 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002109 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002110 * actually prevents the read that triggered the error from finishing.
2111 * currently, there can be no more than two copies of every data bit. thus,
2112 * exactly one rewrite is required.
2113 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04002114int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
2115 u64 length, u64 logical, struct page *page,
2116 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002117{
2118 struct bio *bio;
2119 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002120 u64 map_length = 0;
2121 u64 sector;
2122 struct btrfs_bio *bbio = NULL;
2123 int ret;
2124
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002125 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002126 BUG_ON(!mirror_num);
2127
David Sterbac5e4c3d2017-06-12 17:29:41 +02002128 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002129 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002130 map_length = length;
2131
Filipe Mananab5de8d02016-05-27 22:21:27 +01002132 /*
2133 * Avoid races with device replace and make sure our bbio has devices
2134 * associated to its stripes that don't go away while we are doing the
2135 * read repair operation.
2136 */
2137 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002138 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002139 /*
2140 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2141 * to update all raid stripes, but here we just want to correct
2142 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2143 * stripe's dev and sector.
2144 */
2145 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2146 &map_length, &bbio, 0);
2147 if (ret) {
2148 btrfs_bio_counter_dec(fs_info);
2149 bio_put(bio);
2150 return -EIO;
2151 }
2152 ASSERT(bbio->mirror_num == 1);
2153 } else {
2154 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2155 &map_length, &bbio, mirror_num);
2156 if (ret) {
2157 btrfs_bio_counter_dec(fs_info);
2158 bio_put(bio);
2159 return -EIO;
2160 }
2161 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002162 }
Liu Boc7253282017-03-29 10:53:58 -07002163
2164 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002165 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002166 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002167 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002168 if (!dev || !dev->bdev ||
2169 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002170 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002171 bio_put(bio);
2172 return -EIO;
2173 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002174 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002175 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002176 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002177
Mike Christie4e49ea42016-06-05 14:31:41 -05002178 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002179 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002180 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002181 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002182 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002183 return -EIO;
2184 }
2185
David Sterbab14af3b2015-10-08 10:43:10 +02002186 btrfs_info_rl_in_rcu(fs_info,
2187 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002188 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002189 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002190 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002191 bio_put(bio);
2192 return 0;
2193}
2194
David Sterba20a1fbf92019-03-20 11:23:44 +01002195int btrfs_repair_eb_io_failure(struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002196{
David Sterba20a1fbf92019-03-20 11:23:44 +01002197 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacikea466792012-03-26 21:57:36 -04002198 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002199 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002200 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002201
David Howellsbc98a422017-07-17 08:45:34 +01002202 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002203 return -EROFS;
2204
Josef Bacikea466792012-03-26 21:57:36 -04002205 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002206 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002207
Josef Bacik6ec656b2017-05-05 11:57:14 -04002208 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002209 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002210 if (ret)
2211 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002212 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002213 }
2214
2215 return ret;
2216}
2217
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002218/*
2219 * each time an IO finishes, we do a fast check in the IO failure tree
2220 * to see if we need to process or clean up an io_failure_record
2221 */
Josef Bacik7870d082017-05-05 11:57:15 -04002222int clean_io_failure(struct btrfs_fs_info *fs_info,
2223 struct extent_io_tree *failure_tree,
2224 struct extent_io_tree *io_tree, u64 start,
2225 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002226{
2227 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002228 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002229 struct extent_state *state;
2230 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002231 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002232
2233 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002234 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2235 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002236 if (!ret)
2237 return 0;
2238
Josef Bacik7870d082017-05-05 11:57:15 -04002239 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002240 if (ret)
2241 return 0;
2242
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002243 BUG_ON(!failrec->this_mirror);
2244
2245 if (failrec->in_validation) {
2246 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002247 btrfs_debug(fs_info,
2248 "clean_io_failure: freeing dummy error at %llu",
2249 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002250 goto out;
2251 }
David Howellsbc98a422017-07-17 08:45:34 +01002252 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002253 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002254
Josef Bacik7870d082017-05-05 11:57:15 -04002255 spin_lock(&io_tree->lock);
2256 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002257 failrec->start,
2258 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002259 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002260
Miao Xie883d0de2013-07-25 19:22:35 +08002261 if (state && state->start <= failrec->start &&
2262 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002263 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2264 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002265 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002266 repair_io_failure(fs_info, ino, start, failrec->len,
2267 failrec->logical, page, pg_offset,
2268 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002269 }
2270 }
2271
2272out:
Josef Bacik7870d082017-05-05 11:57:15 -04002273 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002274
Miao Xie454ff3d2014-09-12 18:43:58 +08002275 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002276}
2277
Miao Xief6124962014-09-12 18:44:04 +08002278/*
2279 * Can be called when
2280 * - hold extent lock
2281 * - under ordered extent
2282 * - the inode is freeing
2283 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002284void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002285{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002286 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002287 struct io_failure_record *failrec;
2288 struct extent_state *state, *next;
2289
2290 if (RB_EMPTY_ROOT(&failure_tree->state))
2291 return;
2292
2293 spin_lock(&failure_tree->lock);
2294 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2295 while (state) {
2296 if (state->start > end)
2297 break;
2298
2299 ASSERT(state->end <= end);
2300
2301 next = next_state(state);
2302
David Sterba47dc1962016-02-11 13:24:13 +01002303 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002304 free_extent_state(state);
2305 kfree(failrec);
2306
2307 state = next;
2308 }
2309 spin_unlock(&failure_tree->lock);
2310}
2311
Miao Xie2fe63032014-09-12 18:43:59 +08002312int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002313 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002314{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002315 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002316 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002317 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002318 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2319 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2320 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002321 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002322 u64 logical;
2323
David Sterba47dc1962016-02-11 13:24:13 +01002324 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002325 if (ret) {
2326 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2327 if (!failrec)
2328 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002329
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002330 failrec->start = start;
2331 failrec->len = end - start + 1;
2332 failrec->this_mirror = 0;
2333 failrec->bio_flags = 0;
2334 failrec->in_validation = 0;
2335
2336 read_lock(&em_tree->lock);
2337 em = lookup_extent_mapping(em_tree, start, failrec->len);
2338 if (!em) {
2339 read_unlock(&em_tree->lock);
2340 kfree(failrec);
2341 return -EIO;
2342 }
2343
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002344 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002345 free_extent_map(em);
2346 em = NULL;
2347 }
2348 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002349 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002350 kfree(failrec);
2351 return -EIO;
2352 }
Miao Xie2fe63032014-09-12 18:43:59 +08002353
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002354 logical = start - em->start;
2355 logical = em->block_start + logical;
2356 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2357 logical = em->block_start;
2358 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2359 extent_set_compress_type(&failrec->bio_flags,
2360 em->compress_type);
2361 }
Miao Xie2fe63032014-09-12 18:43:59 +08002362
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002363 btrfs_debug(fs_info,
2364 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2365 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002366
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002367 failrec->logical = logical;
2368 free_extent_map(em);
2369
2370 /* set the bits in the private failure tree */
2371 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002372 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002373 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002374 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002375 /* set the bits in the inode's tree */
2376 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002377 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002378 if (ret < 0) {
2379 kfree(failrec);
2380 return ret;
2381 }
2382 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002383 btrfs_debug(fs_info,
2384 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2385 failrec->logical, failrec->start, failrec->len,
2386 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002387 /*
2388 * when data can be on disk more than twice, add to failrec here
2389 * (e.g. with a list for failed_mirror) to make
2390 * clean_io_failure() clean all those errors at once.
2391 */
2392 }
Miao Xie2fe63032014-09-12 18:43:59 +08002393
2394 *failrec_ret = failrec;
2395
2396 return 0;
2397}
2398
Ming Leia0b60d72017-12-18 20:22:11 +08002399bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002400 struct io_failure_record *failrec, int failed_mirror)
2401{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002402 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002403 int num_copies;
2404
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002405 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002406 if (num_copies == 1) {
2407 /*
2408 * we only have a single copy of the data, so don't bother with
2409 * all the retry and error correction code that follows. no
2410 * matter what the error is, it is very likely to persist.
2411 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002412 btrfs_debug(fs_info,
2413 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2414 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002415 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002416 }
2417
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002418 /*
2419 * there are two premises:
2420 * a) deliver good data to the caller
2421 * b) correct the bad sectors on disk
2422 */
Ming Leia0b60d72017-12-18 20:22:11 +08002423 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002424 /*
2425 * to fulfill b), we need to know the exact failing sectors, as
2426 * we don't want to rewrite any more than the failed ones. thus,
2427 * we need separate read requests for the failed bio
2428 *
2429 * if the following BUG_ON triggers, our validation request got
2430 * merged. we need separate requests for our algorithm to work.
2431 */
2432 BUG_ON(failrec->in_validation);
2433 failrec->in_validation = 1;
2434 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002435 } else {
2436 /*
2437 * we're ready to fulfill a) and b) alongside. get a good copy
2438 * of the failed sector and if we succeed, we have setup
2439 * everything for repair_io_failure to do the rest for us.
2440 */
2441 if (failrec->in_validation) {
2442 BUG_ON(failrec->this_mirror != failed_mirror);
2443 failrec->in_validation = 0;
2444 failrec->this_mirror = 0;
2445 }
2446 failrec->failed_mirror = failed_mirror;
2447 failrec->this_mirror++;
2448 if (failrec->this_mirror == failed_mirror)
2449 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002450 }
2451
Miao Xiefacc8a222013-07-25 19:22:34 +08002452 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002453 btrfs_debug(fs_info,
2454 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2455 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002456 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002457 }
2458
Liu Boc3cfb652017-07-13 15:00:50 -07002459 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002460}
2461
2462
2463struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2464 struct io_failure_record *failrec,
2465 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002466 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002467{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002468 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002469 struct bio *bio;
2470 struct btrfs_io_bio *btrfs_failed_bio;
2471 struct btrfs_io_bio *btrfs_bio;
2472
David Sterbac5e4c3d2017-06-12 17:29:41 +02002473 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002474 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002475 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002476 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002477 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002478 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002479
Miao Xiefacc8a222013-07-25 19:22:34 +08002480 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2481 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002482 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2483
2484 btrfs_bio = btrfs_io_bio(bio);
2485 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002486 icsum *= csum_size;
2487 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002488 csum_size);
2489 }
2490
Miao Xie2fe63032014-09-12 18:43:59 +08002491 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002492
Miao Xie2fe63032014-09-12 18:43:59 +08002493 return bio;
2494}
2495
2496/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002497 * This is a generic handler for readpage errors. If other copies exist, read
2498 * those and write back good data to the failed position. Does not investigate
2499 * in remapping the failed extent elsewhere, hoping the device will be smart
2500 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002501 */
Miao Xie2fe63032014-09-12 18:43:59 +08002502static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2503 struct page *page, u64 start, u64 end,
2504 int failed_mirror)
2505{
2506 struct io_failure_record *failrec;
2507 struct inode *inode = page->mapping->host;
2508 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002509 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002510 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002511 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002512 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002513 int ret;
Christoph Hellwig8a2ee442019-02-15 19:13:07 +08002514 unsigned failed_bio_pages = failed_bio->bi_iter.bi_size >> PAGE_SHIFT;
Miao Xie2fe63032014-09-12 18:43:59 +08002515
Mike Christie1f7ad752016-06-05 14:31:51 -05002516 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002517
2518 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2519 if (ret)
2520 return ret;
2521
Ming Leia0b60d72017-12-18 20:22:11 +08002522 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002523 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002524 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002525 return -EIO;
2526 }
2527
Ming Leia0b60d72017-12-18 20:22:11 +08002528 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002529 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002530
2531 phy_offset >>= inode->i_sb->s_blocksize_bits;
2532 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2533 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002534 (int)phy_offset, failed_bio->bi_end_io,
2535 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002536 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002537
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002538 btrfs_debug(btrfs_sb(inode->i_sb),
2539 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2540 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002541
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002542 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Nikolay Borisov50489a52019-04-10 19:46:04 +03002543 failrec->bio_flags);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002544 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002545 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002546 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002547 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002548 }
2549
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002550 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002551}
2552
Chris Masond1310b22008-01-24 16:13:08 -05002553/* lots and lots of room for performance fixes in the end_bio funcs */
2554
David Sterbab5227c02015-12-03 13:08:59 +01002555void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002556{
2557 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002558 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002559
Nikolay Borisovc6297322018-11-08 10:18:08 +02002560 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002561
Jeff Mahoney87826df2012-02-15 16:23:57 +01002562 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002563 ClearPageUptodate(page);
2564 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002565 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002566 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002567 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002568}
2569
Chris Masond1310b22008-01-24 16:13:08 -05002570/*
2571 * after a writepage IO is done, we need to:
2572 * clear the uptodate bits on error
2573 * clear the writeback bits in the extent tree for this IO
2574 * end_page_writeback if the page has no more pending IO
2575 *
2576 * Scheduling is not allowed, so the extent state tree is expected
2577 * to have one and only one object corresponding to this IO.
2578 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002579static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002580{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002581 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002582 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002583 u64 start;
2584 u64 end;
Ming Lei6dc4f102019-02-15 19:13:19 +08002585 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002586
David Sterbac09abff2017-07-13 18:10:07 +02002587 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002588 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002589 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002590 struct inode *inode = page->mapping->host;
2591 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002592
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002593 /* We always issue full-page reads, but if some block
2594 * in a page fails to read, blk_update_request() will
2595 * advance bv_offset and adjust bv_len to compensate.
2596 * Print a warning for nonzero offsets, and an error
2597 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002598 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2599 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002600 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002601 "partial page write in btrfs with offset %u and length %u",
2602 bvec->bv_offset, bvec->bv_len);
2603 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002604 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002605 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002606 bvec->bv_offset, bvec->bv_len);
2607 }
Chris Masond1310b22008-01-24 16:13:08 -05002608
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002609 start = page_offset(page);
2610 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002611
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002612 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002613 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002614 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002615
Chris Masond1310b22008-01-24 16:13:08 -05002616 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002617}
2618
Miao Xie883d0de2013-07-25 19:22:35 +08002619static void
2620endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2621 int uptodate)
2622{
2623 struct extent_state *cached = NULL;
2624 u64 end = start + len - 1;
2625
2626 if (uptodate && tree->track_uptodate)
2627 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002628 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002629}
2630
Chris Masond1310b22008-01-24 16:13:08 -05002631/*
2632 * after a readpage IO is done, we need to:
2633 * clear the uptodate bits on error
2634 * set the uptodate bits if things worked
2635 * set the page up to date if all extents in the tree are uptodate
2636 * clear the lock bit in the extent tree
2637 * unlock the page if there are no other extents locked for it
2638 *
2639 * Scheduling is not allowed, so the extent state tree is expected
2640 * to have one and only one object corresponding to this IO.
2641 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002642static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002643{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002644 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002645 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002646 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002647 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002648 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002649 u64 start;
2650 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002651 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002652 u64 extent_start = 0;
2653 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002654 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002655 int ret;
Ming Lei6dc4f102019-02-15 19:13:19 +08002656 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002657
David Sterbac09abff2017-07-13 18:10:07 +02002658 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002659 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002660 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002661 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002662 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002663 bool data_inode = btrfs_ino(BTRFS_I(inode))
2664 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002665
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002666 btrfs_debug(fs_info,
2667 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002668 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002669 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002670 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002671 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002672
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002673 /* We always issue full-page reads, but if some block
2674 * in a page fails to read, blk_update_request() will
2675 * advance bv_offset and adjust bv_len to compensate.
2676 * Print a warning for nonzero offsets, and an error
2677 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002678 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2679 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002680 btrfs_err(fs_info,
2681 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002682 bvec->bv_offset, bvec->bv_len);
2683 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002684 btrfs_info(fs_info,
2685 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002686 bvec->bv_offset, bvec->bv_len);
2687 }
Chris Masond1310b22008-01-24 16:13:08 -05002688
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002689 start = page_offset(page);
2690 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002691 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002692
Chris Mason9be33952013-05-17 18:30:14 -04002693 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002694 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002695 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2696 page, start, end,
2697 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002698 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002699 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002700 else
Josef Bacik7870d082017-05-05 11:57:15 -04002701 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2702 failure_tree, tree, start,
2703 page,
2704 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002705 }
Josef Bacikea466792012-03-26 21:57:36 -04002706
Miao Xief2a09da2013-07-25 19:22:33 +08002707 if (likely(uptodate))
2708 goto readpage_ok;
2709
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002710 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002711
2712 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002713 * The generic bio_readpage_error handles errors the
2714 * following way: If possible, new read requests are
2715 * created and submitted and will end up in
2716 * end_bio_extent_readpage as well (if we're lucky,
2717 * not in the !uptodate case). In that case it returns
2718 * 0 and we just go on with the next page in our bio.
2719 * If it can't handle the error it will return -EIO and
2720 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002721 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002722 ret = bio_readpage_error(bio, offset, page, start, end,
2723 mirror);
2724 if (ret == 0) {
2725 uptodate = !bio->bi_status;
2726 offset += len;
2727 continue;
2728 }
2729 } else {
2730 struct extent_buffer *eb;
2731
2732 eb = (struct extent_buffer *)page->private;
2733 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2734 eb->read_mirror = mirror;
2735 atomic_dec(&eb->io_pages);
2736 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2737 &eb->bflags))
2738 btree_readahead_hook(eb, -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002739 }
Miao Xief2a09da2013-07-25 19:22:33 +08002740readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002741 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002742 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002743 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002744 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002745
2746 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002747 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002748 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002749 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002750 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002751 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002752 ClearPageUptodate(page);
2753 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002754 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002755 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002756 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002757
2758 if (unlikely(!uptodate)) {
2759 if (extent_len) {
2760 endio_readpage_release_extent(tree,
2761 extent_start,
2762 extent_len, 1);
2763 extent_start = 0;
2764 extent_len = 0;
2765 }
2766 endio_readpage_release_extent(tree, start,
2767 end - start + 1, 0);
2768 } else if (!extent_len) {
2769 extent_start = start;
2770 extent_len = end + 1 - start;
2771 } else if (extent_start + extent_len == start) {
2772 extent_len += end + 1 - start;
2773 } else {
2774 endio_readpage_release_extent(tree, extent_start,
2775 extent_len, uptodate);
2776 extent_start = start;
2777 extent_len = end + 1 - start;
2778 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002779 }
Chris Masond1310b22008-01-24 16:13:08 -05002780
Miao Xie883d0de2013-07-25 19:22:35 +08002781 if (extent_len)
2782 endio_readpage_release_extent(tree, extent_start, extent_len,
2783 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002784 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002785 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002786}
2787
Chris Mason9be33952013-05-17 18:30:14 -04002788/*
David Sterba184f9992017-06-12 17:29:39 +02002789 * Initialize the members up to but not including 'bio'. Use after allocating a
2790 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2791 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002792 */
David Sterba184f9992017-06-12 17:29:39 +02002793static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002794{
David Sterba184f9992017-06-12 17:29:39 +02002795 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2796}
2797
2798/*
David Sterba6e707bc2017-06-02 17:26:26 +02002799 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2800 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2801 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002802 */
David Sterbac821e7f32017-06-02 18:35:36 +02002803struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002804{
2805 struct bio *bio;
2806
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002807 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002808 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002809 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002810 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002811 return bio;
2812}
2813
David Sterba8b6c1d52017-06-02 17:48:13 +02002814struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002815{
Miao Xie23ea8e52014-09-12 18:43:54 +08002816 struct btrfs_io_bio *btrfs_bio;
2817 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002818
David Sterba6e707bc2017-06-02 17:26:26 +02002819 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002820 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002821 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002822 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002823 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002824 return new;
2825}
Chris Mason9be33952013-05-17 18:30:14 -04002826
David Sterbac5e4c3d2017-06-12 17:29:41 +02002827struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002828{
Miao Xiefacc8a222013-07-25 19:22:34 +08002829 struct bio *bio;
2830
David Sterba6e707bc2017-06-02 17:26:26 +02002831 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002832 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002833 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002834 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002835}
2836
Liu Boe4770942017-05-16 10:57:14 -07002837struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002838{
2839 struct bio *bio;
2840 struct btrfs_io_bio *btrfs_bio;
2841
2842 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002843 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002844 ASSERT(bio);
2845
2846 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002847 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002848
2849 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002850 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002851 return bio;
2852}
Chris Mason9be33952013-05-17 18:30:14 -04002853
David Sterba4b81ba42017-06-06 19:14:26 +02002854/*
2855 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002856 * @tree: tree so we can call our merge_bio hook
2857 * @wbc: optional writeback control for io accounting
2858 * @page: page to add to the bio
2859 * @pg_offset: offset of the new bio or to check whether we are adding
2860 * a contiguous page to the previous one
2861 * @size: portion of page that we want to write
2862 * @offset: starting offset in the page
2863 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002864 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002865 * @end_io_func: end_io callback for new bio
2866 * @mirror_num: desired mirror to read/write
2867 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2868 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002869 */
2870static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002871 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002872 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002873 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002874 struct block_device *bdev,
2875 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002876 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002877 int mirror_num,
2878 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002879 unsigned long bio_flags,
2880 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002881{
2882 int ret = 0;
2883 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002884 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002885 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002886
David Sterba5c2b1fd2017-06-06 19:22:55 +02002887 ASSERT(bio_ret);
2888
2889 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002890 bool contig;
2891 bool can_merge = true;
2892
Chris Masond1310b22008-01-24 16:13:08 -05002893 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002894 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002895 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002896 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002897 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002898
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002899 ASSERT(tree->ops);
2900 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002901 can_merge = false;
2902
2903 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002904 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002905 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002906 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002907 if (ret < 0) {
2908 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002909 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002910 }
Chris Masond1310b22008-01-24 16:13:08 -05002911 bio = NULL;
2912 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002913 if (wbc)
2914 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002915 return 0;
2916 }
2917 }
Chris Masonc8b97812008-10-29 14:49:59 -04002918
David Sterba6273b7f2017-10-04 17:30:11 +02002919 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002920 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002921 bio->bi_end_io = end_io_func;
2922 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002923 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002924 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002925 if (wbc) {
2926 wbc_init_bio(wbc, bio);
2927 wbc_account_io(wbc, page, page_size);
2928 }
Chris Mason70dec802008-01-29 09:59:12 -05002929
David Sterba5c2b1fd2017-06-06 19:22:55 +02002930 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002931
2932 return ret;
2933}
2934
Eric Sandeen48a3b632013-04-25 20:41:01 +00002935static void attach_extent_buffer_page(struct extent_buffer *eb,
2936 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002937{
2938 if (!PagePrivate(page)) {
2939 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002940 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002941 set_page_private(page, (unsigned long)eb);
2942 } else {
2943 WARN_ON(page->private != (unsigned long)eb);
2944 }
2945}
2946
Chris Masond1310b22008-01-24 16:13:08 -05002947void set_page_extent_mapped(struct page *page)
2948{
2949 if (!PagePrivate(page)) {
2950 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002951 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002952 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002953 }
2954}
2955
Miao Xie125bac012013-07-25 19:22:37 +08002956static struct extent_map *
2957__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2958 u64 start, u64 len, get_extent_t *get_extent,
2959 struct extent_map **em_cached)
2960{
2961 struct extent_map *em;
2962
2963 if (em_cached && *em_cached) {
2964 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002965 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002966 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002967 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002968 return em;
2969 }
2970
2971 free_extent_map(em);
2972 *em_cached = NULL;
2973 }
2974
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002975 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002976 if (em_cached && !IS_ERR_OR_NULL(em)) {
2977 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002978 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002979 *em_cached = em;
2980 }
2981 return em;
2982}
Chris Masond1310b22008-01-24 16:13:08 -05002983/*
2984 * basic readpage implementation. Locked extent state structs are inserted
2985 * into the tree that are removed when the IO is done (by the end_io
2986 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002987 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002988 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002989 */
Miao Xie99740902013-07-25 19:22:36 +08002990static int __do_readpage(struct extent_io_tree *tree,
2991 struct page *page,
2992 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002993 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002994 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002995 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002996 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002997{
2998 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002999 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02003000 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003001 u64 cur = start;
3002 u64 extent_offset;
3003 u64 last_byte = i_size_read(inode);
3004 u64 block_start;
3005 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05003006 struct extent_map *em;
3007 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07003008 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003009 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02003010 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003011 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04003012 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05003013 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00003014 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003015
3016 set_page_extent_mapped(page);
3017
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003018 if (!PageUptodate(page)) {
3019 if (cleancache_get_page(page) == 0) {
3020 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003021 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003022 goto out;
3023 }
3024 }
3025
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003026 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04003027 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01003028 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04003029
3030 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003031 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003032 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003033 memset(userpage + zero_offset, 0, iosize);
3034 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003035 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003036 }
3037 }
Chris Masond1310b22008-01-24 16:13:08 -05003038 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01003039 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02003040 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003041
Chris Masond1310b22008-01-24 16:13:08 -05003042 if (cur >= last_byte) {
3043 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003044 struct extent_state *cached = NULL;
3045
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003046 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003047 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003048 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003049 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003050 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003051 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003052 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003053 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003054 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003055 break;
3056 }
Miao Xie125bac012013-07-25 19:22:37 +08003057 em = __get_extent_map(inode, page, pg_offset, cur,
3058 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003059 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003060 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003061 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003062 break;
3063 }
Chris Masond1310b22008-01-24 16:13:08 -05003064 extent_offset = cur - em->start;
3065 BUG_ON(extent_map_end(em) <= cur);
3066 BUG_ON(end < cur);
3067
Li Zefan261507a02010-12-17 14:21:50 +08003068 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003069 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003070 extent_set_compress_type(&this_bio_flag,
3071 em->compress_type);
3072 }
Chris Masonc8b97812008-10-29 14:49:59 -04003073
Chris Masond1310b22008-01-24 16:13:08 -05003074 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3075 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003076 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003077 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3078 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02003079 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003080 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02003081 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003082 disk_io_size = iosize;
3083 }
Chris Masond1310b22008-01-24 16:13:08 -05003084 bdev = em->bdev;
3085 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003086 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3087 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003088
3089 /*
3090 * If we have a file range that points to a compressed extent
3091 * and it's followed by a consecutive file range that points to
3092 * to the same compressed extent (possibly with a different
3093 * offset and/or length, so it either points to the whole extent
3094 * or only part of it), we must make sure we do not submit a
3095 * single bio to populate the pages for the 2 ranges because
3096 * this makes the compressed extent read zero out the pages
3097 * belonging to the 2nd range. Imagine the following scenario:
3098 *
3099 * File layout
3100 * [0 - 8K] [8K - 24K]
3101 * | |
3102 * | |
3103 * points to extent X, points to extent X,
3104 * offset 4K, length of 8K offset 0, length 16K
3105 *
3106 * [extent X, compressed length = 4K uncompressed length = 16K]
3107 *
3108 * If the bio to read the compressed extent covers both ranges,
3109 * it will decompress extent X into the pages belonging to the
3110 * first range and then it will stop, zeroing out the remaining
3111 * pages that belong to the other range that points to extent X.
3112 * So here we make sure we submit 2 bios, one for the first
3113 * range and another one for the third range. Both will target
3114 * the same physical extent from disk, but we can't currently
3115 * make the compressed bio endio callback populate the pages
3116 * for both ranges because each compressed bio is tightly
3117 * coupled with a single extent map, and each range can have
3118 * an extent map with a different offset value relative to the
3119 * uncompressed data of our extent and different lengths. This
3120 * is a corner case so we prioritize correctness over
3121 * non-optimal behavior (submitting 2 bios for the same extent).
3122 */
3123 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3124 prev_em_start && *prev_em_start != (u64)-1 &&
Filipe Manana8e928212019-02-14 15:17:20 +00003125 *prev_em_start != em->start)
Filipe Manana005efed2015-09-14 09:09:31 +01003126 force_bio_submit = true;
3127
3128 if (prev_em_start)
Filipe Manana8e928212019-02-14 15:17:20 +00003129 *prev_em_start = em->start;
Filipe Manana005efed2015-09-14 09:09:31 +01003130
Chris Masond1310b22008-01-24 16:13:08 -05003131 free_extent_map(em);
3132 em = NULL;
3133
3134 /* we've found a hole, just zero and go on */
3135 if (block_start == EXTENT_MAP_HOLE) {
3136 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003137 struct extent_state *cached = NULL;
3138
Cong Wang7ac687d2011-11-25 23:14:28 +08003139 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003140 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003141 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003142 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003143
3144 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003145 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003146 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003147 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003148 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003149 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003150 continue;
3151 }
3152 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003153 if (test_range_bit(tree, cur, cur_end,
3154 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003155 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003156 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003157 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003158 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003159 continue;
3160 }
Chris Mason70dec802008-01-29 09:59:12 -05003161 /* we have an inline extent but it didn't get marked up
3162 * to date. Error out
3163 */
3164 if (block_start == EXTENT_MAP_INLINE) {
3165 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003166 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003167 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003168 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003169 continue;
3170 }
Chris Masond1310b22008-01-24 16:13:08 -05003171
David Sterba4b81ba42017-06-06 19:14:26 +02003172 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003173 page, offset, disk_io_size,
3174 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003175 end_bio_extent_readpage, mirror_num,
3176 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003177 this_bio_flag,
3178 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003179 if (!ret) {
3180 nr++;
3181 *bio_flags = this_bio_flag;
3182 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003183 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003184 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003185 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003186 }
Chris Masond1310b22008-01-24 16:13:08 -05003187 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003188 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003189 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003190out:
Chris Masond1310b22008-01-24 16:13:08 -05003191 if (!nr) {
3192 if (!PageError(page))
3193 SetPageUptodate(page);
3194 unlock_page(page);
3195 }
Liu Bobaf863b2016-07-11 10:39:07 -07003196 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003197}
3198
Nikolay Borisove65ef212019-03-11 09:55:38 +02003199static inline void contiguous_readpages(struct extent_io_tree *tree,
Miao Xie99740902013-07-25 19:22:36 +08003200 struct page *pages[], int nr_pages,
3201 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003202 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003203 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003204 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003205 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003206{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003207 struct btrfs_inode *inode = BTRFS_I(pages[0]->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003208 int index;
3209
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003210 btrfs_lock_and_flush_ordered_range(tree, inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003211
3212 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003213 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003214 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003215 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003216 }
3217}
3218
Miao Xie99740902013-07-25 19:22:36 +08003219static int __extent_read_full_page(struct extent_io_tree *tree,
3220 struct page *page,
3221 get_extent_t *get_extent,
3222 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003223 unsigned long *bio_flags,
3224 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003225{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003226 struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003227 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003228 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003229 int ret;
3230
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003231 btrfs_lock_and_flush_ordered_range(tree, inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003232
Miao Xie125bac012013-07-25 19:22:37 +08003233 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003234 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003235 return ret;
3236}
3237
Chris Masond1310b22008-01-24 16:13:08 -05003238int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003239 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003240{
3241 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003242 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003243 int ret;
3244
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003245 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003246 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003247 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003248 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003249 return ret;
3250}
Chris Masond1310b22008-01-24 16:13:08 -05003251
David Sterba3d4b9492017-02-10 19:33:41 +01003252static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003253 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003254{
3255 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003256}
3257
Chris Masond1310b22008-01-24 16:13:08 -05003258/*
Chris Mason40f76582014-05-21 13:35:51 -07003259 * helper for __extent_writepage, doing all of the delayed allocation setup.
3260 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003261 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003262 * to write the page (copy into inline extent). In this case the IO has
3263 * been started and the page is already unlocked.
3264 *
3265 * This returns 0 if all went well (page still locked)
3266 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003267 */
Chris Mason40f76582014-05-21 13:35:51 -07003268static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003269 struct page *page, struct writeback_control *wbc,
3270 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003271{
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003272 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003273 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003274 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003275 u64 delalloc_to_write = 0;
3276 u64 delalloc_end = 0;
3277 int ret;
3278 int page_started = 0;
3279
Chris Mason40f76582014-05-21 13:35:51 -07003280
3281 while (delalloc_end < page_end) {
Lu Fengqi3522e902018-11-29 11:33:38 +08003282 found = find_lock_delalloc_range(inode, tree,
Chris Mason40f76582014-05-21 13:35:51 -07003283 page,
3284 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003285 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003286 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003287 delalloc_start = delalloc_end + 1;
3288 continue;
3289 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003290 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3291 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003292 if (ret) {
3293 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003294 /*
3295 * btrfs_run_delalloc_range should return < 0 for error
3296 * but just in case, we use > 0 here meaning the IO is
3297 * started, so we don't want to return > 0 unless
3298 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003299 */
3300 ret = ret < 0 ? ret : -EIO;
3301 goto done;
3302 }
3303 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003304 * delalloc_end is already one less than the total length, so
3305 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003306 */
3307 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003308 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003309 delalloc_start = delalloc_end + 1;
3310 }
3311 if (wbc->nr_to_write < delalloc_to_write) {
3312 int thresh = 8192;
3313
3314 if (delalloc_to_write < thresh * 2)
3315 thresh = delalloc_to_write;
3316 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3317 thresh);
3318 }
3319
3320 /* did the fill delalloc function already unlock and start
3321 * the IO?
3322 */
3323 if (page_started) {
3324 /*
3325 * we've unlocked the page, so we can't update
3326 * the mapping's writeback index, just update
3327 * nr_to_write.
3328 */
3329 wbc->nr_to_write -= *nr_written;
3330 return 1;
3331 }
3332
3333 ret = 0;
3334
3335done:
3336 return ret;
3337}
3338
3339/*
3340 * helper for __extent_writepage. This calls the writepage start hooks,
3341 * and does the loop to map the page into extents and bios.
3342 *
3343 * We return 1 if the IO is started and the page is unlocked,
3344 * 0 if all went well (page still locked)
3345 * < 0 if there were errors (page still locked)
3346 */
3347static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3348 struct page *page,
3349 struct writeback_control *wbc,
3350 struct extent_page_data *epd,
3351 loff_t i_size,
3352 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003353 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003354{
Chris Masond1310b22008-01-24 16:13:08 -05003355 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003356 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003357 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003358 u64 end;
3359 u64 cur = start;
3360 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003361 u64 block_start;
3362 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003363 struct extent_map *em;
3364 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003365 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003366 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003367 int ret = 0;
3368 int nr = 0;
3369 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003370
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003371 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3372 if (ret) {
3373 /* Fixup worker will requeue */
3374 if (ret == -EBUSY)
3375 wbc->pages_skipped++;
3376 else
3377 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003378
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003379 update_nr_written(wbc, nr_written);
3380 unlock_page(page);
3381 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003382 }
3383
Chris Mason11c83492009-04-20 15:50:09 -04003384 /*
3385 * we don't want to touch the inode after unlocking the page,
3386 * so we update the mapping writeback index now
3387 */
David Sterba3d4b9492017-02-10 19:33:41 +01003388 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003389
Chris Masond1310b22008-01-24 16:13:08 -05003390 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003391 if (i_size <= start) {
Nikolay Borisovc6297322018-11-08 10:18:08 +02003392 btrfs_writepage_endio_finish_ordered(page, start, page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003393 goto done;
3394 }
3395
Chris Masond1310b22008-01-24 16:13:08 -05003396 blocksize = inode->i_sb->s_blocksize;
3397
3398 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003399 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003400 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003401
Chris Mason40f76582014-05-21 13:35:51 -07003402 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003403 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003404 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003405 break;
3406 }
David Sterba3c98c622017-06-23 04:01:08 +02003407 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003408 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003409 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003410 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003411 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003412 break;
3413 }
3414
3415 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003416 em_end = extent_map_end(em);
3417 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003418 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003419 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003420 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003421 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003422 bdev = em->bdev;
3423 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003424 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003425 free_extent_map(em);
3426 em = NULL;
3427
Chris Masonc8b97812008-10-29 14:49:59 -04003428 /*
3429 * compressed and inline extents are written through other
3430 * paths in the FS
3431 */
3432 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003433 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003434 /*
3435 * end_io notification does not happen here for
3436 * compressed extents
3437 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003438 if (!compressed)
3439 btrfs_writepage_endio_finish_ordered(page, cur,
3440 cur + iosize - 1,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003441 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003442 else if (compressed) {
3443 /* we don't want to end_page_writeback on
3444 * a compressed extent. this happens
3445 * elsewhere
3446 */
3447 nr++;
3448 }
3449
3450 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003451 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003452 continue;
3453 }
Chris Masonc8b97812008-10-29 14:49:59 -04003454
David Sterba5cdc84b2018-07-18 20:32:52 +02003455 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003456 if (!PageWriteback(page)) {
3457 btrfs_err(BTRFS_I(inode)->root->fs_info,
3458 "page %lu not writeback, cur %llu end %llu",
3459 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003460 }
David Sterba58409ed2016-05-04 11:46:10 +02003461
David Sterba4b81ba42017-06-06 19:14:26 +02003462 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003463 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003464 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003465 end_bio_extent_writepage,
3466 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003467 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003468 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003469 if (PageWriteback(page))
3470 end_page_writeback(page);
3471 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003472
Chris Masond1310b22008-01-24 16:13:08 -05003473 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003474 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003475 nr++;
3476 }
3477done:
Chris Mason40f76582014-05-21 13:35:51 -07003478 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003479 return ret;
3480}
3481
3482/*
3483 * the writepage semantics are similar to regular writepage. extent
3484 * records are inserted to lock ranges in the tree, and as dirty areas
3485 * are found, they are marked writeback. Then the lock bits are removed
3486 * and the end_io handler clears the writeback ranges
Qu Wenruo30659762019-03-20 14:27:42 +08003487 *
3488 * Return 0 if everything goes well.
3489 * Return <0 for error.
Chris Mason40f76582014-05-21 13:35:51 -07003490 */
3491static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003492 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003493{
3494 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003495 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003496 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003497 int ret;
3498 int nr = 0;
3499 size_t pg_offset = 0;
3500 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003501 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003502 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003503 unsigned long nr_written = 0;
3504
Liu Boff40adf2017-08-24 18:19:48 -06003505 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003506
3507 trace___extent_writepage(page, inode, wbc);
3508
3509 WARN_ON(!PageLocked(page));
3510
3511 ClearPageError(page);
3512
Johannes Thumshirn70730172018-12-05 15:23:03 +01003513 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003514 if (page->index > end_index ||
3515 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003516 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003517 unlock_page(page);
3518 return 0;
3519 }
3520
3521 if (page->index == end_index) {
3522 char *userpage;
3523
3524 userpage = kmap_atomic(page);
3525 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003526 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003527 kunmap_atomic(userpage);
3528 flush_dcache_page(page);
3529 }
3530
3531 pg_offset = 0;
3532
3533 set_page_extent_mapped(page);
3534
Nikolay Borisov7789a552018-11-08 10:18:06 +02003535 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003536 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003537 if (ret == 1)
3538 goto done_unlocked;
3539 if (ret)
3540 goto done;
3541 }
Chris Mason40f76582014-05-21 13:35:51 -07003542
3543 ret = __extent_writepage_io(inode, page, wbc, epd,
3544 i_size, nr_written, write_flags, &nr);
3545 if (ret == 1)
3546 goto done_unlocked;
3547
3548done:
Chris Masond1310b22008-01-24 16:13:08 -05003549 if (nr == 0) {
3550 /* make sure the mapping tag for page dirty gets cleared */
3551 set_page_writeback(page);
3552 end_page_writeback(page);
3553 }
Filipe Manana61391d52014-05-09 17:17:40 +01003554 if (PageError(page)) {
3555 ret = ret < 0 ? ret : -EIO;
3556 end_extent_writepage(page, ret, start, page_end);
3557 }
Chris Masond1310b22008-01-24 16:13:08 -05003558 unlock_page(page);
Qu Wenruo30659762019-03-20 14:27:42 +08003559 ASSERT(ret <= 0);
Chris Mason40f76582014-05-21 13:35:51 -07003560 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003561
Chris Mason11c83492009-04-20 15:50:09 -04003562done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003563 return 0;
3564}
3565
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003566void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003567{
NeilBrown74316202014-07-07 15:16:04 +10003568 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3569 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003570}
3571
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003572/*
3573 * Lock eb pages and flush the bio if we can't the locks
3574 *
3575 * Return 0 if nothing went wrong
3576 * Return >0 is same as 0, except bio is not submitted
3577 * Return <0 if something went wrong, no page is locked
3578 */
David Sterba9df76fb2019-03-20 11:21:41 +01003579static noinline_for_stack int lock_extent_buffer_for_io(struct extent_buffer *eb,
Chris Mason0e378df2014-05-19 20:55:27 -07003580 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003581{
David Sterba9df76fb2019-03-20 11:21:41 +01003582 struct btrfs_fs_info *fs_info = eb->fs_info;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003583 int i, num_pages, failed_page_nr;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003584 int flush = 0;
3585 int ret = 0;
3586
3587 if (!btrfs_try_tree_write_lock(eb)) {
Qu Wenruof4340622019-03-20 14:27:41 +08003588 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003589 if (ret < 0)
3590 return ret;
3591 flush = 1;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003592 btrfs_tree_lock(eb);
3593 }
3594
3595 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3596 btrfs_tree_unlock(eb);
3597 if (!epd->sync_io)
3598 return 0;
3599 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003600 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003601 if (ret < 0)
3602 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003603 flush = 1;
3604 }
Chris Masona098d8e82012-03-21 12:09:56 -04003605 while (1) {
3606 wait_on_extent_buffer_writeback(eb);
3607 btrfs_tree_lock(eb);
3608 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3609 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003610 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003611 }
3612 }
3613
Josef Bacik51561ff2012-07-20 16:25:24 -04003614 /*
3615 * We need to do this to prevent races in people who check if the eb is
3616 * under IO since we can end up having no IO bits set for a short period
3617 * of time.
3618 */
3619 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003620 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3621 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003622 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003623 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003624 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3625 -eb->len,
3626 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003627 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003628 } else {
3629 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003630 }
3631
3632 btrfs_tree_unlock(eb);
3633
3634 if (!ret)
3635 return ret;
3636
David Sterba65ad0102018-06-29 10:56:49 +02003637 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003638 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003639 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003640
3641 if (!trylock_page(p)) {
3642 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003643 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003644 if (ret < 0) {
3645 failed_page_nr = i;
3646 goto err_unlock;
3647 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003648 flush = 1;
3649 }
3650 lock_page(p);
3651 }
3652 }
3653
3654 return ret;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003655err_unlock:
3656 /* Unlock already locked pages */
3657 for (i = 0; i < failed_page_nr; i++)
3658 unlock_page(eb->pages[i]);
3659 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003660}
3661
3662static void end_extent_buffer_writeback(struct extent_buffer *eb)
3663{
3664 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003665 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003666 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3667}
3668
Filipe Manana656f30d2014-09-26 12:25:56 +01003669static void set_btree_ioerr(struct page *page)
3670{
3671 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003672
3673 SetPageError(page);
3674 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3675 return;
3676
3677 /*
3678 * If writeback for a btree extent that doesn't belong to a log tree
3679 * failed, increment the counter transaction->eb_write_errors.
3680 * We do this because while the transaction is running and before it's
3681 * committing (when we call filemap_fdata[write|wait]_range against
3682 * the btree inode), we might have
3683 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3684 * returns an error or an error happens during writeback, when we're
3685 * committing the transaction we wouldn't know about it, since the pages
3686 * can be no longer dirty nor marked anymore for writeback (if a
3687 * subsequent modification to the extent buffer didn't happen before the
3688 * transaction commit), which makes filemap_fdata[write|wait]_range not
3689 * able to find the pages tagged with SetPageError at transaction
3690 * commit time. So if this happens we must abort the transaction,
3691 * otherwise we commit a super block with btree roots that point to
3692 * btree nodes/leafs whose content on disk is invalid - either garbage
3693 * or the content of some node/leaf from a past generation that got
3694 * cowed or deleted and is no longer valid.
3695 *
3696 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3697 * not be enough - we need to distinguish between log tree extents vs
3698 * non-log tree extents, and the next filemap_fdatawait_range() call
3699 * will catch and clear such errors in the mapping - and that call might
3700 * be from a log sync and not from a transaction commit. Also, checking
3701 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3702 * not done and would not be reliable - the eb might have been released
3703 * from memory and reading it back again means that flag would not be
3704 * set (since it's a runtime flag, not persisted on disk).
3705 *
3706 * Using the flags below in the btree inode also makes us achieve the
3707 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3708 * writeback for all dirty pages and before filemap_fdatawait_range()
3709 * is called, the writeback for all dirty pages had already finished
3710 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3711 * filemap_fdatawait_range() would return success, as it could not know
3712 * that writeback errors happened (the pages were no longer tagged for
3713 * writeback).
3714 */
3715 switch (eb->log_index) {
3716 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003717 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003718 break;
3719 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003720 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003721 break;
3722 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003723 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003724 break;
3725 default:
3726 BUG(); /* unexpected, logic error */
3727 }
3728}
3729
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003730static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003731{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003732 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003733 struct extent_buffer *eb;
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003734 int done;
Ming Lei6dc4f102019-02-15 19:13:19 +08003735 struct bvec_iter_all iter_all;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003736
David Sterbac09abff2017-07-13 18:10:07 +02003737 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003738 bio_for_each_segment_all(bvec, bio, iter_all) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003739 struct page *page = bvec->bv_page;
3740
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003741 eb = (struct extent_buffer *)page->private;
3742 BUG_ON(!eb);
3743 done = atomic_dec_and_test(&eb->io_pages);
3744
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003745 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003746 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003747 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003748 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003749 }
3750
3751 end_page_writeback(page);
3752
3753 if (!done)
3754 continue;
3755
3756 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003757 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003758
3759 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003760}
3761
Chris Mason0e378df2014-05-19 20:55:27 -07003762static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003763 struct writeback_control *wbc,
3764 struct extent_page_data *epd)
3765{
David Sterba0ab02062019-03-20 11:27:57 +01003766 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003767 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003768 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003769 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003770 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003771 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003772 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003773 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003774 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003775
Filipe Manana656f30d2014-09-26 12:25:56 +01003776 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003777 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003778 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003779
Liu Bo851cd172016-09-23 13:44:44 -07003780 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3781 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003782 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003783 end = btrfs_node_key_ptr_offset(nritems);
3784
David Sterbab159fa22016-11-08 18:09:03 +01003785 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003786 } else {
3787 /*
3788 * leaf:
3789 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3790 */
3791 start = btrfs_item_nr_offset(nritems);
David Sterba8f881e82019-03-20 11:33:10 +01003792 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(eb);
David Sterbab159fa22016-11-08 18:09:03 +01003793 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003794 }
3795
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003796 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003797 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003798
3799 clear_page_dirty_for_io(p);
3800 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003801 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003802 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003803 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003804 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003805 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003806 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003807 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003808 if (PageWriteback(p))
3809 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003810 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3811 end_extent_buffer_writeback(eb);
3812 ret = -EIO;
3813 break;
3814 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003815 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003816 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003817 unlock_page(p);
3818 }
3819
3820 if (unlikely(ret)) {
3821 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003822 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003823 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003824 unlock_page(p);
3825 }
3826 }
3827
3828 return ret;
3829}
3830
3831int btree_write_cache_pages(struct address_space *mapping,
3832 struct writeback_control *wbc)
3833{
3834 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003835 struct extent_buffer *eb, *prev_eb = NULL;
3836 struct extent_page_data epd = {
3837 .bio = NULL,
3838 .tree = tree,
3839 .extent_locked = 0,
3840 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3841 };
3842 int ret = 0;
3843 int done = 0;
3844 int nr_to_write_done = 0;
3845 struct pagevec pvec;
3846 int nr_pages;
3847 pgoff_t index;
3848 pgoff_t end; /* Inclusive */
3849 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003850 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003851
Mel Gorman86679822017-11-15 17:37:52 -08003852 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003853 if (wbc->range_cyclic) {
3854 index = mapping->writeback_index; /* Start from prev offset */
3855 end = -1;
3856 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003857 index = wbc->range_start >> PAGE_SHIFT;
3858 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003859 scanned = 1;
3860 }
3861 if (wbc->sync_mode == WB_SYNC_ALL)
3862 tag = PAGECACHE_TAG_TOWRITE;
3863 else
3864 tag = PAGECACHE_TAG_DIRTY;
3865retry:
3866 if (wbc->sync_mode == WB_SYNC_ALL)
3867 tag_pages_for_writeback(mapping, index, end);
3868 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003869 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003870 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003871 unsigned i;
3872
3873 scanned = 1;
3874 for (i = 0; i < nr_pages; i++) {
3875 struct page *page = pvec.pages[i];
3876
3877 if (!PagePrivate(page))
3878 continue;
3879
Josef Bacikb5bae262012-09-14 13:43:01 -04003880 spin_lock(&mapping->private_lock);
3881 if (!PagePrivate(page)) {
3882 spin_unlock(&mapping->private_lock);
3883 continue;
3884 }
3885
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003886 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003887
3888 /*
3889 * Shouldn't happen and normally this would be a BUG_ON
3890 * but no sense in crashing the users box for something
3891 * we can survive anyway.
3892 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303893 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003894 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003895 continue;
3896 }
3897
Josef Bacikb5bae262012-09-14 13:43:01 -04003898 if (eb == prev_eb) {
3899 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003900 continue;
3901 }
3902
Josef Bacikb5bae262012-09-14 13:43:01 -04003903 ret = atomic_inc_not_zero(&eb->refs);
3904 spin_unlock(&mapping->private_lock);
3905 if (!ret)
3906 continue;
3907
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003908 prev_eb = eb;
David Sterba9df76fb2019-03-20 11:21:41 +01003909 ret = lock_extent_buffer_for_io(eb, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003910 if (!ret) {
3911 free_extent_buffer(eb);
3912 continue;
3913 }
3914
David Sterba0ab02062019-03-20 11:27:57 +01003915 ret = write_one_eb(eb, wbc, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003916 if (ret) {
3917 done = 1;
3918 free_extent_buffer(eb);
3919 break;
3920 }
3921 free_extent_buffer(eb);
3922
3923 /*
3924 * the filesystem may choose to bump up nr_to_write.
3925 * We have to make sure to honor the new nr_to_write
3926 * at any time
3927 */
3928 nr_to_write_done = wbc->nr_to_write <= 0;
3929 }
3930 pagevec_release(&pvec);
3931 cond_resched();
3932 }
3933 if (!scanned && !done) {
3934 /*
3935 * We hit the last page and there is more work to be done: wrap
3936 * back to the start of the file
3937 */
3938 scanned = 1;
3939 index = 0;
3940 goto retry;
3941 }
Qu Wenruo2b952ee2019-03-20 14:27:43 +08003942 ASSERT(ret <= 0);
3943 if (ret < 0) {
3944 end_write_bio(&epd, ret);
3945 return ret;
3946 }
3947 ret = flush_write_bio(&epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003948 return ret;
3949}
3950
Chris Masond1310b22008-01-24 16:13:08 -05003951/**
Chris Mason4bef0842008-09-08 11:18:08 -04003952 * 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 -05003953 * @mapping: address space structure to write
3954 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003955 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003956 *
3957 * If a page is already under I/O, write_cache_pages() skips it, even
3958 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3959 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3960 * and msync() need to guarantee that all the data which was dirty at the time
3961 * the call was made get new I/O started against them. If wbc->sync_mode is
3962 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3963 * existing IO to complete.
3964 */
David Sterba4242b642017-02-10 19:38:24 +01003965static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003966 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003967 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003968{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003969 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003970 int ret = 0;
3971 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003972 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003973 struct pagevec pvec;
3974 int nr_pages;
3975 pgoff_t index;
3976 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003977 pgoff_t done_index;
3978 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003979 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003980 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05003981
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003982 /*
3983 * We have to hold onto the inode so that ordered extents can do their
3984 * work when the IO finishes. The alternative to this is failing to add
3985 * an ordered extent if the igrab() fails there and that is a huge pain
3986 * to deal with, so instead just hold onto the inode throughout the
3987 * writepages operation. If it fails here we are freeing up the inode
3988 * anyway and we'd rather not waste our time writing out stuff that is
3989 * going to be truncated anyway.
3990 */
3991 if (!igrab(inode))
3992 return 0;
3993
Mel Gorman86679822017-11-15 17:37:52 -08003994 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003995 if (wbc->range_cyclic) {
3996 index = mapping->writeback_index; /* Start from prev offset */
3997 end = -1;
3998 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003999 index = wbc->range_start >> PAGE_SHIFT;
4000 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08004001 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
4002 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004003 scanned = 1;
4004 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08004005
4006 /*
4007 * We do the tagged writepage as long as the snapshot flush bit is set
4008 * and we are the first one who do the filemap_flush() on this inode.
4009 *
4010 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
4011 * not race in and drop the bit.
4012 */
4013 if (range_whole && wbc->nr_to_write == LONG_MAX &&
4014 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
4015 &BTRFS_I(inode)->runtime_flags))
4016 wbc->tagged_writepages = 1;
4017
4018 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004019 tag = PAGECACHE_TAG_TOWRITE;
4020 else
4021 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004022retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08004023 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004024 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08004025 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004026 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08004027 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
4028 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05004029 unsigned i;
4030
4031 scanned = 1;
4032 for (i = 0; i < nr_pages; i++) {
4033 struct page *page = pvec.pages[i];
4034
Liu Boa91326672016-03-07 16:56:21 -08004035 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05004036 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07004037 * At this point we hold neither the i_pages lock nor
4038 * the page lock: the page may be truncated or
4039 * invalidated (changing page->mapping to NULL),
4040 * or even swizzled back from swapper_space to
4041 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05004042 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004043 if (!trylock_page(page)) {
Qu Wenruof4340622019-03-20 14:27:41 +08004044 ret = flush_write_bio(epd);
4045 BUG_ON(ret < 0);
Josef Bacikc8f2f242013-02-11 11:33:00 -05004046 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004047 }
Chris Masond1310b22008-01-24 16:13:08 -05004048
4049 if (unlikely(page->mapping != mapping)) {
4050 unlock_page(page);
4051 continue;
4052 }
4053
Chris Masond2c3f4f2008-11-19 12:44:22 -05004054 if (wbc->sync_mode != WB_SYNC_NONE) {
Qu Wenruof4340622019-03-20 14:27:41 +08004055 if (PageWriteback(page)) {
4056 ret = flush_write_bio(epd);
4057 BUG_ON(ret < 0);
4058 }
Chris Masond1310b22008-01-24 16:13:08 -05004059 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004060 }
Chris Masond1310b22008-01-24 16:13:08 -05004061
4062 if (PageWriteback(page) ||
4063 !clear_page_dirty_for_io(page)) {
4064 unlock_page(page);
4065 continue;
4066 }
4067
David Sterbaaab6e9e2017-11-30 18:00:02 +01004068 ret = __extent_writepage(page, wbc, epd);
Liu Boa91326672016-03-07 16:56:21 -08004069 if (ret < 0) {
4070 /*
4071 * done_index is set past this page,
4072 * so media errors will not choke
4073 * background writeout for the entire
4074 * file. This has consequences for
4075 * range_cyclic semantics (ie. it may
4076 * not be suitable for data integrity
4077 * writeout).
4078 */
4079 done_index = page->index + 1;
4080 done = 1;
4081 break;
4082 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004083
4084 /*
4085 * the filesystem may choose to bump up nr_to_write.
4086 * We have to make sure to honor the new nr_to_write
4087 * at any time
4088 */
4089 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004090 }
4091 pagevec_release(&pvec);
4092 cond_resched();
4093 }
Liu Bo894b36e2016-03-07 16:56:22 -08004094 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004095 /*
4096 * We hit the last page and there is more work to be done: wrap
4097 * back to the start of the file
4098 */
4099 scanned = 1;
4100 index = 0;
4101 goto retry;
4102 }
Liu Boa91326672016-03-07 16:56:21 -08004103
4104 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4105 mapping->writeback_index = done_index;
4106
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004107 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004108 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004109}
Chris Masond1310b22008-01-24 16:13:08 -05004110
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004111int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004112{
4113 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004114 struct extent_page_data epd = {
4115 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004116 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004117 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004118 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004119 };
Chris Masond1310b22008-01-24 16:13:08 -05004120
Chris Masond1310b22008-01-24 16:13:08 -05004121 ret = __extent_writepage(page, wbc, &epd);
Qu Wenruo30659762019-03-20 14:27:42 +08004122 ASSERT(ret <= 0);
4123 if (ret < 0) {
4124 end_write_bio(&epd, ret);
4125 return ret;
4126 }
Chris Masond1310b22008-01-24 16:13:08 -05004127
Qu Wenruo30659762019-03-20 14:27:42 +08004128 ret = flush_write_bio(&epd);
4129 ASSERT(ret <= 0);
Chris Masond1310b22008-01-24 16:13:08 -05004130 return ret;
4131}
Chris Masond1310b22008-01-24 16:13:08 -05004132
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004133int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004134 int mode)
4135{
4136 int ret = 0;
4137 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004138 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004139 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004140 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4141 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004142
4143 struct extent_page_data epd = {
4144 .bio = NULL,
4145 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004146 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004147 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004148 };
4149 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004150 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004151 .nr_to_write = nr_pages * 2,
4152 .range_start = start,
4153 .range_end = end + 1,
4154 };
4155
Chris Masond3977122009-01-05 21:25:51 -05004156 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004157 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004158 if (clear_page_dirty_for_io(page))
4159 ret = __extent_writepage(page, &wbc_writepages, &epd);
4160 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004161 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004162 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004163 unlock_page(page);
4164 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004165 put_page(page);
4166 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004167 }
4168
Qu Wenruo02c6db42019-03-20 14:27:45 +08004169 ASSERT(ret <= 0);
4170 if (ret < 0) {
4171 end_write_bio(&epd, ret);
4172 return ret;
4173 }
4174 ret = flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004175 return ret;
4176}
Chris Masond1310b22008-01-24 16:13:08 -05004177
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004178int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004179 struct writeback_control *wbc)
4180{
4181 int ret = 0;
4182 struct extent_page_data epd = {
4183 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004184 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004185 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004186 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004187 };
4188
David Sterba935db852017-06-23 04:30:28 +02004189 ret = extent_write_cache_pages(mapping, wbc, &epd);
Qu Wenruoa2a72fb2019-03-20 14:27:48 +08004190 ASSERT(ret <= 0);
4191 if (ret < 0) {
4192 end_write_bio(&epd, ret);
4193 return ret;
4194 }
4195 ret = flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004196 return ret;
4197}
Chris Masond1310b22008-01-24 16:13:08 -05004198
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004199int extent_readpages(struct address_space *mapping, struct list_head *pages,
4200 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004201{
4202 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004203 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004204 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004205 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004206 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004207 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004208 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004209
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004210 while (!list_empty(pages)) {
Nikolay Borisove65ef212019-03-11 09:55:38 +02004211 u64 contig_end = 0;
4212
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004213 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004214 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004215
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004216 prefetchw(&page->flags);
4217 list_del(&page->lru);
4218 if (add_to_page_cache_lru(page, mapping, page->index,
4219 readahead_gfp_mask(mapping))) {
4220 put_page(page);
Nikolay Borisove65ef212019-03-11 09:55:38 +02004221 break;
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004222 }
4223
4224 pagepool[nr++] = page;
Nikolay Borisove65ef212019-03-11 09:55:38 +02004225 contig_end = page_offset(page) + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004226 }
Liu Bo67c96842012-07-20 21:43:09 -06004227
Nikolay Borisove65ef212019-03-11 09:55:38 +02004228 if (nr) {
4229 u64 contig_start = page_offset(pagepool[0]);
4230
4231 ASSERT(contig_start + nr * PAGE_SIZE - 1 == contig_end);
4232
4233 contiguous_readpages(tree, pagepool, nr, contig_start,
4234 contig_end, &em_cached, &bio, &bio_flags,
4235 &prev_em_start);
4236 }
Chris Masond1310b22008-01-24 16:13:08 -05004237 }
Liu Bo67c96842012-07-20 21:43:09 -06004238
Miao Xie125bac012013-07-25 19:22:37 +08004239 if (em_cached)
4240 free_extent_map(em_cached);
4241
Chris Masond1310b22008-01-24 16:13:08 -05004242 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004243 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004244 return 0;
4245}
Chris Masond1310b22008-01-24 16:13:08 -05004246
4247/*
4248 * basic invalidatepage code, this waits on any locked or writeback
4249 * ranges corresponding to the page, and then deletes any extent state
4250 * records from the tree
4251 */
4252int extent_invalidatepage(struct extent_io_tree *tree,
4253 struct page *page, unsigned long offset)
4254{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004255 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004256 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004257 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004258 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4259
Qu Wenruofda28322013-02-26 08:10:22 +00004260 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004261 if (start > end)
4262 return 0;
4263
David Sterbaff13db42015-12-03 14:30:40 +01004264 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004265 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004266 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004267 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4268 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004269 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004270 return 0;
4271}
Chris Masond1310b22008-01-24 16:13:08 -05004272
4273/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004274 * a helper for releasepage, this tests for areas of the page that
4275 * are locked or under IO and drops the related state bits if it is safe
4276 * to drop the page.
4277 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004278static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004279 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004280{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004281 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004282 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004283 int ret = 1;
4284
Nikolay Borisov88826792019-03-14 15:28:31 +02004285 if (test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL)) {
Chris Mason7b13b7b2008-04-18 10:29:50 -04004286 ret = 0;
Nikolay Borisov88826792019-03-14 15:28:31 +02004287 } else {
Chris Mason11ef1602009-09-23 20:28:46 -04004288 /*
4289 * at this point we can safely clear everything except the
4290 * locked bit and the nodatasum bit
4291 */
David Sterba66b0c882017-10-31 16:30:47 +01004292 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004293 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004294 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004295
4296 /* if clear_extent_bit failed for enomem reasons,
4297 * we can't allow the release to continue.
4298 */
4299 if (ret < 0)
4300 ret = 0;
4301 else
4302 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004303 }
4304 return ret;
4305}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004306
4307/*
Chris Masond1310b22008-01-24 16:13:08 -05004308 * a helper for releasepage. As long as there are no locked extents
4309 * in the range corresponding to the page, both state records and extent
4310 * map records are removed
4311 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004312int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004313{
4314 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004315 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004316 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004317 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4318 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4319 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004320
Mel Gormand0164ad2015-11-06 16:28:21 -08004321 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004322 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004323 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004324 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004325 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004326 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004327 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004328 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004329 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004330 break;
4331 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004332 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4333 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004334 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004335 free_extent_map(em);
4336 break;
4337 }
4338 if (!test_range_bit(tree, em->start,
4339 extent_map_end(em) - 1,
Nikolay Borisov4e586ca2019-03-14 15:28:30 +02004340 EXTENT_LOCKED, 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004341 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4342 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004343 remove_extent_mapping(map, em);
4344 /* once for the rb tree */
4345 free_extent_map(em);
4346 }
4347 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004348 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004349
4350 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004351 free_extent_map(em);
4352 }
Chris Masond1310b22008-01-24 16:13:08 -05004353 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004354 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004355}
Chris Masond1310b22008-01-24 16:13:08 -05004356
Chris Masonec29ed52011-02-23 16:23:20 -05004357/*
4358 * helper function for fiemap, which doesn't want to see any holes.
4359 * This maps until we find something past 'last'
4360 */
4361static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004362 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004363{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004364 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004365 struct extent_map *em;
4366 u64 len;
4367
4368 if (offset >= last)
4369 return NULL;
4370
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304371 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004372 len = last - offset;
4373 if (len == 0)
4374 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004375 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004376 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004377 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004378 return em;
4379
4380 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004381 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004382 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004383
4384 /* this is a hole, advance to the next extent */
4385 offset = extent_map_end(em);
4386 free_extent_map(em);
4387 if (offset >= last)
4388 break;
4389 }
4390 return NULL;
4391}
4392
Qu Wenruo47518322017-04-07 10:43:15 +08004393/*
4394 * To cache previous fiemap extent
4395 *
4396 * Will be used for merging fiemap extent
4397 */
4398struct fiemap_cache {
4399 u64 offset;
4400 u64 phys;
4401 u64 len;
4402 u32 flags;
4403 bool cached;
4404};
4405
4406/*
4407 * Helper to submit fiemap extent.
4408 *
4409 * Will try to merge current fiemap extent specified by @offset, @phys,
4410 * @len and @flags with cached one.
4411 * And only when we fails to merge, cached one will be submitted as
4412 * fiemap extent.
4413 *
4414 * Return value is the same as fiemap_fill_next_extent().
4415 */
4416static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4417 struct fiemap_cache *cache,
4418 u64 offset, u64 phys, u64 len, u32 flags)
4419{
4420 int ret = 0;
4421
4422 if (!cache->cached)
4423 goto assign;
4424
4425 /*
4426 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004427 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004428 * Not recoverable.
4429 *
4430 * NOTE: Physical address can overlap, due to compression
4431 */
4432 if (cache->offset + cache->len > offset) {
4433 WARN_ON(1);
4434 return -EINVAL;
4435 }
4436
4437 /*
4438 * Only merges fiemap extents if
4439 * 1) Their logical addresses are continuous
4440 *
4441 * 2) Their physical addresses are continuous
4442 * So truly compressed (physical size smaller than logical size)
4443 * extents won't get merged with each other
4444 *
4445 * 3) Share same flags except FIEMAP_EXTENT_LAST
4446 * So regular extent won't get merged with prealloc extent
4447 */
4448 if (cache->offset + cache->len == offset &&
4449 cache->phys + cache->len == phys &&
4450 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4451 (flags & ~FIEMAP_EXTENT_LAST)) {
4452 cache->len += len;
4453 cache->flags |= flags;
4454 goto try_submit_last;
4455 }
4456
4457 /* Not mergeable, need to submit cached one */
4458 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4459 cache->len, cache->flags);
4460 cache->cached = false;
4461 if (ret)
4462 return ret;
4463assign:
4464 cache->cached = true;
4465 cache->offset = offset;
4466 cache->phys = phys;
4467 cache->len = len;
4468 cache->flags = flags;
4469try_submit_last:
4470 if (cache->flags & FIEMAP_EXTENT_LAST) {
4471 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4472 cache->phys, cache->len, cache->flags);
4473 cache->cached = false;
4474 }
4475 return ret;
4476}
4477
4478/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004479 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004480 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004481 * The last fiemap cache may still be cached in the following case:
4482 * 0 4k 8k
4483 * |<- Fiemap range ->|
4484 * |<------------ First extent ----------->|
4485 *
4486 * In this case, the first extent range will be cached but not emitted.
4487 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004488 */
David Sterba5c5aff92019-03-20 11:29:46 +01004489static int emit_last_fiemap_cache(struct fiemap_extent_info *fieinfo,
Qu Wenruo848c23b2017-06-22 10:01:21 +08004490 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004491{
4492 int ret;
4493
4494 if (!cache->cached)
4495 return 0;
4496
Qu Wenruo47518322017-04-07 10:43:15 +08004497 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4498 cache->len, cache->flags);
4499 cache->cached = false;
4500 if (ret > 0)
4501 ret = 0;
4502 return ret;
4503}
4504
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004505int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004506 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004507{
Josef Bacik975f84f2010-11-23 19:36:57 +00004508 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004509 u64 off = start;
4510 u64 max = start + len;
4511 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004512 u32 found_type;
4513 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004514 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004515 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004516 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004517 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004518 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004519 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004520 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004521 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004522 struct fiemap_cache cache = { 0 };
David Sterba5911c8f2019-05-15 15:31:04 +02004523 struct ulist *roots;
4524 struct ulist *tmp_ulist;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004525 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004526 u64 em_start = 0;
4527 u64 em_len = 0;
4528 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004529
4530 if (len == 0)
4531 return -EINVAL;
4532
Josef Bacik975f84f2010-11-23 19:36:57 +00004533 path = btrfs_alloc_path();
4534 if (!path)
4535 return -ENOMEM;
4536 path->leave_spinning = 1;
4537
David Sterba5911c8f2019-05-15 15:31:04 +02004538 roots = ulist_alloc(GFP_KERNEL);
4539 tmp_ulist = ulist_alloc(GFP_KERNEL);
4540 if (!roots || !tmp_ulist) {
4541 ret = -ENOMEM;
4542 goto out_free_ulist;
4543 }
4544
Jeff Mahoneyda170662016-06-15 09:22:56 -04004545 start = round_down(start, btrfs_inode_sectorsize(inode));
4546 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004547
Chris Masonec29ed52011-02-23 16:23:20 -05004548 /*
4549 * lookup the last file extent. We're not using i_size here
4550 * because there might be preallocation past i_size
4551 */
David Sterbaf85b7372017-01-20 14:54:07 +01004552 ret = btrfs_lookup_file_extent(NULL, root, path,
4553 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004554 if (ret < 0) {
4555 btrfs_free_path(path);
David Sterba5911c8f2019-05-15 15:31:04 +02004556 goto out_free_ulist;
Liu Bo2d324f52016-05-17 17:21:48 -07004557 } else {
4558 WARN_ON(!ret);
4559 if (ret == 1)
4560 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004561 }
Liu Bo2d324f52016-05-17 17:21:48 -07004562
Josef Bacik975f84f2010-11-23 19:36:57 +00004563 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004564 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004565 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004566
Chris Masonec29ed52011-02-23 16:23:20 -05004567 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004568 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004569 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004570 /* have to trust i_size as the end */
4571 last = (u64)-1;
4572 last_for_get_extent = isize;
4573 } else {
4574 /*
4575 * remember the start of the last extent. There are a
4576 * bunch of different factors that go into the length of the
4577 * extent, so its much less complex to remember where it started
4578 */
4579 last = found_key.offset;
4580 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004581 }
Liu Bofe09e162013-09-22 12:54:23 +08004582 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004583
Chris Masonec29ed52011-02-23 16:23:20 -05004584 /*
4585 * we might have some extents allocated but more delalloc past those
4586 * extents. so, we trust isize unless the start of the last extent is
4587 * beyond isize
4588 */
4589 if (last < isize) {
4590 last = (u64)-1;
4591 last_for_get_extent = isize;
4592 }
4593
David Sterbaff13db42015-12-03 14:30:40 +01004594 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004595 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004596
David Sterbae3350e12017-06-23 04:09:57 +02004597 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004598 if (!em)
4599 goto out;
4600 if (IS_ERR(em)) {
4601 ret = PTR_ERR(em);
4602 goto out;
4603 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004604
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004605 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004606 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004607
Chris Masonea8efc72011-03-08 11:54:40 -05004608 /* break if the extent we found is outside the range */
4609 if (em->start >= max || extent_map_end(em) < off)
4610 break;
4611
4612 /*
4613 * get_extent may return an extent that starts before our
4614 * requested range. We have to make sure the ranges
4615 * we return to fiemap always move forward and don't
4616 * overlap, so adjust the offsets here
4617 */
4618 em_start = max(em->start, off);
4619
4620 /*
4621 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004622 * for adjusting the disk offset below. Only do this if the
4623 * extent isn't compressed since our in ram offset may be past
4624 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004625 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004626 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4627 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004628 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004629 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004630 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004631 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4632 disko = em->block_start + offset_in_extent;
4633 else
4634 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004635
Chris Masonea8efc72011-03-08 11:54:40 -05004636 /*
4637 * bump off for our next call to get_extent
4638 */
4639 off = extent_map_end(em);
4640 if (off >= max)
4641 end = 1;
4642
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004643 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004644 end = 1;
4645 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004646 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004647 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4648 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004649 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004650 flags |= (FIEMAP_EXTENT_DELALLOC |
4651 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004652 } else if (fieinfo->fi_extents_max) {
4653 u64 bytenr = em->block_start -
4654 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004655
Liu Bofe09e162013-09-22 12:54:23 +08004656 /*
4657 * As btrfs supports shared space, this information
4658 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004659 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4660 * then we're just getting a count and we can skip the
4661 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004662 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004663 ret = btrfs_check_shared(root,
4664 btrfs_ino(BTRFS_I(inode)),
David Sterba5911c8f2019-05-15 15:31:04 +02004665 bytenr, roots, tmp_ulist);
Josef Bacikdc046b12014-09-10 16:20:45 -04004666 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004667 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004668 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004669 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004670 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004671 }
4672 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4673 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004674 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4675 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004676
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004677 free_extent_map(em);
4678 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004679 if ((em_start >= last) || em_len == (u64)-1 ||
4680 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004681 flags |= FIEMAP_EXTENT_LAST;
4682 end = 1;
4683 }
4684
Chris Masonec29ed52011-02-23 16:23:20 -05004685 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004686 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004687 if (IS_ERR(em)) {
4688 ret = PTR_ERR(em);
4689 goto out;
4690 }
4691 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004692 flags |= FIEMAP_EXTENT_LAST;
4693 end = 1;
4694 }
Qu Wenruo47518322017-04-07 10:43:15 +08004695 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4696 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004697 if (ret) {
4698 if (ret == 1)
4699 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004700 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004701 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004702 }
4703out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004704 if (!ret)
David Sterba5c5aff92019-03-20 11:29:46 +01004705 ret = emit_last_fiemap_cache(fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004706 free_extent_map(em);
4707out:
Liu Bofe09e162013-09-22 12:54:23 +08004708 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004709 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004710 &cached_state);
David Sterba5911c8f2019-05-15 15:31:04 +02004711
4712out_free_ulist:
4713 ulist_free(roots);
4714 ulist_free(tmp_ulist);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004715 return ret;
4716}
4717
Chris Mason727011e2010-08-06 13:21:20 -04004718static void __free_extent_buffer(struct extent_buffer *eb)
4719{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004720 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004721 kmem_cache_free(extent_buffer_cache, eb);
4722}
4723
Josef Bacika26e8c92014-03-28 17:07:27 -04004724int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004725{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004726 return (atomic_read(&eb->io_pages) ||
4727 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4728 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004729}
4730
Miao Xie897ca6e92010-10-26 20:57:29 -04004731/*
David Sterba55ac0132018-07-19 17:24:32 +02004732 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004733 */
David Sterba55ac0132018-07-19 17:24:32 +02004734static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004735{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004736 int i;
4737 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004738 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004739
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004740 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004741
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004742 num_pages = num_extent_pages(eb);
4743 for (i = 0; i < num_pages; i++) {
4744 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004745
Forrest Liu5d2361d2015-02-09 17:31:45 +08004746 if (!page)
4747 continue;
4748 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004749 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004750 /*
4751 * We do this since we'll remove the pages after we've
4752 * removed the eb from the radix tree, so we could race
4753 * and have this page now attached to the new eb. So
4754 * only clear page_private if it's still connected to
4755 * this eb.
4756 */
4757 if (PagePrivate(page) &&
4758 page->private == (unsigned long)eb) {
4759 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4760 BUG_ON(PageDirty(page));
4761 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004762 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004763 * We need to make sure we haven't be attached
4764 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004765 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004766 ClearPagePrivate(page);
4767 set_page_private(page, 0);
4768 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004769 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004770 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004771
4772 if (mapped)
4773 spin_unlock(&page->mapping->private_lock);
4774
Nicholas D Steeves01327612016-05-19 21:18:45 -04004775 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004776 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004777 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004778}
4779
4780/*
4781 * Helper for releasing the extent buffer.
4782 */
4783static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4784{
David Sterba55ac0132018-07-19 17:24:32 +02004785 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004786 __free_extent_buffer(eb);
4787}
4788
Josef Bacikf28491e2013-12-16 13:24:27 -05004789static struct extent_buffer *
4790__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004791 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004792{
4793 struct extent_buffer *eb = NULL;
4794
Michal Hockod1b5c562015-08-19 14:17:40 +02004795 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004796 eb->start = start;
4797 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004798 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004799 eb->bflags = 0;
4800 rwlock_init(&eb->lock);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004801 atomic_set(&eb->blocking_readers, 0);
4802 atomic_set(&eb->blocking_writers, 0);
David Sterbaed1b4ed2018-08-24 16:31:17 +02004803 eb->lock_nested = false;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004804 init_waitqueue_head(&eb->write_lock_wq);
4805 init_waitqueue_head(&eb->read_lock_wq);
4806
4807 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4808
4809 spin_lock_init(&eb->refs_lock);
4810 atomic_set(&eb->refs, 1);
4811 atomic_set(&eb->io_pages, 0);
4812
4813 /*
4814 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4815 */
4816 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4817 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4818 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4819
David Sterba843ccf92018-08-24 14:56:28 +02004820#ifdef CONFIG_BTRFS_DEBUG
4821 atomic_set(&eb->spinning_writers, 0);
David Sterbaafd495a2018-08-24 15:57:38 +02004822 atomic_set(&eb->spinning_readers, 0);
David Sterba5c9c7992018-08-24 16:15:51 +02004823 atomic_set(&eb->read_locks, 0);
David Sterbac79adfc2018-08-24 16:24:26 +02004824 atomic_set(&eb->write_locks, 0);
David Sterba843ccf92018-08-24 14:56:28 +02004825#endif
4826
Josef Bacikdb7f3432013-08-07 14:54:37 -04004827 return eb;
4828}
4829
4830struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4831{
David Sterbacc5e31a2018-03-01 18:20:27 +01004832 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004833 struct page *p;
4834 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004835 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004836
David Sterba3f556f72014-06-15 03:20:26 +02004837 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004838 if (new == NULL)
4839 return NULL;
4840
4841 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004842 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004843 if (!p) {
4844 btrfs_release_extent_buffer(new);
4845 return NULL;
4846 }
4847 attach_extent_buffer_page(new, p);
4848 WARN_ON(PageDirty(p));
4849 SetPageUptodate(p);
4850 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004851 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004852 }
4853
Josef Bacikdb7f3432013-08-07 14:54:37 -04004854 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004855 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004856
4857 return new;
4858}
4859
Omar Sandoval0f331222015-09-29 20:50:31 -07004860struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4861 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004862{
4863 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004864 int num_pages;
4865 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004866
David Sterba3f556f72014-06-15 03:20:26 +02004867 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004868 if (!eb)
4869 return NULL;
4870
David Sterba65ad0102018-06-29 10:56:49 +02004871 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004872 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004873 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004874 if (!eb->pages[i])
4875 goto err;
4876 }
4877 set_extent_buffer_uptodate(eb);
4878 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004879 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004880
4881 return eb;
4882err:
4883 for (; i > 0; i--)
4884 __free_page(eb->pages[i - 1]);
4885 __free_extent_buffer(eb);
4886 return NULL;
4887}
4888
Omar Sandoval0f331222015-09-29 20:50:31 -07004889struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004890 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004891{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004892 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004893}
4894
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004895static void check_buffer_tree_ref(struct extent_buffer *eb)
4896{
Chris Mason242e18c2013-01-29 17:49:37 -05004897 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004898 /* the ref bit is tricky. We have to make sure it is set
4899 * if we have the buffer dirty. Otherwise the
4900 * code to free a buffer can end up dropping a dirty
4901 * page
4902 *
4903 * Once the ref bit is set, it won't go away while the
4904 * buffer is dirty or in writeback, and it also won't
4905 * go away while we have the reference count on the
4906 * eb bumped.
4907 *
4908 * We can't just set the ref bit without bumping the
4909 * ref on the eb because free_extent_buffer might
4910 * see the ref bit and try to clear it. If this happens
4911 * free_extent_buffer might end up dropping our original
4912 * ref by mistake and freeing the page before we are able
4913 * to add one more ref.
4914 *
4915 * So bump the ref count first, then set the bit. If someone
4916 * beat us to it, drop the ref we added.
4917 */
Chris Mason242e18c2013-01-29 17:49:37 -05004918 refs = atomic_read(&eb->refs);
4919 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4920 return;
4921
Josef Bacik594831c2012-07-20 16:11:08 -04004922 spin_lock(&eb->refs_lock);
4923 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004924 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004925 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004926}
4927
Mel Gorman2457aec2014-06-04 16:10:31 -07004928static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4929 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004930{
David Sterbacc5e31a2018-03-01 18:20:27 +01004931 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004932
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004933 check_buffer_tree_ref(eb);
4934
David Sterba65ad0102018-06-29 10:56:49 +02004935 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004936 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004937 struct page *p = eb->pages[i];
4938
Mel Gorman2457aec2014-06-04 16:10:31 -07004939 if (p != accessed)
4940 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004941 }
4942}
4943
Josef Bacikf28491e2013-12-16 13:24:27 -05004944struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4945 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004946{
4947 struct extent_buffer *eb;
4948
4949 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004950 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004951 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004952 if (eb && atomic_inc_not_zero(&eb->refs)) {
4953 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004954 /*
4955 * Lock our eb's refs_lock to avoid races with
4956 * free_extent_buffer. When we get our eb it might be flagged
4957 * with EXTENT_BUFFER_STALE and another task running
4958 * free_extent_buffer might have seen that flag set,
4959 * eb->refs == 2, that the buffer isn't under IO (dirty and
4960 * writeback flags not set) and it's still in the tree (flag
4961 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4962 * of decrementing the extent buffer's reference count twice.
4963 * So here we could race and increment the eb's reference count,
4964 * clear its stale flag, mark it as dirty and drop our reference
4965 * before the other task finishes executing free_extent_buffer,
4966 * which would later result in an attempt to free an extent
4967 * buffer that is dirty.
4968 */
4969 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4970 spin_lock(&eb->refs_lock);
4971 spin_unlock(&eb->refs_lock);
4972 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004973 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004974 return eb;
4975 }
4976 rcu_read_unlock();
4977
4978 return NULL;
4979}
4980
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004981#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4982struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004983 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004984{
4985 struct extent_buffer *eb, *exists = NULL;
4986 int ret;
4987
4988 eb = find_extent_buffer(fs_info, start);
4989 if (eb)
4990 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004991 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004992 if (!eb)
4993 return NULL;
4994 eb->fs_info = fs_info;
4995again:
David Sterbae1860a72016-05-09 14:11:38 +02004996 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004997 if (ret)
4998 goto free_eb;
4999 spin_lock(&fs_info->buffer_lock);
5000 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005001 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005002 spin_unlock(&fs_info->buffer_lock);
5003 radix_tree_preload_end();
5004 if (ret == -EEXIST) {
5005 exists = find_extent_buffer(fs_info, start);
5006 if (exists)
5007 goto free_eb;
5008 else
5009 goto again;
5010 }
5011 check_buffer_tree_ref(eb);
5012 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
5013
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005014 return eb;
5015free_eb:
5016 btrfs_release_extent_buffer(eb);
5017 return exists;
5018}
5019#endif
5020
Josef Bacikf28491e2013-12-16 13:24:27 -05005021struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02005022 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05005023{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005024 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01005025 int num_pages;
5026 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005027 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005028 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005029 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05005030 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05005031 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05005032 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005033 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05005034
Jeff Mahoneyda170662016-06-15 09:22:56 -04005035 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07005036 btrfs_err(fs_info, "bad tree block start %llu", start);
5037 return ERR_PTR(-EINVAL);
5038 }
5039
Josef Bacikf28491e2013-12-16 13:24:27 -05005040 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005041 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04005042 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005043
David Sterba23d79d82014-06-15 02:55:29 +02005044 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04005045 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07005046 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05005047
David Sterba65ad0102018-06-29 10:56:49 +02005048 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04005049 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02005050 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07005051 if (!p) {
5052 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04005053 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005054 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005055
5056 spin_lock(&mapping->private_lock);
5057 if (PagePrivate(p)) {
5058 /*
5059 * We could have already allocated an eb for this page
5060 * and attached one so lets see if we can get a ref on
5061 * the existing eb, and if we can we know it's good and
5062 * we can just return that one, else we know we can just
5063 * overwrite page->private.
5064 */
5065 exists = (struct extent_buffer *)p->private;
5066 if (atomic_inc_not_zero(&exists->refs)) {
5067 spin_unlock(&mapping->private_lock);
5068 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005069 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005070 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005071 goto free_eb;
5072 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005073 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005074
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005075 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005076 * Do this so attach doesn't complain and we need to
5077 * drop the ref the old guy had.
5078 */
5079 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005080 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005081 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005082 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005083 attach_extent_buffer_page(eb, p);
5084 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005085 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005086 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005087 if (!PageUptodate(p))
5088 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005089
5090 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005091 * We can't unlock the pages just yet since the extent buffer
5092 * hasn't been properly inserted in the radix tree, this
5093 * opens a race with btree_releasepage which can free a page
5094 * while we are still filling in all pages for the buffer and
5095 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05005096 */
Chris Masond1310b22008-01-24 16:13:08 -05005097 }
5098 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005099 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005100again:
David Sterbae1860a72016-05-09 14:11:38 +02005101 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005102 if (ret) {
5103 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005104 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005105 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005106
Josef Bacikf28491e2013-12-16 13:24:27 -05005107 spin_lock(&fs_info->buffer_lock);
5108 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005109 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005110 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005111 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005112 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005113 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005114 if (exists)
5115 goto free_eb;
5116 else
Josef Bacik115391d2012-03-09 09:51:43 -05005117 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005118 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005119 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005120 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005121 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005122
5123 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005124 * Now it's safe to unlock the pages because any calls to
5125 * btree_releasepage will correctly detect that a page belongs to a
5126 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005127 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005128 for (i = 0; i < num_pages; i++)
5129 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005130 return eb;
5131
Chris Mason6af118ce2008-07-22 11:18:07 -04005132free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005133 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005134 for (i = 0; i < num_pages; i++) {
5135 if (eb->pages[i])
5136 unlock_page(eb->pages[i]);
5137 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005138
Miao Xie897ca6e92010-10-26 20:57:29 -04005139 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005140 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005141}
Chris Masond1310b22008-01-24 16:13:08 -05005142
Josef Bacik3083ee22012-03-09 16:01:49 -05005143static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5144{
5145 struct extent_buffer *eb =
5146 container_of(head, struct extent_buffer, rcu_head);
5147
5148 __free_extent_buffer(eb);
5149}
5150
David Sterbaf7a52a42013-04-26 14:56:29 +00005151static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005152{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005153 lockdep_assert_held(&eb->refs_lock);
5154
Josef Bacik3083ee22012-03-09 16:01:49 -05005155 WARN_ON(atomic_read(&eb->refs) == 0);
5156 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005157 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005158 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005159
Jan Schmidt815a51c2012-05-16 17:00:02 +02005160 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005161
Josef Bacikf28491e2013-12-16 13:24:27 -05005162 spin_lock(&fs_info->buffer_lock);
5163 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005164 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005165 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005166 } else {
5167 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005168 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005169
5170 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005171 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005172#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005173 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005174 __free_extent_buffer(eb);
5175 return 1;
5176 }
5177#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005178 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005179 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005180 }
5181 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005182
5183 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005184}
5185
Chris Masond1310b22008-01-24 16:13:08 -05005186void free_extent_buffer(struct extent_buffer *eb)
5187{
Chris Mason242e18c2013-01-29 17:49:37 -05005188 int refs;
5189 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005190 if (!eb)
5191 return;
5192
Chris Mason242e18c2013-01-29 17:49:37 -05005193 while (1) {
5194 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005195 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5196 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5197 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005198 break;
5199 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5200 if (old == refs)
5201 return;
5202 }
5203
Josef Bacik3083ee22012-03-09 16:01:49 -05005204 spin_lock(&eb->refs_lock);
5205 if (atomic_read(&eb->refs) == 2 &&
5206 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005207 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005208 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5209 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005210
Josef Bacik3083ee22012-03-09 16:01:49 -05005211 /*
5212 * I know this is terrible, but it's temporary until we stop tracking
5213 * the uptodate bits and such for the extent buffers.
5214 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005215 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005216}
Chris Masond1310b22008-01-24 16:13:08 -05005217
Josef Bacik3083ee22012-03-09 16:01:49 -05005218void free_extent_buffer_stale(struct extent_buffer *eb)
5219{
5220 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005221 return;
5222
Josef Bacik3083ee22012-03-09 16:01:49 -05005223 spin_lock(&eb->refs_lock);
5224 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5225
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005226 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005227 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5228 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005229 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005230}
5231
Chris Mason1d4284b2012-03-28 20:31:37 -04005232void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005233{
David Sterbacc5e31a2018-03-01 18:20:27 +01005234 int i;
5235 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005236 struct page *page;
5237
David Sterba65ad0102018-06-29 10:56:49 +02005238 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005239
5240 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005241 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005242 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005243 continue;
5244
Chris Masona61e6f22008-07-22 11:18:08 -04005245 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005246 WARN_ON(!PagePrivate(page));
5247
Chris Masond1310b22008-01-24 16:13:08 -05005248 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005249 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005250 if (!PageDirty(page))
5251 __xa_clear_mark(&page->mapping->i_pages,
5252 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005253 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005254 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005255 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005256 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005257 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005258}
Chris Masond1310b22008-01-24 16:13:08 -05005259
Liu Boabb57ef2018-09-14 01:44:42 +08005260bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005261{
David Sterbacc5e31a2018-03-01 18:20:27 +01005262 int i;
5263 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005264 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005265
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005266 check_buffer_tree_ref(eb);
5267
Chris Masonb9473432009-03-13 11:00:37 -04005268 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005269
David Sterba65ad0102018-06-29 10:56:49 +02005270 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005271 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005272 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5273
Liu Boabb57ef2018-09-14 01:44:42 +08005274 if (!was_dirty)
5275 for (i = 0; i < num_pages; i++)
5276 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005277
5278#ifdef CONFIG_BTRFS_DEBUG
5279 for (i = 0; i < num_pages; i++)
5280 ASSERT(PageDirty(eb->pages[i]));
5281#endif
5282
Chris Masonb9473432009-03-13 11:00:37 -04005283 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005284}
Chris Masond1310b22008-01-24 16:13:08 -05005285
David Sterba69ba3922015-12-03 13:08:59 +01005286void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005287{
David Sterbacc5e31a2018-03-01 18:20:27 +01005288 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005289 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005290 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005291
Chris Masonb4ce94d2009-02-04 09:25:08 -05005292 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005293 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005294 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005295 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005296 if (page)
5297 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005298 }
Chris Mason1259ab72008-05-12 13:39:03 -04005299}
5300
David Sterba09c25a82015-12-03 13:08:59 +01005301void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005302{
David Sterbacc5e31a2018-03-01 18:20:27 +01005303 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005304 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005305 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005306
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005307 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005308 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005309 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005310 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005311 SetPageUptodate(page);
5312 }
Chris Masond1310b22008-01-24 16:13:08 -05005313}
Chris Masond1310b22008-01-24 16:13:08 -05005314
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005315int read_extent_buffer_pages(struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005316{
David Sterbacc5e31a2018-03-01 18:20:27 +01005317 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005318 struct page *page;
5319 int err;
5320 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005321 int locked_pages = 0;
5322 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005323 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005324 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005325 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005326 unsigned long bio_flags = 0;
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005327 struct extent_io_tree *tree = &BTRFS_I(eb->fs_info->btree_inode)->io_tree;
Chris Masona86c12c2008-02-07 10:50:54 -05005328
Chris Masonb4ce94d2009-02-04 09:25:08 -05005329 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005330 return 0;
5331
David Sterba65ad0102018-06-29 10:56:49 +02005332 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005333 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005334 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005335 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005336 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005337 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005338 } else {
5339 lock_page(page);
5340 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005341 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005342 }
5343 /*
5344 * We need to firstly lock all pages to make sure that
5345 * the uptodate bit of our pages won't be affected by
5346 * clear_extent_buffer_uptodate().
5347 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005348 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005349 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005350 if (!PageUptodate(page)) {
5351 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005352 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005353 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005354 }
Liu Bo2571e732016-08-03 12:33:01 -07005355
Chris Masonce9adaa2008-04-09 16:28:12 -04005356 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005357 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005358 goto unlock_exit;
5359 }
5360
Filipe Manana656f30d2014-09-26 12:25:56 +01005361 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005362 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005363 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005364 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005365 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005366
Chris Masonce9adaa2008-04-09 16:28:12 -04005367 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005368 if (ret) {
5369 atomic_dec(&eb->io_pages);
5370 unlock_page(page);
5371 continue;
5372 }
5373
Chris Masonf1885912008-04-09 16:28:12 -04005374 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005375 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005376 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005377 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005378 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005379 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005380 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005381 /*
5382 * We use &bio in above __extent_read_full_page,
5383 * so we ensure that if it returns error, the
5384 * current page fails to add itself to bio and
5385 * it's been unlocked.
5386 *
5387 * We must dec io_pages by ourselves.
5388 */
5389 atomic_dec(&eb->io_pages);
5390 }
Chris Masond1310b22008-01-24 16:13:08 -05005391 } else {
5392 unlock_page(page);
5393 }
5394 }
5395
Jeff Mahoney355808c2011-10-03 23:23:14 -04005396 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005397 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005398 if (err)
5399 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005400 }
Chris Masona86c12c2008-02-07 10:50:54 -05005401
Arne Jansenbb82ab82011-06-10 14:06:53 +02005402 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005403 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005404
Josef Bacik8436ea912016-09-02 15:40:03 -04005405 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005406 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005407 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005408 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005409 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005410 }
Chris Masond3977122009-01-05 21:25:51 -05005411
Chris Masond1310b22008-01-24 16:13:08 -05005412 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005413
5414unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005415 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005416 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005417 page = eb->pages[locked_pages];
5418 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005419 }
5420 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005421}
Chris Masond1310b22008-01-24 16:13:08 -05005422
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005423void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5424 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005425{
5426 size_t cur;
5427 size_t offset;
5428 struct page *page;
5429 char *kaddr;
5430 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005431 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005432 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005433
Liu Bof716abd2017-08-09 11:10:16 -06005434 if (start + len > eb->len) {
5435 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5436 eb->start, eb->len, start, len);
5437 memset(dst, 0, len);
5438 return;
5439 }
Chris Masond1310b22008-01-24 16:13:08 -05005440
Johannes Thumshirn70730172018-12-05 15:23:03 +01005441 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005442
Chris Masond3977122009-01-05 21:25:51 -05005443 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005444 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005445
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005446 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005447 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005448 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005449
5450 dst += cur;
5451 len -= cur;
5452 offset = 0;
5453 i++;
5454 }
5455}
Chris Masond1310b22008-01-24 16:13:08 -05005456
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005457int read_extent_buffer_to_user(const struct extent_buffer *eb,
5458 void __user *dstv,
5459 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005460{
5461 size_t cur;
5462 size_t offset;
5463 struct page *page;
5464 char *kaddr;
5465 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005466 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005467 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005468 int ret = 0;
5469
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);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005474
5475 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005476 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005477
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005478 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005479 kaddr = page_address(page);
5480 if (copy_to_user(dst, kaddr + offset, cur)) {
5481 ret = -EFAULT;
5482 break;
5483 }
5484
5485 dst += cur;
5486 len -= cur;
5487 offset = 0;
5488 i++;
5489 }
5490
5491 return ret;
5492}
5493
Liu Bo415b35a2016-06-17 19:16:21 -07005494/*
5495 * return 0 if the item is found within a page.
5496 * return 1 if the item spans two pages.
5497 * return -EINVAL otherwise.
5498 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005499int map_private_extent_buffer(const struct extent_buffer *eb,
5500 unsigned long start, unsigned long min_len,
5501 char **map, unsigned long *map_start,
5502 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005503{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005504 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005505 char *kaddr;
5506 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005507 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005508 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005509 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005510 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005511
Liu Bof716abd2017-08-09 11:10:16 -06005512 if (start + min_len > eb->len) {
5513 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5514 eb->start, eb->len, start, min_len);
5515 return -EINVAL;
5516 }
5517
Chris Masond1310b22008-01-24 16:13:08 -05005518 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005519 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005520
5521 if (i == 0) {
5522 offset = start_offset;
5523 *map_start = 0;
5524 } else {
5525 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005526 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005527 }
Chris Masond3977122009-01-05 21:25:51 -05005528
David Sterbafb85fc92014-07-31 01:03:53 +02005529 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005530 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005531 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005532 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005533 return 0;
5534}
Chris Masond1310b22008-01-24 16:13:08 -05005535
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005536int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5537 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005538{
5539 size_t cur;
5540 size_t offset;
5541 struct page *page;
5542 char *kaddr;
5543 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005544 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005545 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005546 int ret = 0;
5547
5548 WARN_ON(start > eb->len);
5549 WARN_ON(start + len > eb->start + eb->len);
5550
Johannes Thumshirn70730172018-12-05 15:23:03 +01005551 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005552
Chris Masond3977122009-01-05 21:25:51 -05005553 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005554 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005555
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005556 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005557
Chris Masona6591712011-07-19 12:04:14 -04005558 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005559 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005560 if (ret)
5561 break;
5562
5563 ptr += cur;
5564 len -= cur;
5565 offset = 0;
5566 i++;
5567 }
5568 return ret;
5569}
Chris Masond1310b22008-01-24 16:13:08 -05005570
David Sterbaf157bf72016-11-09 17:43:38 +01005571void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5572 const void *srcv)
5573{
5574 char *kaddr;
5575
5576 WARN_ON(!PageUptodate(eb->pages[0]));
5577 kaddr = page_address(eb->pages[0]);
5578 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5579 BTRFS_FSID_SIZE);
5580}
5581
5582void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5583{
5584 char *kaddr;
5585
5586 WARN_ON(!PageUptodate(eb->pages[0]));
5587 kaddr = page_address(eb->pages[0]);
5588 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5589 BTRFS_FSID_SIZE);
5590}
5591
Chris Masond1310b22008-01-24 16:13:08 -05005592void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5593 unsigned long start, unsigned long len)
5594{
5595 size_t cur;
5596 size_t offset;
5597 struct page *page;
5598 char *kaddr;
5599 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005600 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005601 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005602
5603 WARN_ON(start > eb->len);
5604 WARN_ON(start + len > eb->start + eb->len);
5605
Johannes Thumshirn70730172018-12-05 15:23:03 +01005606 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005607
Chris Masond3977122009-01-05 21:25:51 -05005608 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005609 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005610 WARN_ON(!PageUptodate(page));
5611
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005612 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005613 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005614 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005615
5616 src += cur;
5617 len -= cur;
5618 offset = 0;
5619 i++;
5620 }
5621}
Chris Masond1310b22008-01-24 16:13:08 -05005622
David Sterbab159fa22016-11-08 18:09:03 +01005623void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5624 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005625{
5626 size_t cur;
5627 size_t offset;
5628 struct page *page;
5629 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005630 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005631 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005632
5633 WARN_ON(start > eb->len);
5634 WARN_ON(start + len > eb->start + eb->len);
5635
Johannes Thumshirn70730172018-12-05 15:23:03 +01005636 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005637
Chris Masond3977122009-01-05 21:25:51 -05005638 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005639 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005640 WARN_ON(!PageUptodate(page));
5641
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005642 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005643 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005644 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005645
5646 len -= cur;
5647 offset = 0;
5648 i++;
5649 }
5650}
Chris Masond1310b22008-01-24 16:13:08 -05005651
David Sterba58e80122016-11-08 18:30:31 +01005652void copy_extent_buffer_full(struct extent_buffer *dst,
5653 struct extent_buffer *src)
5654{
5655 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005656 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005657
5658 ASSERT(dst->len == src->len);
5659
David Sterba65ad0102018-06-29 10:56:49 +02005660 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005661 for (i = 0; i < num_pages; i++)
5662 copy_page(page_address(dst->pages[i]),
5663 page_address(src->pages[i]));
5664}
5665
Chris Masond1310b22008-01-24 16:13:08 -05005666void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5667 unsigned long dst_offset, unsigned long src_offset,
5668 unsigned long len)
5669{
5670 u64 dst_len = dst->len;
5671 size_t cur;
5672 size_t offset;
5673 struct page *page;
5674 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005675 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005676 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005677
5678 WARN_ON(src->len != dst_len);
5679
Johannes Thumshirn70730172018-12-05 15:23:03 +01005680 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005681
Chris Masond3977122009-01-05 21:25:51 -05005682 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005683 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005684 WARN_ON(!PageUptodate(page));
5685
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005686 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005687
Chris Masona6591712011-07-19 12:04:14 -04005688 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005689 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005690
5691 src_offset += cur;
5692 len -= cur;
5693 offset = 0;
5694 i++;
5695 }
5696}
Chris Masond1310b22008-01-24 16:13:08 -05005697
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005698/*
5699 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5700 * given bit number
5701 * @eb: the extent buffer
5702 * @start: offset of the bitmap item in the extent buffer
5703 * @nr: bit number
5704 * @page_index: return index of the page in the extent buffer that contains the
5705 * given bit number
5706 * @page_offset: return offset into the page given by page_index
5707 *
5708 * This helper hides the ugliness of finding the byte in an extent buffer which
5709 * contains a given bit.
5710 */
5711static inline void eb_bitmap_offset(struct extent_buffer *eb,
5712 unsigned long start, unsigned long nr,
5713 unsigned long *page_index,
5714 size_t *page_offset)
5715{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005716 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005717 size_t byte_offset = BIT_BYTE(nr);
5718 size_t offset;
5719
5720 /*
5721 * The byte we want is the offset of the extent buffer + the offset of
5722 * the bitmap item in the extent buffer + the offset of the byte in the
5723 * bitmap item.
5724 */
5725 offset = start_offset + start + byte_offset;
5726
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005727 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005728 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005729}
5730
5731/**
5732 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5733 * @eb: the extent buffer
5734 * @start: offset of the bitmap item in the extent buffer
5735 * @nr: bit number to test
5736 */
5737int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5738 unsigned long nr)
5739{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005740 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005741 struct page *page;
5742 unsigned long i;
5743 size_t offset;
5744
5745 eb_bitmap_offset(eb, start, nr, &i, &offset);
5746 page = eb->pages[i];
5747 WARN_ON(!PageUptodate(page));
5748 kaddr = page_address(page);
5749 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5750}
5751
5752/**
5753 * extent_buffer_bitmap_set - set an area of a bitmap
5754 * @eb: the extent buffer
5755 * @start: offset of the bitmap item in the extent buffer
5756 * @pos: bit number of the first bit
5757 * @len: number of bits to set
5758 */
5759void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5760 unsigned long pos, unsigned long len)
5761{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005762 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005763 struct page *page;
5764 unsigned long i;
5765 size_t offset;
5766 const unsigned int size = pos + len;
5767 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005768 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005769
5770 eb_bitmap_offset(eb, start, pos, &i, &offset);
5771 page = eb->pages[i];
5772 WARN_ON(!PageUptodate(page));
5773 kaddr = page_address(page);
5774
5775 while (len >= bits_to_set) {
5776 kaddr[offset] |= mask_to_set;
5777 len -= bits_to_set;
5778 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005779 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005780 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005781 offset = 0;
5782 page = eb->pages[++i];
5783 WARN_ON(!PageUptodate(page));
5784 kaddr = page_address(page);
5785 }
5786 }
5787 if (len) {
5788 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5789 kaddr[offset] |= mask_to_set;
5790 }
5791}
5792
5793
5794/**
5795 * extent_buffer_bitmap_clear - clear an area of a bitmap
5796 * @eb: the extent buffer
5797 * @start: offset of the bitmap item in the extent buffer
5798 * @pos: bit number of the first bit
5799 * @len: number of bits to clear
5800 */
5801void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5802 unsigned long pos, unsigned long len)
5803{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005804 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005805 struct page *page;
5806 unsigned long i;
5807 size_t offset;
5808 const unsigned int size = pos + len;
5809 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005810 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005811
5812 eb_bitmap_offset(eb, start, pos, &i, &offset);
5813 page = eb->pages[i];
5814 WARN_ON(!PageUptodate(page));
5815 kaddr = page_address(page);
5816
5817 while (len >= bits_to_clear) {
5818 kaddr[offset] &= ~mask_to_clear;
5819 len -= bits_to_clear;
5820 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005821 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005822 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005823 offset = 0;
5824 page = eb->pages[++i];
5825 WARN_ON(!PageUptodate(page));
5826 kaddr = page_address(page);
5827 }
5828 }
5829 if (len) {
5830 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5831 kaddr[offset] &= ~mask_to_clear;
5832 }
5833}
5834
Sergei Trofimovich33872062011-04-11 21:52:52 +00005835static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5836{
5837 unsigned long distance = (src > dst) ? src - dst : dst - src;
5838 return distance < len;
5839}
5840
Chris Masond1310b22008-01-24 16:13:08 -05005841static void copy_pages(struct page *dst_page, struct page *src_page,
5842 unsigned long dst_off, unsigned long src_off,
5843 unsigned long len)
5844{
Chris Masona6591712011-07-19 12:04:14 -04005845 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005846 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005847 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005848
Sergei Trofimovich33872062011-04-11 21:52:52 +00005849 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005850 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005851 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005852 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005853 if (areas_overlap(src_off, dst_off, len))
5854 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005855 }
Chris Masond1310b22008-01-24 16:13:08 -05005856
Chris Mason727011e2010-08-06 13:21:20 -04005857 if (must_memmove)
5858 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5859 else
5860 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005861}
5862
5863void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5864 unsigned long src_offset, unsigned long len)
5865{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005866 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005867 size_t cur;
5868 size_t dst_off_in_page;
5869 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005870 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005871 unsigned long dst_i;
5872 unsigned long src_i;
5873
5874 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005875 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005876 "memmove bogus src_offset %lu move len %lu dst len %lu",
5877 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005878 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005879 }
5880 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005881 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005882 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5883 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005884 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005885 }
5886
Chris Masond3977122009-01-05 21:25:51 -05005887 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01005888 dst_off_in_page = offset_in_page(start_offset + dst_offset);
5889 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005890
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005891 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5892 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005893
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005894 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005895 src_off_in_page));
5896 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005897 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005898
David Sterbafb85fc92014-07-31 01:03:53 +02005899 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005900 dst_off_in_page, src_off_in_page, cur);
5901
5902 src_offset += cur;
5903 dst_offset += cur;
5904 len -= cur;
5905 }
5906}
Chris Masond1310b22008-01-24 16:13:08 -05005907
5908void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5909 unsigned long src_offset, unsigned long len)
5910{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005911 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005912 size_t cur;
5913 size_t dst_off_in_page;
5914 size_t src_off_in_page;
5915 unsigned long dst_end = dst_offset + len - 1;
5916 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005917 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005918 unsigned long dst_i;
5919 unsigned long src_i;
5920
5921 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005922 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005923 "memmove bogus src_offset %lu move len %lu len %lu",
5924 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005925 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005926 }
5927 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005928 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005929 "memmove bogus dst_offset %lu move len %lu len %lu",
5930 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005931 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005932 }
Chris Mason727011e2010-08-06 13:21:20 -04005933 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005934 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5935 return;
5936 }
Chris Masond3977122009-01-05 21:25:51 -05005937 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005938 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5939 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005940
Johannes Thumshirn70730172018-12-05 15:23:03 +01005941 dst_off_in_page = offset_in_page(start_offset + dst_end);
5942 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05005943
5944 cur = min_t(unsigned long, len, src_off_in_page + 1);
5945 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005946 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005947 dst_off_in_page - cur + 1,
5948 src_off_in_page - cur + 1, cur);
5949
5950 dst_end -= cur;
5951 src_end -= cur;
5952 len -= cur;
5953 }
5954}
Chris Mason6af118ce2008-07-22 11:18:07 -04005955
David Sterbaf7a52a42013-04-26 14:56:29 +00005956int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005957{
Chris Mason6af118ce2008-07-22 11:18:07 -04005958 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005959
Miao Xie19fe0a82010-10-26 20:57:29 -04005960 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005961 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005962 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005963 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005964 spin_lock(&page->mapping->private_lock);
5965 if (!PagePrivate(page)) {
5966 spin_unlock(&page->mapping->private_lock);
5967 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005968 }
5969
Josef Bacik3083ee22012-03-09 16:01:49 -05005970 eb = (struct extent_buffer *)page->private;
5971 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005972
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005973 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005974 * This is a little awful but should be ok, we need to make sure that
5975 * the eb doesn't disappear out from under us while we're looking at
5976 * this page.
5977 */
5978 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005979 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005980 spin_unlock(&eb->refs_lock);
5981 spin_unlock(&page->mapping->private_lock);
5982 return 0;
5983 }
5984 spin_unlock(&page->mapping->private_lock);
5985
Josef Bacik3083ee22012-03-09 16:01:49 -05005986 /*
5987 * If tree ref isn't set then we know the ref on this eb is a real ref,
5988 * so just return, this page will likely be freed soon anyway.
5989 */
5990 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5991 spin_unlock(&eb->refs_lock);
5992 return 0;
5993 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005994
David Sterbaf7a52a42013-04-26 14:56:29 +00005995 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005996}