blob: 105b3d2e86f22f3bd4474c796bfc07d9459ca473 [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/**
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001540 * find_first_clear_extent_bit - find the first range that has @bits not set.
1541 * This range could start before @start.
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001542 *
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 }
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001581 /*
1582 * At this point 'node' either contains 'start' or start is
1583 * before 'node'
1584 */
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001585 state = rb_entry(node, struct extent_state, rb_node);
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001586
1587 if (in_range(start, state->start, state->end - state->start + 1)) {
1588 if (state->state & bits) {
1589 /*
1590 * |--range with bits sets--|
1591 * |
1592 * start
1593 */
1594 start = state->end + 1;
1595 } else {
1596 /*
1597 * 'start' falls within a range that doesn't
1598 * have the bits set, so take its start as
1599 * the beginning of the desired range
1600 *
1601 * |--range with bits cleared----|
1602 * |
1603 * start
1604 */
1605 *start_ret = state->start;
1606 break;
1607 }
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001608 } else {
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001609 /*
1610 * |---prev range---|---hole/unset---|---node range---|
1611 * |
1612 * start
1613 *
1614 * or
1615 *
1616 * |---hole/unset--||--first node--|
1617 * 0 |
1618 * start
1619 */
1620 if (prev) {
1621 state = rb_entry(prev, struct extent_state,
1622 rb_node);
1623 *start_ret = state->end + 1;
1624 } else {
1625 *start_ret = 0;
1626 }
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001627 break;
1628 }
1629 }
1630
1631 /*
1632 * Find the longest stretch from start until an entry which has the
1633 * bits set
1634 */
1635 while (1) {
1636 state = rb_entry(node, struct extent_state, rb_node);
1637 if (state->end >= start && !(state->state & bits)) {
1638 *end_ret = state->end;
1639 } else {
1640 *end_ret = state->start - 1;
1641 break;
1642 }
1643
1644 node = rb_next(node);
1645 if (!node)
1646 break;
1647 }
1648out:
1649 spin_unlock(&tree->lock);
1650}
1651
Xiao Guangrong69261c42011-07-14 03:19:45 +00001652/*
Chris Masond352ac62008-09-29 15:18:18 -04001653 * find a contiguous range of bytes in the file marked as delalloc, not
1654 * more than 'max_bytes'. start and end are used to return the range,
1655 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001656 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001657 */
Lu Fengqi3522e902018-11-29 11:33:38 +08001658static noinline bool find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001659 u64 *start, u64 *end, u64 max_bytes,
1660 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001661{
1662 struct rb_node *node;
1663 struct extent_state *state;
1664 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001665 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001666 u64 total_bytes = 0;
1667
Chris Masoncad321a2008-12-17 14:51:42 -05001668 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001669
Chris Masond1310b22008-01-24 16:13:08 -05001670 /*
1671 * this search will find all the extents that end after
1672 * our range starts.
1673 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001674 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001675 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001676 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001677 goto out;
1678 }
1679
Chris Masond3977122009-01-05 21:25:51 -05001680 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001681 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001682 if (found && (state->start != cur_start ||
1683 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001684 goto out;
1685 }
1686 if (!(state->state & EXTENT_DELALLOC)) {
1687 if (!found)
1688 *end = state->end;
1689 goto out;
1690 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001691 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001692 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001693 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001694 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001695 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001696 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001697 *end = state->end;
1698 cur_start = state->end + 1;
1699 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001700 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001701 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001702 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001703 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001704 break;
1705 }
1706out:
Chris Masoncad321a2008-12-17 14:51:42 -05001707 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001708 return found;
1709}
1710
Liu Boda2c7002017-02-10 16:41:05 +01001711static int __process_pages_contig(struct address_space *mapping,
1712 struct page *locked_page,
1713 pgoff_t start_index, pgoff_t end_index,
1714 unsigned long page_ops, pgoff_t *index_ret);
1715
Jeff Mahoney143bede2012-03-01 14:56:26 +01001716static noinline void __unlock_for_delalloc(struct inode *inode,
1717 struct page *locked_page,
1718 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001719{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001720 unsigned long index = start >> PAGE_SHIFT;
1721 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001722
Liu Bo76c00212017-02-10 16:42:14 +01001723 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001724 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001725 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001726
Liu Bo76c00212017-02-10 16:42:14 +01001727 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1728 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001729}
1730
1731static noinline int lock_delalloc_pages(struct inode *inode,
1732 struct page *locked_page,
1733 u64 delalloc_start,
1734 u64 delalloc_end)
1735{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001736 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001737 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001738 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001739 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001740
Liu Bo76c00212017-02-10 16:42:14 +01001741 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001742 if (index == locked_page->index && index == end_index)
1743 return 0;
1744
Liu Bo76c00212017-02-10 16:42:14 +01001745 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1746 end_index, PAGE_LOCK, &index_ret);
1747 if (ret == -EAGAIN)
1748 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1749 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001750 return ret;
1751}
1752
1753/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001754 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1755 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001756 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001757 * Return: true if we find something
1758 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001759 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001760EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001761noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001762 struct extent_io_tree *tree,
1763 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001764 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001765{
Nikolay Borisov917aace2018-10-26 14:43:20 +03001766 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001767 u64 delalloc_start;
1768 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001769 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001770 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001771 int ret;
1772 int loops = 0;
1773
1774again:
1775 /* step one, find a bunch of delalloc bytes starting at start */
1776 delalloc_start = *start;
1777 delalloc_end = 0;
1778 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001779 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001780 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001781 *start = delalloc_start;
1782 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001783 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001784 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001785 }
1786
1787 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001788 * start comes from the offset of locked_page. We have to lock
1789 * pages in order, so we can't process delalloc bytes before
1790 * locked_page
1791 */
Chris Masond3977122009-01-05 21:25:51 -05001792 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001793 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001794
1795 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001796 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001797 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001798 if (delalloc_end + 1 - delalloc_start > max_bytes)
1799 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001800
Chris Masonc8b97812008-10-29 14:49:59 -04001801 /* step two, lock all the pages after the page that has start */
1802 ret = lock_delalloc_pages(inode, locked_page,
1803 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001804 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001805 if (ret == -EAGAIN) {
1806 /* some of the pages are gone, lets avoid looping by
1807 * shortening the size of the delalloc range we're searching
1808 */
Chris Mason9655d292009-09-02 15:22:30 -04001809 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001810 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001811 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001812 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001813 loops = 1;
1814 goto again;
1815 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001816 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001817 goto out_failed;
1818 }
1819 }
Chris Masonc8b97812008-10-29 14:49:59 -04001820
1821 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001822 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001823
1824 /* then test to make sure it is all still delalloc */
1825 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001826 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001827 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001828 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001829 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001830 __unlock_for_delalloc(inode, locked_page,
1831 delalloc_start, delalloc_end);
1832 cond_resched();
1833 goto again;
1834 }
Chris Mason9655d292009-09-02 15:22:30 -04001835 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001836 *start = delalloc_start;
1837 *end = delalloc_end;
1838out_failed:
1839 return found;
1840}
1841
Liu Boda2c7002017-02-10 16:41:05 +01001842static int __process_pages_contig(struct address_space *mapping,
1843 struct page *locked_page,
1844 pgoff_t start_index, pgoff_t end_index,
1845 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001846{
Liu Bo873695b2017-02-02 17:49:22 -08001847 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001848 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001849 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001850 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001851 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001852 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001853 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001854
Liu Boda2c7002017-02-10 16:41:05 +01001855 if (page_ops & PAGE_LOCK) {
1856 ASSERT(page_ops == PAGE_LOCK);
1857 ASSERT(index_ret && *index_ret == start_index);
1858 }
1859
Filipe Manana704de492014-10-06 22:14:22 +01001860 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001861 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001862
Chris Masond3977122009-01-05 21:25:51 -05001863 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001864 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001865 min_t(unsigned long,
1866 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001867 if (ret == 0) {
1868 /*
1869 * Only if we're going to lock these pages,
1870 * can we find nothing at @index.
1871 */
1872 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001873 err = -EAGAIN;
1874 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001875 }
Chris Mason8b62b722009-09-02 16:53:46 -04001876
Liu Boda2c7002017-02-10 16:41:05 +01001877 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001878 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001879 SetPagePrivate2(pages[i]);
1880
Chris Masonc8b97812008-10-29 14:49:59 -04001881 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001882 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001883 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001884 continue;
1885 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001886 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001887 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001888 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001889 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001890 if (page_ops & PAGE_SET_ERROR)
1891 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001892 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001893 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001894 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001895 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001896 if (page_ops & PAGE_LOCK) {
1897 lock_page(pages[i]);
1898 if (!PageDirty(pages[i]) ||
1899 pages[i]->mapping != mapping) {
1900 unlock_page(pages[i]);
1901 put_page(pages[i]);
1902 err = -EAGAIN;
1903 goto out;
1904 }
1905 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001906 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001907 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001908 }
1909 nr_pages -= ret;
1910 index += ret;
1911 cond_resched();
1912 }
Liu Boda2c7002017-02-10 16:41:05 +01001913out:
1914 if (err && index_ret)
1915 *index_ret = start_index + pages_locked - 1;
1916 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001917}
Chris Masonc8b97812008-10-29 14:49:59 -04001918
Liu Bo873695b2017-02-02 17:49:22 -08001919void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1920 u64 delalloc_end, struct page *locked_page,
1921 unsigned clear_bits,
1922 unsigned long page_ops)
1923{
1924 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001925 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001926
1927 __process_pages_contig(inode->i_mapping, locked_page,
1928 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001929 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001930}
1931
Chris Masond352ac62008-09-29 15:18:18 -04001932/*
1933 * count the number of bytes in the tree that have a given bit(s)
1934 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1935 * cached. The total number found is returned.
1936 */
Chris Masond1310b22008-01-24 16:13:08 -05001937u64 count_range_bits(struct extent_io_tree *tree,
1938 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001939 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001940{
1941 struct rb_node *node;
1942 struct extent_state *state;
1943 u64 cur_start = *start;
1944 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001945 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001946 int found = 0;
1947
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301948 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001949 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001950
Chris Masoncad321a2008-12-17 14:51:42 -05001951 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001952 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1953 total_bytes = tree->dirty_bytes;
1954 goto out;
1955 }
1956 /*
1957 * this search will find all the extents that end after
1958 * our range starts.
1959 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001960 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001961 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001962 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001963
Chris Masond3977122009-01-05 21:25:51 -05001964 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001965 state = rb_entry(node, struct extent_state, rb_node);
1966 if (state->start > search_end)
1967 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001968 if (contig && found && state->start > last + 1)
1969 break;
1970 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001971 total_bytes += min(search_end, state->end) + 1 -
1972 max(cur_start, state->start);
1973 if (total_bytes >= max_bytes)
1974 break;
1975 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001976 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001977 found = 1;
1978 }
Chris Masonec29ed52011-02-23 16:23:20 -05001979 last = state->end;
1980 } else if (contig && found) {
1981 break;
Chris Masond1310b22008-01-24 16:13:08 -05001982 }
1983 node = rb_next(node);
1984 if (!node)
1985 break;
1986 }
1987out:
Chris Masoncad321a2008-12-17 14:51:42 -05001988 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001989 return total_bytes;
1990}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001991
Chris Masond352ac62008-09-29 15:18:18 -04001992/*
1993 * set the private field for a given byte offset in the tree. If there isn't
1994 * an extent_state there already, this does nothing.
1995 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001996static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001997 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001998{
1999 struct rb_node *node;
2000 struct extent_state *state;
2001 int ret = 0;
2002
Chris Masoncad321a2008-12-17 14:51:42 -05002003 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002004 /*
2005 * this search will find all the extents that end after
2006 * our range starts.
2007 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002008 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04002009 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05002010 ret = -ENOENT;
2011 goto out;
2012 }
2013 state = rb_entry(node, struct extent_state, rb_node);
2014 if (state->start != start) {
2015 ret = -ENOENT;
2016 goto out;
2017 }
David Sterba47dc1962016-02-11 13:24:13 +01002018 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002019out:
Chris Masoncad321a2008-12-17 14:51:42 -05002020 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002021 return ret;
2022}
2023
Arnd Bergmannf827ba92016-02-22 22:53:20 +01002024static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01002025 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05002026{
2027 struct rb_node *node;
2028 struct extent_state *state;
2029 int ret = 0;
2030
Chris Masoncad321a2008-12-17 14:51:42 -05002031 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002032 /*
2033 * this search will find all the extents that end after
2034 * our range starts.
2035 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002036 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04002037 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05002038 ret = -ENOENT;
2039 goto out;
2040 }
2041 state = rb_entry(node, struct extent_state, rb_node);
2042 if (state->start != start) {
2043 ret = -ENOENT;
2044 goto out;
2045 }
David Sterba47dc1962016-02-11 13:24:13 +01002046 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002047out:
Chris Masoncad321a2008-12-17 14:51:42 -05002048 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002049 return ret;
2050}
2051
2052/*
2053 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05002054 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05002055 * has the bits set. Otherwise, 1 is returned if any bit in the
2056 * range is found set.
2057 */
2058int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01002059 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05002060{
2061 struct extent_state *state = NULL;
2062 struct rb_node *node;
2063 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002064
Chris Masoncad321a2008-12-17 14:51:42 -05002065 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002066 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002067 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002068 node = &cached->rb_node;
2069 else
2070 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002071 while (node && start <= end) {
2072 state = rb_entry(node, struct extent_state, rb_node);
2073
2074 if (filled && state->start > start) {
2075 bitset = 0;
2076 break;
2077 }
2078
2079 if (state->start > end)
2080 break;
2081
2082 if (state->state & bits) {
2083 bitset = 1;
2084 if (!filled)
2085 break;
2086 } else if (filled) {
2087 bitset = 0;
2088 break;
2089 }
Chris Mason46562ce2009-09-23 20:23:16 -04002090
2091 if (state->end == (u64)-1)
2092 break;
2093
Chris Masond1310b22008-01-24 16:13:08 -05002094 start = state->end + 1;
2095 if (start > end)
2096 break;
2097 node = rb_next(node);
2098 if (!node) {
2099 if (filled)
2100 bitset = 0;
2101 break;
2102 }
2103 }
Chris Masoncad321a2008-12-17 14:51:42 -05002104 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002105 return bitset;
2106}
Chris Masond1310b22008-01-24 16:13:08 -05002107
2108/*
2109 * helper function to set a given page up to date if all the
2110 * extents in the tree for that page are up to date
2111 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002112static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002113{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002114 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002115 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002116 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002117 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002118}
2119
Josef Bacik7870d082017-05-05 11:57:15 -04002120int free_io_failure(struct extent_io_tree *failure_tree,
2121 struct extent_io_tree *io_tree,
2122 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002123{
2124 int ret;
2125 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002126
David Sterba47dc1962016-02-11 13:24:13 +01002127 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002128 ret = clear_extent_bits(failure_tree, rec->start,
2129 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002130 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002131 if (ret)
2132 err = ret;
2133
Josef Bacik7870d082017-05-05 11:57:15 -04002134 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05002135 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002136 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05002137 if (ret && !err)
2138 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002139
2140 kfree(rec);
2141 return err;
2142}
2143
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002144/*
2145 * this bypasses the standard btrfs submit functions deliberately, as
2146 * the standard behavior is to write all copies in a raid setup. here we only
2147 * want to write the one bad copy. so we do the mapping for ourselves and issue
2148 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002149 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002150 * actually prevents the read that triggered the error from finishing.
2151 * currently, there can be no more than two copies of every data bit. thus,
2152 * exactly one rewrite is required.
2153 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04002154int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
2155 u64 length, u64 logical, struct page *page,
2156 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002157{
2158 struct bio *bio;
2159 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002160 u64 map_length = 0;
2161 u64 sector;
2162 struct btrfs_bio *bbio = NULL;
2163 int ret;
2164
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002165 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002166 BUG_ON(!mirror_num);
2167
David Sterbac5e4c3d2017-06-12 17:29:41 +02002168 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002169 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002170 map_length = length;
2171
Filipe Mananab5de8d02016-05-27 22:21:27 +01002172 /*
2173 * Avoid races with device replace and make sure our bbio has devices
2174 * associated to its stripes that don't go away while we are doing the
2175 * read repair operation.
2176 */
2177 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002178 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002179 /*
2180 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2181 * to update all raid stripes, but here we just want to correct
2182 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2183 * stripe's dev and sector.
2184 */
2185 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2186 &map_length, &bbio, 0);
2187 if (ret) {
2188 btrfs_bio_counter_dec(fs_info);
2189 bio_put(bio);
2190 return -EIO;
2191 }
2192 ASSERT(bbio->mirror_num == 1);
2193 } else {
2194 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2195 &map_length, &bbio, mirror_num);
2196 if (ret) {
2197 btrfs_bio_counter_dec(fs_info);
2198 bio_put(bio);
2199 return -EIO;
2200 }
2201 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002202 }
Liu Boc7253282017-03-29 10:53:58 -07002203
2204 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002205 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002206 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002207 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002208 if (!dev || !dev->bdev ||
2209 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002210 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002211 bio_put(bio);
2212 return -EIO;
2213 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002214 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002215 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002216 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002217
Mike Christie4e49ea42016-06-05 14:31:41 -05002218 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002219 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002220 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002221 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002222 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002223 return -EIO;
2224 }
2225
David Sterbab14af3b2015-10-08 10:43:10 +02002226 btrfs_info_rl_in_rcu(fs_info,
2227 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002228 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002229 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002230 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002231 bio_put(bio);
2232 return 0;
2233}
2234
David Sterba20a1fbf92019-03-20 11:23:44 +01002235int btrfs_repair_eb_io_failure(struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002236{
David Sterba20a1fbf92019-03-20 11:23:44 +01002237 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacikea466792012-03-26 21:57:36 -04002238 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002239 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002240 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002241
David Howellsbc98a422017-07-17 08:45:34 +01002242 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002243 return -EROFS;
2244
Josef Bacikea466792012-03-26 21:57:36 -04002245 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002246 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002247
Josef Bacik6ec656b2017-05-05 11:57:14 -04002248 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002249 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002250 if (ret)
2251 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002252 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002253 }
2254
2255 return ret;
2256}
2257
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002258/*
2259 * each time an IO finishes, we do a fast check in the IO failure tree
2260 * to see if we need to process or clean up an io_failure_record
2261 */
Josef Bacik7870d082017-05-05 11:57:15 -04002262int clean_io_failure(struct btrfs_fs_info *fs_info,
2263 struct extent_io_tree *failure_tree,
2264 struct extent_io_tree *io_tree, u64 start,
2265 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002266{
2267 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002268 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002269 struct extent_state *state;
2270 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002271 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002272
2273 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002274 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2275 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002276 if (!ret)
2277 return 0;
2278
Josef Bacik7870d082017-05-05 11:57:15 -04002279 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002280 if (ret)
2281 return 0;
2282
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002283 BUG_ON(!failrec->this_mirror);
2284
2285 if (failrec->in_validation) {
2286 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002287 btrfs_debug(fs_info,
2288 "clean_io_failure: freeing dummy error at %llu",
2289 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002290 goto out;
2291 }
David Howellsbc98a422017-07-17 08:45:34 +01002292 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002293 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002294
Josef Bacik7870d082017-05-05 11:57:15 -04002295 spin_lock(&io_tree->lock);
2296 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002297 failrec->start,
2298 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002299 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002300
Miao Xie883d0de2013-07-25 19:22:35 +08002301 if (state && state->start <= failrec->start &&
2302 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002303 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2304 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002305 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002306 repair_io_failure(fs_info, ino, start, failrec->len,
2307 failrec->logical, page, pg_offset,
2308 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002309 }
2310 }
2311
2312out:
Josef Bacik7870d082017-05-05 11:57:15 -04002313 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002314
Miao Xie454ff3d2014-09-12 18:43:58 +08002315 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002316}
2317
Miao Xief6124962014-09-12 18:44:04 +08002318/*
2319 * Can be called when
2320 * - hold extent lock
2321 * - under ordered extent
2322 * - the inode is freeing
2323 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002324void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002325{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002326 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002327 struct io_failure_record *failrec;
2328 struct extent_state *state, *next;
2329
2330 if (RB_EMPTY_ROOT(&failure_tree->state))
2331 return;
2332
2333 spin_lock(&failure_tree->lock);
2334 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2335 while (state) {
2336 if (state->start > end)
2337 break;
2338
2339 ASSERT(state->end <= end);
2340
2341 next = next_state(state);
2342
David Sterba47dc1962016-02-11 13:24:13 +01002343 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002344 free_extent_state(state);
2345 kfree(failrec);
2346
2347 state = next;
2348 }
2349 spin_unlock(&failure_tree->lock);
2350}
2351
Miao Xie2fe63032014-09-12 18:43:59 +08002352int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002353 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002354{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002355 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002356 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002357 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002358 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2359 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2360 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002361 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002362 u64 logical;
2363
David Sterba47dc1962016-02-11 13:24:13 +01002364 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002365 if (ret) {
2366 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2367 if (!failrec)
2368 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002369
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002370 failrec->start = start;
2371 failrec->len = end - start + 1;
2372 failrec->this_mirror = 0;
2373 failrec->bio_flags = 0;
2374 failrec->in_validation = 0;
2375
2376 read_lock(&em_tree->lock);
2377 em = lookup_extent_mapping(em_tree, start, failrec->len);
2378 if (!em) {
2379 read_unlock(&em_tree->lock);
2380 kfree(failrec);
2381 return -EIO;
2382 }
2383
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002384 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002385 free_extent_map(em);
2386 em = NULL;
2387 }
2388 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002389 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002390 kfree(failrec);
2391 return -EIO;
2392 }
Miao Xie2fe63032014-09-12 18:43:59 +08002393
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002394 logical = start - em->start;
2395 logical = em->block_start + logical;
2396 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2397 logical = em->block_start;
2398 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2399 extent_set_compress_type(&failrec->bio_flags,
2400 em->compress_type);
2401 }
Miao Xie2fe63032014-09-12 18:43:59 +08002402
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002403 btrfs_debug(fs_info,
2404 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2405 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002406
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002407 failrec->logical = logical;
2408 free_extent_map(em);
2409
2410 /* set the bits in the private failure tree */
2411 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002412 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002413 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002414 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002415 /* set the bits in the inode's tree */
2416 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002417 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002418 if (ret < 0) {
2419 kfree(failrec);
2420 return ret;
2421 }
2422 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002423 btrfs_debug(fs_info,
2424 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2425 failrec->logical, failrec->start, failrec->len,
2426 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002427 /*
2428 * when data can be on disk more than twice, add to failrec here
2429 * (e.g. with a list for failed_mirror) to make
2430 * clean_io_failure() clean all those errors at once.
2431 */
2432 }
Miao Xie2fe63032014-09-12 18:43:59 +08002433
2434 *failrec_ret = failrec;
2435
2436 return 0;
2437}
2438
Ming Leia0b60d72017-12-18 20:22:11 +08002439bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002440 struct io_failure_record *failrec, int failed_mirror)
2441{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002442 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002443 int num_copies;
2444
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002445 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002446 if (num_copies == 1) {
2447 /*
2448 * we only have a single copy of the data, so don't bother with
2449 * all the retry and error correction code that follows. no
2450 * matter what the error is, it is very likely to persist.
2451 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002452 btrfs_debug(fs_info,
2453 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2454 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002455 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002456 }
2457
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002458 /*
2459 * there are two premises:
2460 * a) deliver good data to the caller
2461 * b) correct the bad sectors on disk
2462 */
Ming Leia0b60d72017-12-18 20:22:11 +08002463 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002464 /*
2465 * to fulfill b), we need to know the exact failing sectors, as
2466 * we don't want to rewrite any more than the failed ones. thus,
2467 * we need separate read requests for the failed bio
2468 *
2469 * if the following BUG_ON triggers, our validation request got
2470 * merged. we need separate requests for our algorithm to work.
2471 */
2472 BUG_ON(failrec->in_validation);
2473 failrec->in_validation = 1;
2474 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002475 } else {
2476 /*
2477 * we're ready to fulfill a) and b) alongside. get a good copy
2478 * of the failed sector and if we succeed, we have setup
2479 * everything for repair_io_failure to do the rest for us.
2480 */
2481 if (failrec->in_validation) {
2482 BUG_ON(failrec->this_mirror != failed_mirror);
2483 failrec->in_validation = 0;
2484 failrec->this_mirror = 0;
2485 }
2486 failrec->failed_mirror = failed_mirror;
2487 failrec->this_mirror++;
2488 if (failrec->this_mirror == failed_mirror)
2489 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002490 }
2491
Miao Xiefacc8a222013-07-25 19:22:34 +08002492 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002493 btrfs_debug(fs_info,
2494 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2495 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002496 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002497 }
2498
Liu Boc3cfb652017-07-13 15:00:50 -07002499 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002500}
2501
2502
2503struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2504 struct io_failure_record *failrec,
2505 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002506 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002507{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002508 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002509 struct bio *bio;
2510 struct btrfs_io_bio *btrfs_failed_bio;
2511 struct btrfs_io_bio *btrfs_bio;
2512
David Sterbac5e4c3d2017-06-12 17:29:41 +02002513 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002514 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002515 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002516 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002517 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002518 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002519
Miao Xiefacc8a222013-07-25 19:22:34 +08002520 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2521 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002522 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2523
2524 btrfs_bio = btrfs_io_bio(bio);
2525 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002526 icsum *= csum_size;
2527 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002528 csum_size);
2529 }
2530
Miao Xie2fe63032014-09-12 18:43:59 +08002531 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002532
Miao Xie2fe63032014-09-12 18:43:59 +08002533 return bio;
2534}
2535
2536/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002537 * This is a generic handler for readpage errors. If other copies exist, read
2538 * those and write back good data to the failed position. Does not investigate
2539 * in remapping the failed extent elsewhere, hoping the device will be smart
2540 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002541 */
Miao Xie2fe63032014-09-12 18:43:59 +08002542static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2543 struct page *page, u64 start, u64 end,
2544 int failed_mirror)
2545{
2546 struct io_failure_record *failrec;
2547 struct inode *inode = page->mapping->host;
2548 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002549 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002550 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002551 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002552 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002553 int ret;
Christoph Hellwig8a2ee442019-02-15 19:13:07 +08002554 unsigned failed_bio_pages = failed_bio->bi_iter.bi_size >> PAGE_SHIFT;
Miao Xie2fe63032014-09-12 18:43:59 +08002555
Mike Christie1f7ad752016-06-05 14:31:51 -05002556 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002557
2558 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2559 if (ret)
2560 return ret;
2561
Ming Leia0b60d72017-12-18 20:22:11 +08002562 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002563 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002564 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002565 return -EIO;
2566 }
2567
Ming Leia0b60d72017-12-18 20:22:11 +08002568 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002569 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002570
2571 phy_offset >>= inode->i_sb->s_blocksize_bits;
2572 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2573 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002574 (int)phy_offset, failed_bio->bi_end_io,
2575 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002576 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002577
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002578 btrfs_debug(btrfs_sb(inode->i_sb),
2579 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2580 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002581
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002582 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Nikolay Borisov50489a52019-04-10 19:46:04 +03002583 failrec->bio_flags);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002584 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002585 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002586 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002587 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002588 }
2589
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002590 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002591}
2592
Chris Masond1310b22008-01-24 16:13:08 -05002593/* lots and lots of room for performance fixes in the end_bio funcs */
2594
David Sterbab5227c02015-12-03 13:08:59 +01002595void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002596{
2597 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002598 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002599
Nikolay Borisovc6297322018-11-08 10:18:08 +02002600 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002601
Jeff Mahoney87826df2012-02-15 16:23:57 +01002602 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002603 ClearPageUptodate(page);
2604 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002605 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002606 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002607 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002608}
2609
Chris Masond1310b22008-01-24 16:13:08 -05002610/*
2611 * after a writepage IO is done, we need to:
2612 * clear the uptodate bits on error
2613 * clear the writeback bits in the extent tree for this IO
2614 * end_page_writeback if the page has no more pending IO
2615 *
2616 * Scheduling is not allowed, so the extent state tree is expected
2617 * to have one and only one object corresponding to this IO.
2618 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002619static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002620{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002621 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002622 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002623 u64 start;
2624 u64 end;
Ming Lei6dc4f102019-02-15 19:13:19 +08002625 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002626
David Sterbac09abff2017-07-13 18:10:07 +02002627 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002628 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002629 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002630 struct inode *inode = page->mapping->host;
2631 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002632
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002633 /* We always issue full-page reads, but if some block
2634 * in a page fails to read, blk_update_request() will
2635 * advance bv_offset and adjust bv_len to compensate.
2636 * Print a warning for nonzero offsets, and an error
2637 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002638 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2639 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002640 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002641 "partial page write in btrfs with offset %u and length %u",
2642 bvec->bv_offset, bvec->bv_len);
2643 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002644 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002645 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002646 bvec->bv_offset, bvec->bv_len);
2647 }
Chris Masond1310b22008-01-24 16:13:08 -05002648
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002649 start = page_offset(page);
2650 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002651
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002652 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002653 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002654 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002655
Chris Masond1310b22008-01-24 16:13:08 -05002656 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002657}
2658
Miao Xie883d0de2013-07-25 19:22:35 +08002659static void
2660endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2661 int uptodate)
2662{
2663 struct extent_state *cached = NULL;
2664 u64 end = start + len - 1;
2665
2666 if (uptodate && tree->track_uptodate)
2667 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002668 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002669}
2670
Chris Masond1310b22008-01-24 16:13:08 -05002671/*
2672 * after a readpage IO is done, we need to:
2673 * clear the uptodate bits on error
2674 * set the uptodate bits if things worked
2675 * set the page up to date if all extents in the tree are uptodate
2676 * clear the lock bit in the extent tree
2677 * unlock the page if there are no other extents locked for it
2678 *
2679 * Scheduling is not allowed, so the extent state tree is expected
2680 * to have one and only one object corresponding to this IO.
2681 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002682static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002683{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002684 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002685 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002686 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002687 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002688 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002689 u64 start;
2690 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002691 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002692 u64 extent_start = 0;
2693 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002694 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002695 int ret;
Ming Lei6dc4f102019-02-15 19:13:19 +08002696 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002697
David Sterbac09abff2017-07-13 18:10:07 +02002698 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002699 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002700 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002701 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002702 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002703 bool data_inode = btrfs_ino(BTRFS_I(inode))
2704 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002705
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002706 btrfs_debug(fs_info,
2707 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002708 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002709 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002710 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002711 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002712
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002713 /* We always issue full-page reads, but if some block
2714 * in a page fails to read, blk_update_request() will
2715 * advance bv_offset and adjust bv_len to compensate.
2716 * Print a warning for nonzero offsets, and an error
2717 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002718 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2719 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002720 btrfs_err(fs_info,
2721 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002722 bvec->bv_offset, bvec->bv_len);
2723 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002724 btrfs_info(fs_info,
2725 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002726 bvec->bv_offset, bvec->bv_len);
2727 }
Chris Masond1310b22008-01-24 16:13:08 -05002728
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002729 start = page_offset(page);
2730 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002731 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002732
Chris Mason9be33952013-05-17 18:30:14 -04002733 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002734 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002735 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2736 page, start, end,
2737 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002738 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002739 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002740 else
Josef Bacik7870d082017-05-05 11:57:15 -04002741 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2742 failure_tree, tree, start,
2743 page,
2744 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002745 }
Josef Bacikea466792012-03-26 21:57:36 -04002746
Miao Xief2a09da2013-07-25 19:22:33 +08002747 if (likely(uptodate))
2748 goto readpage_ok;
2749
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002750 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002751
2752 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002753 * The generic bio_readpage_error handles errors the
2754 * following way: If possible, new read requests are
2755 * created and submitted and will end up in
2756 * end_bio_extent_readpage as well (if we're lucky,
2757 * not in the !uptodate case). In that case it returns
2758 * 0 and we just go on with the next page in our bio.
2759 * If it can't handle the error it will return -EIO and
2760 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002761 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002762 ret = bio_readpage_error(bio, offset, page, start, end,
2763 mirror);
2764 if (ret == 0) {
2765 uptodate = !bio->bi_status;
2766 offset += len;
2767 continue;
2768 }
2769 } else {
2770 struct extent_buffer *eb;
2771
2772 eb = (struct extent_buffer *)page->private;
2773 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2774 eb->read_mirror = mirror;
2775 atomic_dec(&eb->io_pages);
2776 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2777 &eb->bflags))
2778 btree_readahead_hook(eb, -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002779 }
Miao Xief2a09da2013-07-25 19:22:33 +08002780readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002781 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002782 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002783 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002784 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002785
2786 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002787 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002788 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002789 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002790 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002791 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002792 ClearPageUptodate(page);
2793 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002794 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002795 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002796 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002797
2798 if (unlikely(!uptodate)) {
2799 if (extent_len) {
2800 endio_readpage_release_extent(tree,
2801 extent_start,
2802 extent_len, 1);
2803 extent_start = 0;
2804 extent_len = 0;
2805 }
2806 endio_readpage_release_extent(tree, start,
2807 end - start + 1, 0);
2808 } else if (!extent_len) {
2809 extent_start = start;
2810 extent_len = end + 1 - start;
2811 } else if (extent_start + extent_len == start) {
2812 extent_len += end + 1 - start;
2813 } else {
2814 endio_readpage_release_extent(tree, extent_start,
2815 extent_len, uptodate);
2816 extent_start = start;
2817 extent_len = end + 1 - start;
2818 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002819 }
Chris Masond1310b22008-01-24 16:13:08 -05002820
Miao Xie883d0de2013-07-25 19:22:35 +08002821 if (extent_len)
2822 endio_readpage_release_extent(tree, extent_start, extent_len,
2823 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002824 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002825 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002826}
2827
Chris Mason9be33952013-05-17 18:30:14 -04002828/*
David Sterba184f9992017-06-12 17:29:39 +02002829 * Initialize the members up to but not including 'bio'. Use after allocating a
2830 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2831 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002832 */
David Sterba184f9992017-06-12 17:29:39 +02002833static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002834{
David Sterba184f9992017-06-12 17:29:39 +02002835 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2836}
2837
2838/*
David Sterba6e707bc2017-06-02 17:26:26 +02002839 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2840 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2841 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002842 */
David Sterbac821e7f32017-06-02 18:35:36 +02002843struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002844{
2845 struct bio *bio;
2846
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002847 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002848 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002849 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002850 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002851 return bio;
2852}
2853
David Sterba8b6c1d52017-06-02 17:48:13 +02002854struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002855{
Miao Xie23ea8e52014-09-12 18:43:54 +08002856 struct btrfs_io_bio *btrfs_bio;
2857 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002858
David Sterba6e707bc2017-06-02 17:26:26 +02002859 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002860 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002861 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002862 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002863 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002864 return new;
2865}
Chris Mason9be33952013-05-17 18:30:14 -04002866
David Sterbac5e4c3d2017-06-12 17:29:41 +02002867struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002868{
Miao Xiefacc8a222013-07-25 19:22:34 +08002869 struct bio *bio;
2870
David Sterba6e707bc2017-06-02 17:26:26 +02002871 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002872 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002873 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002874 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002875}
2876
Liu Boe4770942017-05-16 10:57:14 -07002877struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002878{
2879 struct bio *bio;
2880 struct btrfs_io_bio *btrfs_bio;
2881
2882 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002883 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002884 ASSERT(bio);
2885
2886 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002887 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002888
2889 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002890 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002891 return bio;
2892}
Chris Mason9be33952013-05-17 18:30:14 -04002893
David Sterba4b81ba42017-06-06 19:14:26 +02002894/*
2895 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002896 * @tree: tree so we can call our merge_bio hook
2897 * @wbc: optional writeback control for io accounting
2898 * @page: page to add to the bio
2899 * @pg_offset: offset of the new bio or to check whether we are adding
2900 * a contiguous page to the previous one
2901 * @size: portion of page that we want to write
2902 * @offset: starting offset in the page
2903 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002904 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002905 * @end_io_func: end_io callback for new bio
2906 * @mirror_num: desired mirror to read/write
2907 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2908 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002909 */
2910static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002911 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002912 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002913 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002914 struct block_device *bdev,
2915 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002916 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002917 int mirror_num,
2918 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002919 unsigned long bio_flags,
2920 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002921{
2922 int ret = 0;
2923 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002924 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002925 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002926
David Sterba5c2b1fd2017-06-06 19:22:55 +02002927 ASSERT(bio_ret);
2928
2929 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002930 bool contig;
2931 bool can_merge = true;
2932
Chris Masond1310b22008-01-24 16:13:08 -05002933 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002934 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002935 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002936 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002937 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002938
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002939 ASSERT(tree->ops);
2940 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002941 can_merge = false;
2942
2943 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002944 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002945 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002946 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002947 if (ret < 0) {
2948 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002949 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002950 }
Chris Masond1310b22008-01-24 16:13:08 -05002951 bio = NULL;
2952 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002953 if (wbc)
2954 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002955 return 0;
2956 }
2957 }
Chris Masonc8b97812008-10-29 14:49:59 -04002958
David Sterba6273b7f2017-10-04 17:30:11 +02002959 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002960 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002961 bio->bi_end_io = end_io_func;
2962 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002963 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002964 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002965 if (wbc) {
2966 wbc_init_bio(wbc, bio);
2967 wbc_account_io(wbc, page, page_size);
2968 }
Chris Mason70dec802008-01-29 09:59:12 -05002969
David Sterba5c2b1fd2017-06-06 19:22:55 +02002970 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002971
2972 return ret;
2973}
2974
Eric Sandeen48a3b632013-04-25 20:41:01 +00002975static void attach_extent_buffer_page(struct extent_buffer *eb,
2976 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002977{
2978 if (!PagePrivate(page)) {
2979 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002980 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002981 set_page_private(page, (unsigned long)eb);
2982 } else {
2983 WARN_ON(page->private != (unsigned long)eb);
2984 }
2985}
2986
Chris Masond1310b22008-01-24 16:13:08 -05002987void set_page_extent_mapped(struct page *page)
2988{
2989 if (!PagePrivate(page)) {
2990 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002991 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002992 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002993 }
2994}
2995
Miao Xie125bac012013-07-25 19:22:37 +08002996static struct extent_map *
2997__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2998 u64 start, u64 len, get_extent_t *get_extent,
2999 struct extent_map **em_cached)
3000{
3001 struct extent_map *em;
3002
3003 if (em_cached && *em_cached) {
3004 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00003005 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08003006 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02003007 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08003008 return em;
3009 }
3010
3011 free_extent_map(em);
3012 *em_cached = NULL;
3013 }
3014
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003015 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08003016 if (em_cached && !IS_ERR_OR_NULL(em)) {
3017 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02003018 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08003019 *em_cached = em;
3020 }
3021 return em;
3022}
Chris Masond1310b22008-01-24 16:13:08 -05003023/*
3024 * basic readpage implementation. Locked extent state structs are inserted
3025 * into the tree that are removed when the IO is done (by the end_io
3026 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003027 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07003028 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05003029 */
Miao Xie99740902013-07-25 19:22:36 +08003030static int __do_readpage(struct extent_io_tree *tree,
3031 struct page *page,
3032 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003033 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003034 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003035 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003036 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05003037{
3038 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003039 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02003040 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003041 u64 cur = start;
3042 u64 extent_offset;
3043 u64 last_byte = i_size_read(inode);
3044 u64 block_start;
3045 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05003046 struct extent_map *em;
3047 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07003048 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003049 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02003050 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003051 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04003052 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05003053 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00003054 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003055
3056 set_page_extent_mapped(page);
3057
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003058 if (!PageUptodate(page)) {
3059 if (cleancache_get_page(page) == 0) {
3060 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003061 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003062 goto out;
3063 }
3064 }
3065
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003066 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04003067 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01003068 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04003069
3070 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003071 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003072 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003073 memset(userpage + zero_offset, 0, iosize);
3074 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003075 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003076 }
3077 }
Chris Masond1310b22008-01-24 16:13:08 -05003078 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01003079 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02003080 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003081
Chris Masond1310b22008-01-24 16:13:08 -05003082 if (cur >= last_byte) {
3083 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003084 struct extent_state *cached = NULL;
3085
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003086 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003087 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003088 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003089 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003090 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003091 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003092 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003093 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003094 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003095 break;
3096 }
Miao Xie125bac012013-07-25 19:22:37 +08003097 em = __get_extent_map(inode, page, pg_offset, cur,
3098 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003099 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003100 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003101 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003102 break;
3103 }
Chris Masond1310b22008-01-24 16:13:08 -05003104 extent_offset = cur - em->start;
3105 BUG_ON(extent_map_end(em) <= cur);
3106 BUG_ON(end < cur);
3107
Li Zefan261507a02010-12-17 14:21:50 +08003108 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003109 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003110 extent_set_compress_type(&this_bio_flag,
3111 em->compress_type);
3112 }
Chris Masonc8b97812008-10-29 14:49:59 -04003113
Chris Masond1310b22008-01-24 16:13:08 -05003114 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3115 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003116 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003117 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3118 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02003119 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003120 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02003121 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003122 disk_io_size = iosize;
3123 }
Chris Masond1310b22008-01-24 16:13:08 -05003124 bdev = em->bdev;
3125 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003126 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3127 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003128
3129 /*
3130 * If we have a file range that points to a compressed extent
3131 * and it's followed by a consecutive file range that points to
3132 * to the same compressed extent (possibly with a different
3133 * offset and/or length, so it either points to the whole extent
3134 * or only part of it), we must make sure we do not submit a
3135 * single bio to populate the pages for the 2 ranges because
3136 * this makes the compressed extent read zero out the pages
3137 * belonging to the 2nd range. Imagine the following scenario:
3138 *
3139 * File layout
3140 * [0 - 8K] [8K - 24K]
3141 * | |
3142 * | |
3143 * points to extent X, points to extent X,
3144 * offset 4K, length of 8K offset 0, length 16K
3145 *
3146 * [extent X, compressed length = 4K uncompressed length = 16K]
3147 *
3148 * If the bio to read the compressed extent covers both ranges,
3149 * it will decompress extent X into the pages belonging to the
3150 * first range and then it will stop, zeroing out the remaining
3151 * pages that belong to the other range that points to extent X.
3152 * So here we make sure we submit 2 bios, one for the first
3153 * range and another one for the third range. Both will target
3154 * the same physical extent from disk, but we can't currently
3155 * make the compressed bio endio callback populate the pages
3156 * for both ranges because each compressed bio is tightly
3157 * coupled with a single extent map, and each range can have
3158 * an extent map with a different offset value relative to the
3159 * uncompressed data of our extent and different lengths. This
3160 * is a corner case so we prioritize correctness over
3161 * non-optimal behavior (submitting 2 bios for the same extent).
3162 */
3163 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3164 prev_em_start && *prev_em_start != (u64)-1 &&
Filipe Manana8e928212019-02-14 15:17:20 +00003165 *prev_em_start != em->start)
Filipe Manana005efed2015-09-14 09:09:31 +01003166 force_bio_submit = true;
3167
3168 if (prev_em_start)
Filipe Manana8e928212019-02-14 15:17:20 +00003169 *prev_em_start = em->start;
Filipe Manana005efed2015-09-14 09:09:31 +01003170
Chris Masond1310b22008-01-24 16:13:08 -05003171 free_extent_map(em);
3172 em = NULL;
3173
3174 /* we've found a hole, just zero and go on */
3175 if (block_start == EXTENT_MAP_HOLE) {
3176 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003177 struct extent_state *cached = NULL;
3178
Cong Wang7ac687d2011-11-25 23:14:28 +08003179 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003180 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003181 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003182 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003183
3184 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003185 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003186 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003187 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003188 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003189 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003190 continue;
3191 }
3192 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003193 if (test_range_bit(tree, cur, cur_end,
3194 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003195 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003196 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003197 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003198 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003199 continue;
3200 }
Chris Mason70dec802008-01-29 09:59:12 -05003201 /* we have an inline extent but it didn't get marked up
3202 * to date. Error out
3203 */
3204 if (block_start == EXTENT_MAP_INLINE) {
3205 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003206 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003207 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003208 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003209 continue;
3210 }
Chris Masond1310b22008-01-24 16:13:08 -05003211
David Sterba4b81ba42017-06-06 19:14:26 +02003212 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003213 page, offset, disk_io_size,
3214 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003215 end_bio_extent_readpage, mirror_num,
3216 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003217 this_bio_flag,
3218 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003219 if (!ret) {
3220 nr++;
3221 *bio_flags = this_bio_flag;
3222 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003223 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003224 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003225 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003226 }
Chris Masond1310b22008-01-24 16:13:08 -05003227 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003228 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003229 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003230out:
Chris Masond1310b22008-01-24 16:13:08 -05003231 if (!nr) {
3232 if (!PageError(page))
3233 SetPageUptodate(page);
3234 unlock_page(page);
3235 }
Liu Bobaf863b2016-07-11 10:39:07 -07003236 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003237}
3238
Nikolay Borisove65ef212019-03-11 09:55:38 +02003239static inline void contiguous_readpages(struct extent_io_tree *tree,
Miao Xie99740902013-07-25 19:22:36 +08003240 struct page *pages[], int nr_pages,
3241 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003242 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003243 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003244 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003245 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003246{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003247 struct btrfs_inode *inode = BTRFS_I(pages[0]->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003248 int index;
3249
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003250 btrfs_lock_and_flush_ordered_range(tree, inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003251
3252 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003253 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003254 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003255 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003256 }
3257}
3258
Miao Xie99740902013-07-25 19:22:36 +08003259static int __extent_read_full_page(struct extent_io_tree *tree,
3260 struct page *page,
3261 get_extent_t *get_extent,
3262 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003263 unsigned long *bio_flags,
3264 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003265{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003266 struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003267 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003268 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003269 int ret;
3270
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003271 btrfs_lock_and_flush_ordered_range(tree, inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003272
Miao Xie125bac012013-07-25 19:22:37 +08003273 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003274 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003275 return ret;
3276}
3277
Chris Masond1310b22008-01-24 16:13:08 -05003278int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003279 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003280{
3281 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003282 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003283 int ret;
3284
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003285 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003286 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003287 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003288 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003289 return ret;
3290}
Chris Masond1310b22008-01-24 16:13:08 -05003291
David Sterba3d4b9492017-02-10 19:33:41 +01003292static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003293 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003294{
3295 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003296}
3297
Chris Masond1310b22008-01-24 16:13:08 -05003298/*
Chris Mason40f76582014-05-21 13:35:51 -07003299 * helper for __extent_writepage, doing all of the delayed allocation setup.
3300 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003301 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003302 * to write the page (copy into inline extent). In this case the IO has
3303 * been started and the page is already unlocked.
3304 *
3305 * This returns 0 if all went well (page still locked)
3306 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003307 */
Chris Mason40f76582014-05-21 13:35:51 -07003308static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003309 struct page *page, struct writeback_control *wbc,
3310 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003311{
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003312 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003313 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003314 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003315 u64 delalloc_to_write = 0;
3316 u64 delalloc_end = 0;
3317 int ret;
3318 int page_started = 0;
3319
Chris Mason40f76582014-05-21 13:35:51 -07003320
3321 while (delalloc_end < page_end) {
Lu Fengqi3522e902018-11-29 11:33:38 +08003322 found = find_lock_delalloc_range(inode, tree,
Chris Mason40f76582014-05-21 13:35:51 -07003323 page,
3324 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003325 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003326 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003327 delalloc_start = delalloc_end + 1;
3328 continue;
3329 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003330 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3331 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003332 if (ret) {
3333 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003334 /*
3335 * btrfs_run_delalloc_range should return < 0 for error
3336 * but just in case, we use > 0 here meaning the IO is
3337 * started, so we don't want to return > 0 unless
3338 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003339 */
3340 ret = ret < 0 ? ret : -EIO;
3341 goto done;
3342 }
3343 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003344 * delalloc_end is already one less than the total length, so
3345 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003346 */
3347 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003348 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003349 delalloc_start = delalloc_end + 1;
3350 }
3351 if (wbc->nr_to_write < delalloc_to_write) {
3352 int thresh = 8192;
3353
3354 if (delalloc_to_write < thresh * 2)
3355 thresh = delalloc_to_write;
3356 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3357 thresh);
3358 }
3359
3360 /* did the fill delalloc function already unlock and start
3361 * the IO?
3362 */
3363 if (page_started) {
3364 /*
3365 * we've unlocked the page, so we can't update
3366 * the mapping's writeback index, just update
3367 * nr_to_write.
3368 */
3369 wbc->nr_to_write -= *nr_written;
3370 return 1;
3371 }
3372
3373 ret = 0;
3374
3375done:
3376 return ret;
3377}
3378
3379/*
3380 * helper for __extent_writepage. This calls the writepage start hooks,
3381 * and does the loop to map the page into extents and bios.
3382 *
3383 * We return 1 if the IO is started and the page is unlocked,
3384 * 0 if all went well (page still locked)
3385 * < 0 if there were errors (page still locked)
3386 */
3387static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3388 struct page *page,
3389 struct writeback_control *wbc,
3390 struct extent_page_data *epd,
3391 loff_t i_size,
3392 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003393 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003394{
Chris Masond1310b22008-01-24 16:13:08 -05003395 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003396 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003397 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003398 u64 end;
3399 u64 cur = start;
3400 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003401 u64 block_start;
3402 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003403 struct extent_map *em;
3404 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003405 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003406 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003407 int ret = 0;
3408 int nr = 0;
3409 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003410
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003411 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3412 if (ret) {
3413 /* Fixup worker will requeue */
3414 if (ret == -EBUSY)
3415 wbc->pages_skipped++;
3416 else
3417 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003418
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003419 update_nr_written(wbc, nr_written);
3420 unlock_page(page);
3421 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003422 }
3423
Chris Mason11c83492009-04-20 15:50:09 -04003424 /*
3425 * we don't want to touch the inode after unlocking the page,
3426 * so we update the mapping writeback index now
3427 */
David Sterba3d4b9492017-02-10 19:33:41 +01003428 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003429
Chris Masond1310b22008-01-24 16:13:08 -05003430 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003431 if (i_size <= start) {
Nikolay Borisovc6297322018-11-08 10:18:08 +02003432 btrfs_writepage_endio_finish_ordered(page, start, page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003433 goto done;
3434 }
3435
Chris Masond1310b22008-01-24 16:13:08 -05003436 blocksize = inode->i_sb->s_blocksize;
3437
3438 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003439 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003440 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003441
Chris Mason40f76582014-05-21 13:35:51 -07003442 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003443 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003444 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003445 break;
3446 }
David Sterba3c98c622017-06-23 04:01:08 +02003447 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003448 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003449 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003450 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003451 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003452 break;
3453 }
3454
3455 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003456 em_end = extent_map_end(em);
3457 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003458 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003459 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003460 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003461 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003462 bdev = em->bdev;
3463 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003464 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003465 free_extent_map(em);
3466 em = NULL;
3467
Chris Masonc8b97812008-10-29 14:49:59 -04003468 /*
3469 * compressed and inline extents are written through other
3470 * paths in the FS
3471 */
3472 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003473 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003474 /*
3475 * end_io notification does not happen here for
3476 * compressed extents
3477 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003478 if (!compressed)
3479 btrfs_writepage_endio_finish_ordered(page, cur,
3480 cur + iosize - 1,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003481 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003482 else if (compressed) {
3483 /* we don't want to end_page_writeback on
3484 * a compressed extent. this happens
3485 * elsewhere
3486 */
3487 nr++;
3488 }
3489
3490 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003491 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003492 continue;
3493 }
Chris Masonc8b97812008-10-29 14:49:59 -04003494
David Sterba5cdc84b2018-07-18 20:32:52 +02003495 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003496 if (!PageWriteback(page)) {
3497 btrfs_err(BTRFS_I(inode)->root->fs_info,
3498 "page %lu not writeback, cur %llu end %llu",
3499 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003500 }
David Sterba58409ed2016-05-04 11:46:10 +02003501
David Sterba4b81ba42017-06-06 19:14:26 +02003502 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003503 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003504 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003505 end_bio_extent_writepage,
3506 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003507 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003508 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003509 if (PageWriteback(page))
3510 end_page_writeback(page);
3511 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003512
Chris Masond1310b22008-01-24 16:13:08 -05003513 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003514 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003515 nr++;
3516 }
3517done:
Chris Mason40f76582014-05-21 13:35:51 -07003518 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003519 return ret;
3520}
3521
3522/*
3523 * the writepage semantics are similar to regular writepage. extent
3524 * records are inserted to lock ranges in the tree, and as dirty areas
3525 * are found, they are marked writeback. Then the lock bits are removed
3526 * and the end_io handler clears the writeback ranges
Qu Wenruo30659762019-03-20 14:27:42 +08003527 *
3528 * Return 0 if everything goes well.
3529 * Return <0 for error.
Chris Mason40f76582014-05-21 13:35:51 -07003530 */
3531static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003532 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003533{
3534 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003535 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003536 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003537 int ret;
3538 int nr = 0;
3539 size_t pg_offset = 0;
3540 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003541 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003542 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003543 unsigned long nr_written = 0;
3544
Liu Boff40adf2017-08-24 18:19:48 -06003545 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003546
3547 trace___extent_writepage(page, inode, wbc);
3548
3549 WARN_ON(!PageLocked(page));
3550
3551 ClearPageError(page);
3552
Johannes Thumshirn70730172018-12-05 15:23:03 +01003553 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003554 if (page->index > end_index ||
3555 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003556 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003557 unlock_page(page);
3558 return 0;
3559 }
3560
3561 if (page->index == end_index) {
3562 char *userpage;
3563
3564 userpage = kmap_atomic(page);
3565 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003566 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003567 kunmap_atomic(userpage);
3568 flush_dcache_page(page);
3569 }
3570
3571 pg_offset = 0;
3572
3573 set_page_extent_mapped(page);
3574
Nikolay Borisov7789a552018-11-08 10:18:06 +02003575 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003576 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003577 if (ret == 1)
3578 goto done_unlocked;
3579 if (ret)
3580 goto done;
3581 }
Chris Mason40f76582014-05-21 13:35:51 -07003582
3583 ret = __extent_writepage_io(inode, page, wbc, epd,
3584 i_size, nr_written, write_flags, &nr);
3585 if (ret == 1)
3586 goto done_unlocked;
3587
3588done:
Chris Masond1310b22008-01-24 16:13:08 -05003589 if (nr == 0) {
3590 /* make sure the mapping tag for page dirty gets cleared */
3591 set_page_writeback(page);
3592 end_page_writeback(page);
3593 }
Filipe Manana61391d52014-05-09 17:17:40 +01003594 if (PageError(page)) {
3595 ret = ret < 0 ? ret : -EIO;
3596 end_extent_writepage(page, ret, start, page_end);
3597 }
Chris Masond1310b22008-01-24 16:13:08 -05003598 unlock_page(page);
Qu Wenruo30659762019-03-20 14:27:42 +08003599 ASSERT(ret <= 0);
Chris Mason40f76582014-05-21 13:35:51 -07003600 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003601
Chris Mason11c83492009-04-20 15:50:09 -04003602done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003603 return 0;
3604}
3605
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003606void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003607{
NeilBrown74316202014-07-07 15:16:04 +10003608 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3609 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003610}
3611
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003612/*
3613 * Lock eb pages and flush the bio if we can't the locks
3614 *
3615 * Return 0 if nothing went wrong
3616 * Return >0 is same as 0, except bio is not submitted
3617 * Return <0 if something went wrong, no page is locked
3618 */
David Sterba9df76fb2019-03-20 11:21:41 +01003619static noinline_for_stack int lock_extent_buffer_for_io(struct extent_buffer *eb,
Chris Mason0e378df2014-05-19 20:55:27 -07003620 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003621{
David Sterba9df76fb2019-03-20 11:21:41 +01003622 struct btrfs_fs_info *fs_info = eb->fs_info;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003623 int i, num_pages, failed_page_nr;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003624 int flush = 0;
3625 int ret = 0;
3626
3627 if (!btrfs_try_tree_write_lock(eb)) {
Qu Wenruof4340622019-03-20 14:27:41 +08003628 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003629 if (ret < 0)
3630 return ret;
3631 flush = 1;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003632 btrfs_tree_lock(eb);
3633 }
3634
3635 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3636 btrfs_tree_unlock(eb);
3637 if (!epd->sync_io)
3638 return 0;
3639 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003640 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003641 if (ret < 0)
3642 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003643 flush = 1;
3644 }
Chris Masona098d8e82012-03-21 12:09:56 -04003645 while (1) {
3646 wait_on_extent_buffer_writeback(eb);
3647 btrfs_tree_lock(eb);
3648 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3649 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003650 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003651 }
3652 }
3653
Josef Bacik51561ff2012-07-20 16:25:24 -04003654 /*
3655 * We need to do this to prevent races in people who check if the eb is
3656 * under IO since we can end up having no IO bits set for a short period
3657 * of time.
3658 */
3659 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003660 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3661 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003662 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003663 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003664 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3665 -eb->len,
3666 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003667 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003668 } else {
3669 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003670 }
3671
3672 btrfs_tree_unlock(eb);
3673
3674 if (!ret)
3675 return ret;
3676
David Sterba65ad0102018-06-29 10:56:49 +02003677 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003678 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003679 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003680
3681 if (!trylock_page(p)) {
3682 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003683 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003684 if (ret < 0) {
3685 failed_page_nr = i;
3686 goto err_unlock;
3687 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003688 flush = 1;
3689 }
3690 lock_page(p);
3691 }
3692 }
3693
3694 return ret;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003695err_unlock:
3696 /* Unlock already locked pages */
3697 for (i = 0; i < failed_page_nr; i++)
3698 unlock_page(eb->pages[i]);
3699 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003700}
3701
3702static void end_extent_buffer_writeback(struct extent_buffer *eb)
3703{
3704 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003705 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003706 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3707}
3708
Filipe Manana656f30d2014-09-26 12:25:56 +01003709static void set_btree_ioerr(struct page *page)
3710{
3711 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003712
3713 SetPageError(page);
3714 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3715 return;
3716
3717 /*
3718 * If writeback for a btree extent that doesn't belong to a log tree
3719 * failed, increment the counter transaction->eb_write_errors.
3720 * We do this because while the transaction is running and before it's
3721 * committing (when we call filemap_fdata[write|wait]_range against
3722 * the btree inode), we might have
3723 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3724 * returns an error or an error happens during writeback, when we're
3725 * committing the transaction we wouldn't know about it, since the pages
3726 * can be no longer dirty nor marked anymore for writeback (if a
3727 * subsequent modification to the extent buffer didn't happen before the
3728 * transaction commit), which makes filemap_fdata[write|wait]_range not
3729 * able to find the pages tagged with SetPageError at transaction
3730 * commit time. So if this happens we must abort the transaction,
3731 * otherwise we commit a super block with btree roots that point to
3732 * btree nodes/leafs whose content on disk is invalid - either garbage
3733 * or the content of some node/leaf from a past generation that got
3734 * cowed or deleted and is no longer valid.
3735 *
3736 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3737 * not be enough - we need to distinguish between log tree extents vs
3738 * non-log tree extents, and the next filemap_fdatawait_range() call
3739 * will catch and clear such errors in the mapping - and that call might
3740 * be from a log sync and not from a transaction commit. Also, checking
3741 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3742 * not done and would not be reliable - the eb might have been released
3743 * from memory and reading it back again means that flag would not be
3744 * set (since it's a runtime flag, not persisted on disk).
3745 *
3746 * Using the flags below in the btree inode also makes us achieve the
3747 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3748 * writeback for all dirty pages and before filemap_fdatawait_range()
3749 * is called, the writeback for all dirty pages had already finished
3750 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3751 * filemap_fdatawait_range() would return success, as it could not know
3752 * that writeback errors happened (the pages were no longer tagged for
3753 * writeback).
3754 */
3755 switch (eb->log_index) {
3756 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003757 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003758 break;
3759 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003760 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003761 break;
3762 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003763 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003764 break;
3765 default:
3766 BUG(); /* unexpected, logic error */
3767 }
3768}
3769
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003770static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003771{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003772 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003773 struct extent_buffer *eb;
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003774 int done;
Ming Lei6dc4f102019-02-15 19:13:19 +08003775 struct bvec_iter_all iter_all;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003776
David Sterbac09abff2017-07-13 18:10:07 +02003777 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003778 bio_for_each_segment_all(bvec, bio, iter_all) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003779 struct page *page = bvec->bv_page;
3780
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003781 eb = (struct extent_buffer *)page->private;
3782 BUG_ON(!eb);
3783 done = atomic_dec_and_test(&eb->io_pages);
3784
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003785 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003786 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003787 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003788 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003789 }
3790
3791 end_page_writeback(page);
3792
3793 if (!done)
3794 continue;
3795
3796 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003797 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003798
3799 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003800}
3801
Chris Mason0e378df2014-05-19 20:55:27 -07003802static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003803 struct writeback_control *wbc,
3804 struct extent_page_data *epd)
3805{
David Sterba0ab02062019-03-20 11:27:57 +01003806 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003807 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003808 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003809 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003810 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003811 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003812 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003813 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003814 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003815
Filipe Manana656f30d2014-09-26 12:25:56 +01003816 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003817 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003818 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003819
Liu Bo851cd172016-09-23 13:44:44 -07003820 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3821 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003822 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003823 end = btrfs_node_key_ptr_offset(nritems);
3824
David Sterbab159fa22016-11-08 18:09:03 +01003825 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003826 } else {
3827 /*
3828 * leaf:
3829 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3830 */
3831 start = btrfs_item_nr_offset(nritems);
David Sterba8f881e82019-03-20 11:33:10 +01003832 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(eb);
David Sterbab159fa22016-11-08 18:09:03 +01003833 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003834 }
3835
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003836 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003837 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003838
3839 clear_page_dirty_for_io(p);
3840 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003841 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003842 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003843 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003844 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003845 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003846 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003847 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003848 if (PageWriteback(p))
3849 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003850 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3851 end_extent_buffer_writeback(eb);
3852 ret = -EIO;
3853 break;
3854 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003855 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003856 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003857 unlock_page(p);
3858 }
3859
3860 if (unlikely(ret)) {
3861 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003862 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003863 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003864 unlock_page(p);
3865 }
3866 }
3867
3868 return ret;
3869}
3870
3871int btree_write_cache_pages(struct address_space *mapping,
3872 struct writeback_control *wbc)
3873{
3874 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003875 struct extent_buffer *eb, *prev_eb = NULL;
3876 struct extent_page_data epd = {
3877 .bio = NULL,
3878 .tree = tree,
3879 .extent_locked = 0,
3880 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3881 };
3882 int ret = 0;
3883 int done = 0;
3884 int nr_to_write_done = 0;
3885 struct pagevec pvec;
3886 int nr_pages;
3887 pgoff_t index;
3888 pgoff_t end; /* Inclusive */
3889 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003890 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003891
Mel Gorman86679822017-11-15 17:37:52 -08003892 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003893 if (wbc->range_cyclic) {
3894 index = mapping->writeback_index; /* Start from prev offset */
3895 end = -1;
3896 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003897 index = wbc->range_start >> PAGE_SHIFT;
3898 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003899 scanned = 1;
3900 }
3901 if (wbc->sync_mode == WB_SYNC_ALL)
3902 tag = PAGECACHE_TAG_TOWRITE;
3903 else
3904 tag = PAGECACHE_TAG_DIRTY;
3905retry:
3906 if (wbc->sync_mode == WB_SYNC_ALL)
3907 tag_pages_for_writeback(mapping, index, end);
3908 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003909 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003910 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003911 unsigned i;
3912
3913 scanned = 1;
3914 for (i = 0; i < nr_pages; i++) {
3915 struct page *page = pvec.pages[i];
3916
3917 if (!PagePrivate(page))
3918 continue;
3919
Josef Bacikb5bae262012-09-14 13:43:01 -04003920 spin_lock(&mapping->private_lock);
3921 if (!PagePrivate(page)) {
3922 spin_unlock(&mapping->private_lock);
3923 continue;
3924 }
3925
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003926 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003927
3928 /*
3929 * Shouldn't happen and normally this would be a BUG_ON
3930 * but no sense in crashing the users box for something
3931 * we can survive anyway.
3932 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303933 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003934 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003935 continue;
3936 }
3937
Josef Bacikb5bae262012-09-14 13:43:01 -04003938 if (eb == prev_eb) {
3939 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003940 continue;
3941 }
3942
Josef Bacikb5bae262012-09-14 13:43:01 -04003943 ret = atomic_inc_not_zero(&eb->refs);
3944 spin_unlock(&mapping->private_lock);
3945 if (!ret)
3946 continue;
3947
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003948 prev_eb = eb;
David Sterba9df76fb2019-03-20 11:21:41 +01003949 ret = lock_extent_buffer_for_io(eb, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003950 if (!ret) {
3951 free_extent_buffer(eb);
3952 continue;
3953 }
3954
David Sterba0ab02062019-03-20 11:27:57 +01003955 ret = write_one_eb(eb, wbc, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003956 if (ret) {
3957 done = 1;
3958 free_extent_buffer(eb);
3959 break;
3960 }
3961 free_extent_buffer(eb);
3962
3963 /*
3964 * the filesystem may choose to bump up nr_to_write.
3965 * We have to make sure to honor the new nr_to_write
3966 * at any time
3967 */
3968 nr_to_write_done = wbc->nr_to_write <= 0;
3969 }
3970 pagevec_release(&pvec);
3971 cond_resched();
3972 }
3973 if (!scanned && !done) {
3974 /*
3975 * We hit the last page and there is more work to be done: wrap
3976 * back to the start of the file
3977 */
3978 scanned = 1;
3979 index = 0;
3980 goto retry;
3981 }
Qu Wenruo2b952ee2019-03-20 14:27:43 +08003982 ASSERT(ret <= 0);
3983 if (ret < 0) {
3984 end_write_bio(&epd, ret);
3985 return ret;
3986 }
3987 ret = flush_write_bio(&epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003988 return ret;
3989}
3990
Chris Masond1310b22008-01-24 16:13:08 -05003991/**
Chris Mason4bef0842008-09-08 11:18:08 -04003992 * 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 -05003993 * @mapping: address space structure to write
3994 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003995 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003996 *
3997 * If a page is already under I/O, write_cache_pages() skips it, even
3998 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3999 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
4000 * and msync() need to guarantee that all the data which was dirty at the time
4001 * the call was made get new I/O started against them. If wbc->sync_mode is
4002 * WB_SYNC_ALL then we were called for data integrity and we must wait for
4003 * existing IO to complete.
4004 */
David Sterba4242b642017-02-10 19:38:24 +01004005static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04004006 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01004007 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05004008{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004009 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05004010 int ret = 0;
4011 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004012 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004013 struct pagevec pvec;
4014 int nr_pages;
4015 pgoff_t index;
4016 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08004017 pgoff_t done_index;
4018 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004019 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05004020 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05004021
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004022 /*
4023 * We have to hold onto the inode so that ordered extents can do their
4024 * work when the IO finishes. The alternative to this is failing to add
4025 * an ordered extent if the igrab() fails there and that is a huge pain
4026 * to deal with, so instead just hold onto the inode throughout the
4027 * writepages operation. If it fails here we are freeing up the inode
4028 * anyway and we'd rather not waste our time writing out stuff that is
4029 * going to be truncated anyway.
4030 */
4031 if (!igrab(inode))
4032 return 0;
4033
Mel Gorman86679822017-11-15 17:37:52 -08004034 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05004035 if (wbc->range_cyclic) {
4036 index = mapping->writeback_index; /* Start from prev offset */
4037 end = -1;
4038 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004039 index = wbc->range_start >> PAGE_SHIFT;
4040 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08004041 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
4042 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004043 scanned = 1;
4044 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08004045
4046 /*
4047 * We do the tagged writepage as long as the snapshot flush bit is set
4048 * and we are the first one who do the filemap_flush() on this inode.
4049 *
4050 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
4051 * not race in and drop the bit.
4052 */
4053 if (range_whole && wbc->nr_to_write == LONG_MAX &&
4054 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
4055 &BTRFS_I(inode)->runtime_flags))
4056 wbc->tagged_writepages = 1;
4057
4058 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004059 tag = PAGECACHE_TAG_TOWRITE;
4060 else
4061 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004062retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08004063 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004064 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08004065 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004066 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08004067 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
4068 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05004069 unsigned i;
4070
4071 scanned = 1;
4072 for (i = 0; i < nr_pages; i++) {
4073 struct page *page = pvec.pages[i];
4074
Liu Boa91326672016-03-07 16:56:21 -08004075 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05004076 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07004077 * At this point we hold neither the i_pages lock nor
4078 * the page lock: the page may be truncated or
4079 * invalidated (changing page->mapping to NULL),
4080 * or even swizzled back from swapper_space to
4081 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05004082 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004083 if (!trylock_page(page)) {
Qu Wenruof4340622019-03-20 14:27:41 +08004084 ret = flush_write_bio(epd);
4085 BUG_ON(ret < 0);
Josef Bacikc8f2f242013-02-11 11:33:00 -05004086 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004087 }
Chris Masond1310b22008-01-24 16:13:08 -05004088
4089 if (unlikely(page->mapping != mapping)) {
4090 unlock_page(page);
4091 continue;
4092 }
4093
Chris Masond2c3f4f2008-11-19 12:44:22 -05004094 if (wbc->sync_mode != WB_SYNC_NONE) {
Qu Wenruof4340622019-03-20 14:27:41 +08004095 if (PageWriteback(page)) {
4096 ret = flush_write_bio(epd);
4097 BUG_ON(ret < 0);
4098 }
Chris Masond1310b22008-01-24 16:13:08 -05004099 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004100 }
Chris Masond1310b22008-01-24 16:13:08 -05004101
4102 if (PageWriteback(page) ||
4103 !clear_page_dirty_for_io(page)) {
4104 unlock_page(page);
4105 continue;
4106 }
4107
David Sterbaaab6e9e2017-11-30 18:00:02 +01004108 ret = __extent_writepage(page, wbc, epd);
Liu Boa91326672016-03-07 16:56:21 -08004109 if (ret < 0) {
4110 /*
4111 * done_index is set past this page,
4112 * so media errors will not choke
4113 * background writeout for the entire
4114 * file. This has consequences for
4115 * range_cyclic semantics (ie. it may
4116 * not be suitable for data integrity
4117 * writeout).
4118 */
4119 done_index = page->index + 1;
4120 done = 1;
4121 break;
4122 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004123
4124 /*
4125 * the filesystem may choose to bump up nr_to_write.
4126 * We have to make sure to honor the new nr_to_write
4127 * at any time
4128 */
4129 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004130 }
4131 pagevec_release(&pvec);
4132 cond_resched();
4133 }
Liu Bo894b36e2016-03-07 16:56:22 -08004134 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004135 /*
4136 * We hit the last page and there is more work to be done: wrap
4137 * back to the start of the file
4138 */
4139 scanned = 1;
4140 index = 0;
4141 goto retry;
4142 }
Liu Boa91326672016-03-07 16:56:21 -08004143
4144 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4145 mapping->writeback_index = done_index;
4146
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004147 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004148 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004149}
Chris Masond1310b22008-01-24 16:13:08 -05004150
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004151int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004152{
4153 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004154 struct extent_page_data epd = {
4155 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004156 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004157 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004158 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004159 };
Chris Masond1310b22008-01-24 16:13:08 -05004160
Chris Masond1310b22008-01-24 16:13:08 -05004161 ret = __extent_writepage(page, wbc, &epd);
Qu Wenruo30659762019-03-20 14:27:42 +08004162 ASSERT(ret <= 0);
4163 if (ret < 0) {
4164 end_write_bio(&epd, ret);
4165 return ret;
4166 }
Chris Masond1310b22008-01-24 16:13:08 -05004167
Qu Wenruo30659762019-03-20 14:27:42 +08004168 ret = flush_write_bio(&epd);
4169 ASSERT(ret <= 0);
Chris Masond1310b22008-01-24 16:13:08 -05004170 return ret;
4171}
Chris Masond1310b22008-01-24 16:13:08 -05004172
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004173int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004174 int mode)
4175{
4176 int ret = 0;
4177 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004178 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004179 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004180 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4181 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004182
4183 struct extent_page_data epd = {
4184 .bio = NULL,
4185 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004186 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004187 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004188 };
4189 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004190 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004191 .nr_to_write = nr_pages * 2,
4192 .range_start = start,
4193 .range_end = end + 1,
4194 };
4195
Chris Masond3977122009-01-05 21:25:51 -05004196 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004197 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004198 if (clear_page_dirty_for_io(page))
4199 ret = __extent_writepage(page, &wbc_writepages, &epd);
4200 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004201 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004202 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004203 unlock_page(page);
4204 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004205 put_page(page);
4206 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004207 }
4208
Qu Wenruo02c6db42019-03-20 14:27:45 +08004209 ASSERT(ret <= 0);
4210 if (ret < 0) {
4211 end_write_bio(&epd, ret);
4212 return ret;
4213 }
4214 ret = flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004215 return ret;
4216}
Chris Masond1310b22008-01-24 16:13:08 -05004217
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004218int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004219 struct writeback_control *wbc)
4220{
4221 int ret = 0;
4222 struct extent_page_data epd = {
4223 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004224 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004225 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004226 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004227 };
4228
David Sterba935db852017-06-23 04:30:28 +02004229 ret = extent_write_cache_pages(mapping, wbc, &epd);
Qu Wenruoa2a72fb2019-03-20 14:27:48 +08004230 ASSERT(ret <= 0);
4231 if (ret < 0) {
4232 end_write_bio(&epd, ret);
4233 return ret;
4234 }
4235 ret = flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004236 return ret;
4237}
Chris Masond1310b22008-01-24 16:13:08 -05004238
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004239int extent_readpages(struct address_space *mapping, struct list_head *pages,
4240 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004241{
4242 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004243 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004244 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004245 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004246 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004247 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004248 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004249
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004250 while (!list_empty(pages)) {
Nikolay Borisove65ef212019-03-11 09:55:38 +02004251 u64 contig_end = 0;
4252
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004253 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004254 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004255
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004256 prefetchw(&page->flags);
4257 list_del(&page->lru);
4258 if (add_to_page_cache_lru(page, mapping, page->index,
4259 readahead_gfp_mask(mapping))) {
4260 put_page(page);
Nikolay Borisove65ef212019-03-11 09:55:38 +02004261 break;
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004262 }
4263
4264 pagepool[nr++] = page;
Nikolay Borisove65ef212019-03-11 09:55:38 +02004265 contig_end = page_offset(page) + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004266 }
Liu Bo67c96842012-07-20 21:43:09 -06004267
Nikolay Borisove65ef212019-03-11 09:55:38 +02004268 if (nr) {
4269 u64 contig_start = page_offset(pagepool[0]);
4270
4271 ASSERT(contig_start + nr * PAGE_SIZE - 1 == contig_end);
4272
4273 contiguous_readpages(tree, pagepool, nr, contig_start,
4274 contig_end, &em_cached, &bio, &bio_flags,
4275 &prev_em_start);
4276 }
Chris Masond1310b22008-01-24 16:13:08 -05004277 }
Liu Bo67c96842012-07-20 21:43:09 -06004278
Miao Xie125bac012013-07-25 19:22:37 +08004279 if (em_cached)
4280 free_extent_map(em_cached);
4281
Chris Masond1310b22008-01-24 16:13:08 -05004282 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004283 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004284 return 0;
4285}
Chris Masond1310b22008-01-24 16:13:08 -05004286
4287/*
4288 * basic invalidatepage code, this waits on any locked or writeback
4289 * ranges corresponding to the page, and then deletes any extent state
4290 * records from the tree
4291 */
4292int extent_invalidatepage(struct extent_io_tree *tree,
4293 struct page *page, unsigned long offset)
4294{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004295 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004296 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004297 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004298 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4299
Qu Wenruofda28322013-02-26 08:10:22 +00004300 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004301 if (start > end)
4302 return 0;
4303
David Sterbaff13db42015-12-03 14:30:40 +01004304 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004305 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004306 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004307 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4308 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004309 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004310 return 0;
4311}
Chris Masond1310b22008-01-24 16:13:08 -05004312
4313/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004314 * a helper for releasepage, this tests for areas of the page that
4315 * are locked or under IO and drops the related state bits if it is safe
4316 * to drop the page.
4317 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004318static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004319 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004320{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004321 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004322 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004323 int ret = 1;
4324
Nikolay Borisov88826792019-03-14 15:28:31 +02004325 if (test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL)) {
Chris Mason7b13b7b2008-04-18 10:29:50 -04004326 ret = 0;
Nikolay Borisov88826792019-03-14 15:28:31 +02004327 } else {
Chris Mason11ef1602009-09-23 20:28:46 -04004328 /*
4329 * at this point we can safely clear everything except the
4330 * locked bit and the nodatasum bit
4331 */
David Sterba66b0c882017-10-31 16:30:47 +01004332 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004333 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004334 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004335
4336 /* if clear_extent_bit failed for enomem reasons,
4337 * we can't allow the release to continue.
4338 */
4339 if (ret < 0)
4340 ret = 0;
4341 else
4342 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004343 }
4344 return ret;
4345}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004346
4347/*
Chris Masond1310b22008-01-24 16:13:08 -05004348 * a helper for releasepage. As long as there are no locked extents
4349 * in the range corresponding to the page, both state records and extent
4350 * map records are removed
4351 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004352int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004353{
4354 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004355 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004356 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004357 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4358 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4359 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004360
Mel Gormand0164ad2015-11-06 16:28:21 -08004361 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004362 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004363 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004364 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004365 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004366 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004367 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004368 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004369 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004370 break;
4371 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004372 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4373 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004374 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004375 free_extent_map(em);
4376 break;
4377 }
4378 if (!test_range_bit(tree, em->start,
4379 extent_map_end(em) - 1,
Nikolay Borisov4e586ca2019-03-14 15:28:30 +02004380 EXTENT_LOCKED, 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004381 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4382 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004383 remove_extent_mapping(map, em);
4384 /* once for the rb tree */
4385 free_extent_map(em);
4386 }
4387 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004388 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004389
4390 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004391 free_extent_map(em);
4392 }
Chris Masond1310b22008-01-24 16:13:08 -05004393 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004394 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004395}
Chris Masond1310b22008-01-24 16:13:08 -05004396
Chris Masonec29ed52011-02-23 16:23:20 -05004397/*
4398 * helper function for fiemap, which doesn't want to see any holes.
4399 * This maps until we find something past 'last'
4400 */
4401static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004402 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004403{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004404 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004405 struct extent_map *em;
4406 u64 len;
4407
4408 if (offset >= last)
4409 return NULL;
4410
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304411 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004412 len = last - offset;
4413 if (len == 0)
4414 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004415 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004416 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004417 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004418 return em;
4419
4420 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004421 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004422 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004423
4424 /* this is a hole, advance to the next extent */
4425 offset = extent_map_end(em);
4426 free_extent_map(em);
4427 if (offset >= last)
4428 break;
4429 }
4430 return NULL;
4431}
4432
Qu Wenruo47518322017-04-07 10:43:15 +08004433/*
4434 * To cache previous fiemap extent
4435 *
4436 * Will be used for merging fiemap extent
4437 */
4438struct fiemap_cache {
4439 u64 offset;
4440 u64 phys;
4441 u64 len;
4442 u32 flags;
4443 bool cached;
4444};
4445
4446/*
4447 * Helper to submit fiemap extent.
4448 *
4449 * Will try to merge current fiemap extent specified by @offset, @phys,
4450 * @len and @flags with cached one.
4451 * And only when we fails to merge, cached one will be submitted as
4452 * fiemap extent.
4453 *
4454 * Return value is the same as fiemap_fill_next_extent().
4455 */
4456static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4457 struct fiemap_cache *cache,
4458 u64 offset, u64 phys, u64 len, u32 flags)
4459{
4460 int ret = 0;
4461
4462 if (!cache->cached)
4463 goto assign;
4464
4465 /*
4466 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004467 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004468 * Not recoverable.
4469 *
4470 * NOTE: Physical address can overlap, due to compression
4471 */
4472 if (cache->offset + cache->len > offset) {
4473 WARN_ON(1);
4474 return -EINVAL;
4475 }
4476
4477 /*
4478 * Only merges fiemap extents if
4479 * 1) Their logical addresses are continuous
4480 *
4481 * 2) Their physical addresses are continuous
4482 * So truly compressed (physical size smaller than logical size)
4483 * extents won't get merged with each other
4484 *
4485 * 3) Share same flags except FIEMAP_EXTENT_LAST
4486 * So regular extent won't get merged with prealloc extent
4487 */
4488 if (cache->offset + cache->len == offset &&
4489 cache->phys + cache->len == phys &&
4490 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4491 (flags & ~FIEMAP_EXTENT_LAST)) {
4492 cache->len += len;
4493 cache->flags |= flags;
4494 goto try_submit_last;
4495 }
4496
4497 /* Not mergeable, need to submit cached one */
4498 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4499 cache->len, cache->flags);
4500 cache->cached = false;
4501 if (ret)
4502 return ret;
4503assign:
4504 cache->cached = true;
4505 cache->offset = offset;
4506 cache->phys = phys;
4507 cache->len = len;
4508 cache->flags = flags;
4509try_submit_last:
4510 if (cache->flags & FIEMAP_EXTENT_LAST) {
4511 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4512 cache->phys, cache->len, cache->flags);
4513 cache->cached = false;
4514 }
4515 return ret;
4516}
4517
4518/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004519 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004520 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004521 * The last fiemap cache may still be cached in the following case:
4522 * 0 4k 8k
4523 * |<- Fiemap range ->|
4524 * |<------------ First extent ----------->|
4525 *
4526 * In this case, the first extent range will be cached but not emitted.
4527 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004528 */
David Sterba5c5aff92019-03-20 11:29:46 +01004529static int emit_last_fiemap_cache(struct fiemap_extent_info *fieinfo,
Qu Wenruo848c23b2017-06-22 10:01:21 +08004530 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004531{
4532 int ret;
4533
4534 if (!cache->cached)
4535 return 0;
4536
Qu Wenruo47518322017-04-07 10:43:15 +08004537 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4538 cache->len, cache->flags);
4539 cache->cached = false;
4540 if (ret > 0)
4541 ret = 0;
4542 return ret;
4543}
4544
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004545int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004546 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004547{
Josef Bacik975f84f2010-11-23 19:36:57 +00004548 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004549 u64 off = start;
4550 u64 max = start + len;
4551 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004552 u32 found_type;
4553 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004554 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004555 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004556 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004557 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004558 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004559 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004560 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004561 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004562 struct fiemap_cache cache = { 0 };
David Sterba5911c8f2019-05-15 15:31:04 +02004563 struct ulist *roots;
4564 struct ulist *tmp_ulist;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004565 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004566 u64 em_start = 0;
4567 u64 em_len = 0;
4568 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004569
4570 if (len == 0)
4571 return -EINVAL;
4572
Josef Bacik975f84f2010-11-23 19:36:57 +00004573 path = btrfs_alloc_path();
4574 if (!path)
4575 return -ENOMEM;
4576 path->leave_spinning = 1;
4577
David Sterba5911c8f2019-05-15 15:31:04 +02004578 roots = ulist_alloc(GFP_KERNEL);
4579 tmp_ulist = ulist_alloc(GFP_KERNEL);
4580 if (!roots || !tmp_ulist) {
4581 ret = -ENOMEM;
4582 goto out_free_ulist;
4583 }
4584
Jeff Mahoneyda170662016-06-15 09:22:56 -04004585 start = round_down(start, btrfs_inode_sectorsize(inode));
4586 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004587
Chris Masonec29ed52011-02-23 16:23:20 -05004588 /*
4589 * lookup the last file extent. We're not using i_size here
4590 * because there might be preallocation past i_size
4591 */
David Sterbaf85b7372017-01-20 14:54:07 +01004592 ret = btrfs_lookup_file_extent(NULL, root, path,
4593 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004594 if (ret < 0) {
4595 btrfs_free_path(path);
David Sterba5911c8f2019-05-15 15:31:04 +02004596 goto out_free_ulist;
Liu Bo2d324f52016-05-17 17:21:48 -07004597 } else {
4598 WARN_ON(!ret);
4599 if (ret == 1)
4600 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004601 }
Liu Bo2d324f52016-05-17 17:21:48 -07004602
Josef Bacik975f84f2010-11-23 19:36:57 +00004603 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004604 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004605 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004606
Chris Masonec29ed52011-02-23 16:23:20 -05004607 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004608 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004609 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004610 /* have to trust i_size as the end */
4611 last = (u64)-1;
4612 last_for_get_extent = isize;
4613 } else {
4614 /*
4615 * remember the start of the last extent. There are a
4616 * bunch of different factors that go into the length of the
4617 * extent, so its much less complex to remember where it started
4618 */
4619 last = found_key.offset;
4620 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004621 }
Liu Bofe09e162013-09-22 12:54:23 +08004622 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004623
Chris Masonec29ed52011-02-23 16:23:20 -05004624 /*
4625 * we might have some extents allocated but more delalloc past those
4626 * extents. so, we trust isize unless the start of the last extent is
4627 * beyond isize
4628 */
4629 if (last < isize) {
4630 last = (u64)-1;
4631 last_for_get_extent = isize;
4632 }
4633
David Sterbaff13db42015-12-03 14:30:40 +01004634 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004635 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004636
David Sterbae3350e12017-06-23 04:09:57 +02004637 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004638 if (!em)
4639 goto out;
4640 if (IS_ERR(em)) {
4641 ret = PTR_ERR(em);
4642 goto out;
4643 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004644
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004645 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004646 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004647
Chris Masonea8efc72011-03-08 11:54:40 -05004648 /* break if the extent we found is outside the range */
4649 if (em->start >= max || extent_map_end(em) < off)
4650 break;
4651
4652 /*
4653 * get_extent may return an extent that starts before our
4654 * requested range. We have to make sure the ranges
4655 * we return to fiemap always move forward and don't
4656 * overlap, so adjust the offsets here
4657 */
4658 em_start = max(em->start, off);
4659
4660 /*
4661 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004662 * for adjusting the disk offset below. Only do this if the
4663 * extent isn't compressed since our in ram offset may be past
4664 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004665 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004666 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4667 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004668 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004669 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004670 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004671 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4672 disko = em->block_start + offset_in_extent;
4673 else
4674 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004675
Chris Masonea8efc72011-03-08 11:54:40 -05004676 /*
4677 * bump off for our next call to get_extent
4678 */
4679 off = extent_map_end(em);
4680 if (off >= max)
4681 end = 1;
4682
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004683 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004684 end = 1;
4685 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004686 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004687 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4688 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004689 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004690 flags |= (FIEMAP_EXTENT_DELALLOC |
4691 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004692 } else if (fieinfo->fi_extents_max) {
4693 u64 bytenr = em->block_start -
4694 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004695
Liu Bofe09e162013-09-22 12:54:23 +08004696 /*
4697 * As btrfs supports shared space, this information
4698 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004699 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4700 * then we're just getting a count and we can skip the
4701 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004702 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004703 ret = btrfs_check_shared(root,
4704 btrfs_ino(BTRFS_I(inode)),
David Sterba5911c8f2019-05-15 15:31:04 +02004705 bytenr, roots, tmp_ulist);
Josef Bacikdc046b12014-09-10 16:20:45 -04004706 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004707 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004708 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004709 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004710 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004711 }
4712 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4713 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004714 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4715 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004716
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004717 free_extent_map(em);
4718 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004719 if ((em_start >= last) || em_len == (u64)-1 ||
4720 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004721 flags |= FIEMAP_EXTENT_LAST;
4722 end = 1;
4723 }
4724
Chris Masonec29ed52011-02-23 16:23:20 -05004725 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004726 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004727 if (IS_ERR(em)) {
4728 ret = PTR_ERR(em);
4729 goto out;
4730 }
4731 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004732 flags |= FIEMAP_EXTENT_LAST;
4733 end = 1;
4734 }
Qu Wenruo47518322017-04-07 10:43:15 +08004735 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4736 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004737 if (ret) {
4738 if (ret == 1)
4739 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004740 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004741 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004742 }
4743out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004744 if (!ret)
David Sterba5c5aff92019-03-20 11:29:46 +01004745 ret = emit_last_fiemap_cache(fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004746 free_extent_map(em);
4747out:
Liu Bofe09e162013-09-22 12:54:23 +08004748 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004749 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004750 &cached_state);
David Sterba5911c8f2019-05-15 15:31:04 +02004751
4752out_free_ulist:
4753 ulist_free(roots);
4754 ulist_free(tmp_ulist);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004755 return ret;
4756}
4757
Chris Mason727011e2010-08-06 13:21:20 -04004758static void __free_extent_buffer(struct extent_buffer *eb)
4759{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004760 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004761 kmem_cache_free(extent_buffer_cache, eb);
4762}
4763
Josef Bacika26e8c92014-03-28 17:07:27 -04004764int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004765{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004766 return (atomic_read(&eb->io_pages) ||
4767 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4768 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004769}
4770
Miao Xie897ca6e92010-10-26 20:57:29 -04004771/*
David Sterba55ac0132018-07-19 17:24:32 +02004772 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004773 */
David Sterba55ac0132018-07-19 17:24:32 +02004774static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004775{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004776 int i;
4777 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004778 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004779
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004780 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004781
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004782 num_pages = num_extent_pages(eb);
4783 for (i = 0; i < num_pages; i++) {
4784 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004785
Forrest Liu5d2361d2015-02-09 17:31:45 +08004786 if (!page)
4787 continue;
4788 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004789 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004790 /*
4791 * We do this since we'll remove the pages after we've
4792 * removed the eb from the radix tree, so we could race
4793 * and have this page now attached to the new eb. So
4794 * only clear page_private if it's still connected to
4795 * this eb.
4796 */
4797 if (PagePrivate(page) &&
4798 page->private == (unsigned long)eb) {
4799 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4800 BUG_ON(PageDirty(page));
4801 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004802 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004803 * We need to make sure we haven't be attached
4804 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004805 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004806 ClearPagePrivate(page);
4807 set_page_private(page, 0);
4808 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004809 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004810 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004811
4812 if (mapped)
4813 spin_unlock(&page->mapping->private_lock);
4814
Nicholas D Steeves01327612016-05-19 21:18:45 -04004815 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004816 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004817 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004818}
4819
4820/*
4821 * Helper for releasing the extent buffer.
4822 */
4823static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4824{
David Sterba55ac0132018-07-19 17:24:32 +02004825 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004826 __free_extent_buffer(eb);
4827}
4828
Josef Bacikf28491e2013-12-16 13:24:27 -05004829static struct extent_buffer *
4830__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004831 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004832{
4833 struct extent_buffer *eb = NULL;
4834
Michal Hockod1b5c562015-08-19 14:17:40 +02004835 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004836 eb->start = start;
4837 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004838 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004839 eb->bflags = 0;
4840 rwlock_init(&eb->lock);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004841 atomic_set(&eb->blocking_readers, 0);
4842 atomic_set(&eb->blocking_writers, 0);
David Sterbaed1b4ed2018-08-24 16:31:17 +02004843 eb->lock_nested = false;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004844 init_waitqueue_head(&eb->write_lock_wq);
4845 init_waitqueue_head(&eb->read_lock_wq);
4846
4847 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4848
4849 spin_lock_init(&eb->refs_lock);
4850 atomic_set(&eb->refs, 1);
4851 atomic_set(&eb->io_pages, 0);
4852
4853 /*
4854 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4855 */
4856 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4857 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4858 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4859
David Sterba843ccf92018-08-24 14:56:28 +02004860#ifdef CONFIG_BTRFS_DEBUG
4861 atomic_set(&eb->spinning_writers, 0);
David Sterbaafd495a2018-08-24 15:57:38 +02004862 atomic_set(&eb->spinning_readers, 0);
David Sterba5c9c7992018-08-24 16:15:51 +02004863 atomic_set(&eb->read_locks, 0);
David Sterbac79adfc2018-08-24 16:24:26 +02004864 atomic_set(&eb->write_locks, 0);
David Sterba843ccf92018-08-24 14:56:28 +02004865#endif
4866
Josef Bacikdb7f3432013-08-07 14:54:37 -04004867 return eb;
4868}
4869
4870struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4871{
David Sterbacc5e31a2018-03-01 18:20:27 +01004872 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004873 struct page *p;
4874 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004875 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004876
David Sterba3f556f72014-06-15 03:20:26 +02004877 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004878 if (new == NULL)
4879 return NULL;
4880
4881 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004882 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004883 if (!p) {
4884 btrfs_release_extent_buffer(new);
4885 return NULL;
4886 }
4887 attach_extent_buffer_page(new, p);
4888 WARN_ON(PageDirty(p));
4889 SetPageUptodate(p);
4890 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004891 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004892 }
4893
Josef Bacikdb7f3432013-08-07 14:54:37 -04004894 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004895 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004896
4897 return new;
4898}
4899
Omar Sandoval0f331222015-09-29 20:50:31 -07004900struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4901 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004902{
4903 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004904 int num_pages;
4905 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004906
David Sterba3f556f72014-06-15 03:20:26 +02004907 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004908 if (!eb)
4909 return NULL;
4910
David Sterba65ad0102018-06-29 10:56:49 +02004911 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004912 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004913 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004914 if (!eb->pages[i])
4915 goto err;
4916 }
4917 set_extent_buffer_uptodate(eb);
4918 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004919 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004920
4921 return eb;
4922err:
4923 for (; i > 0; i--)
4924 __free_page(eb->pages[i - 1]);
4925 __free_extent_buffer(eb);
4926 return NULL;
4927}
4928
Omar Sandoval0f331222015-09-29 20:50:31 -07004929struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004930 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004931{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004932 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004933}
4934
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004935static void check_buffer_tree_ref(struct extent_buffer *eb)
4936{
Chris Mason242e18c2013-01-29 17:49:37 -05004937 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004938 /* the ref bit is tricky. We have to make sure it is set
4939 * if we have the buffer dirty. Otherwise the
4940 * code to free a buffer can end up dropping a dirty
4941 * page
4942 *
4943 * Once the ref bit is set, it won't go away while the
4944 * buffer is dirty or in writeback, and it also won't
4945 * go away while we have the reference count on the
4946 * eb bumped.
4947 *
4948 * We can't just set the ref bit without bumping the
4949 * ref on the eb because free_extent_buffer might
4950 * see the ref bit and try to clear it. If this happens
4951 * free_extent_buffer might end up dropping our original
4952 * ref by mistake and freeing the page before we are able
4953 * to add one more ref.
4954 *
4955 * So bump the ref count first, then set the bit. If someone
4956 * beat us to it, drop the ref we added.
4957 */
Chris Mason242e18c2013-01-29 17:49:37 -05004958 refs = atomic_read(&eb->refs);
4959 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4960 return;
4961
Josef Bacik594831c2012-07-20 16:11:08 -04004962 spin_lock(&eb->refs_lock);
4963 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004964 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004965 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004966}
4967
Mel Gorman2457aec2014-06-04 16:10:31 -07004968static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4969 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004970{
David Sterbacc5e31a2018-03-01 18:20:27 +01004971 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004972
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004973 check_buffer_tree_ref(eb);
4974
David Sterba65ad0102018-06-29 10:56:49 +02004975 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004976 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004977 struct page *p = eb->pages[i];
4978
Mel Gorman2457aec2014-06-04 16:10:31 -07004979 if (p != accessed)
4980 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004981 }
4982}
4983
Josef Bacikf28491e2013-12-16 13:24:27 -05004984struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4985 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004986{
4987 struct extent_buffer *eb;
4988
4989 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004990 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004991 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004992 if (eb && atomic_inc_not_zero(&eb->refs)) {
4993 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004994 /*
4995 * Lock our eb's refs_lock to avoid races with
4996 * free_extent_buffer. When we get our eb it might be flagged
4997 * with EXTENT_BUFFER_STALE and another task running
4998 * free_extent_buffer might have seen that flag set,
4999 * eb->refs == 2, that the buffer isn't under IO (dirty and
5000 * writeback flags not set) and it's still in the tree (flag
5001 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
5002 * of decrementing the extent buffer's reference count twice.
5003 * So here we could race and increment the eb's reference count,
5004 * clear its stale flag, mark it as dirty and drop our reference
5005 * before the other task finishes executing free_extent_buffer,
5006 * which would later result in an attempt to free an extent
5007 * buffer that is dirty.
5008 */
5009 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
5010 spin_lock(&eb->refs_lock);
5011 spin_unlock(&eb->refs_lock);
5012 }
Mel Gorman2457aec2014-06-04 16:10:31 -07005013 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005014 return eb;
5015 }
5016 rcu_read_unlock();
5017
5018 return NULL;
5019}
5020
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005021#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5022struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005023 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005024{
5025 struct extent_buffer *eb, *exists = NULL;
5026 int ret;
5027
5028 eb = find_extent_buffer(fs_info, start);
5029 if (eb)
5030 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04005031 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005032 if (!eb)
5033 return NULL;
5034 eb->fs_info = fs_info;
5035again:
David Sterbae1860a72016-05-09 14:11:38 +02005036 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005037 if (ret)
5038 goto free_eb;
5039 spin_lock(&fs_info->buffer_lock);
5040 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005041 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005042 spin_unlock(&fs_info->buffer_lock);
5043 radix_tree_preload_end();
5044 if (ret == -EEXIST) {
5045 exists = find_extent_buffer(fs_info, start);
5046 if (exists)
5047 goto free_eb;
5048 else
5049 goto again;
5050 }
5051 check_buffer_tree_ref(eb);
5052 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
5053
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005054 return eb;
5055free_eb:
5056 btrfs_release_extent_buffer(eb);
5057 return exists;
5058}
5059#endif
5060
Josef Bacikf28491e2013-12-16 13:24:27 -05005061struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02005062 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05005063{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005064 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01005065 int num_pages;
5066 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005067 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005068 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005069 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05005070 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05005071 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05005072 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005073 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05005074
Jeff Mahoneyda170662016-06-15 09:22:56 -04005075 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07005076 btrfs_err(fs_info, "bad tree block start %llu", start);
5077 return ERR_PTR(-EINVAL);
5078 }
5079
Josef Bacikf28491e2013-12-16 13:24:27 -05005080 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005081 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04005082 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005083
David Sterba23d79d82014-06-15 02:55:29 +02005084 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04005085 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07005086 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05005087
David Sterba65ad0102018-06-29 10:56:49 +02005088 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04005089 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02005090 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07005091 if (!p) {
5092 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04005093 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005094 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005095
5096 spin_lock(&mapping->private_lock);
5097 if (PagePrivate(p)) {
5098 /*
5099 * We could have already allocated an eb for this page
5100 * and attached one so lets see if we can get a ref on
5101 * the existing eb, and if we can we know it's good and
5102 * we can just return that one, else we know we can just
5103 * overwrite page->private.
5104 */
5105 exists = (struct extent_buffer *)p->private;
5106 if (atomic_inc_not_zero(&exists->refs)) {
5107 spin_unlock(&mapping->private_lock);
5108 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005109 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005110 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005111 goto free_eb;
5112 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005113 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005114
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005115 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005116 * Do this so attach doesn't complain and we need to
5117 * drop the ref the old guy had.
5118 */
5119 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005120 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005121 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005122 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005123 attach_extent_buffer_page(eb, p);
5124 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005125 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005126 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005127 if (!PageUptodate(p))
5128 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005129
5130 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005131 * We can't unlock the pages just yet since the extent buffer
5132 * hasn't been properly inserted in the radix tree, this
5133 * opens a race with btree_releasepage which can free a page
5134 * while we are still filling in all pages for the buffer and
5135 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05005136 */
Chris Masond1310b22008-01-24 16:13:08 -05005137 }
5138 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005139 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005140again:
David Sterbae1860a72016-05-09 14:11:38 +02005141 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005142 if (ret) {
5143 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005144 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005145 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005146
Josef Bacikf28491e2013-12-16 13:24:27 -05005147 spin_lock(&fs_info->buffer_lock);
5148 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005149 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005150 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005151 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005152 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005153 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005154 if (exists)
5155 goto free_eb;
5156 else
Josef Bacik115391d2012-03-09 09:51:43 -05005157 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005158 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005159 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005160 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005161 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005162
5163 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005164 * Now it's safe to unlock the pages because any calls to
5165 * btree_releasepage will correctly detect that a page belongs to a
5166 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005167 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005168 for (i = 0; i < num_pages; i++)
5169 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005170 return eb;
5171
Chris Mason6af118ce2008-07-22 11:18:07 -04005172free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005173 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005174 for (i = 0; i < num_pages; i++) {
5175 if (eb->pages[i])
5176 unlock_page(eb->pages[i]);
5177 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005178
Miao Xie897ca6e92010-10-26 20:57:29 -04005179 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005180 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005181}
Chris Masond1310b22008-01-24 16:13:08 -05005182
Josef Bacik3083ee22012-03-09 16:01:49 -05005183static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5184{
5185 struct extent_buffer *eb =
5186 container_of(head, struct extent_buffer, rcu_head);
5187
5188 __free_extent_buffer(eb);
5189}
5190
David Sterbaf7a52a42013-04-26 14:56:29 +00005191static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005192{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005193 lockdep_assert_held(&eb->refs_lock);
5194
Josef Bacik3083ee22012-03-09 16:01:49 -05005195 WARN_ON(atomic_read(&eb->refs) == 0);
5196 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005197 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005198 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005199
Jan Schmidt815a51c2012-05-16 17:00:02 +02005200 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005201
Josef Bacikf28491e2013-12-16 13:24:27 -05005202 spin_lock(&fs_info->buffer_lock);
5203 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005204 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005205 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005206 } else {
5207 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005208 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005209
5210 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005211 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005212#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005213 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005214 __free_extent_buffer(eb);
5215 return 1;
5216 }
5217#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005218 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005219 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005220 }
5221 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005222
5223 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005224}
5225
Chris Masond1310b22008-01-24 16:13:08 -05005226void free_extent_buffer(struct extent_buffer *eb)
5227{
Chris Mason242e18c2013-01-29 17:49:37 -05005228 int refs;
5229 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005230 if (!eb)
5231 return;
5232
Chris Mason242e18c2013-01-29 17:49:37 -05005233 while (1) {
5234 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005235 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5236 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5237 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005238 break;
5239 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5240 if (old == refs)
5241 return;
5242 }
5243
Josef Bacik3083ee22012-03-09 16:01:49 -05005244 spin_lock(&eb->refs_lock);
5245 if (atomic_read(&eb->refs) == 2 &&
5246 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005247 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005248 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5249 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005250
Josef Bacik3083ee22012-03-09 16:01:49 -05005251 /*
5252 * I know this is terrible, but it's temporary until we stop tracking
5253 * the uptodate bits and such for the extent buffers.
5254 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005255 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005256}
Chris Masond1310b22008-01-24 16:13:08 -05005257
Josef Bacik3083ee22012-03-09 16:01:49 -05005258void free_extent_buffer_stale(struct extent_buffer *eb)
5259{
5260 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005261 return;
5262
Josef Bacik3083ee22012-03-09 16:01:49 -05005263 spin_lock(&eb->refs_lock);
5264 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5265
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005266 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005267 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5268 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005269 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005270}
5271
Chris Mason1d4284b2012-03-28 20:31:37 -04005272void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005273{
David Sterbacc5e31a2018-03-01 18:20:27 +01005274 int i;
5275 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005276 struct page *page;
5277
David Sterba65ad0102018-06-29 10:56:49 +02005278 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005279
5280 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005281 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005282 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005283 continue;
5284
Chris Masona61e6f22008-07-22 11:18:08 -04005285 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005286 WARN_ON(!PagePrivate(page));
5287
Chris Masond1310b22008-01-24 16:13:08 -05005288 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005289 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005290 if (!PageDirty(page))
5291 __xa_clear_mark(&page->mapping->i_pages,
5292 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005293 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005294 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005295 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005296 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005297 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005298}
Chris Masond1310b22008-01-24 16:13:08 -05005299
Liu Boabb57ef2018-09-14 01:44:42 +08005300bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005301{
David Sterbacc5e31a2018-03-01 18:20:27 +01005302 int i;
5303 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005304 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005305
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005306 check_buffer_tree_ref(eb);
5307
Chris Masonb9473432009-03-13 11:00:37 -04005308 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005309
David Sterba65ad0102018-06-29 10:56:49 +02005310 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005311 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005312 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5313
Liu Boabb57ef2018-09-14 01:44:42 +08005314 if (!was_dirty)
5315 for (i = 0; i < num_pages; i++)
5316 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005317
5318#ifdef CONFIG_BTRFS_DEBUG
5319 for (i = 0; i < num_pages; i++)
5320 ASSERT(PageDirty(eb->pages[i]));
5321#endif
5322
Chris Masonb9473432009-03-13 11:00:37 -04005323 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005324}
Chris Masond1310b22008-01-24 16:13:08 -05005325
David Sterba69ba3922015-12-03 13:08:59 +01005326void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005327{
David Sterbacc5e31a2018-03-01 18:20:27 +01005328 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005329 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005330 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005331
Chris Masonb4ce94d2009-02-04 09:25:08 -05005332 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005333 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005334 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005335 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005336 if (page)
5337 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005338 }
Chris Mason1259ab72008-05-12 13:39:03 -04005339}
5340
David Sterba09c25a82015-12-03 13:08:59 +01005341void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005342{
David Sterbacc5e31a2018-03-01 18:20:27 +01005343 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005344 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005345 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005346
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005347 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005348 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005349 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005350 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005351 SetPageUptodate(page);
5352 }
Chris Masond1310b22008-01-24 16:13:08 -05005353}
Chris Masond1310b22008-01-24 16:13:08 -05005354
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005355int read_extent_buffer_pages(struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005356{
David Sterbacc5e31a2018-03-01 18:20:27 +01005357 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005358 struct page *page;
5359 int err;
5360 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005361 int locked_pages = 0;
5362 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005363 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005364 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005365 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005366 unsigned long bio_flags = 0;
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005367 struct extent_io_tree *tree = &BTRFS_I(eb->fs_info->btree_inode)->io_tree;
Chris Masona86c12c2008-02-07 10:50:54 -05005368
Chris Masonb4ce94d2009-02-04 09:25:08 -05005369 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005370 return 0;
5371
David Sterba65ad0102018-06-29 10:56:49 +02005372 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005373 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005374 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005375 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005376 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005377 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005378 } else {
5379 lock_page(page);
5380 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005381 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005382 }
5383 /*
5384 * We need to firstly lock all pages to make sure that
5385 * the uptodate bit of our pages won't be affected by
5386 * clear_extent_buffer_uptodate().
5387 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005388 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005389 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005390 if (!PageUptodate(page)) {
5391 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005392 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005393 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005394 }
Liu Bo2571e732016-08-03 12:33:01 -07005395
Chris Masonce9adaa2008-04-09 16:28:12 -04005396 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005397 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005398 goto unlock_exit;
5399 }
5400
Filipe Manana656f30d2014-09-26 12:25:56 +01005401 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005402 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005403 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005404 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005405 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005406
Chris Masonce9adaa2008-04-09 16:28:12 -04005407 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005408 if (ret) {
5409 atomic_dec(&eb->io_pages);
5410 unlock_page(page);
5411 continue;
5412 }
5413
Chris Masonf1885912008-04-09 16:28:12 -04005414 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005415 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005416 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005417 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005418 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005419 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005420 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005421 /*
5422 * We use &bio in above __extent_read_full_page,
5423 * so we ensure that if it returns error, the
5424 * current page fails to add itself to bio and
5425 * it's been unlocked.
5426 *
5427 * We must dec io_pages by ourselves.
5428 */
5429 atomic_dec(&eb->io_pages);
5430 }
Chris Masond1310b22008-01-24 16:13:08 -05005431 } else {
5432 unlock_page(page);
5433 }
5434 }
5435
Jeff Mahoney355808c2011-10-03 23:23:14 -04005436 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005437 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005438 if (err)
5439 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005440 }
Chris Masona86c12c2008-02-07 10:50:54 -05005441
Arne Jansenbb82ab82011-06-10 14:06:53 +02005442 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005443 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005444
Josef Bacik8436ea912016-09-02 15:40:03 -04005445 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005446 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005447 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005448 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005449 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005450 }
Chris Masond3977122009-01-05 21:25:51 -05005451
Chris Masond1310b22008-01-24 16:13:08 -05005452 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005453
5454unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005455 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005456 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005457 page = eb->pages[locked_pages];
5458 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005459 }
5460 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005461}
Chris Masond1310b22008-01-24 16:13:08 -05005462
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005463void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5464 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005465{
5466 size_t cur;
5467 size_t offset;
5468 struct page *page;
5469 char *kaddr;
5470 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005471 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005472 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005473
Liu Bof716abd2017-08-09 11:10:16 -06005474 if (start + len > eb->len) {
5475 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5476 eb->start, eb->len, start, len);
5477 memset(dst, 0, len);
5478 return;
5479 }
Chris Masond1310b22008-01-24 16:13:08 -05005480
Johannes Thumshirn70730172018-12-05 15:23:03 +01005481 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005482
Chris Masond3977122009-01-05 21:25:51 -05005483 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005484 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005485
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005486 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005487 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005488 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005489
5490 dst += cur;
5491 len -= cur;
5492 offset = 0;
5493 i++;
5494 }
5495}
Chris Masond1310b22008-01-24 16:13:08 -05005496
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005497int read_extent_buffer_to_user(const struct extent_buffer *eb,
5498 void __user *dstv,
5499 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005500{
5501 size_t cur;
5502 size_t offset;
5503 struct page *page;
5504 char *kaddr;
5505 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005506 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005507 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005508 int ret = 0;
5509
5510 WARN_ON(start > eb->len);
5511 WARN_ON(start + len > eb->start + eb->len);
5512
Johannes Thumshirn70730172018-12-05 15:23:03 +01005513 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005514
5515 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005516 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005517
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005518 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005519 kaddr = page_address(page);
5520 if (copy_to_user(dst, kaddr + offset, cur)) {
5521 ret = -EFAULT;
5522 break;
5523 }
5524
5525 dst += cur;
5526 len -= cur;
5527 offset = 0;
5528 i++;
5529 }
5530
5531 return ret;
5532}
5533
Liu Bo415b35a2016-06-17 19:16:21 -07005534/*
5535 * return 0 if the item is found within a page.
5536 * return 1 if the item spans two pages.
5537 * return -EINVAL otherwise.
5538 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005539int map_private_extent_buffer(const struct extent_buffer *eb,
5540 unsigned long start, unsigned long min_len,
5541 char **map, unsigned long *map_start,
5542 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005543{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005544 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005545 char *kaddr;
5546 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005547 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005548 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005549 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005550 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005551
Liu Bof716abd2017-08-09 11:10:16 -06005552 if (start + min_len > eb->len) {
5553 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5554 eb->start, eb->len, start, min_len);
5555 return -EINVAL;
5556 }
5557
Chris Masond1310b22008-01-24 16:13:08 -05005558 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005559 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005560
5561 if (i == 0) {
5562 offset = start_offset;
5563 *map_start = 0;
5564 } else {
5565 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005566 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005567 }
Chris Masond3977122009-01-05 21:25:51 -05005568
David Sterbafb85fc92014-07-31 01:03:53 +02005569 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005570 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005571 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005572 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005573 return 0;
5574}
Chris Masond1310b22008-01-24 16:13:08 -05005575
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005576int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5577 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005578{
5579 size_t cur;
5580 size_t offset;
5581 struct page *page;
5582 char *kaddr;
5583 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005584 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005585 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005586 int ret = 0;
5587
5588 WARN_ON(start > eb->len);
5589 WARN_ON(start + len > eb->start + eb->len);
5590
Johannes Thumshirn70730172018-12-05 15:23:03 +01005591 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005592
Chris Masond3977122009-01-05 21:25:51 -05005593 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005594 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005595
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005596 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005597
Chris Masona6591712011-07-19 12:04:14 -04005598 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005599 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005600 if (ret)
5601 break;
5602
5603 ptr += cur;
5604 len -= cur;
5605 offset = 0;
5606 i++;
5607 }
5608 return ret;
5609}
Chris Masond1310b22008-01-24 16:13:08 -05005610
David Sterbaf157bf72016-11-09 17:43:38 +01005611void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5612 const void *srcv)
5613{
5614 char *kaddr;
5615
5616 WARN_ON(!PageUptodate(eb->pages[0]));
5617 kaddr = page_address(eb->pages[0]);
5618 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5619 BTRFS_FSID_SIZE);
5620}
5621
5622void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5623{
5624 char *kaddr;
5625
5626 WARN_ON(!PageUptodate(eb->pages[0]));
5627 kaddr = page_address(eb->pages[0]);
5628 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5629 BTRFS_FSID_SIZE);
5630}
5631
Chris Masond1310b22008-01-24 16:13:08 -05005632void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5633 unsigned long start, unsigned long len)
5634{
5635 size_t cur;
5636 size_t offset;
5637 struct page *page;
5638 char *kaddr;
5639 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005640 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005641 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005642
5643 WARN_ON(start > eb->len);
5644 WARN_ON(start + len > eb->start + eb->len);
5645
Johannes Thumshirn70730172018-12-05 15:23:03 +01005646 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005647
Chris Masond3977122009-01-05 21:25:51 -05005648 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005649 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005650 WARN_ON(!PageUptodate(page));
5651
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005652 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005653 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005654 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005655
5656 src += cur;
5657 len -= cur;
5658 offset = 0;
5659 i++;
5660 }
5661}
Chris Masond1310b22008-01-24 16:13:08 -05005662
David Sterbab159fa22016-11-08 18:09:03 +01005663void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5664 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005665{
5666 size_t cur;
5667 size_t offset;
5668 struct page *page;
5669 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005670 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005671 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005672
5673 WARN_ON(start > eb->len);
5674 WARN_ON(start + len > eb->start + eb->len);
5675
Johannes Thumshirn70730172018-12-05 15:23:03 +01005676 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005677
Chris Masond3977122009-01-05 21:25:51 -05005678 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005679 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005680 WARN_ON(!PageUptodate(page));
5681
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005682 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005683 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005684 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005685
5686 len -= cur;
5687 offset = 0;
5688 i++;
5689 }
5690}
Chris Masond1310b22008-01-24 16:13:08 -05005691
David Sterba58e80122016-11-08 18:30:31 +01005692void copy_extent_buffer_full(struct extent_buffer *dst,
5693 struct extent_buffer *src)
5694{
5695 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005696 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005697
5698 ASSERT(dst->len == src->len);
5699
David Sterba65ad0102018-06-29 10:56:49 +02005700 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005701 for (i = 0; i < num_pages; i++)
5702 copy_page(page_address(dst->pages[i]),
5703 page_address(src->pages[i]));
5704}
5705
Chris Masond1310b22008-01-24 16:13:08 -05005706void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5707 unsigned long dst_offset, unsigned long src_offset,
5708 unsigned long len)
5709{
5710 u64 dst_len = dst->len;
5711 size_t cur;
5712 size_t offset;
5713 struct page *page;
5714 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005715 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005716 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005717
5718 WARN_ON(src->len != dst_len);
5719
Johannes Thumshirn70730172018-12-05 15:23:03 +01005720 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005721
Chris Masond3977122009-01-05 21:25:51 -05005722 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005723 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005724 WARN_ON(!PageUptodate(page));
5725
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005726 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005727
Chris Masona6591712011-07-19 12:04:14 -04005728 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005729 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005730
5731 src_offset += cur;
5732 len -= cur;
5733 offset = 0;
5734 i++;
5735 }
5736}
Chris Masond1310b22008-01-24 16:13:08 -05005737
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005738/*
5739 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5740 * given bit number
5741 * @eb: the extent buffer
5742 * @start: offset of the bitmap item in the extent buffer
5743 * @nr: bit number
5744 * @page_index: return index of the page in the extent buffer that contains the
5745 * given bit number
5746 * @page_offset: return offset into the page given by page_index
5747 *
5748 * This helper hides the ugliness of finding the byte in an extent buffer which
5749 * contains a given bit.
5750 */
5751static inline void eb_bitmap_offset(struct extent_buffer *eb,
5752 unsigned long start, unsigned long nr,
5753 unsigned long *page_index,
5754 size_t *page_offset)
5755{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005756 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005757 size_t byte_offset = BIT_BYTE(nr);
5758 size_t offset;
5759
5760 /*
5761 * The byte we want is the offset of the extent buffer + the offset of
5762 * the bitmap item in the extent buffer + the offset of the byte in the
5763 * bitmap item.
5764 */
5765 offset = start_offset + start + byte_offset;
5766
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005767 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005768 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005769}
5770
5771/**
5772 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5773 * @eb: the extent buffer
5774 * @start: offset of the bitmap item in the extent buffer
5775 * @nr: bit number to test
5776 */
5777int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5778 unsigned long nr)
5779{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005780 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005781 struct page *page;
5782 unsigned long i;
5783 size_t offset;
5784
5785 eb_bitmap_offset(eb, start, nr, &i, &offset);
5786 page = eb->pages[i];
5787 WARN_ON(!PageUptodate(page));
5788 kaddr = page_address(page);
5789 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5790}
5791
5792/**
5793 * extent_buffer_bitmap_set - set an area of a bitmap
5794 * @eb: the extent buffer
5795 * @start: offset of the bitmap item in the extent buffer
5796 * @pos: bit number of the first bit
5797 * @len: number of bits to set
5798 */
5799void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5800 unsigned long pos, unsigned long len)
5801{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005802 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005803 struct page *page;
5804 unsigned long i;
5805 size_t offset;
5806 const unsigned int size = pos + len;
5807 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005808 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005809
5810 eb_bitmap_offset(eb, start, pos, &i, &offset);
5811 page = eb->pages[i];
5812 WARN_ON(!PageUptodate(page));
5813 kaddr = page_address(page);
5814
5815 while (len >= bits_to_set) {
5816 kaddr[offset] |= mask_to_set;
5817 len -= bits_to_set;
5818 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005819 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005820 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005821 offset = 0;
5822 page = eb->pages[++i];
5823 WARN_ON(!PageUptodate(page));
5824 kaddr = page_address(page);
5825 }
5826 }
5827 if (len) {
5828 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5829 kaddr[offset] |= mask_to_set;
5830 }
5831}
5832
5833
5834/**
5835 * extent_buffer_bitmap_clear - clear an area of a bitmap
5836 * @eb: the extent buffer
5837 * @start: offset of the bitmap item in the extent buffer
5838 * @pos: bit number of the first bit
5839 * @len: number of bits to clear
5840 */
5841void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5842 unsigned long pos, unsigned long len)
5843{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005844 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005845 struct page *page;
5846 unsigned long i;
5847 size_t offset;
5848 const unsigned int size = pos + len;
5849 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005850 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005851
5852 eb_bitmap_offset(eb, start, pos, &i, &offset);
5853 page = eb->pages[i];
5854 WARN_ON(!PageUptodate(page));
5855 kaddr = page_address(page);
5856
5857 while (len >= bits_to_clear) {
5858 kaddr[offset] &= ~mask_to_clear;
5859 len -= bits_to_clear;
5860 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005861 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005862 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005863 offset = 0;
5864 page = eb->pages[++i];
5865 WARN_ON(!PageUptodate(page));
5866 kaddr = page_address(page);
5867 }
5868 }
5869 if (len) {
5870 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5871 kaddr[offset] &= ~mask_to_clear;
5872 }
5873}
5874
Sergei Trofimovich33872062011-04-11 21:52:52 +00005875static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5876{
5877 unsigned long distance = (src > dst) ? src - dst : dst - src;
5878 return distance < len;
5879}
5880
Chris Masond1310b22008-01-24 16:13:08 -05005881static void copy_pages(struct page *dst_page, struct page *src_page,
5882 unsigned long dst_off, unsigned long src_off,
5883 unsigned long len)
5884{
Chris Masona6591712011-07-19 12:04:14 -04005885 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005886 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005887 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005888
Sergei Trofimovich33872062011-04-11 21:52:52 +00005889 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005890 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005891 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005892 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005893 if (areas_overlap(src_off, dst_off, len))
5894 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005895 }
Chris Masond1310b22008-01-24 16:13:08 -05005896
Chris Mason727011e2010-08-06 13:21:20 -04005897 if (must_memmove)
5898 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5899 else
5900 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005901}
5902
5903void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5904 unsigned long src_offset, unsigned long len)
5905{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005906 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005907 size_t cur;
5908 size_t dst_off_in_page;
5909 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005910 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005911 unsigned long dst_i;
5912 unsigned long src_i;
5913
5914 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005915 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005916 "memmove bogus src_offset %lu move len %lu dst len %lu",
5917 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005918 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005919 }
5920 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005921 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005922 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5923 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005924 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005925 }
5926
Chris Masond3977122009-01-05 21:25:51 -05005927 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01005928 dst_off_in_page = offset_in_page(start_offset + dst_offset);
5929 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005930
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005931 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5932 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005933
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005934 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005935 src_off_in_page));
5936 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005937 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005938
David Sterbafb85fc92014-07-31 01:03:53 +02005939 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005940 dst_off_in_page, src_off_in_page, cur);
5941
5942 src_offset += cur;
5943 dst_offset += cur;
5944 len -= cur;
5945 }
5946}
Chris Masond1310b22008-01-24 16:13:08 -05005947
5948void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5949 unsigned long src_offset, unsigned long len)
5950{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005951 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005952 size_t cur;
5953 size_t dst_off_in_page;
5954 size_t src_off_in_page;
5955 unsigned long dst_end = dst_offset + len - 1;
5956 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005957 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005958 unsigned long dst_i;
5959 unsigned long src_i;
5960
5961 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005962 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005963 "memmove bogus src_offset %lu move len %lu len %lu",
5964 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005965 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005966 }
5967 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005968 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005969 "memmove bogus dst_offset %lu move len %lu len %lu",
5970 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005971 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005972 }
Chris Mason727011e2010-08-06 13:21:20 -04005973 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005974 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5975 return;
5976 }
Chris Masond3977122009-01-05 21:25:51 -05005977 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005978 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5979 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005980
Johannes Thumshirn70730172018-12-05 15:23:03 +01005981 dst_off_in_page = offset_in_page(start_offset + dst_end);
5982 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05005983
5984 cur = min_t(unsigned long, len, src_off_in_page + 1);
5985 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005986 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005987 dst_off_in_page - cur + 1,
5988 src_off_in_page - cur + 1, cur);
5989
5990 dst_end -= cur;
5991 src_end -= cur;
5992 len -= cur;
5993 }
5994}
Chris Mason6af118ce2008-07-22 11:18:07 -04005995
David Sterbaf7a52a42013-04-26 14:56:29 +00005996int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005997{
Chris Mason6af118ce2008-07-22 11:18:07 -04005998 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005999
Miao Xie19fe0a82010-10-26 20:57:29 -04006000 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006001 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05006002 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04006003 */
Josef Bacik3083ee22012-03-09 16:01:49 -05006004 spin_lock(&page->mapping->private_lock);
6005 if (!PagePrivate(page)) {
6006 spin_unlock(&page->mapping->private_lock);
6007 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04006008 }
6009
Josef Bacik3083ee22012-03-09 16:01:49 -05006010 eb = (struct extent_buffer *)page->private;
6011 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04006012
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006013 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05006014 * This is a little awful but should be ok, we need to make sure that
6015 * the eb doesn't disappear out from under us while we're looking at
6016 * this page.
6017 */
6018 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006019 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05006020 spin_unlock(&eb->refs_lock);
6021 spin_unlock(&page->mapping->private_lock);
6022 return 0;
6023 }
6024 spin_unlock(&page->mapping->private_lock);
6025
Josef Bacik3083ee22012-03-09 16:01:49 -05006026 /*
6027 * If tree ref isn't set then we know the ref on this eb is a real ref,
6028 * so just return, this page will likely be freed soon anyway.
6029 */
6030 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
6031 spin_unlock(&eb->refs_lock);
6032 return 0;
6033 }
Josef Bacik3083ee22012-03-09 16:01:49 -05006034
David Sterbaf7a52a42013-04-26 14:56:29 +00006035 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04006036}