blob: 441f6c47cebdad8b6c776fd41d556b17fe3b1ccc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
David Sterbac1d7c512018-04-03 19:23:33 +02002
Chris Masond1310b22008-01-24 16:13:08 -05003#include <linux/bitops.h>
4#include <linux/slab.h>
5#include <linux/bio.h>
6#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/pagemap.h>
8#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05009#include <linux/spinlock.h>
10#include <linux/blkdev.h>
11#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050012#include <linux/writeback.h>
13#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070014#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060015#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050016#include "extent_io.h"
17#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040018#include "ctree.h"
19#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020020#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010021#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040022#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040023#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080024#include "backref.h"
David Sterba6af49db2017-06-23 04:09:57 +020025#include "disk-io.h"
Chris Masond1310b22008-01-24 16:13:08 -050026
Chris Masond1310b22008-01-24 16:13:08 -050027static struct kmem_cache *extent_state_cache;
28static struct kmem_cache *extent_buffer_cache;
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -040029static struct bio_set btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050030
Filipe Manana27a35072014-07-06 20:09:59 +010031static inline bool extent_state_in_tree(const struct extent_state *state)
32{
33 return !RB_EMPTY_NODE(&state->rb_node);
34}
35
Eric Sandeen6d49ba12013-04-22 16:12:31 +000036#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050037static LIST_HEAD(buffers);
38static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040039
Chris Masond3977122009-01-05 21:25:51 -050040static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000041
42static inline
43void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
44{
45 unsigned long flags;
46
47 spin_lock_irqsave(&leak_lock, flags);
48 list_add(new, head);
49 spin_unlock_irqrestore(&leak_lock, flags);
50}
51
52static inline
53void btrfs_leak_debug_del(struct list_head *entry)
54{
55 unsigned long flags;
56
57 spin_lock_irqsave(&leak_lock, flags);
58 list_del(entry);
59 spin_unlock_irqrestore(&leak_lock, flags);
60}
61
62static inline
63void btrfs_leak_debug_check(void)
64{
65 struct extent_state *state;
66 struct extent_buffer *eb;
67
68 while (!list_empty(&states)) {
69 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010070 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010071 state->start, state->end, state->state,
72 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020073 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000074 list_del(&state->leak_list);
75 kmem_cache_free(extent_state_cache, state);
76 }
77
78 while (!list_empty(&buffers)) {
79 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Liu Boaf2679e2018-01-25 11:02:48 -070080 pr_err("BTRFS: buffer leak start %llu len %lu refs %d bflags %lu\n",
81 eb->start, eb->len, atomic_read(&eb->refs), eb->bflags);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000082 list_del(&eb->leak_list);
83 kmem_cache_free(extent_buffer_cache, eb);
84 }
85}
David Sterba8d599ae2013-04-30 15:22:23 +000086
Josef Bacika5dee372013-12-13 10:02:44 -050087#define btrfs_debug_check_extent_io_range(tree, start, end) \
88 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000089static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050090 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000091{
Nikolay Borisov65a680f2018-11-01 14:09:49 +020092 struct inode *inode = tree->private_data;
93 u64 isize;
94
95 if (!inode || !is_data_inode(inode))
96 return;
97
98 isize = i_size_read(inode);
99 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
100 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
101 "%s: ino %llu isize %llu odd range [%llu,%llu]",
102 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
103 }
David Sterba8d599ae2013-04-30 15:22:23 +0000104}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000105#else
106#define btrfs_leak_debug_add(new, head) do {} while (0)
107#define btrfs_leak_debug_del(entry) do {} while (0)
108#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000109#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400110#endif
Chris Masond1310b22008-01-24 16:13:08 -0500111
Chris Masond1310b22008-01-24 16:13:08 -0500112struct tree_entry {
113 u64 start;
114 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500115 struct rb_node rb_node;
116};
117
118struct extent_page_data {
119 struct bio *bio;
120 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -0500121 /* tells writepage not to lock the state bits for this range
122 * it still does the unlocking
123 */
Chris Masonffbd5172009-04-20 15:50:09 -0400124 unsigned int extent_locked:1;
125
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600126 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400127 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500128};
129
David Sterba57599c72018-03-01 17:56:34 +0100130static int add_extent_changeset(struct extent_state *state, unsigned bits,
Qu Wenruod38ed272015-10-12 14:53:37 +0800131 struct extent_changeset *changeset,
132 int set)
133{
134 int ret;
135
136 if (!changeset)
David Sterba57599c72018-03-01 17:56:34 +0100137 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800138 if (set && (state->state & bits) == bits)
David Sterba57599c72018-03-01 17:56:34 +0100139 return 0;
Qu Wenruofefdc552015-10-12 15:35:38 +0800140 if (!set && (state->state & bits) == 0)
David Sterba57599c72018-03-01 17:56:34 +0100141 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800142 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100143 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800144 GFP_ATOMIC);
David Sterba57599c72018-03-01 17:56:34 +0100145 return ret;
Qu Wenruod38ed272015-10-12 14:53:37 +0800146}
147
Qu Wenruobb58eb92019-01-25 13:09:15 +0800148static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
149 unsigned long bio_flags)
150{
151 blk_status_t ret = 0;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800152 struct extent_io_tree *tree = bio->bi_private;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800153
154 bio->bi_private = NULL;
155
156 if (tree->ops)
157 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Nikolay Borisov50489a52019-04-10 19:46:04 +0300158 mirror_num, bio_flags);
Qu Wenruobb58eb92019-01-25 13:09:15 +0800159 else
160 btrfsic_submit_bio(bio);
161
162 return blk_status_to_errno(ret);
163}
164
Qu Wenruo30659762019-03-20 14:27:42 +0800165/* Cleanup unsubmitted bios */
166static void end_write_bio(struct extent_page_data *epd, int ret)
167{
168 if (epd->bio) {
169 epd->bio->bi_status = errno_to_blk_status(ret);
170 bio_endio(epd->bio);
171 epd->bio = NULL;
172 }
173}
174
Qu Wenruof4340622019-03-20 14:27:41 +0800175/*
176 * Submit bio from extent page data via submit_one_bio
177 *
178 * Return 0 if everything is OK.
179 * Return <0 for error.
180 */
181static int __must_check flush_write_bio(struct extent_page_data *epd)
Qu Wenruobb58eb92019-01-25 13:09:15 +0800182{
Qu Wenruof4340622019-03-20 14:27:41 +0800183 int ret = 0;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800184
Qu Wenruof4340622019-03-20 14:27:41 +0800185 if (epd->bio) {
Qu Wenruobb58eb92019-01-25 13:09:15 +0800186 ret = submit_one_bio(epd->bio, 0, 0);
Qu Wenruof4340622019-03-20 14:27:41 +0800187 /*
188 * Clean up of epd->bio is handled by its endio function.
189 * And endio is either triggered by successful bio execution
190 * or the error handler of submit bio hook.
191 * So at this point, no matter what happened, we don't need
192 * to clean up epd->bio.
193 */
Qu Wenruobb58eb92019-01-25 13:09:15 +0800194 epd->bio = NULL;
195 }
Qu Wenruof4340622019-03-20 14:27:41 +0800196 return ret;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800197}
David Sterbae2932ee2017-06-23 04:16:17 +0200198
Chris Masond1310b22008-01-24 16:13:08 -0500199int __init extent_io_init(void)
200{
David Sterba837e1972012-09-07 03:00:48 -0600201 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200202 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300203 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500204 if (!extent_state_cache)
205 return -ENOMEM;
206
David Sterba837e1972012-09-07 03:00:48 -0600207 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200208 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300209 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500210 if (!extent_buffer_cache)
211 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400212
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400213 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
214 offsetof(struct btrfs_io_bio, bio),
215 BIOSET_NEED_BVECS))
Chris Mason9be33952013-05-17 18:30:14 -0400216 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700217
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400218 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700219 goto free_bioset;
220
Chris Masond1310b22008-01-24 16:13:08 -0500221 return 0;
222
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700223free_bioset:
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400224 bioset_exit(&btrfs_bioset);
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700225
Chris Mason9be33952013-05-17 18:30:14 -0400226free_buffer_cache:
227 kmem_cache_destroy(extent_buffer_cache);
228 extent_buffer_cache = NULL;
229
Chris Masond1310b22008-01-24 16:13:08 -0500230free_state_cache:
231 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400232 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500233 return -ENOMEM;
234}
235
David Sterbae67c7182018-02-19 17:24:18 +0100236void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500237{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000238 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000239
240 /*
241 * Make sure all delayed rcu free are flushed before we
242 * destroy caches.
243 */
244 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800245 kmem_cache_destroy(extent_state_cache);
246 kmem_cache_destroy(extent_buffer_cache);
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400247 bioset_exit(&btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500248}
249
Qu Wenruoc258d6e2019-03-01 10:47:58 +0800250void extent_io_tree_init(struct btrfs_fs_info *fs_info,
Qu Wenruo43eb5f22019-03-01 10:47:59 +0800251 struct extent_io_tree *tree, unsigned int owner,
252 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500253{
Qu Wenruoc258d6e2019-03-01 10:47:58 +0800254 tree->fs_info = fs_info;
Eric Paris6bef4d32010-02-23 19:43:04 +0000255 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500256 tree->ops = NULL;
257 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500258 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400259 tree->private_data = private_data;
Qu Wenruo43eb5f22019-03-01 10:47:59 +0800260 tree->owner = owner;
Chris Masond1310b22008-01-24 16:13:08 -0500261}
Chris Masond1310b22008-01-24 16:13:08 -0500262
Nikolay Borisov41e7acd2019-03-25 14:31:24 +0200263void extent_io_tree_release(struct extent_io_tree *tree)
264{
265 spin_lock(&tree->lock);
266 /*
267 * Do a single barrier for the waitqueue_active check here, the state
268 * of the waitqueue should not change once extent_io_tree_release is
269 * called.
270 */
271 smp_mb();
272 while (!RB_EMPTY_ROOT(&tree->state)) {
273 struct rb_node *node;
274 struct extent_state *state;
275
276 node = rb_first(&tree->state);
277 state = rb_entry(node, struct extent_state, rb_node);
278 rb_erase(&state->rb_node, &tree->state);
279 RB_CLEAR_NODE(&state->rb_node);
280 /*
281 * btree io trees aren't supposed to have tasks waiting for
282 * changes in the flags of extent states ever.
283 */
284 ASSERT(!waitqueue_active(&state->wq));
285 free_extent_state(state);
286
287 cond_resched_lock(&tree->lock);
288 }
289 spin_unlock(&tree->lock);
290}
291
Christoph Hellwigb2950862008-12-02 09:54:17 -0500292static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500293{
294 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500295
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100296 /*
297 * The given mask might be not appropriate for the slab allocator,
298 * drop the unsupported bits
299 */
300 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500301 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400302 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500303 return state;
304 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100305 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100306 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000307 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200308 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500309 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100310 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500311 return state;
312}
Chris Masond1310b22008-01-24 16:13:08 -0500313
Chris Mason4845e442010-05-25 20:56:50 -0400314void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500315{
Chris Masond1310b22008-01-24 16:13:08 -0500316 if (!state)
317 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200318 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100319 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000320 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100321 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500322 kmem_cache_free(extent_state_cache, state);
323 }
324}
Chris Masond1310b22008-01-24 16:13:08 -0500325
Filipe Mananaf2071b22014-02-12 15:05:53 +0000326static struct rb_node *tree_insert(struct rb_root *root,
327 struct rb_node *search_start,
328 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000329 struct rb_node *node,
330 struct rb_node ***p_in,
331 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500332{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000333 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500334 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500335 struct tree_entry *entry;
336
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000337 if (p_in && parent_in) {
338 p = *p_in;
339 parent = *parent_in;
340 goto do_insert;
341 }
342
Filipe Mananaf2071b22014-02-12 15:05:53 +0000343 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500344 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500345 parent = *p;
346 entry = rb_entry(parent, struct tree_entry, rb_node);
347
348 if (offset < entry->start)
349 p = &(*p)->rb_left;
350 else if (offset > entry->end)
351 p = &(*p)->rb_right;
352 else
353 return parent;
354 }
355
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000356do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500357 rb_link_node(node, parent, p);
358 rb_insert_color(node, root);
359 return NULL;
360}
361
Chris Mason80ea96b2008-02-01 14:51:59 -0500362static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000363 struct rb_node **next_ret,
Nikolay Borisov352646c2019-01-30 16:51:00 +0200364 struct rb_node **prev_ret,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000365 struct rb_node ***p_ret,
366 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500367{
Chris Mason80ea96b2008-02-01 14:51:59 -0500368 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000369 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500370 struct rb_node *prev = NULL;
371 struct rb_node *orig_prev = NULL;
372 struct tree_entry *entry;
373 struct tree_entry *prev_entry = NULL;
374
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000375 while (*n) {
376 prev = *n;
377 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500378 prev_entry = entry;
379
380 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000381 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500382 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000383 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500384 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000385 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500386 }
387
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000388 if (p_ret)
389 *p_ret = n;
390 if (parent_ret)
391 *parent_ret = prev;
392
Nikolay Borisov352646c2019-01-30 16:51:00 +0200393 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500394 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500395 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500396 prev = rb_next(prev);
397 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
398 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200399 *next_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500400 prev = orig_prev;
401 }
402
Nikolay Borisov352646c2019-01-30 16:51:00 +0200403 if (prev_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500404 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500405 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500406 prev = rb_prev(prev);
407 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
408 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200409 *prev_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500410 }
411 return NULL;
412}
413
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000414static inline struct rb_node *
415tree_search_for_insert(struct extent_io_tree *tree,
416 u64 offset,
417 struct rb_node ***p_ret,
418 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500419{
Nikolay Borisov352646c2019-01-30 16:51:00 +0200420 struct rb_node *next= NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500421 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500422
Nikolay Borisov352646c2019-01-30 16:51:00 +0200423 ret = __etree_search(tree, offset, &next, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500424 if (!ret)
Nikolay Borisov352646c2019-01-30 16:51:00 +0200425 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500426 return ret;
427}
428
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000429static inline struct rb_node *tree_search(struct extent_io_tree *tree,
430 u64 offset)
431{
432 return tree_search_for_insert(tree, offset, NULL, NULL);
433}
434
Chris Masond1310b22008-01-24 16:13:08 -0500435/*
436 * utility function to look for merge candidates inside a given range.
437 * Any extents with matching state are merged together into a single
438 * extent in the tree. Extents with EXTENT_IO in their state field
439 * are not merged because the end_io handlers need to be able to do
440 * operations on them without sleeping (or doing allocations/splits).
441 *
442 * This should be called with the tree lock held.
443 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000444static void merge_state(struct extent_io_tree *tree,
445 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500446{
447 struct extent_state *other;
448 struct rb_node *other_node;
449
Nikolay Borisov88826792019-03-14 15:28:31 +0200450 if (state->state & (EXTENT_LOCKED | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000451 return;
Chris Masond1310b22008-01-24 16:13:08 -0500452
453 other_node = rb_prev(&state->rb_node);
454 if (other_node) {
455 other = rb_entry(other_node, struct extent_state, rb_node);
456 if (other->end == state->start - 1 &&
457 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200458 if (tree->private_data &&
459 is_data_inode(tree->private_data))
460 btrfs_merge_delalloc_extent(tree->private_data,
461 state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500462 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500463 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100464 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500465 free_extent_state(other);
466 }
467 }
468 other_node = rb_next(&state->rb_node);
469 if (other_node) {
470 other = rb_entry(other_node, struct extent_state, rb_node);
471 if (other->start == state->end + 1 &&
472 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200473 if (tree->private_data &&
474 is_data_inode(tree->private_data))
475 btrfs_merge_delalloc_extent(tree->private_data,
476 state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400477 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400478 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100479 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400480 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500481 }
482 }
Chris Masond1310b22008-01-24 16:13:08 -0500483}
484
Xiao Guangrong3150b692011-07-14 03:19:08 +0000485static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800486 struct extent_state *state, unsigned *bits,
487 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000488
Chris Masond1310b22008-01-24 16:13:08 -0500489/*
490 * insert an extent_state struct into the tree. 'bits' are set on the
491 * struct before it is inserted.
492 *
493 * This may return -EEXIST if the extent is already there, in which case the
494 * state struct is freed.
495 *
496 * The tree lock is not taken internally. This is a utility function and
497 * probably isn't what you want to call (see set/clear_extent_bit).
498 */
499static int insert_state(struct extent_io_tree *tree,
500 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000501 struct rb_node ***p,
502 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800503 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500504{
505 struct rb_node *node;
506
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000507 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500508 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200509 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500510 state->start = start;
511 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400512
Qu Wenruod38ed272015-10-12 14:53:37 +0800513 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000514
Filipe Mananaf2071b22014-02-12 15:05:53 +0000515 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500516 if (node) {
517 struct extent_state *found;
518 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400519 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200520 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500521 return -EEXIST;
522 }
523 merge_state(tree, state);
524 return 0;
525}
526
527/*
528 * split a given extent state struct in two, inserting the preallocated
529 * struct 'prealloc' as the newly created second half. 'split' indicates an
530 * offset inside 'orig' where it should be split.
531 *
532 * Before calling,
533 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
534 * are two extent state structs in the tree:
535 * prealloc: [orig->start, split - 1]
536 * orig: [ split, orig->end ]
537 *
538 * The tree locks are not taken by this function. They need to be held
539 * by the caller.
540 */
541static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
542 struct extent_state *prealloc, u64 split)
543{
544 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400545
Nikolay Borisovabbb55f2018-11-01 14:09:53 +0200546 if (tree->private_data && is_data_inode(tree->private_data))
547 btrfs_split_delalloc_extent(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400548
Chris Masond1310b22008-01-24 16:13:08 -0500549 prealloc->start = orig->start;
550 prealloc->end = split - 1;
551 prealloc->state = orig->state;
552 orig->start = split;
553
Filipe Mananaf2071b22014-02-12 15:05:53 +0000554 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
555 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500556 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500557 free_extent_state(prealloc);
558 return -EEXIST;
559 }
560 return 0;
561}
562
Li Zefancdc6a392012-03-12 16:39:48 +0800563static struct extent_state *next_state(struct extent_state *state)
564{
565 struct rb_node *next = rb_next(&state->rb_node);
566 if (next)
567 return rb_entry(next, struct extent_state, rb_node);
568 else
569 return NULL;
570}
571
Chris Masond1310b22008-01-24 16:13:08 -0500572/*
573 * utility function to clear some bits in an extent state struct.
Andrea Gelmini52042d82018-11-28 12:05:13 +0100574 * it will optionally wake up anyone waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500575 *
576 * If no bits are set on the state struct after clearing things, the
577 * struct is freed and removed from the tree
578 */
Li Zefancdc6a392012-03-12 16:39:48 +0800579static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
580 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800581 unsigned *bits, int wake,
582 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500583{
Li Zefancdc6a392012-03-12 16:39:48 +0800584 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100585 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100586 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500587
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400588 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500589 u64 range = state->end - state->start + 1;
590 WARN_ON(range > tree->dirty_bytes);
591 tree->dirty_bytes -= range;
592 }
Nikolay Borisova36bb5f2018-11-01 14:09:51 +0200593
594 if (tree->private_data && is_data_inode(tree->private_data))
595 btrfs_clear_delalloc_extent(tree->private_data, state, bits);
596
David Sterba57599c72018-03-01 17:56:34 +0100597 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
598 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400599 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500600 if (wake)
601 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400602 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800603 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100604 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500605 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100606 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500607 free_extent_state(state);
608 } else {
609 WARN_ON(1);
610 }
611 } else {
612 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800613 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500614 }
Li Zefancdc6a392012-03-12 16:39:48 +0800615 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500616}
617
Xiao Guangrong82337672011-04-20 06:44:57 +0000618static struct extent_state *
619alloc_extent_state_atomic(struct extent_state *prealloc)
620{
621 if (!prealloc)
622 prealloc = alloc_extent_state(GFP_ATOMIC);
623
624 return prealloc;
625}
626
Eric Sandeen48a3b632013-04-25 20:41:01 +0000627static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400628{
David Sterba05912a32018-07-18 19:23:45 +0200629 struct inode *inode = tree->private_data;
630
631 btrfs_panic(btrfs_sb(inode->i_sb), err,
632 "locking error: extent tree was modified by another thread while locked");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400633}
634
Chris Masond1310b22008-01-24 16:13:08 -0500635/*
636 * clear some bits on a range in the tree. This may require splitting
637 * or inserting elements in the tree, so the gfp mask is used to
638 * indicate which allocations or sleeping are allowed.
639 *
640 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
641 * the given range from the tree regardless of state (ie for truncate).
642 *
643 * the range [start, end] is inclusive.
644 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100645 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500646 */
David Sterba66b0c882017-10-31 16:30:47 +0100647int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800648 unsigned bits, int wake, int delete,
649 struct extent_state **cached_state,
650 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500651{
652 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400653 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500654 struct extent_state *prealloc = NULL;
655 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400656 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500657 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000658 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500659
Josef Bacika5dee372013-12-13 10:02:44 -0500660 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +0800661 trace_btrfs_clear_extent_bit(tree, start, end - start + 1, bits);
David Sterba8d599ae2013-04-30 15:22:23 +0000662
Josef Bacik7ee9e442013-06-21 16:37:03 -0400663 if (bits & EXTENT_DELALLOC)
664 bits |= EXTENT_NORESERVE;
665
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400666 if (delete)
667 bits |= ~EXTENT_CTLBITS;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400668
Nikolay Borisov88826792019-03-14 15:28:31 +0200669 if (bits & (EXTENT_LOCKED | EXTENT_BOUNDARY))
Josef Bacik2ac55d42010-02-03 19:33:23 +0000670 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500671again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800672 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000673 /*
674 * Don't care for allocation failure here because we might end
675 * up not needing the pre-allocated extent state at all, which
676 * is the case if we only have in the tree extent states that
677 * cover our input range and don't cover too any other range.
678 * If we end up needing a new extent state we allocate it later.
679 */
Chris Masond1310b22008-01-24 16:13:08 -0500680 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500681 }
682
Chris Masoncad321a2008-12-17 14:51:42 -0500683 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400684 if (cached_state) {
685 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000686
687 if (clear) {
688 *cached_state = NULL;
689 cached_state = NULL;
690 }
691
Filipe Manana27a35072014-07-06 20:09:59 +0100692 if (cached && extent_state_in_tree(cached) &&
693 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000694 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200695 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400696 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400697 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400698 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000699 if (clear)
700 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400701 }
Chris Masond1310b22008-01-24 16:13:08 -0500702 /*
703 * this search will find the extents that end after
704 * our range starts
705 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500706 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500707 if (!node)
708 goto out;
709 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400710hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500711 if (state->start > end)
712 goto out;
713 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400714 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500715
Liu Bo04493142012-02-16 18:34:37 +0800716 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800717 if (!(state->state & bits)) {
718 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800719 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800720 }
Liu Bo04493142012-02-16 18:34:37 +0800721
Chris Masond1310b22008-01-24 16:13:08 -0500722 /*
723 * | ---- desired range ---- |
724 * | state | or
725 * | ------------- state -------------- |
726 *
727 * We need to split the extent we found, and may flip
728 * bits on second half.
729 *
730 * If the extent we found extends past our range, we
731 * just split and search again. It'll get split again
732 * the next time though.
733 *
734 * If the extent we found is inside our range, we clear
735 * the desired bit on it.
736 */
737
738 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000739 prealloc = alloc_extent_state_atomic(prealloc);
740 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500741 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400742 if (err)
743 extent_io_tree_panic(tree, err);
744
Chris Masond1310b22008-01-24 16:13:08 -0500745 prealloc = NULL;
746 if (err)
747 goto out;
748 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800749 state = clear_state_bit(tree, state, &bits, wake,
750 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800751 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500752 }
753 goto search_again;
754 }
755 /*
756 * | ---- desired range ---- |
757 * | state |
758 * We need to split the extent, and clear the bit
759 * on the first half
760 */
761 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000762 prealloc = alloc_extent_state_atomic(prealloc);
763 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500764 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400765 if (err)
766 extent_io_tree_panic(tree, err);
767
Chris Masond1310b22008-01-24 16:13:08 -0500768 if (wake)
769 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400770
Qu Wenruofefdc552015-10-12 15:35:38 +0800771 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400772
Chris Masond1310b22008-01-24 16:13:08 -0500773 prealloc = NULL;
774 goto out;
775 }
Chris Mason42daec22009-09-23 19:51:09 -0400776
Qu Wenruofefdc552015-10-12 15:35:38 +0800777 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800778next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400779 if (last_end == (u64)-1)
780 goto out;
781 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800782 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800783 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500784
785search_again:
786 if (start > end)
787 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500788 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800789 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500790 cond_resched();
791 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200792
793out:
794 spin_unlock(&tree->lock);
795 if (prealloc)
796 free_extent_state(prealloc);
797
798 return 0;
799
Chris Masond1310b22008-01-24 16:13:08 -0500800}
Chris Masond1310b22008-01-24 16:13:08 -0500801
Jeff Mahoney143bede2012-03-01 14:56:26 +0100802static void wait_on_state(struct extent_io_tree *tree,
803 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500804 __releases(tree->lock)
805 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500806{
807 DEFINE_WAIT(wait);
808 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500809 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500810 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500811 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500812 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500813}
814
815/*
816 * waits for one or more bits to clear on a range in the state tree.
817 * The range [start, end] is inclusive.
818 * The tree lock is taken by this function
819 */
David Sterba41074882013-04-29 13:38:46 +0000820static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
821 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500822{
823 struct extent_state *state;
824 struct rb_node *node;
825
Josef Bacika5dee372013-12-13 10:02:44 -0500826 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000827
Chris Masoncad321a2008-12-17 14:51:42 -0500828 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500829again:
830 while (1) {
831 /*
832 * this search will find all the extents that end after
833 * our range starts
834 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500835 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100836process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500837 if (!node)
838 break;
839
840 state = rb_entry(node, struct extent_state, rb_node);
841
842 if (state->start > end)
843 goto out;
844
845 if (state->state & bits) {
846 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200847 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500848 wait_on_state(tree, state);
849 free_extent_state(state);
850 goto again;
851 }
852 start = state->end + 1;
853
854 if (start > end)
855 break;
856
Filipe Mananac50d3e72014-03-31 14:53:25 +0100857 if (!cond_resched_lock(&tree->lock)) {
858 node = rb_next(node);
859 goto process_node;
860 }
Chris Masond1310b22008-01-24 16:13:08 -0500861 }
862out:
Chris Masoncad321a2008-12-17 14:51:42 -0500863 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500864}
Chris Masond1310b22008-01-24 16:13:08 -0500865
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000866static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500867 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800868 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500869{
David Sterba9ee49a042015-01-14 19:52:13 +0100870 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100871 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400872
Nikolay Borisove06a1fc2018-11-01 14:09:50 +0200873 if (tree->private_data && is_data_inode(tree->private_data))
874 btrfs_set_delalloc_extent(tree->private_data, state, bits);
875
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400876 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500877 u64 range = state->end - state->start + 1;
878 tree->dirty_bytes += range;
879 }
David Sterba57599c72018-03-01 17:56:34 +0100880 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
881 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400882 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500883}
884
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100885static void cache_state_if_flags(struct extent_state *state,
886 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100887 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400888{
889 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100890 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400891 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200892 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400893 }
894 }
895}
896
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100897static void cache_state(struct extent_state *state,
898 struct extent_state **cached_ptr)
899{
900 return cache_state_if_flags(state, cached_ptr,
Nikolay Borisov88826792019-03-14 15:28:31 +0200901 EXTENT_LOCKED | EXTENT_BOUNDARY);
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100902}
903
Chris Masond1310b22008-01-24 16:13:08 -0500904/*
Chris Mason1edbb732009-09-02 13:24:36 -0400905 * set some bits on a range in the tree. This may require allocations or
906 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500907 *
Chris Mason1edbb732009-09-02 13:24:36 -0400908 * If any of the exclusive bits are set, this will fail with -EEXIST if some
909 * part of the range already has the desired bits set. The start of the
910 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500911 *
Chris Mason1edbb732009-09-02 13:24:36 -0400912 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500913 */
Chris Mason1edbb732009-09-02 13:24:36 -0400914
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100915static int __must_check
916__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100917 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000918 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800919 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500920{
921 struct extent_state *state;
922 struct extent_state *prealloc = NULL;
923 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000924 struct rb_node **p;
925 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500926 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500927 u64 last_start;
928 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400929
Josef Bacika5dee372013-12-13 10:02:44 -0500930 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +0800931 trace_btrfs_set_extent_bit(tree, start, end - start + 1, bits);
David Sterba8d599ae2013-04-30 15:22:23 +0000932
Chris Masond1310b22008-01-24 16:13:08 -0500933again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800934 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200935 /*
936 * Don't care for allocation failure here because we might end
937 * up not needing the pre-allocated extent state at all, which
938 * is the case if we only have in the tree extent states that
939 * cover our input range and don't cover too any other range.
940 * If we end up needing a new extent state we allocate it later.
941 */
Chris Masond1310b22008-01-24 16:13:08 -0500942 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500943 }
944
Chris Masoncad321a2008-12-17 14:51:42 -0500945 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400946 if (cached_state && *cached_state) {
947 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400948 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100949 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400950 node = &state->rb_node;
951 goto hit_next;
952 }
953 }
Chris Masond1310b22008-01-24 16:13:08 -0500954 /*
955 * this search will find all the extents that end after
956 * our range starts.
957 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000958 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500959 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000960 prealloc = alloc_extent_state_atomic(prealloc);
961 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000962 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800963 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400964 if (err)
965 extent_io_tree_panic(tree, err);
966
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000967 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500968 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500969 goto out;
970 }
Chris Masond1310b22008-01-24 16:13:08 -0500971 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400972hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500973 last_start = state->start;
974 last_end = state->end;
975
976 /*
977 * | ---- desired range ---- |
978 * | state |
979 *
980 * Just lock what we found and keep going
981 */
982 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400983 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500984 *failed_start = state->start;
985 err = -EEXIST;
986 goto out;
987 }
Chris Mason42daec22009-09-23 19:51:09 -0400988
Qu Wenruod38ed272015-10-12 14:53:37 +0800989 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400990 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500991 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400992 if (last_end == (u64)-1)
993 goto out;
994 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800995 state = next_state(state);
996 if (start < end && state && state->start == start &&
997 !need_resched())
998 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500999 goto search_again;
1000 }
1001
1002 /*
1003 * | ---- desired range ---- |
1004 * | state |
1005 * or
1006 * | ------------- state -------------- |
1007 *
1008 * We need to split the extent we found, and may flip bits on
1009 * second half.
1010 *
1011 * If the extent we found extends past our
1012 * range, we just split and search again. It'll get split
1013 * again the next time though.
1014 *
1015 * If the extent we found is inside our range, we set the
1016 * desired bit on it.
1017 */
1018 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -04001019 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001020 *failed_start = start;
1021 err = -EEXIST;
1022 goto out;
1023 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001024
1025 prealloc = alloc_extent_state_atomic(prealloc);
1026 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001027 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001028 if (err)
1029 extent_io_tree_panic(tree, err);
1030
Chris Masond1310b22008-01-24 16:13:08 -05001031 prealloc = NULL;
1032 if (err)
1033 goto out;
1034 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001035 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001036 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001037 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -04001038 if (last_end == (u64)-1)
1039 goto out;
1040 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001041 state = next_state(state);
1042 if (start < end && state && state->start == start &&
1043 !need_resched())
1044 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -05001045 }
1046 goto search_again;
1047 }
1048 /*
1049 * | ---- desired range ---- |
1050 * | state | or | state |
1051 *
1052 * There's a hole, we need to insert something in it and
1053 * ignore the extent we found.
1054 */
1055 if (state->start > start) {
1056 u64 this_end;
1057 if (end < last_start)
1058 this_end = end;
1059 else
Chris Masond3977122009-01-05 21:25:51 -05001060 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +00001061
1062 prealloc = alloc_extent_state_atomic(prealloc);
1063 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001064
1065 /*
1066 * Avoid to free 'prealloc' if it can be merged with
1067 * the later extent.
1068 */
Chris Masond1310b22008-01-24 16:13:08 -05001069 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001070 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001071 if (err)
1072 extent_io_tree_panic(tree, err);
1073
Chris Mason2c64c532009-09-02 15:04:12 -04001074 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001075 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001076 start = this_end + 1;
1077 goto search_again;
1078 }
1079 /*
1080 * | ---- desired range ---- |
1081 * | state |
1082 * We need to split the extent, and set the bit
1083 * on the first half
1084 */
1085 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001086 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001087 *failed_start = start;
1088 err = -EEXIST;
1089 goto out;
1090 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001091
1092 prealloc = alloc_extent_state_atomic(prealloc);
1093 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001094 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001095 if (err)
1096 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001097
Qu Wenruod38ed272015-10-12 14:53:37 +08001098 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001099 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001100 merge_state(tree, prealloc);
1101 prealloc = NULL;
1102 goto out;
1103 }
1104
David Sterbab5a4ba142016-04-27 01:02:15 +02001105search_again:
1106 if (start > end)
1107 goto out;
1108 spin_unlock(&tree->lock);
1109 if (gfpflags_allow_blocking(mask))
1110 cond_resched();
1111 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001112
1113out:
Chris Masoncad321a2008-12-17 14:51:42 -05001114 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001115 if (prealloc)
1116 free_extent_state(prealloc);
1117
1118 return err;
1119
Chris Masond1310b22008-01-24 16:13:08 -05001120}
Chris Masond1310b22008-01-24 16:13:08 -05001121
David Sterba41074882013-04-29 13:38:46 +00001122int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001123 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001124 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001125{
1126 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001127 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001128}
1129
1130
Josef Bacik462d6fa2011-09-26 13:56:12 -04001131/**
Liu Bo10983f22012-07-11 15:26:19 +08001132 * convert_extent_bit - convert all bits in a given range from one bit to
1133 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001134 * @tree: the io tree to search
1135 * @start: the start offset in bytes
1136 * @end: the end offset in bytes (inclusive)
1137 * @bits: the bits to set in this range
1138 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001139 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001140 *
1141 * This will go through and set bits for the given range. If any states exist
1142 * already in this range they are set with the given bit and cleared of the
1143 * clear_bits. This is only meant to be used by things that are mergeable, ie
1144 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1145 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001146 *
1147 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001148 */
1149int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001150 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001151 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001152{
1153 struct extent_state *state;
1154 struct extent_state *prealloc = NULL;
1155 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001156 struct rb_node **p;
1157 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001158 int err = 0;
1159 u64 last_start;
1160 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001161 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162
Josef Bacika5dee372013-12-13 10:02:44 -05001163 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +08001164 trace_btrfs_convert_extent_bit(tree, start, end - start + 1, bits,
1165 clear_bits);
David Sterba8d599ae2013-04-30 15:22:23 +00001166
Josef Bacik462d6fa2011-09-26 13:56:12 -04001167again:
David Sterba210aa272016-04-26 23:54:39 +02001168 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001169 /*
1170 * Best effort, don't worry if extent state allocation fails
1171 * here for the first iteration. We might have a cached state
1172 * that matches exactly the target range, in which case no
1173 * extent state allocations are needed. We'll only know this
1174 * after locking the tree.
1175 */
David Sterba210aa272016-04-26 23:54:39 +02001176 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001177 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001178 return -ENOMEM;
1179 }
1180
1181 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001182 if (cached_state && *cached_state) {
1183 state = *cached_state;
1184 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001185 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001186 node = &state->rb_node;
1187 goto hit_next;
1188 }
1189 }
1190
Josef Bacik462d6fa2011-09-26 13:56:12 -04001191 /*
1192 * this search will find all the extents that end after
1193 * our range starts.
1194 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001195 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001196 if (!node) {
1197 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001198 if (!prealloc) {
1199 err = -ENOMEM;
1200 goto out;
1201 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001202 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001203 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001204 if (err)
1205 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001206 cache_state(prealloc, cached_state);
1207 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001208 goto out;
1209 }
1210 state = rb_entry(node, struct extent_state, rb_node);
1211hit_next:
1212 last_start = state->start;
1213 last_end = state->end;
1214
1215 /*
1216 * | ---- desired range ---- |
1217 * | state |
1218 *
1219 * Just lock what we found and keep going
1220 */
1221 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001222 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001223 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001224 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001225 if (last_end == (u64)-1)
1226 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001227 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001228 if (start < end && state && state->start == start &&
1229 !need_resched())
1230 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001231 goto search_again;
1232 }
1233
1234 /*
1235 * | ---- desired range ---- |
1236 * | state |
1237 * or
1238 * | ------------- state -------------- |
1239 *
1240 * We need to split the extent we found, and may flip bits on
1241 * second half.
1242 *
1243 * If the extent we found extends past our
1244 * range, we just split and search again. It'll get split
1245 * again the next time though.
1246 *
1247 * If the extent we found is inside our range, we set the
1248 * desired bit on it.
1249 */
1250 if (state->start < start) {
1251 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001252 if (!prealloc) {
1253 err = -ENOMEM;
1254 goto out;
1255 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001256 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001257 if (err)
1258 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001259 prealloc = NULL;
1260 if (err)
1261 goto out;
1262 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001263 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001264 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001265 state = clear_state_bit(tree, state, &clear_bits, 0,
1266 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001267 if (last_end == (u64)-1)
1268 goto out;
1269 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001270 if (start < end && state && state->start == start &&
1271 !need_resched())
1272 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001273 }
1274 goto search_again;
1275 }
1276 /*
1277 * | ---- desired range ---- |
1278 * | state | or | state |
1279 *
1280 * There's a hole, we need to insert something in it and
1281 * ignore the extent we found.
1282 */
1283 if (state->start > start) {
1284 u64 this_end;
1285 if (end < last_start)
1286 this_end = end;
1287 else
1288 this_end = last_start - 1;
1289
1290 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001291 if (!prealloc) {
1292 err = -ENOMEM;
1293 goto out;
1294 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001295
1296 /*
1297 * Avoid to free 'prealloc' if it can be merged with
1298 * the later extent.
1299 */
1300 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001301 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001302 if (err)
1303 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001304 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001305 prealloc = NULL;
1306 start = this_end + 1;
1307 goto search_again;
1308 }
1309 /*
1310 * | ---- desired range ---- |
1311 * | state |
1312 * We need to split the extent, and set the bit
1313 * on the first half
1314 */
1315 if (state->start <= end && state->end > end) {
1316 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001317 if (!prealloc) {
1318 err = -ENOMEM;
1319 goto out;
1320 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001321
1322 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001323 if (err)
1324 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001325
Qu Wenruod38ed272015-10-12 14:53:37 +08001326 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001327 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001328 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001329 prealloc = NULL;
1330 goto out;
1331 }
1332
Josef Bacik462d6fa2011-09-26 13:56:12 -04001333search_again:
1334 if (start > end)
1335 goto out;
1336 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001337 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001338 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001339 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001340
1341out:
1342 spin_unlock(&tree->lock);
1343 if (prealloc)
1344 free_extent_state(prealloc);
1345
1346 return err;
1347}
1348
Chris Masond1310b22008-01-24 16:13:08 -05001349/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001350int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001351 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001352{
1353 /*
1354 * We don't support EXTENT_LOCKED yet, as current changeset will
1355 * record any bits changed, so for EXTENT_LOCKED case, it will
1356 * either fail with -EEXIST or changeset will record the whole
1357 * range.
1358 */
1359 BUG_ON(bits & EXTENT_LOCKED);
1360
David Sterba2c53b912016-04-26 23:54:39 +02001361 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001362 changeset);
1363}
1364
Nikolay Borisov4ca73652019-03-27 14:24:10 +02001365int set_extent_bits_nowait(struct extent_io_tree *tree, u64 start, u64 end,
1366 unsigned bits)
1367{
1368 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL,
1369 GFP_NOWAIT, NULL);
1370}
1371
Qu Wenruofefdc552015-10-12 15:35:38 +08001372int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1373 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001374 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001375{
1376 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001377 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001378}
1379
Qu Wenruofefdc552015-10-12 15:35:38 +08001380int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001381 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001382{
1383 /*
1384 * Don't support EXTENT_LOCKED case, same reason as
1385 * set_record_extent_bits().
1386 */
1387 BUG_ON(bits & EXTENT_LOCKED);
1388
David Sterbaf734c442016-04-26 23:54:39 +02001389 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001390 changeset);
1391}
1392
Chris Masond352ac62008-09-29 15:18:18 -04001393/*
1394 * either insert or lock state struct between start and end use mask to tell
1395 * us if waiting is desired.
1396 */
Chris Mason1edbb732009-09-02 13:24:36 -04001397int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001398 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001399{
1400 int err;
1401 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001402
Chris Masond1310b22008-01-24 16:13:08 -05001403 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001404 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001405 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001406 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001407 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001408 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1409 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001410 } else
Chris Masond1310b22008-01-24 16:13:08 -05001411 break;
Chris Masond1310b22008-01-24 16:13:08 -05001412 WARN_ON(start > end);
1413 }
1414 return err;
1415}
Chris Masond1310b22008-01-24 16:13:08 -05001416
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001417int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001418{
1419 int err;
1420 u64 failed_start;
1421
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001422 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001423 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001424 if (err == -EEXIST) {
1425 if (failed_start > start)
1426 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001427 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001428 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001429 }
Josef Bacik25179202008-10-29 14:49:05 -04001430 return 1;
1431}
Josef Bacik25179202008-10-29 14:49:05 -04001432
David Sterbabd1fa4f2015-12-03 13:08:59 +01001433void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001434{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001435 unsigned long index = start >> PAGE_SHIFT;
1436 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001437 struct page *page;
1438
1439 while (index <= end_index) {
1440 page = find_get_page(inode->i_mapping, index);
1441 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1442 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001443 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001444 index++;
1445 }
Chris Mason4adaa612013-03-26 13:07:00 -04001446}
1447
David Sterbaf6311572015-12-03 13:08:59 +01001448void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001449{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001450 unsigned long index = start >> PAGE_SHIFT;
1451 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001452 struct page *page;
1453
1454 while (index <= end_index) {
1455 page = find_get_page(inode->i_mapping, index);
1456 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001457 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001458 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001459 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001460 index++;
1461 }
Chris Mason4adaa612013-03-26 13:07:00 -04001462}
1463
Chris Masond352ac62008-09-29 15:18:18 -04001464/* find the first state struct with 'bits' set after 'start', and
1465 * return it. tree->lock must be held. NULL will returned if
1466 * nothing was found after 'start'
1467 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001468static struct extent_state *
1469find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001470 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001471{
1472 struct rb_node *node;
1473 struct extent_state *state;
1474
1475 /*
1476 * this search will find all the extents that end after
1477 * our range starts.
1478 */
1479 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001480 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001481 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001482
Chris Masond3977122009-01-05 21:25:51 -05001483 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001484 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001485 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001486 return state;
Chris Masond3977122009-01-05 21:25:51 -05001487
Chris Masond7fc6402008-02-18 12:12:38 -05001488 node = rb_next(node);
1489 if (!node)
1490 break;
1491 }
1492out:
1493 return NULL;
1494}
Chris Masond7fc6402008-02-18 12:12:38 -05001495
Chris Masond352ac62008-09-29 15:18:18 -04001496/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001497 * find the first offset in the io tree with 'bits' set. zero is
1498 * returned if we find something, and *start_ret and *end_ret are
1499 * set to reflect the state struct that was found.
1500 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001501 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001502 */
1503int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001504 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001505 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001506{
1507 struct extent_state *state;
1508 int ret = 1;
1509
1510 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001511 if (cached_state && *cached_state) {
1512 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001513 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001514 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001515 if (state->state & bits)
1516 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001517 }
1518 free_extent_state(*cached_state);
1519 *cached_state = NULL;
1520 goto out;
1521 }
1522 free_extent_state(*cached_state);
1523 *cached_state = NULL;
1524 }
1525
Xiao Guangrong69261c42011-07-14 03:19:45 +00001526 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001527got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001528 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001529 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001530 *start_ret = state->start;
1531 *end_ret = state->end;
1532 ret = 0;
1533 }
Josef Bacike6138872012-09-27 17:07:30 -04001534out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001535 spin_unlock(&tree->lock);
1536 return ret;
1537}
1538
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001539/**
1540 * find_first_clear_extent_bit - finds the first range that has @bits not set
1541 * and that starts after @start
1542 *
1543 * @tree - the tree to search
1544 * @start - the offset at/after which the found extent should start
1545 * @start_ret - records the beginning of the range
1546 * @end_ret - records the end of the range (inclusive)
1547 * @bits - the set of bits which must be unset
1548 *
1549 * Since unallocated range is also considered one which doesn't have the bits
1550 * set it's possible that @end_ret contains -1, this happens in case the range
1551 * spans (last_range_end, end of device]. In this case it's up to the caller to
1552 * trim @end_ret to the appropriate size.
1553 */
1554void find_first_clear_extent_bit(struct extent_io_tree *tree, u64 start,
1555 u64 *start_ret, u64 *end_ret, unsigned bits)
1556{
1557 struct extent_state *state;
1558 struct rb_node *node, *prev = NULL, *next;
1559
1560 spin_lock(&tree->lock);
1561
1562 /* Find first extent with bits cleared */
1563 while (1) {
1564 node = __etree_search(tree, start, &next, &prev, NULL, NULL);
1565 if (!node) {
1566 node = next;
1567 if (!node) {
1568 /*
1569 * We are past the last allocated chunk,
1570 * set start at the end of the last extent. The
1571 * device alloc tree should never be empty so
1572 * prev is always set.
1573 */
1574 ASSERT(prev);
1575 state = rb_entry(prev, struct extent_state, rb_node);
1576 *start_ret = state->end + 1;
1577 *end_ret = -1;
1578 goto out;
1579 }
1580 }
1581 state = rb_entry(node, struct extent_state, rb_node);
1582 if (in_range(start, state->start, state->end - state->start + 1) &&
1583 (state->state & bits)) {
1584 start = state->end + 1;
1585 } else {
1586 *start_ret = start;
1587 break;
1588 }
1589 }
1590
1591 /*
1592 * Find the longest stretch from start until an entry which has the
1593 * bits set
1594 */
1595 while (1) {
1596 state = rb_entry(node, struct extent_state, rb_node);
1597 if (state->end >= start && !(state->state & bits)) {
1598 *end_ret = state->end;
1599 } else {
1600 *end_ret = state->start - 1;
1601 break;
1602 }
1603
1604 node = rb_next(node);
1605 if (!node)
1606 break;
1607 }
1608out:
1609 spin_unlock(&tree->lock);
1610}
1611
Xiao Guangrong69261c42011-07-14 03:19:45 +00001612/*
Chris Masond352ac62008-09-29 15:18:18 -04001613 * find a contiguous range of bytes in the file marked as delalloc, not
1614 * more than 'max_bytes'. start and end are used to return the range,
1615 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001616 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001617 */
Lu Fengqi3522e902018-11-29 11:33:38 +08001618static noinline bool find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001619 u64 *start, u64 *end, u64 max_bytes,
1620 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001621{
1622 struct rb_node *node;
1623 struct extent_state *state;
1624 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001625 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001626 u64 total_bytes = 0;
1627
Chris Masoncad321a2008-12-17 14:51:42 -05001628 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001629
Chris Masond1310b22008-01-24 16:13:08 -05001630 /*
1631 * this search will find all the extents that end after
1632 * our range starts.
1633 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001634 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001635 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001636 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001637 goto out;
1638 }
1639
Chris Masond3977122009-01-05 21:25:51 -05001640 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001641 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001642 if (found && (state->start != cur_start ||
1643 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001644 goto out;
1645 }
1646 if (!(state->state & EXTENT_DELALLOC)) {
1647 if (!found)
1648 *end = state->end;
1649 goto out;
1650 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001651 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001652 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001653 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001654 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001655 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001656 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001657 *end = state->end;
1658 cur_start = state->end + 1;
1659 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001660 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001661 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001662 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001663 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001664 break;
1665 }
1666out:
Chris Masoncad321a2008-12-17 14:51:42 -05001667 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001668 return found;
1669}
1670
Liu Boda2c7002017-02-10 16:41:05 +01001671static int __process_pages_contig(struct address_space *mapping,
1672 struct page *locked_page,
1673 pgoff_t start_index, pgoff_t end_index,
1674 unsigned long page_ops, pgoff_t *index_ret);
1675
Jeff Mahoney143bede2012-03-01 14:56:26 +01001676static noinline void __unlock_for_delalloc(struct inode *inode,
1677 struct page *locked_page,
1678 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001679{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001680 unsigned long index = start >> PAGE_SHIFT;
1681 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001682
Liu Bo76c00212017-02-10 16:42:14 +01001683 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001684 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001685 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001686
Liu Bo76c00212017-02-10 16:42:14 +01001687 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1688 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001689}
1690
1691static noinline int lock_delalloc_pages(struct inode *inode,
1692 struct page *locked_page,
1693 u64 delalloc_start,
1694 u64 delalloc_end)
1695{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001696 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001697 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001698 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001699 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001700
Liu Bo76c00212017-02-10 16:42:14 +01001701 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001702 if (index == locked_page->index && index == end_index)
1703 return 0;
1704
Liu Bo76c00212017-02-10 16:42:14 +01001705 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1706 end_index, PAGE_LOCK, &index_ret);
1707 if (ret == -EAGAIN)
1708 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1709 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001710 return ret;
1711}
1712
1713/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001714 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1715 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001716 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001717 * Return: true if we find something
1718 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001719 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001720EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001721noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001722 struct extent_io_tree *tree,
1723 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001724 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001725{
Nikolay Borisov917aace2018-10-26 14:43:20 +03001726 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001727 u64 delalloc_start;
1728 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001729 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001730 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001731 int ret;
1732 int loops = 0;
1733
1734again:
1735 /* step one, find a bunch of delalloc bytes starting at start */
1736 delalloc_start = *start;
1737 delalloc_end = 0;
1738 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001739 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001740 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001741 *start = delalloc_start;
1742 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001743 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001744 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001745 }
1746
1747 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001748 * start comes from the offset of locked_page. We have to lock
1749 * pages in order, so we can't process delalloc bytes before
1750 * locked_page
1751 */
Chris Masond3977122009-01-05 21:25:51 -05001752 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001753 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001754
1755 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001756 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001757 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001758 if (delalloc_end + 1 - delalloc_start > max_bytes)
1759 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001760
Chris Masonc8b97812008-10-29 14:49:59 -04001761 /* step two, lock all the pages after the page that has start */
1762 ret = lock_delalloc_pages(inode, locked_page,
1763 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001764 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001765 if (ret == -EAGAIN) {
1766 /* some of the pages are gone, lets avoid looping by
1767 * shortening the size of the delalloc range we're searching
1768 */
Chris Mason9655d292009-09-02 15:22:30 -04001769 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001770 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001771 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001772 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001773 loops = 1;
1774 goto again;
1775 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001776 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001777 goto out_failed;
1778 }
1779 }
Chris Masonc8b97812008-10-29 14:49:59 -04001780
1781 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001782 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001783
1784 /* then test to make sure it is all still delalloc */
1785 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001786 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001787 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001788 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001789 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001790 __unlock_for_delalloc(inode, locked_page,
1791 delalloc_start, delalloc_end);
1792 cond_resched();
1793 goto again;
1794 }
Chris Mason9655d292009-09-02 15:22:30 -04001795 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001796 *start = delalloc_start;
1797 *end = delalloc_end;
1798out_failed:
1799 return found;
1800}
1801
Liu Boda2c7002017-02-10 16:41:05 +01001802static int __process_pages_contig(struct address_space *mapping,
1803 struct page *locked_page,
1804 pgoff_t start_index, pgoff_t end_index,
1805 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001806{
Liu Bo873695b2017-02-02 17:49:22 -08001807 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001808 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001809 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001810 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001811 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001812 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001813 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001814
Liu Boda2c7002017-02-10 16:41:05 +01001815 if (page_ops & PAGE_LOCK) {
1816 ASSERT(page_ops == PAGE_LOCK);
1817 ASSERT(index_ret && *index_ret == start_index);
1818 }
1819
Filipe Manana704de492014-10-06 22:14:22 +01001820 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001821 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001822
Chris Masond3977122009-01-05 21:25:51 -05001823 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001824 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001825 min_t(unsigned long,
1826 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001827 if (ret == 0) {
1828 /*
1829 * Only if we're going to lock these pages,
1830 * can we find nothing at @index.
1831 */
1832 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001833 err = -EAGAIN;
1834 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001835 }
Chris Mason8b62b722009-09-02 16:53:46 -04001836
Liu Boda2c7002017-02-10 16:41:05 +01001837 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001838 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001839 SetPagePrivate2(pages[i]);
1840
Chris Masonc8b97812008-10-29 14:49:59 -04001841 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001842 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001843 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001844 continue;
1845 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001846 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001847 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001848 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001849 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001850 if (page_ops & PAGE_SET_ERROR)
1851 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001852 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001853 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001854 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001855 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001856 if (page_ops & PAGE_LOCK) {
1857 lock_page(pages[i]);
1858 if (!PageDirty(pages[i]) ||
1859 pages[i]->mapping != mapping) {
1860 unlock_page(pages[i]);
1861 put_page(pages[i]);
1862 err = -EAGAIN;
1863 goto out;
1864 }
1865 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001866 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001867 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001868 }
1869 nr_pages -= ret;
1870 index += ret;
1871 cond_resched();
1872 }
Liu Boda2c7002017-02-10 16:41:05 +01001873out:
1874 if (err && index_ret)
1875 *index_ret = start_index + pages_locked - 1;
1876 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001877}
Chris Masonc8b97812008-10-29 14:49:59 -04001878
Liu Bo873695b2017-02-02 17:49:22 -08001879void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1880 u64 delalloc_end, struct page *locked_page,
1881 unsigned clear_bits,
1882 unsigned long page_ops)
1883{
1884 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001885 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001886
1887 __process_pages_contig(inode->i_mapping, locked_page,
1888 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001889 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001890}
1891
Chris Masond352ac62008-09-29 15:18:18 -04001892/*
1893 * count the number of bytes in the tree that have a given bit(s)
1894 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1895 * cached. The total number found is returned.
1896 */
Chris Masond1310b22008-01-24 16:13:08 -05001897u64 count_range_bits(struct extent_io_tree *tree,
1898 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001899 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001900{
1901 struct rb_node *node;
1902 struct extent_state *state;
1903 u64 cur_start = *start;
1904 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001905 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001906 int found = 0;
1907
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301908 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001909 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001910
Chris Masoncad321a2008-12-17 14:51:42 -05001911 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001912 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1913 total_bytes = tree->dirty_bytes;
1914 goto out;
1915 }
1916 /*
1917 * this search will find all the extents that end after
1918 * our range starts.
1919 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001920 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001921 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001922 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001923
Chris Masond3977122009-01-05 21:25:51 -05001924 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001925 state = rb_entry(node, struct extent_state, rb_node);
1926 if (state->start > search_end)
1927 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001928 if (contig && found && state->start > last + 1)
1929 break;
1930 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001931 total_bytes += min(search_end, state->end) + 1 -
1932 max(cur_start, state->start);
1933 if (total_bytes >= max_bytes)
1934 break;
1935 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001936 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001937 found = 1;
1938 }
Chris Masonec29ed52011-02-23 16:23:20 -05001939 last = state->end;
1940 } else if (contig && found) {
1941 break;
Chris Masond1310b22008-01-24 16:13:08 -05001942 }
1943 node = rb_next(node);
1944 if (!node)
1945 break;
1946 }
1947out:
Chris Masoncad321a2008-12-17 14:51:42 -05001948 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001949 return total_bytes;
1950}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001951
Chris Masond352ac62008-09-29 15:18:18 -04001952/*
1953 * set the private field for a given byte offset in the tree. If there isn't
1954 * an extent_state there already, this does nothing.
1955 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001956static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001957 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001958{
1959 struct rb_node *node;
1960 struct extent_state *state;
1961 int ret = 0;
1962
Chris Masoncad321a2008-12-17 14:51:42 -05001963 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001964 /*
1965 * this search will find all the extents that end after
1966 * our range starts.
1967 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001968 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001969 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001970 ret = -ENOENT;
1971 goto out;
1972 }
1973 state = rb_entry(node, struct extent_state, rb_node);
1974 if (state->start != start) {
1975 ret = -ENOENT;
1976 goto out;
1977 }
David Sterba47dc1962016-02-11 13:24:13 +01001978 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001979out:
Chris Masoncad321a2008-12-17 14:51:42 -05001980 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001981 return ret;
1982}
1983
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001984static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001985 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001986{
1987 struct rb_node *node;
1988 struct extent_state *state;
1989 int ret = 0;
1990
Chris Masoncad321a2008-12-17 14:51:42 -05001991 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001992 /*
1993 * this search will find all the extents that end after
1994 * our range starts.
1995 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001996 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001997 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001998 ret = -ENOENT;
1999 goto out;
2000 }
2001 state = rb_entry(node, struct extent_state, rb_node);
2002 if (state->start != start) {
2003 ret = -ENOENT;
2004 goto out;
2005 }
David Sterba47dc1962016-02-11 13:24:13 +01002006 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002007out:
Chris Masoncad321a2008-12-17 14:51:42 -05002008 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002009 return ret;
2010}
2011
2012/*
2013 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05002014 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05002015 * has the bits set. Otherwise, 1 is returned if any bit in the
2016 * range is found set.
2017 */
2018int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01002019 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05002020{
2021 struct extent_state *state = NULL;
2022 struct rb_node *node;
2023 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002024
Chris Masoncad321a2008-12-17 14:51:42 -05002025 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002026 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002027 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002028 node = &cached->rb_node;
2029 else
2030 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002031 while (node && start <= end) {
2032 state = rb_entry(node, struct extent_state, rb_node);
2033
2034 if (filled && state->start > start) {
2035 bitset = 0;
2036 break;
2037 }
2038
2039 if (state->start > end)
2040 break;
2041
2042 if (state->state & bits) {
2043 bitset = 1;
2044 if (!filled)
2045 break;
2046 } else if (filled) {
2047 bitset = 0;
2048 break;
2049 }
Chris Mason46562ce2009-09-23 20:23:16 -04002050
2051 if (state->end == (u64)-1)
2052 break;
2053
Chris Masond1310b22008-01-24 16:13:08 -05002054 start = state->end + 1;
2055 if (start > end)
2056 break;
2057 node = rb_next(node);
2058 if (!node) {
2059 if (filled)
2060 bitset = 0;
2061 break;
2062 }
2063 }
Chris Masoncad321a2008-12-17 14:51:42 -05002064 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002065 return bitset;
2066}
Chris Masond1310b22008-01-24 16:13:08 -05002067
2068/*
2069 * helper function to set a given page up to date if all the
2070 * extents in the tree for that page are up to date
2071 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002072static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002073{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002074 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002075 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002076 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002077 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002078}
2079
Josef Bacik7870d082017-05-05 11:57:15 -04002080int free_io_failure(struct extent_io_tree *failure_tree,
2081 struct extent_io_tree *io_tree,
2082 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002083{
2084 int ret;
2085 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002086
David Sterba47dc1962016-02-11 13:24:13 +01002087 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002088 ret = clear_extent_bits(failure_tree, rec->start,
2089 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002090 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091 if (ret)
2092 err = ret;
2093
Josef Bacik7870d082017-05-05 11:57:15 -04002094 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05002095 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002096 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05002097 if (ret && !err)
2098 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099
2100 kfree(rec);
2101 return err;
2102}
2103
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104/*
2105 * this bypasses the standard btrfs submit functions deliberately, as
2106 * the standard behavior is to write all copies in a raid setup. here we only
2107 * want to write the one bad copy. so we do the mapping for ourselves and issue
2108 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002109 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002110 * actually prevents the read that triggered the error from finishing.
2111 * currently, there can be no more than two copies of every data bit. thus,
2112 * exactly one rewrite is required.
2113 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04002114int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
2115 u64 length, u64 logical, struct page *page,
2116 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002117{
2118 struct bio *bio;
2119 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002120 u64 map_length = 0;
2121 u64 sector;
2122 struct btrfs_bio *bbio = NULL;
2123 int ret;
2124
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002125 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002126 BUG_ON(!mirror_num);
2127
David Sterbac5e4c3d2017-06-12 17:29:41 +02002128 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002129 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002130 map_length = length;
2131
Filipe Mananab5de8d02016-05-27 22:21:27 +01002132 /*
2133 * Avoid races with device replace and make sure our bbio has devices
2134 * associated to its stripes that don't go away while we are doing the
2135 * read repair operation.
2136 */
2137 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002138 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002139 /*
2140 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2141 * to update all raid stripes, but here we just want to correct
2142 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2143 * stripe's dev and sector.
2144 */
2145 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2146 &map_length, &bbio, 0);
2147 if (ret) {
2148 btrfs_bio_counter_dec(fs_info);
2149 bio_put(bio);
2150 return -EIO;
2151 }
2152 ASSERT(bbio->mirror_num == 1);
2153 } else {
2154 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2155 &map_length, &bbio, mirror_num);
2156 if (ret) {
2157 btrfs_bio_counter_dec(fs_info);
2158 bio_put(bio);
2159 return -EIO;
2160 }
2161 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002162 }
Liu Boc7253282017-03-29 10:53:58 -07002163
2164 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002165 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002166 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002167 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002168 if (!dev || !dev->bdev ||
2169 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002170 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002171 bio_put(bio);
2172 return -EIO;
2173 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002174 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002175 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002176 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002177
Mike Christie4e49ea42016-06-05 14:31:41 -05002178 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002179 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002180 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002181 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002182 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002183 return -EIO;
2184 }
2185
David Sterbab14af3b2015-10-08 10:43:10 +02002186 btrfs_info_rl_in_rcu(fs_info,
2187 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002188 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002189 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002190 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002191 bio_put(bio);
2192 return 0;
2193}
2194
David Sterba20a1fbf92019-03-20 11:23:44 +01002195int btrfs_repair_eb_io_failure(struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002196{
David Sterba20a1fbf92019-03-20 11:23:44 +01002197 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacikea466792012-03-26 21:57:36 -04002198 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002199 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002200 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002201
David Howellsbc98a422017-07-17 08:45:34 +01002202 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002203 return -EROFS;
2204
Josef Bacikea466792012-03-26 21:57:36 -04002205 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002206 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002207
Josef Bacik6ec656b2017-05-05 11:57:14 -04002208 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002209 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002210 if (ret)
2211 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002212 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002213 }
2214
2215 return ret;
2216}
2217
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002218/*
2219 * each time an IO finishes, we do a fast check in the IO failure tree
2220 * to see if we need to process or clean up an io_failure_record
2221 */
Josef Bacik7870d082017-05-05 11:57:15 -04002222int clean_io_failure(struct btrfs_fs_info *fs_info,
2223 struct extent_io_tree *failure_tree,
2224 struct extent_io_tree *io_tree, u64 start,
2225 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002226{
2227 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002228 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002229 struct extent_state *state;
2230 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002231 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002232
2233 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002234 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2235 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002236 if (!ret)
2237 return 0;
2238
Josef Bacik7870d082017-05-05 11:57:15 -04002239 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002240 if (ret)
2241 return 0;
2242
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002243 BUG_ON(!failrec->this_mirror);
2244
2245 if (failrec->in_validation) {
2246 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002247 btrfs_debug(fs_info,
2248 "clean_io_failure: freeing dummy error at %llu",
2249 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002250 goto out;
2251 }
David Howellsbc98a422017-07-17 08:45:34 +01002252 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002253 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002254
Josef Bacik7870d082017-05-05 11:57:15 -04002255 spin_lock(&io_tree->lock);
2256 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002257 failrec->start,
2258 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002259 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002260
Miao Xie883d0de2013-07-25 19:22:35 +08002261 if (state && state->start <= failrec->start &&
2262 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002263 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2264 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002265 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002266 repair_io_failure(fs_info, ino, start, failrec->len,
2267 failrec->logical, page, pg_offset,
2268 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002269 }
2270 }
2271
2272out:
Josef Bacik7870d082017-05-05 11:57:15 -04002273 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002274
Miao Xie454ff3d2014-09-12 18:43:58 +08002275 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002276}
2277
Miao Xief6124962014-09-12 18:44:04 +08002278/*
2279 * Can be called when
2280 * - hold extent lock
2281 * - under ordered extent
2282 * - the inode is freeing
2283 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002284void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002285{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002286 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002287 struct io_failure_record *failrec;
2288 struct extent_state *state, *next;
2289
2290 if (RB_EMPTY_ROOT(&failure_tree->state))
2291 return;
2292
2293 spin_lock(&failure_tree->lock);
2294 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2295 while (state) {
2296 if (state->start > end)
2297 break;
2298
2299 ASSERT(state->end <= end);
2300
2301 next = next_state(state);
2302
David Sterba47dc1962016-02-11 13:24:13 +01002303 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002304 free_extent_state(state);
2305 kfree(failrec);
2306
2307 state = next;
2308 }
2309 spin_unlock(&failure_tree->lock);
2310}
2311
Miao Xie2fe63032014-09-12 18:43:59 +08002312int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002313 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002314{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002315 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002316 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002317 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002318 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2319 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2320 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002321 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002322 u64 logical;
2323
David Sterba47dc1962016-02-11 13:24:13 +01002324 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002325 if (ret) {
2326 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2327 if (!failrec)
2328 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002329
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002330 failrec->start = start;
2331 failrec->len = end - start + 1;
2332 failrec->this_mirror = 0;
2333 failrec->bio_flags = 0;
2334 failrec->in_validation = 0;
2335
2336 read_lock(&em_tree->lock);
2337 em = lookup_extent_mapping(em_tree, start, failrec->len);
2338 if (!em) {
2339 read_unlock(&em_tree->lock);
2340 kfree(failrec);
2341 return -EIO;
2342 }
2343
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002344 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002345 free_extent_map(em);
2346 em = NULL;
2347 }
2348 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002349 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002350 kfree(failrec);
2351 return -EIO;
2352 }
Miao Xie2fe63032014-09-12 18:43:59 +08002353
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002354 logical = start - em->start;
2355 logical = em->block_start + logical;
2356 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2357 logical = em->block_start;
2358 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2359 extent_set_compress_type(&failrec->bio_flags,
2360 em->compress_type);
2361 }
Miao Xie2fe63032014-09-12 18:43:59 +08002362
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002363 btrfs_debug(fs_info,
2364 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2365 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002366
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002367 failrec->logical = logical;
2368 free_extent_map(em);
2369
2370 /* set the bits in the private failure tree */
2371 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002372 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002373 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002374 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002375 /* set the bits in the inode's tree */
2376 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002377 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002378 if (ret < 0) {
2379 kfree(failrec);
2380 return ret;
2381 }
2382 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002383 btrfs_debug(fs_info,
2384 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2385 failrec->logical, failrec->start, failrec->len,
2386 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002387 /*
2388 * when data can be on disk more than twice, add to failrec here
2389 * (e.g. with a list for failed_mirror) to make
2390 * clean_io_failure() clean all those errors at once.
2391 */
2392 }
Miao Xie2fe63032014-09-12 18:43:59 +08002393
2394 *failrec_ret = failrec;
2395
2396 return 0;
2397}
2398
Ming Leia0b60d72017-12-18 20:22:11 +08002399bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002400 struct io_failure_record *failrec, int failed_mirror)
2401{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002402 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002403 int num_copies;
2404
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002405 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002406 if (num_copies == 1) {
2407 /*
2408 * we only have a single copy of the data, so don't bother with
2409 * all the retry and error correction code that follows. no
2410 * matter what the error is, it is very likely to persist.
2411 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002412 btrfs_debug(fs_info,
2413 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2414 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002415 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002416 }
2417
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002418 /*
2419 * there are two premises:
2420 * a) deliver good data to the caller
2421 * b) correct the bad sectors on disk
2422 */
Ming Leia0b60d72017-12-18 20:22:11 +08002423 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002424 /*
2425 * to fulfill b), we need to know the exact failing sectors, as
2426 * we don't want to rewrite any more than the failed ones. thus,
2427 * we need separate read requests for the failed bio
2428 *
2429 * if the following BUG_ON triggers, our validation request got
2430 * merged. we need separate requests for our algorithm to work.
2431 */
2432 BUG_ON(failrec->in_validation);
2433 failrec->in_validation = 1;
2434 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002435 } else {
2436 /*
2437 * we're ready to fulfill a) and b) alongside. get a good copy
2438 * of the failed sector and if we succeed, we have setup
2439 * everything for repair_io_failure to do the rest for us.
2440 */
2441 if (failrec->in_validation) {
2442 BUG_ON(failrec->this_mirror != failed_mirror);
2443 failrec->in_validation = 0;
2444 failrec->this_mirror = 0;
2445 }
2446 failrec->failed_mirror = failed_mirror;
2447 failrec->this_mirror++;
2448 if (failrec->this_mirror == failed_mirror)
2449 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002450 }
2451
Miao Xiefacc8a222013-07-25 19:22:34 +08002452 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002453 btrfs_debug(fs_info,
2454 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2455 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002456 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002457 }
2458
Liu Boc3cfb652017-07-13 15:00:50 -07002459 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002460}
2461
2462
2463struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2464 struct io_failure_record *failrec,
2465 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002466 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002467{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002468 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002469 struct bio *bio;
2470 struct btrfs_io_bio *btrfs_failed_bio;
2471 struct btrfs_io_bio *btrfs_bio;
2472
David Sterbac5e4c3d2017-06-12 17:29:41 +02002473 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002474 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002475 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002476 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002477 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002478 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002479
Miao Xiefacc8a222013-07-25 19:22:34 +08002480 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2481 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002482 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2483
2484 btrfs_bio = btrfs_io_bio(bio);
2485 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002486 icsum *= csum_size;
2487 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002488 csum_size);
2489 }
2490
Miao Xie2fe63032014-09-12 18:43:59 +08002491 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002492
Miao Xie2fe63032014-09-12 18:43:59 +08002493 return bio;
2494}
2495
2496/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002497 * This is a generic handler for readpage errors. If other copies exist, read
2498 * those and write back good data to the failed position. Does not investigate
2499 * in remapping the failed extent elsewhere, hoping the device will be smart
2500 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002501 */
Miao Xie2fe63032014-09-12 18:43:59 +08002502static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2503 struct page *page, u64 start, u64 end,
2504 int failed_mirror)
2505{
2506 struct io_failure_record *failrec;
2507 struct inode *inode = page->mapping->host;
2508 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002509 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002510 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002511 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002512 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002513 int ret;
Christoph Hellwig8a2ee442019-02-15 19:13:07 +08002514 unsigned failed_bio_pages = failed_bio->bi_iter.bi_size >> PAGE_SHIFT;
Miao Xie2fe63032014-09-12 18:43:59 +08002515
Mike Christie1f7ad752016-06-05 14:31:51 -05002516 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002517
2518 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2519 if (ret)
2520 return ret;
2521
Ming Leia0b60d72017-12-18 20:22:11 +08002522 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002523 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002524 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002525 return -EIO;
2526 }
2527
Ming Leia0b60d72017-12-18 20:22:11 +08002528 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002529 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002530
2531 phy_offset >>= inode->i_sb->s_blocksize_bits;
2532 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2533 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002534 (int)phy_offset, failed_bio->bi_end_io,
2535 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002536 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002537
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002538 btrfs_debug(btrfs_sb(inode->i_sb),
2539 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2540 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002541
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002542 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Nikolay Borisov50489a52019-04-10 19:46:04 +03002543 failrec->bio_flags);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002544 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002545 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002546 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002547 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002548 }
2549
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002550 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002551}
2552
Chris Masond1310b22008-01-24 16:13:08 -05002553/* lots and lots of room for performance fixes in the end_bio funcs */
2554
David Sterbab5227c02015-12-03 13:08:59 +01002555void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002556{
2557 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002558 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002559
Nikolay Borisovc6297322018-11-08 10:18:08 +02002560 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002561
Jeff Mahoney87826df2012-02-15 16:23:57 +01002562 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002563 ClearPageUptodate(page);
2564 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002565 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002566 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002567 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002568}
2569
Chris Masond1310b22008-01-24 16:13:08 -05002570/*
2571 * after a writepage IO is done, we need to:
2572 * clear the uptodate bits on error
2573 * clear the writeback bits in the extent tree for this IO
2574 * end_page_writeback if the page has no more pending IO
2575 *
2576 * Scheduling is not allowed, so the extent state tree is expected
2577 * to have one and only one object corresponding to this IO.
2578 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002579static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002580{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002581 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002582 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002583 u64 start;
2584 u64 end;
Ming Lei6dc4f102019-02-15 19:13:19 +08002585 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002586
David Sterbac09abff2017-07-13 18:10:07 +02002587 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002588 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002589 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002590 struct inode *inode = page->mapping->host;
2591 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002592
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002593 /* We always issue full-page reads, but if some block
2594 * in a page fails to read, blk_update_request() will
2595 * advance bv_offset and adjust bv_len to compensate.
2596 * Print a warning for nonzero offsets, and an error
2597 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002598 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2599 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002600 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002601 "partial page write in btrfs with offset %u and length %u",
2602 bvec->bv_offset, bvec->bv_len);
2603 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002604 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002605 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002606 bvec->bv_offset, bvec->bv_len);
2607 }
Chris Masond1310b22008-01-24 16:13:08 -05002608
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002609 start = page_offset(page);
2610 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002611
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002612 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002613 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002614 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002615
Chris Masond1310b22008-01-24 16:13:08 -05002616 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002617}
2618
Miao Xie883d0de2013-07-25 19:22:35 +08002619static void
2620endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2621 int uptodate)
2622{
2623 struct extent_state *cached = NULL;
2624 u64 end = start + len - 1;
2625
2626 if (uptodate && tree->track_uptodate)
2627 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002628 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002629}
2630
Chris Masond1310b22008-01-24 16:13:08 -05002631/*
2632 * after a readpage IO is done, we need to:
2633 * clear the uptodate bits on error
2634 * set the uptodate bits if things worked
2635 * set the page up to date if all extents in the tree are uptodate
2636 * clear the lock bit in the extent tree
2637 * unlock the page if there are no other extents locked for it
2638 *
2639 * Scheduling is not allowed, so the extent state tree is expected
2640 * to have one and only one object corresponding to this IO.
2641 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002642static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002643{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002644 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002645 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002646 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002647 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002648 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002649 u64 start;
2650 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002651 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002652 u64 extent_start = 0;
2653 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002654 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002655 int ret;
Ming Lei6dc4f102019-02-15 19:13:19 +08002656 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002657
David Sterbac09abff2017-07-13 18:10:07 +02002658 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002659 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002660 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002661 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002662 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002663 bool data_inode = btrfs_ino(BTRFS_I(inode))
2664 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002665
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002666 btrfs_debug(fs_info,
2667 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002668 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002669 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002670 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002671 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002672
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002673 /* We always issue full-page reads, but if some block
2674 * in a page fails to read, blk_update_request() will
2675 * advance bv_offset and adjust bv_len to compensate.
2676 * Print a warning for nonzero offsets, and an error
2677 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002678 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2679 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002680 btrfs_err(fs_info,
2681 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002682 bvec->bv_offset, bvec->bv_len);
2683 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002684 btrfs_info(fs_info,
2685 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002686 bvec->bv_offset, bvec->bv_len);
2687 }
Chris Masond1310b22008-01-24 16:13:08 -05002688
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002689 start = page_offset(page);
2690 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002691 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002692
Chris Mason9be33952013-05-17 18:30:14 -04002693 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002694 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002695 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2696 page, start, end,
2697 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002698 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002699 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002700 else
Josef Bacik7870d082017-05-05 11:57:15 -04002701 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2702 failure_tree, tree, start,
2703 page,
2704 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002705 }
Josef Bacikea466792012-03-26 21:57:36 -04002706
Miao Xief2a09da2013-07-25 19:22:33 +08002707 if (likely(uptodate))
2708 goto readpage_ok;
2709
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002710 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002711
2712 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002713 * The generic bio_readpage_error handles errors the
2714 * following way: If possible, new read requests are
2715 * created and submitted and will end up in
2716 * end_bio_extent_readpage as well (if we're lucky,
2717 * not in the !uptodate case). In that case it returns
2718 * 0 and we just go on with the next page in our bio.
2719 * If it can't handle the error it will return -EIO and
2720 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002721 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002722 ret = bio_readpage_error(bio, offset, page, start, end,
2723 mirror);
2724 if (ret == 0) {
2725 uptodate = !bio->bi_status;
2726 offset += len;
2727 continue;
2728 }
2729 } else {
2730 struct extent_buffer *eb;
2731
2732 eb = (struct extent_buffer *)page->private;
2733 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2734 eb->read_mirror = mirror;
2735 atomic_dec(&eb->io_pages);
2736 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2737 &eb->bflags))
2738 btree_readahead_hook(eb, -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002739 }
Miao Xief2a09da2013-07-25 19:22:33 +08002740readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002741 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002742 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002743 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002744 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002745
2746 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002747 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002748 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002749 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002750 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002751 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002752 ClearPageUptodate(page);
2753 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002754 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002755 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002756 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002757
2758 if (unlikely(!uptodate)) {
2759 if (extent_len) {
2760 endio_readpage_release_extent(tree,
2761 extent_start,
2762 extent_len, 1);
2763 extent_start = 0;
2764 extent_len = 0;
2765 }
2766 endio_readpage_release_extent(tree, start,
2767 end - start + 1, 0);
2768 } else if (!extent_len) {
2769 extent_start = start;
2770 extent_len = end + 1 - start;
2771 } else if (extent_start + extent_len == start) {
2772 extent_len += end + 1 - start;
2773 } else {
2774 endio_readpage_release_extent(tree, extent_start,
2775 extent_len, uptodate);
2776 extent_start = start;
2777 extent_len = end + 1 - start;
2778 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002779 }
Chris Masond1310b22008-01-24 16:13:08 -05002780
Miao Xie883d0de2013-07-25 19:22:35 +08002781 if (extent_len)
2782 endio_readpage_release_extent(tree, extent_start, extent_len,
2783 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002784 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002785 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002786}
2787
Chris Mason9be33952013-05-17 18:30:14 -04002788/*
David Sterba184f9992017-06-12 17:29:39 +02002789 * Initialize the members up to but not including 'bio'. Use after allocating a
2790 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2791 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002792 */
David Sterba184f9992017-06-12 17:29:39 +02002793static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002794{
David Sterba184f9992017-06-12 17:29:39 +02002795 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2796}
2797
2798/*
David Sterba6e707bc2017-06-02 17:26:26 +02002799 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2800 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2801 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002802 */
David Sterbac821e7f32017-06-02 18:35:36 +02002803struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002804{
2805 struct bio *bio;
2806
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002807 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002808 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002809 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002810 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002811 return bio;
2812}
2813
David Sterba8b6c1d52017-06-02 17:48:13 +02002814struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002815{
Miao Xie23ea8e52014-09-12 18:43:54 +08002816 struct btrfs_io_bio *btrfs_bio;
2817 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002818
David Sterba6e707bc2017-06-02 17:26:26 +02002819 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002820 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002821 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002822 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002823 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002824 return new;
2825}
Chris Mason9be33952013-05-17 18:30:14 -04002826
David Sterbac5e4c3d2017-06-12 17:29:41 +02002827struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002828{
Miao Xiefacc8a222013-07-25 19:22:34 +08002829 struct bio *bio;
2830
David Sterba6e707bc2017-06-02 17:26:26 +02002831 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002832 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002833 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002834 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002835}
2836
Liu Boe4770942017-05-16 10:57:14 -07002837struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002838{
2839 struct bio *bio;
2840 struct btrfs_io_bio *btrfs_bio;
2841
2842 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002843 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002844 ASSERT(bio);
2845
2846 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002847 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002848
2849 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002850 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002851 return bio;
2852}
Chris Mason9be33952013-05-17 18:30:14 -04002853
David Sterba4b81ba42017-06-06 19:14:26 +02002854/*
2855 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002856 * @tree: tree so we can call our merge_bio hook
2857 * @wbc: optional writeback control for io accounting
2858 * @page: page to add to the bio
2859 * @pg_offset: offset of the new bio or to check whether we are adding
2860 * a contiguous page to the previous one
2861 * @size: portion of page that we want to write
2862 * @offset: starting offset in the page
2863 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002864 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002865 * @end_io_func: end_io callback for new bio
2866 * @mirror_num: desired mirror to read/write
2867 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2868 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002869 */
2870static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002871 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002872 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002873 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002874 struct block_device *bdev,
2875 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002876 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002877 int mirror_num,
2878 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002879 unsigned long bio_flags,
2880 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002881{
2882 int ret = 0;
2883 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002884 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002885 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002886
David Sterba5c2b1fd2017-06-06 19:22:55 +02002887 ASSERT(bio_ret);
2888
2889 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002890 bool contig;
2891 bool can_merge = true;
2892
Chris Masond1310b22008-01-24 16:13:08 -05002893 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002894 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002895 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002896 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002897 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002898
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002899 ASSERT(tree->ops);
2900 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002901 can_merge = false;
2902
2903 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002904 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002905 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002906 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002907 if (ret < 0) {
2908 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002909 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002910 }
Chris Masond1310b22008-01-24 16:13:08 -05002911 bio = NULL;
2912 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002913 if (wbc)
2914 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002915 return 0;
2916 }
2917 }
Chris Masonc8b97812008-10-29 14:49:59 -04002918
David Sterba6273b7f2017-10-04 17:30:11 +02002919 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002920 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002921 bio->bi_end_io = end_io_func;
2922 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002923 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002924 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002925 if (wbc) {
2926 wbc_init_bio(wbc, bio);
2927 wbc_account_io(wbc, page, page_size);
2928 }
Chris Mason70dec802008-01-29 09:59:12 -05002929
David Sterba5c2b1fd2017-06-06 19:22:55 +02002930 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002931
2932 return ret;
2933}
2934
Eric Sandeen48a3b632013-04-25 20:41:01 +00002935static void attach_extent_buffer_page(struct extent_buffer *eb,
2936 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002937{
2938 if (!PagePrivate(page)) {
2939 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002940 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002941 set_page_private(page, (unsigned long)eb);
2942 } else {
2943 WARN_ON(page->private != (unsigned long)eb);
2944 }
2945}
2946
Chris Masond1310b22008-01-24 16:13:08 -05002947void set_page_extent_mapped(struct page *page)
2948{
2949 if (!PagePrivate(page)) {
2950 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002951 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002952 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002953 }
2954}
2955
Miao Xie125bac012013-07-25 19:22:37 +08002956static struct extent_map *
2957__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2958 u64 start, u64 len, get_extent_t *get_extent,
2959 struct extent_map **em_cached)
2960{
2961 struct extent_map *em;
2962
2963 if (em_cached && *em_cached) {
2964 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002965 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002966 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002967 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002968 return em;
2969 }
2970
2971 free_extent_map(em);
2972 *em_cached = NULL;
2973 }
2974
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002975 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002976 if (em_cached && !IS_ERR_OR_NULL(em)) {
2977 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002978 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002979 *em_cached = em;
2980 }
2981 return em;
2982}
Chris Masond1310b22008-01-24 16:13:08 -05002983/*
2984 * basic readpage implementation. Locked extent state structs are inserted
2985 * into the tree that are removed when the IO is done (by the end_io
2986 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002987 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002988 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002989 */
Miao Xie99740902013-07-25 19:22:36 +08002990static int __do_readpage(struct extent_io_tree *tree,
2991 struct page *page,
2992 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002993 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002994 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002995 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002996 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002997{
2998 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002999 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02003000 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003001 u64 cur = start;
3002 u64 extent_offset;
3003 u64 last_byte = i_size_read(inode);
3004 u64 block_start;
3005 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05003006 struct extent_map *em;
3007 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07003008 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003009 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02003010 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003011 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04003012 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05003013 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00003014 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003015
3016 set_page_extent_mapped(page);
3017
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003018 if (!PageUptodate(page)) {
3019 if (cleancache_get_page(page) == 0) {
3020 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003021 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003022 goto out;
3023 }
3024 }
3025
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003026 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04003027 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01003028 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04003029
3030 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003031 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003032 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003033 memset(userpage + zero_offset, 0, iosize);
3034 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003035 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003036 }
3037 }
Chris Masond1310b22008-01-24 16:13:08 -05003038 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01003039 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02003040 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003041
Chris Masond1310b22008-01-24 16:13:08 -05003042 if (cur >= last_byte) {
3043 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003044 struct extent_state *cached = NULL;
3045
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003046 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003047 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003048 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003049 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003050 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003051 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003052 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003053 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003054 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003055 break;
3056 }
Miao Xie125bac012013-07-25 19:22:37 +08003057 em = __get_extent_map(inode, page, pg_offset, cur,
3058 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003059 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003060 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003061 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003062 break;
3063 }
Chris Masond1310b22008-01-24 16:13:08 -05003064 extent_offset = cur - em->start;
3065 BUG_ON(extent_map_end(em) <= cur);
3066 BUG_ON(end < cur);
3067
Li Zefan261507a02010-12-17 14:21:50 +08003068 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003069 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003070 extent_set_compress_type(&this_bio_flag,
3071 em->compress_type);
3072 }
Chris Masonc8b97812008-10-29 14:49:59 -04003073
Chris Masond1310b22008-01-24 16:13:08 -05003074 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3075 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003076 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003077 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3078 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02003079 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003080 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02003081 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003082 disk_io_size = iosize;
3083 }
Chris Masond1310b22008-01-24 16:13:08 -05003084 bdev = em->bdev;
3085 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003086 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3087 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003088
3089 /*
3090 * If we have a file range that points to a compressed extent
3091 * and it's followed by a consecutive file range that points to
3092 * to the same compressed extent (possibly with a different
3093 * offset and/or length, so it either points to the whole extent
3094 * or only part of it), we must make sure we do not submit a
3095 * single bio to populate the pages for the 2 ranges because
3096 * this makes the compressed extent read zero out the pages
3097 * belonging to the 2nd range. Imagine the following scenario:
3098 *
3099 * File layout
3100 * [0 - 8K] [8K - 24K]
3101 * | |
3102 * | |
3103 * points to extent X, points to extent X,
3104 * offset 4K, length of 8K offset 0, length 16K
3105 *
3106 * [extent X, compressed length = 4K uncompressed length = 16K]
3107 *
3108 * If the bio to read the compressed extent covers both ranges,
3109 * it will decompress extent X into the pages belonging to the
3110 * first range and then it will stop, zeroing out the remaining
3111 * pages that belong to the other range that points to extent X.
3112 * So here we make sure we submit 2 bios, one for the first
3113 * range and another one for the third range. Both will target
3114 * the same physical extent from disk, but we can't currently
3115 * make the compressed bio endio callback populate the pages
3116 * for both ranges because each compressed bio is tightly
3117 * coupled with a single extent map, and each range can have
3118 * an extent map with a different offset value relative to the
3119 * uncompressed data of our extent and different lengths. This
3120 * is a corner case so we prioritize correctness over
3121 * non-optimal behavior (submitting 2 bios for the same extent).
3122 */
3123 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3124 prev_em_start && *prev_em_start != (u64)-1 &&
Filipe Manana8e928212019-02-14 15:17:20 +00003125 *prev_em_start != em->start)
Filipe Manana005efed2015-09-14 09:09:31 +01003126 force_bio_submit = true;
3127
3128 if (prev_em_start)
Filipe Manana8e928212019-02-14 15:17:20 +00003129 *prev_em_start = em->start;
Filipe Manana005efed2015-09-14 09:09:31 +01003130
Chris Masond1310b22008-01-24 16:13:08 -05003131 free_extent_map(em);
3132 em = NULL;
3133
3134 /* we've found a hole, just zero and go on */
3135 if (block_start == EXTENT_MAP_HOLE) {
3136 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003137 struct extent_state *cached = NULL;
3138
Cong Wang7ac687d2011-11-25 23:14:28 +08003139 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003140 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003141 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003142 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003143
3144 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003145 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003146 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003147 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003148 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003149 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003150 continue;
3151 }
3152 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003153 if (test_range_bit(tree, cur, cur_end,
3154 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003155 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003156 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003157 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003158 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003159 continue;
3160 }
Chris Mason70dec802008-01-29 09:59:12 -05003161 /* we have an inline extent but it didn't get marked up
3162 * to date. Error out
3163 */
3164 if (block_start == EXTENT_MAP_INLINE) {
3165 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003166 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003167 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003168 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003169 continue;
3170 }
Chris Masond1310b22008-01-24 16:13:08 -05003171
David Sterba4b81ba42017-06-06 19:14:26 +02003172 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003173 page, offset, disk_io_size,
3174 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003175 end_bio_extent_readpage, mirror_num,
3176 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003177 this_bio_flag,
3178 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003179 if (!ret) {
3180 nr++;
3181 *bio_flags = this_bio_flag;
3182 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003183 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003184 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003185 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003186 }
Chris Masond1310b22008-01-24 16:13:08 -05003187 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003188 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003189 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003190out:
Chris Masond1310b22008-01-24 16:13:08 -05003191 if (!nr) {
3192 if (!PageError(page))
3193 SetPageUptodate(page);
3194 unlock_page(page);
3195 }
Liu Bobaf863b2016-07-11 10:39:07 -07003196 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003197}
3198
Nikolay Borisove65ef212019-03-11 09:55:38 +02003199static inline void contiguous_readpages(struct extent_io_tree *tree,
Miao Xie99740902013-07-25 19:22:36 +08003200 struct page *pages[], int nr_pages,
3201 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003202 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003203 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003204 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003205 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003206{
3207 struct inode *inode;
3208 struct btrfs_ordered_extent *ordered;
3209 int index;
3210
3211 inode = pages[0]->mapping->host;
3212 while (1) {
3213 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003214 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003215 end - start + 1);
3216 if (!ordered)
3217 break;
3218 unlock_extent(tree, start, end);
3219 btrfs_start_ordered_extent(inode, ordered, 1);
3220 btrfs_put_ordered_extent(ordered);
3221 }
3222
3223 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003224 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003225 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003226 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003227 }
3228}
3229
Miao Xie99740902013-07-25 19:22:36 +08003230static int __extent_read_full_page(struct extent_io_tree *tree,
3231 struct page *page,
3232 get_extent_t *get_extent,
3233 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003234 unsigned long *bio_flags,
3235 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003236{
3237 struct inode *inode = page->mapping->host;
3238 struct btrfs_ordered_extent *ordered;
3239 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003240 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003241 int ret;
3242
3243 while (1) {
3244 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003245 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003246 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003247 if (!ordered)
3248 break;
3249 unlock_extent(tree, start, end);
3250 btrfs_start_ordered_extent(inode, ordered, 1);
3251 btrfs_put_ordered_extent(ordered);
3252 }
3253
Miao Xie125bac012013-07-25 19:22:37 +08003254 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003255 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003256 return ret;
3257}
3258
Chris Masond1310b22008-01-24 16:13:08 -05003259int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003260 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003261{
3262 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003263 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003264 int ret;
3265
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003266 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003267 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003268 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003269 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003270 return ret;
3271}
Chris Masond1310b22008-01-24 16:13:08 -05003272
David Sterba3d4b9492017-02-10 19:33:41 +01003273static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003274 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003275{
3276 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003277}
3278
Chris Masond1310b22008-01-24 16:13:08 -05003279/*
Chris Mason40f76582014-05-21 13:35:51 -07003280 * helper for __extent_writepage, doing all of the delayed allocation setup.
3281 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003282 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003283 * to write the page (copy into inline extent). In this case the IO has
3284 * been started and the page is already unlocked.
3285 *
3286 * This returns 0 if all went well (page still locked)
3287 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003288 */
Chris Mason40f76582014-05-21 13:35:51 -07003289static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003290 struct page *page, struct writeback_control *wbc,
3291 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003292{
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003293 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003294 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003295 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003296 u64 delalloc_to_write = 0;
3297 u64 delalloc_end = 0;
3298 int ret;
3299 int page_started = 0;
3300
Chris Mason40f76582014-05-21 13:35:51 -07003301
3302 while (delalloc_end < page_end) {
Lu Fengqi3522e902018-11-29 11:33:38 +08003303 found = find_lock_delalloc_range(inode, tree,
Chris Mason40f76582014-05-21 13:35:51 -07003304 page,
3305 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003306 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003307 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003308 delalloc_start = delalloc_end + 1;
3309 continue;
3310 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003311 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3312 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003313 /* File system has been set read-only */
3314 if (ret) {
3315 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003316 /*
3317 * btrfs_run_delalloc_range should return < 0 for error
3318 * but just in case, we use > 0 here meaning the IO is
3319 * started, so we don't want to return > 0 unless
3320 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003321 */
3322 ret = ret < 0 ? ret : -EIO;
3323 goto done;
3324 }
3325 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003326 * delalloc_end is already one less than the total length, so
3327 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003328 */
3329 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003330 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003331 delalloc_start = delalloc_end + 1;
3332 }
3333 if (wbc->nr_to_write < delalloc_to_write) {
3334 int thresh = 8192;
3335
3336 if (delalloc_to_write < thresh * 2)
3337 thresh = delalloc_to_write;
3338 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3339 thresh);
3340 }
3341
3342 /* did the fill delalloc function already unlock and start
3343 * the IO?
3344 */
3345 if (page_started) {
3346 /*
3347 * we've unlocked the page, so we can't update
3348 * the mapping's writeback index, just update
3349 * nr_to_write.
3350 */
3351 wbc->nr_to_write -= *nr_written;
3352 return 1;
3353 }
3354
3355 ret = 0;
3356
3357done:
3358 return ret;
3359}
3360
3361/*
3362 * helper for __extent_writepage. This calls the writepage start hooks,
3363 * and does the loop to map the page into extents and bios.
3364 *
3365 * We return 1 if the IO is started and the page is unlocked,
3366 * 0 if all went well (page still locked)
3367 * < 0 if there were errors (page still locked)
3368 */
3369static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3370 struct page *page,
3371 struct writeback_control *wbc,
3372 struct extent_page_data *epd,
3373 loff_t i_size,
3374 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003375 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003376{
Chris Masond1310b22008-01-24 16:13:08 -05003377 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003378 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003379 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003380 u64 end;
3381 u64 cur = start;
3382 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003383 u64 block_start;
3384 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003385 struct extent_map *em;
3386 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003387 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003388 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003389 int ret = 0;
3390 int nr = 0;
3391 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003392
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003393 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3394 if (ret) {
3395 /* Fixup worker will requeue */
3396 if (ret == -EBUSY)
3397 wbc->pages_skipped++;
3398 else
3399 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003400
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003401 update_nr_written(wbc, nr_written);
3402 unlock_page(page);
3403 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003404 }
3405
Chris Mason11c83492009-04-20 15:50:09 -04003406 /*
3407 * we don't want to touch the inode after unlocking the page,
3408 * so we update the mapping writeback index now
3409 */
David Sterba3d4b9492017-02-10 19:33:41 +01003410 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003411
Chris Masond1310b22008-01-24 16:13:08 -05003412 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003413 if (i_size <= start) {
Nikolay Borisovc6297322018-11-08 10:18:08 +02003414 btrfs_writepage_endio_finish_ordered(page, start, page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003415 goto done;
3416 }
3417
Chris Masond1310b22008-01-24 16:13:08 -05003418 blocksize = inode->i_sb->s_blocksize;
3419
3420 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003421 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003422 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003423
Chris Mason40f76582014-05-21 13:35:51 -07003424 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003425 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003426 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003427 break;
3428 }
David Sterba3c98c622017-06-23 04:01:08 +02003429 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003430 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003431 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003432 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003433 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003434 break;
3435 }
3436
3437 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003438 em_end = extent_map_end(em);
3439 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003440 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003441 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003442 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003443 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003444 bdev = em->bdev;
3445 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003446 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003447 free_extent_map(em);
3448 em = NULL;
3449
Chris Masonc8b97812008-10-29 14:49:59 -04003450 /*
3451 * compressed and inline extents are written through other
3452 * paths in the FS
3453 */
3454 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003455 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003456 /*
3457 * end_io notification does not happen here for
3458 * compressed extents
3459 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003460 if (!compressed)
3461 btrfs_writepage_endio_finish_ordered(page, cur,
3462 cur + iosize - 1,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003463 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003464 else if (compressed) {
3465 /* we don't want to end_page_writeback on
3466 * a compressed extent. this happens
3467 * elsewhere
3468 */
3469 nr++;
3470 }
3471
3472 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003473 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003474 continue;
3475 }
Chris Masonc8b97812008-10-29 14:49:59 -04003476
David Sterba5cdc84b2018-07-18 20:32:52 +02003477 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003478 if (!PageWriteback(page)) {
3479 btrfs_err(BTRFS_I(inode)->root->fs_info,
3480 "page %lu not writeback, cur %llu end %llu",
3481 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003482 }
David Sterba58409ed2016-05-04 11:46:10 +02003483
David Sterba4b81ba42017-06-06 19:14:26 +02003484 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003485 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003486 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003487 end_bio_extent_writepage,
3488 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003489 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003490 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003491 if (PageWriteback(page))
3492 end_page_writeback(page);
3493 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003494
Chris Masond1310b22008-01-24 16:13:08 -05003495 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003496 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003497 nr++;
3498 }
3499done:
Chris Mason40f76582014-05-21 13:35:51 -07003500 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003501 return ret;
3502}
3503
3504/*
3505 * the writepage semantics are similar to regular writepage. extent
3506 * records are inserted to lock ranges in the tree, and as dirty areas
3507 * are found, they are marked writeback. Then the lock bits are removed
3508 * and the end_io handler clears the writeback ranges
Qu Wenruo30659762019-03-20 14:27:42 +08003509 *
3510 * Return 0 if everything goes well.
3511 * Return <0 for error.
Chris Mason40f76582014-05-21 13:35:51 -07003512 */
3513static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003514 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003515{
3516 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003517 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003518 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003519 int ret;
3520 int nr = 0;
3521 size_t pg_offset = 0;
3522 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003523 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003524 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003525 unsigned long nr_written = 0;
3526
Liu Boff40adf2017-08-24 18:19:48 -06003527 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003528
3529 trace___extent_writepage(page, inode, wbc);
3530
3531 WARN_ON(!PageLocked(page));
3532
3533 ClearPageError(page);
3534
Johannes Thumshirn70730172018-12-05 15:23:03 +01003535 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003536 if (page->index > end_index ||
3537 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003538 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003539 unlock_page(page);
3540 return 0;
3541 }
3542
3543 if (page->index == end_index) {
3544 char *userpage;
3545
3546 userpage = kmap_atomic(page);
3547 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003548 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003549 kunmap_atomic(userpage);
3550 flush_dcache_page(page);
3551 }
3552
3553 pg_offset = 0;
3554
3555 set_page_extent_mapped(page);
3556
Nikolay Borisov7789a552018-11-08 10:18:06 +02003557 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003558 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003559 if (ret == 1)
3560 goto done_unlocked;
3561 if (ret)
3562 goto done;
3563 }
Chris Mason40f76582014-05-21 13:35:51 -07003564
3565 ret = __extent_writepage_io(inode, page, wbc, epd,
3566 i_size, nr_written, write_flags, &nr);
3567 if (ret == 1)
3568 goto done_unlocked;
3569
3570done:
Chris Masond1310b22008-01-24 16:13:08 -05003571 if (nr == 0) {
3572 /* make sure the mapping tag for page dirty gets cleared */
3573 set_page_writeback(page);
3574 end_page_writeback(page);
3575 }
Filipe Manana61391d52014-05-09 17:17:40 +01003576 if (PageError(page)) {
3577 ret = ret < 0 ? ret : -EIO;
3578 end_extent_writepage(page, ret, start, page_end);
3579 }
Chris Masond1310b22008-01-24 16:13:08 -05003580 unlock_page(page);
Qu Wenruo30659762019-03-20 14:27:42 +08003581 ASSERT(ret <= 0);
Chris Mason40f76582014-05-21 13:35:51 -07003582 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003583
Chris Mason11c83492009-04-20 15:50:09 -04003584done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003585 return 0;
3586}
3587
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003588void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003589{
NeilBrown74316202014-07-07 15:16:04 +10003590 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3591 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003592}
3593
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003594/*
3595 * Lock eb pages and flush the bio if we can't the locks
3596 *
3597 * Return 0 if nothing went wrong
3598 * Return >0 is same as 0, except bio is not submitted
3599 * Return <0 if something went wrong, no page is locked
3600 */
David Sterba9df76fb2019-03-20 11:21:41 +01003601static noinline_for_stack int lock_extent_buffer_for_io(struct extent_buffer *eb,
Chris Mason0e378df2014-05-19 20:55:27 -07003602 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003603{
David Sterba9df76fb2019-03-20 11:21:41 +01003604 struct btrfs_fs_info *fs_info = eb->fs_info;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003605 int i, num_pages, failed_page_nr;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003606 int flush = 0;
3607 int ret = 0;
3608
3609 if (!btrfs_try_tree_write_lock(eb)) {
Qu Wenruof4340622019-03-20 14:27:41 +08003610 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003611 if (ret < 0)
3612 return ret;
3613 flush = 1;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003614 btrfs_tree_lock(eb);
3615 }
3616
3617 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3618 btrfs_tree_unlock(eb);
3619 if (!epd->sync_io)
3620 return 0;
3621 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003622 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003623 if (ret < 0)
3624 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003625 flush = 1;
3626 }
Chris Masona098d8e82012-03-21 12:09:56 -04003627 while (1) {
3628 wait_on_extent_buffer_writeback(eb);
3629 btrfs_tree_lock(eb);
3630 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3631 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003632 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003633 }
3634 }
3635
Josef Bacik51561ff2012-07-20 16:25:24 -04003636 /*
3637 * We need to do this to prevent races in people who check if the eb is
3638 * under IO since we can end up having no IO bits set for a short period
3639 * of time.
3640 */
3641 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003642 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3643 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003644 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003645 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003646 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3647 -eb->len,
3648 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003649 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003650 } else {
3651 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003652 }
3653
3654 btrfs_tree_unlock(eb);
3655
3656 if (!ret)
3657 return ret;
3658
David Sterba65ad0102018-06-29 10:56:49 +02003659 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003660 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003661 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003662
3663 if (!trylock_page(p)) {
3664 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003665 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003666 if (ret < 0) {
3667 failed_page_nr = i;
3668 goto err_unlock;
3669 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003670 flush = 1;
3671 }
3672 lock_page(p);
3673 }
3674 }
3675
3676 return ret;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003677err_unlock:
3678 /* Unlock already locked pages */
3679 for (i = 0; i < failed_page_nr; i++)
3680 unlock_page(eb->pages[i]);
3681 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003682}
3683
3684static void end_extent_buffer_writeback(struct extent_buffer *eb)
3685{
3686 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003687 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003688 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3689}
3690
Filipe Manana656f30d2014-09-26 12:25:56 +01003691static void set_btree_ioerr(struct page *page)
3692{
3693 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003694
3695 SetPageError(page);
3696 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3697 return;
3698
3699 /*
3700 * If writeback for a btree extent that doesn't belong to a log tree
3701 * failed, increment the counter transaction->eb_write_errors.
3702 * We do this because while the transaction is running and before it's
3703 * committing (when we call filemap_fdata[write|wait]_range against
3704 * the btree inode), we might have
3705 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3706 * returns an error or an error happens during writeback, when we're
3707 * committing the transaction we wouldn't know about it, since the pages
3708 * can be no longer dirty nor marked anymore for writeback (if a
3709 * subsequent modification to the extent buffer didn't happen before the
3710 * transaction commit), which makes filemap_fdata[write|wait]_range not
3711 * able to find the pages tagged with SetPageError at transaction
3712 * commit time. So if this happens we must abort the transaction,
3713 * otherwise we commit a super block with btree roots that point to
3714 * btree nodes/leafs whose content on disk is invalid - either garbage
3715 * or the content of some node/leaf from a past generation that got
3716 * cowed or deleted and is no longer valid.
3717 *
3718 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3719 * not be enough - we need to distinguish between log tree extents vs
3720 * non-log tree extents, and the next filemap_fdatawait_range() call
3721 * will catch and clear such errors in the mapping - and that call might
3722 * be from a log sync and not from a transaction commit. Also, checking
3723 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3724 * not done and would not be reliable - the eb might have been released
3725 * from memory and reading it back again means that flag would not be
3726 * set (since it's a runtime flag, not persisted on disk).
3727 *
3728 * Using the flags below in the btree inode also makes us achieve the
3729 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3730 * writeback for all dirty pages and before filemap_fdatawait_range()
3731 * is called, the writeback for all dirty pages had already finished
3732 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3733 * filemap_fdatawait_range() would return success, as it could not know
3734 * that writeback errors happened (the pages were no longer tagged for
3735 * writeback).
3736 */
3737 switch (eb->log_index) {
3738 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003739 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003740 break;
3741 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003742 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003743 break;
3744 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003745 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003746 break;
3747 default:
3748 BUG(); /* unexpected, logic error */
3749 }
3750}
3751
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003752static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003753{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003754 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003755 struct extent_buffer *eb;
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003756 int done;
Ming Lei6dc4f102019-02-15 19:13:19 +08003757 struct bvec_iter_all iter_all;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003758
David Sterbac09abff2017-07-13 18:10:07 +02003759 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003760 bio_for_each_segment_all(bvec, bio, iter_all) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003761 struct page *page = bvec->bv_page;
3762
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003763 eb = (struct extent_buffer *)page->private;
3764 BUG_ON(!eb);
3765 done = atomic_dec_and_test(&eb->io_pages);
3766
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003767 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003768 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003769 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003770 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003771 }
3772
3773 end_page_writeback(page);
3774
3775 if (!done)
3776 continue;
3777
3778 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003779 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003780
3781 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003782}
3783
Chris Mason0e378df2014-05-19 20:55:27 -07003784static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003785 struct writeback_control *wbc,
3786 struct extent_page_data *epd)
3787{
David Sterba0ab02062019-03-20 11:27:57 +01003788 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003789 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003790 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003791 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003792 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003793 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003794 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003795 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003796 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003797
Filipe Manana656f30d2014-09-26 12:25:56 +01003798 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003799 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003800 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003801
Liu Bo851cd172016-09-23 13:44:44 -07003802 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3803 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003804 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003805 end = btrfs_node_key_ptr_offset(nritems);
3806
David Sterbab159fa22016-11-08 18:09:03 +01003807 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003808 } else {
3809 /*
3810 * leaf:
3811 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3812 */
3813 start = btrfs_item_nr_offset(nritems);
David Sterba8f881e82019-03-20 11:33:10 +01003814 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(eb);
David Sterbab159fa22016-11-08 18:09:03 +01003815 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003816 }
3817
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003818 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003819 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003820
3821 clear_page_dirty_for_io(p);
3822 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003823 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003824 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003825 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003826 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003827 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003828 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003829 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003830 if (PageWriteback(p))
3831 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003832 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3833 end_extent_buffer_writeback(eb);
3834 ret = -EIO;
3835 break;
3836 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003837 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003838 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003839 unlock_page(p);
3840 }
3841
3842 if (unlikely(ret)) {
3843 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003844 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003845 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003846 unlock_page(p);
3847 }
3848 }
3849
3850 return ret;
3851}
3852
3853int btree_write_cache_pages(struct address_space *mapping,
3854 struct writeback_control *wbc)
3855{
3856 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003857 struct extent_buffer *eb, *prev_eb = NULL;
3858 struct extent_page_data epd = {
3859 .bio = NULL,
3860 .tree = tree,
3861 .extent_locked = 0,
3862 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3863 };
3864 int ret = 0;
3865 int done = 0;
3866 int nr_to_write_done = 0;
3867 struct pagevec pvec;
3868 int nr_pages;
3869 pgoff_t index;
3870 pgoff_t end; /* Inclusive */
3871 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003872 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003873
Mel Gorman86679822017-11-15 17:37:52 -08003874 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003875 if (wbc->range_cyclic) {
3876 index = mapping->writeback_index; /* Start from prev offset */
3877 end = -1;
3878 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003879 index = wbc->range_start >> PAGE_SHIFT;
3880 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003881 scanned = 1;
3882 }
3883 if (wbc->sync_mode == WB_SYNC_ALL)
3884 tag = PAGECACHE_TAG_TOWRITE;
3885 else
3886 tag = PAGECACHE_TAG_DIRTY;
3887retry:
3888 if (wbc->sync_mode == WB_SYNC_ALL)
3889 tag_pages_for_writeback(mapping, index, end);
3890 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003891 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003892 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003893 unsigned i;
3894
3895 scanned = 1;
3896 for (i = 0; i < nr_pages; i++) {
3897 struct page *page = pvec.pages[i];
3898
3899 if (!PagePrivate(page))
3900 continue;
3901
Josef Bacikb5bae262012-09-14 13:43:01 -04003902 spin_lock(&mapping->private_lock);
3903 if (!PagePrivate(page)) {
3904 spin_unlock(&mapping->private_lock);
3905 continue;
3906 }
3907
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003908 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003909
3910 /*
3911 * Shouldn't happen and normally this would be a BUG_ON
3912 * but no sense in crashing the users box for something
3913 * we can survive anyway.
3914 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303915 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003916 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003917 continue;
3918 }
3919
Josef Bacikb5bae262012-09-14 13:43:01 -04003920 if (eb == prev_eb) {
3921 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003922 continue;
3923 }
3924
Josef Bacikb5bae262012-09-14 13:43:01 -04003925 ret = atomic_inc_not_zero(&eb->refs);
3926 spin_unlock(&mapping->private_lock);
3927 if (!ret)
3928 continue;
3929
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003930 prev_eb = eb;
David Sterba9df76fb2019-03-20 11:21:41 +01003931 ret = lock_extent_buffer_for_io(eb, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003932 if (!ret) {
3933 free_extent_buffer(eb);
3934 continue;
3935 }
3936
David Sterba0ab02062019-03-20 11:27:57 +01003937 ret = write_one_eb(eb, wbc, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003938 if (ret) {
3939 done = 1;
3940 free_extent_buffer(eb);
3941 break;
3942 }
3943 free_extent_buffer(eb);
3944
3945 /*
3946 * the filesystem may choose to bump up nr_to_write.
3947 * We have to make sure to honor the new nr_to_write
3948 * at any time
3949 */
3950 nr_to_write_done = wbc->nr_to_write <= 0;
3951 }
3952 pagevec_release(&pvec);
3953 cond_resched();
3954 }
3955 if (!scanned && !done) {
3956 /*
3957 * We hit the last page and there is more work to be done: wrap
3958 * back to the start of the file
3959 */
3960 scanned = 1;
3961 index = 0;
3962 goto retry;
3963 }
Qu Wenruo2b952ee2019-03-20 14:27:43 +08003964 ASSERT(ret <= 0);
3965 if (ret < 0) {
3966 end_write_bio(&epd, ret);
3967 return ret;
3968 }
3969 ret = flush_write_bio(&epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003970 return ret;
3971}
3972
Chris Masond1310b22008-01-24 16:13:08 -05003973/**
Chris Mason4bef0842008-09-08 11:18:08 -04003974 * 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 -05003975 * @mapping: address space structure to write
3976 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003977 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003978 *
3979 * If a page is already under I/O, write_cache_pages() skips it, even
3980 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3981 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3982 * and msync() need to guarantee that all the data which was dirty at the time
3983 * the call was made get new I/O started against them. If wbc->sync_mode is
3984 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3985 * existing IO to complete.
3986 */
David Sterba4242b642017-02-10 19:38:24 +01003987static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003988 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003989 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003990{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003991 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003992 int ret = 0;
3993 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003994 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003995 struct pagevec pvec;
3996 int nr_pages;
3997 pgoff_t index;
3998 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003999 pgoff_t done_index;
4000 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004001 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05004002 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05004003
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004004 /*
4005 * We have to hold onto the inode so that ordered extents can do their
4006 * work when the IO finishes. The alternative to this is failing to add
4007 * an ordered extent if the igrab() fails there and that is a huge pain
4008 * to deal with, so instead just hold onto the inode throughout the
4009 * writepages operation. If it fails here we are freeing up the inode
4010 * anyway and we'd rather not waste our time writing out stuff that is
4011 * going to be truncated anyway.
4012 */
4013 if (!igrab(inode))
4014 return 0;
4015
Mel Gorman86679822017-11-15 17:37:52 -08004016 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05004017 if (wbc->range_cyclic) {
4018 index = mapping->writeback_index; /* Start from prev offset */
4019 end = -1;
4020 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004021 index = wbc->range_start >> PAGE_SHIFT;
4022 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08004023 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
4024 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004025 scanned = 1;
4026 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08004027
4028 /*
4029 * We do the tagged writepage as long as the snapshot flush bit is set
4030 * and we are the first one who do the filemap_flush() on this inode.
4031 *
4032 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
4033 * not race in and drop the bit.
4034 */
4035 if (range_whole && wbc->nr_to_write == LONG_MAX &&
4036 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
4037 &BTRFS_I(inode)->runtime_flags))
4038 wbc->tagged_writepages = 1;
4039
4040 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004041 tag = PAGECACHE_TAG_TOWRITE;
4042 else
4043 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004044retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08004045 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004046 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08004047 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004048 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08004049 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
4050 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05004051 unsigned i;
4052
4053 scanned = 1;
4054 for (i = 0; i < nr_pages; i++) {
4055 struct page *page = pvec.pages[i];
4056
Liu Boa91326672016-03-07 16:56:21 -08004057 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05004058 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07004059 * At this point we hold neither the i_pages lock nor
4060 * the page lock: the page may be truncated or
4061 * invalidated (changing page->mapping to NULL),
4062 * or even swizzled back from swapper_space to
4063 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05004064 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004065 if (!trylock_page(page)) {
Qu Wenruof4340622019-03-20 14:27:41 +08004066 ret = flush_write_bio(epd);
4067 BUG_ON(ret < 0);
Josef Bacikc8f2f242013-02-11 11:33:00 -05004068 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004069 }
Chris Masond1310b22008-01-24 16:13:08 -05004070
4071 if (unlikely(page->mapping != mapping)) {
4072 unlock_page(page);
4073 continue;
4074 }
4075
Chris Masond2c3f4f2008-11-19 12:44:22 -05004076 if (wbc->sync_mode != WB_SYNC_NONE) {
Qu Wenruof4340622019-03-20 14:27:41 +08004077 if (PageWriteback(page)) {
4078 ret = flush_write_bio(epd);
4079 BUG_ON(ret < 0);
4080 }
Chris Masond1310b22008-01-24 16:13:08 -05004081 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004082 }
Chris Masond1310b22008-01-24 16:13:08 -05004083
4084 if (PageWriteback(page) ||
4085 !clear_page_dirty_for_io(page)) {
4086 unlock_page(page);
4087 continue;
4088 }
4089
David Sterbaaab6e9e2017-11-30 18:00:02 +01004090 ret = __extent_writepage(page, wbc, epd);
Liu Boa91326672016-03-07 16:56:21 -08004091 if (ret < 0) {
4092 /*
4093 * done_index is set past this page,
4094 * so media errors will not choke
4095 * background writeout for the entire
4096 * file. This has consequences for
4097 * range_cyclic semantics (ie. it may
4098 * not be suitable for data integrity
4099 * writeout).
4100 */
4101 done_index = page->index + 1;
4102 done = 1;
4103 break;
4104 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004105
4106 /*
4107 * the filesystem may choose to bump up nr_to_write.
4108 * We have to make sure to honor the new nr_to_write
4109 * at any time
4110 */
4111 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004112 }
4113 pagevec_release(&pvec);
4114 cond_resched();
4115 }
Liu Bo894b36e2016-03-07 16:56:22 -08004116 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004117 /*
4118 * We hit the last page and there is more work to be done: wrap
4119 * back to the start of the file
4120 */
4121 scanned = 1;
4122 index = 0;
4123 goto retry;
4124 }
Liu Boa91326672016-03-07 16:56:21 -08004125
4126 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4127 mapping->writeback_index = done_index;
4128
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004129 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004130 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004131}
Chris Masond1310b22008-01-24 16:13:08 -05004132
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004133int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004134{
4135 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004136 struct extent_page_data epd = {
4137 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004138 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004139 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004140 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004141 };
Chris Masond1310b22008-01-24 16:13:08 -05004142
Chris Masond1310b22008-01-24 16:13:08 -05004143 ret = __extent_writepage(page, wbc, &epd);
Qu Wenruo30659762019-03-20 14:27:42 +08004144 ASSERT(ret <= 0);
4145 if (ret < 0) {
4146 end_write_bio(&epd, ret);
4147 return ret;
4148 }
Chris Masond1310b22008-01-24 16:13:08 -05004149
Qu Wenruo30659762019-03-20 14:27:42 +08004150 ret = flush_write_bio(&epd);
4151 ASSERT(ret <= 0);
Chris Masond1310b22008-01-24 16:13:08 -05004152 return ret;
4153}
Chris Masond1310b22008-01-24 16:13:08 -05004154
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004155int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004156 int mode)
4157{
4158 int ret = 0;
4159 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004160 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004161 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004162 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4163 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004164
4165 struct extent_page_data epd = {
4166 .bio = NULL,
4167 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004168 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004169 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004170 };
4171 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004172 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004173 .nr_to_write = nr_pages * 2,
4174 .range_start = start,
4175 .range_end = end + 1,
4176 };
4177
Chris Masond3977122009-01-05 21:25:51 -05004178 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004179 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004180 if (clear_page_dirty_for_io(page))
4181 ret = __extent_writepage(page, &wbc_writepages, &epd);
4182 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004183 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004184 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004185 unlock_page(page);
4186 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004187 put_page(page);
4188 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004189 }
4190
Qu Wenruo02c6db42019-03-20 14:27:45 +08004191 ASSERT(ret <= 0);
4192 if (ret < 0) {
4193 end_write_bio(&epd, ret);
4194 return ret;
4195 }
4196 ret = flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004197 return ret;
4198}
Chris Masond1310b22008-01-24 16:13:08 -05004199
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004200int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004201 struct writeback_control *wbc)
4202{
4203 int ret = 0;
4204 struct extent_page_data epd = {
4205 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004206 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004207 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004208 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004209 };
4210
David Sterba935db852017-06-23 04:30:28 +02004211 ret = extent_write_cache_pages(mapping, wbc, &epd);
Qu Wenruoa2a72fb2019-03-20 14:27:48 +08004212 ASSERT(ret <= 0);
4213 if (ret < 0) {
4214 end_write_bio(&epd, ret);
4215 return ret;
4216 }
4217 ret = flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004218 return ret;
4219}
Chris Masond1310b22008-01-24 16:13:08 -05004220
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004221int extent_readpages(struct address_space *mapping, struct list_head *pages,
4222 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004223{
4224 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004225 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004226 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004227 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004228 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004229 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004230 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004231
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004232 while (!list_empty(pages)) {
Nikolay Borisove65ef212019-03-11 09:55:38 +02004233 u64 contig_end = 0;
4234
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004235 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004236 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004237
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004238 prefetchw(&page->flags);
4239 list_del(&page->lru);
4240 if (add_to_page_cache_lru(page, mapping, page->index,
4241 readahead_gfp_mask(mapping))) {
4242 put_page(page);
Nikolay Borisove65ef212019-03-11 09:55:38 +02004243 break;
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004244 }
4245
4246 pagepool[nr++] = page;
Nikolay Borisove65ef212019-03-11 09:55:38 +02004247 contig_end = page_offset(page) + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004248 }
Liu Bo67c96842012-07-20 21:43:09 -06004249
Nikolay Borisove65ef212019-03-11 09:55:38 +02004250 if (nr) {
4251 u64 contig_start = page_offset(pagepool[0]);
4252
4253 ASSERT(contig_start + nr * PAGE_SIZE - 1 == contig_end);
4254
4255 contiguous_readpages(tree, pagepool, nr, contig_start,
4256 contig_end, &em_cached, &bio, &bio_flags,
4257 &prev_em_start);
4258 }
Chris Masond1310b22008-01-24 16:13:08 -05004259 }
Liu Bo67c96842012-07-20 21:43:09 -06004260
Miao Xie125bac012013-07-25 19:22:37 +08004261 if (em_cached)
4262 free_extent_map(em_cached);
4263
Chris Masond1310b22008-01-24 16:13:08 -05004264 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004265 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004266 return 0;
4267}
Chris Masond1310b22008-01-24 16:13:08 -05004268
4269/*
4270 * basic invalidatepage code, this waits on any locked or writeback
4271 * ranges corresponding to the page, and then deletes any extent state
4272 * records from the tree
4273 */
4274int extent_invalidatepage(struct extent_io_tree *tree,
4275 struct page *page, unsigned long offset)
4276{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004277 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004278 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004279 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004280 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4281
Qu Wenruofda28322013-02-26 08:10:22 +00004282 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004283 if (start > end)
4284 return 0;
4285
David Sterbaff13db42015-12-03 14:30:40 +01004286 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004287 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004288 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004289 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4290 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004291 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004292 return 0;
4293}
Chris Masond1310b22008-01-24 16:13:08 -05004294
4295/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004296 * a helper for releasepage, this tests for areas of the page that
4297 * are locked or under IO and drops the related state bits if it is safe
4298 * to drop the page.
4299 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004300static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004301 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004302{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004303 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004304 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004305 int ret = 1;
4306
Nikolay Borisov88826792019-03-14 15:28:31 +02004307 if (test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL)) {
Chris Mason7b13b7b2008-04-18 10:29:50 -04004308 ret = 0;
Nikolay Borisov88826792019-03-14 15:28:31 +02004309 } else {
Chris Mason11ef1602009-09-23 20:28:46 -04004310 /*
4311 * at this point we can safely clear everything except the
4312 * locked bit and the nodatasum bit
4313 */
David Sterba66b0c882017-10-31 16:30:47 +01004314 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004315 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004316 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004317
4318 /* if clear_extent_bit failed for enomem reasons,
4319 * we can't allow the release to continue.
4320 */
4321 if (ret < 0)
4322 ret = 0;
4323 else
4324 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004325 }
4326 return ret;
4327}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004328
4329/*
Chris Masond1310b22008-01-24 16:13:08 -05004330 * a helper for releasepage. As long as there are no locked extents
4331 * in the range corresponding to the page, both state records and extent
4332 * map records are removed
4333 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004334int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004335{
4336 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004337 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004338 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004339 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4340 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4341 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004342
Mel Gormand0164ad2015-11-06 16:28:21 -08004343 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004344 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004345 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004346 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004347 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004348 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004349 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004350 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004351 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004352 break;
4353 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004354 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4355 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004356 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004357 free_extent_map(em);
4358 break;
4359 }
4360 if (!test_range_bit(tree, em->start,
4361 extent_map_end(em) - 1,
Nikolay Borisov4e586ca2019-03-14 15:28:30 +02004362 EXTENT_LOCKED, 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004363 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4364 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004365 remove_extent_mapping(map, em);
4366 /* once for the rb tree */
4367 free_extent_map(em);
4368 }
4369 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004370 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004371
4372 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004373 free_extent_map(em);
4374 }
Chris Masond1310b22008-01-24 16:13:08 -05004375 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004376 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004377}
Chris Masond1310b22008-01-24 16:13:08 -05004378
Chris Masonec29ed52011-02-23 16:23:20 -05004379/*
4380 * helper function for fiemap, which doesn't want to see any holes.
4381 * This maps until we find something past 'last'
4382 */
4383static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004384 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004385{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004386 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004387 struct extent_map *em;
4388 u64 len;
4389
4390 if (offset >= last)
4391 return NULL;
4392
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304393 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004394 len = last - offset;
4395 if (len == 0)
4396 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004397 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004398 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004399 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004400 return em;
4401
4402 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004403 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004404 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004405
4406 /* this is a hole, advance to the next extent */
4407 offset = extent_map_end(em);
4408 free_extent_map(em);
4409 if (offset >= last)
4410 break;
4411 }
4412 return NULL;
4413}
4414
Qu Wenruo47518322017-04-07 10:43:15 +08004415/*
4416 * To cache previous fiemap extent
4417 *
4418 * Will be used for merging fiemap extent
4419 */
4420struct fiemap_cache {
4421 u64 offset;
4422 u64 phys;
4423 u64 len;
4424 u32 flags;
4425 bool cached;
4426};
4427
4428/*
4429 * Helper to submit fiemap extent.
4430 *
4431 * Will try to merge current fiemap extent specified by @offset, @phys,
4432 * @len and @flags with cached one.
4433 * And only when we fails to merge, cached one will be submitted as
4434 * fiemap extent.
4435 *
4436 * Return value is the same as fiemap_fill_next_extent().
4437 */
4438static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4439 struct fiemap_cache *cache,
4440 u64 offset, u64 phys, u64 len, u32 flags)
4441{
4442 int ret = 0;
4443
4444 if (!cache->cached)
4445 goto assign;
4446
4447 /*
4448 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004449 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004450 * Not recoverable.
4451 *
4452 * NOTE: Physical address can overlap, due to compression
4453 */
4454 if (cache->offset + cache->len > offset) {
4455 WARN_ON(1);
4456 return -EINVAL;
4457 }
4458
4459 /*
4460 * Only merges fiemap extents if
4461 * 1) Their logical addresses are continuous
4462 *
4463 * 2) Their physical addresses are continuous
4464 * So truly compressed (physical size smaller than logical size)
4465 * extents won't get merged with each other
4466 *
4467 * 3) Share same flags except FIEMAP_EXTENT_LAST
4468 * So regular extent won't get merged with prealloc extent
4469 */
4470 if (cache->offset + cache->len == offset &&
4471 cache->phys + cache->len == phys &&
4472 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4473 (flags & ~FIEMAP_EXTENT_LAST)) {
4474 cache->len += len;
4475 cache->flags |= flags;
4476 goto try_submit_last;
4477 }
4478
4479 /* Not mergeable, need to submit cached one */
4480 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4481 cache->len, cache->flags);
4482 cache->cached = false;
4483 if (ret)
4484 return ret;
4485assign:
4486 cache->cached = true;
4487 cache->offset = offset;
4488 cache->phys = phys;
4489 cache->len = len;
4490 cache->flags = flags;
4491try_submit_last:
4492 if (cache->flags & FIEMAP_EXTENT_LAST) {
4493 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4494 cache->phys, cache->len, cache->flags);
4495 cache->cached = false;
4496 }
4497 return ret;
4498}
4499
4500/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004501 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004502 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004503 * The last fiemap cache may still be cached in the following case:
4504 * 0 4k 8k
4505 * |<- Fiemap range ->|
4506 * |<------------ First extent ----------->|
4507 *
4508 * In this case, the first extent range will be cached but not emitted.
4509 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004510 */
David Sterba5c5aff92019-03-20 11:29:46 +01004511static int emit_last_fiemap_cache(struct fiemap_extent_info *fieinfo,
Qu Wenruo848c23b2017-06-22 10:01:21 +08004512 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004513{
4514 int ret;
4515
4516 if (!cache->cached)
4517 return 0;
4518
Qu Wenruo47518322017-04-07 10:43:15 +08004519 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4520 cache->len, cache->flags);
4521 cache->cached = false;
4522 if (ret > 0)
4523 ret = 0;
4524 return ret;
4525}
4526
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004527int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004528 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004529{
Josef Bacik975f84f2010-11-23 19:36:57 +00004530 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004531 u64 off = start;
4532 u64 max = start + len;
4533 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004534 u32 found_type;
4535 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004536 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004537 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004538 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004539 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004540 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004541 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004542 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004543 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004544 struct fiemap_cache cache = { 0 };
David Sterba5911c8f2019-05-15 15:31:04 +02004545 struct ulist *roots;
4546 struct ulist *tmp_ulist;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004547 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004548 u64 em_start = 0;
4549 u64 em_len = 0;
4550 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004551
4552 if (len == 0)
4553 return -EINVAL;
4554
Josef Bacik975f84f2010-11-23 19:36:57 +00004555 path = btrfs_alloc_path();
4556 if (!path)
4557 return -ENOMEM;
4558 path->leave_spinning = 1;
4559
David Sterba5911c8f2019-05-15 15:31:04 +02004560 roots = ulist_alloc(GFP_KERNEL);
4561 tmp_ulist = ulist_alloc(GFP_KERNEL);
4562 if (!roots || !tmp_ulist) {
4563 ret = -ENOMEM;
4564 goto out_free_ulist;
4565 }
4566
Jeff Mahoneyda170662016-06-15 09:22:56 -04004567 start = round_down(start, btrfs_inode_sectorsize(inode));
4568 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004569
Chris Masonec29ed52011-02-23 16:23:20 -05004570 /*
4571 * lookup the last file extent. We're not using i_size here
4572 * because there might be preallocation past i_size
4573 */
David Sterbaf85b7372017-01-20 14:54:07 +01004574 ret = btrfs_lookup_file_extent(NULL, root, path,
4575 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004576 if (ret < 0) {
4577 btrfs_free_path(path);
David Sterba5911c8f2019-05-15 15:31:04 +02004578 goto out_free_ulist;
Liu Bo2d324f52016-05-17 17:21:48 -07004579 } else {
4580 WARN_ON(!ret);
4581 if (ret == 1)
4582 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004583 }
Liu Bo2d324f52016-05-17 17:21:48 -07004584
Josef Bacik975f84f2010-11-23 19:36:57 +00004585 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004586 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004587 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004588
Chris Masonec29ed52011-02-23 16:23:20 -05004589 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004590 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004591 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004592 /* have to trust i_size as the end */
4593 last = (u64)-1;
4594 last_for_get_extent = isize;
4595 } else {
4596 /*
4597 * remember the start of the last extent. There are a
4598 * bunch of different factors that go into the length of the
4599 * extent, so its much less complex to remember where it started
4600 */
4601 last = found_key.offset;
4602 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004603 }
Liu Bofe09e162013-09-22 12:54:23 +08004604 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004605
Chris Masonec29ed52011-02-23 16:23:20 -05004606 /*
4607 * we might have some extents allocated but more delalloc past those
4608 * extents. so, we trust isize unless the start of the last extent is
4609 * beyond isize
4610 */
4611 if (last < isize) {
4612 last = (u64)-1;
4613 last_for_get_extent = isize;
4614 }
4615
David Sterbaff13db42015-12-03 14:30:40 +01004616 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004617 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004618
David Sterbae3350e12017-06-23 04:09:57 +02004619 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004620 if (!em)
4621 goto out;
4622 if (IS_ERR(em)) {
4623 ret = PTR_ERR(em);
4624 goto out;
4625 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004626
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004627 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004628 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004629
Chris Masonea8efc72011-03-08 11:54:40 -05004630 /* break if the extent we found is outside the range */
4631 if (em->start >= max || extent_map_end(em) < off)
4632 break;
4633
4634 /*
4635 * get_extent may return an extent that starts before our
4636 * requested range. We have to make sure the ranges
4637 * we return to fiemap always move forward and don't
4638 * overlap, so adjust the offsets here
4639 */
4640 em_start = max(em->start, off);
4641
4642 /*
4643 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004644 * for adjusting the disk offset below. Only do this if the
4645 * extent isn't compressed since our in ram offset may be past
4646 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004647 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004648 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4649 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004650 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004651 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004652 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004653 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4654 disko = em->block_start + offset_in_extent;
4655 else
4656 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004657
Chris Masonea8efc72011-03-08 11:54:40 -05004658 /*
4659 * bump off for our next call to get_extent
4660 */
4661 off = extent_map_end(em);
4662 if (off >= max)
4663 end = 1;
4664
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004665 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004666 end = 1;
4667 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004668 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004669 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4670 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004671 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004672 flags |= (FIEMAP_EXTENT_DELALLOC |
4673 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004674 } else if (fieinfo->fi_extents_max) {
4675 u64 bytenr = em->block_start -
4676 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004677
Liu Bofe09e162013-09-22 12:54:23 +08004678 /*
4679 * As btrfs supports shared space, this information
4680 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004681 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4682 * then we're just getting a count and we can skip the
4683 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004684 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004685 ret = btrfs_check_shared(root,
4686 btrfs_ino(BTRFS_I(inode)),
David Sterba5911c8f2019-05-15 15:31:04 +02004687 bytenr, roots, tmp_ulist);
Josef Bacikdc046b12014-09-10 16:20:45 -04004688 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004689 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004690 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004691 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004692 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004693 }
4694 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4695 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004696 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4697 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004698
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004699 free_extent_map(em);
4700 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004701 if ((em_start >= last) || em_len == (u64)-1 ||
4702 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004703 flags |= FIEMAP_EXTENT_LAST;
4704 end = 1;
4705 }
4706
Chris Masonec29ed52011-02-23 16:23:20 -05004707 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004708 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004709 if (IS_ERR(em)) {
4710 ret = PTR_ERR(em);
4711 goto out;
4712 }
4713 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004714 flags |= FIEMAP_EXTENT_LAST;
4715 end = 1;
4716 }
Qu Wenruo47518322017-04-07 10:43:15 +08004717 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4718 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004719 if (ret) {
4720 if (ret == 1)
4721 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004722 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004723 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004724 }
4725out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004726 if (!ret)
David Sterba5c5aff92019-03-20 11:29:46 +01004727 ret = emit_last_fiemap_cache(fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004728 free_extent_map(em);
4729out:
Liu Bofe09e162013-09-22 12:54:23 +08004730 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004731 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004732 &cached_state);
David Sterba5911c8f2019-05-15 15:31:04 +02004733
4734out_free_ulist:
4735 ulist_free(roots);
4736 ulist_free(tmp_ulist);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004737 return ret;
4738}
4739
Chris Mason727011e2010-08-06 13:21:20 -04004740static void __free_extent_buffer(struct extent_buffer *eb)
4741{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004742 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004743 kmem_cache_free(extent_buffer_cache, eb);
4744}
4745
Josef Bacika26e8c92014-03-28 17:07:27 -04004746int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004747{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004748 return (atomic_read(&eb->io_pages) ||
4749 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4750 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004751}
4752
Miao Xie897ca6e92010-10-26 20:57:29 -04004753/*
David Sterba55ac0132018-07-19 17:24:32 +02004754 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004755 */
David Sterba55ac0132018-07-19 17:24:32 +02004756static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004757{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004758 int i;
4759 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004760 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004761
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004762 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004763
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004764 num_pages = num_extent_pages(eb);
4765 for (i = 0; i < num_pages; i++) {
4766 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004767
Forrest Liu5d2361d2015-02-09 17:31:45 +08004768 if (!page)
4769 continue;
4770 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004771 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004772 /*
4773 * We do this since we'll remove the pages after we've
4774 * removed the eb from the radix tree, so we could race
4775 * and have this page now attached to the new eb. So
4776 * only clear page_private if it's still connected to
4777 * this eb.
4778 */
4779 if (PagePrivate(page) &&
4780 page->private == (unsigned long)eb) {
4781 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4782 BUG_ON(PageDirty(page));
4783 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004784 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004785 * We need to make sure we haven't be attached
4786 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004787 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004788 ClearPagePrivate(page);
4789 set_page_private(page, 0);
4790 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004791 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004792 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004793
4794 if (mapped)
4795 spin_unlock(&page->mapping->private_lock);
4796
Nicholas D Steeves01327612016-05-19 21:18:45 -04004797 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004798 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004799 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004800}
4801
4802/*
4803 * Helper for releasing the extent buffer.
4804 */
4805static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4806{
David Sterba55ac0132018-07-19 17:24:32 +02004807 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004808 __free_extent_buffer(eb);
4809}
4810
Josef Bacikf28491e2013-12-16 13:24:27 -05004811static struct extent_buffer *
4812__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004813 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004814{
4815 struct extent_buffer *eb = NULL;
4816
Michal Hockod1b5c562015-08-19 14:17:40 +02004817 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004818 eb->start = start;
4819 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004820 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004821 eb->bflags = 0;
4822 rwlock_init(&eb->lock);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004823 atomic_set(&eb->blocking_readers, 0);
4824 atomic_set(&eb->blocking_writers, 0);
David Sterbaed1b4ed2018-08-24 16:31:17 +02004825 eb->lock_nested = false;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004826 init_waitqueue_head(&eb->write_lock_wq);
4827 init_waitqueue_head(&eb->read_lock_wq);
4828
4829 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4830
4831 spin_lock_init(&eb->refs_lock);
4832 atomic_set(&eb->refs, 1);
4833 atomic_set(&eb->io_pages, 0);
4834
4835 /*
4836 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4837 */
4838 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4839 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4840 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4841
David Sterba843ccf92018-08-24 14:56:28 +02004842#ifdef CONFIG_BTRFS_DEBUG
4843 atomic_set(&eb->spinning_writers, 0);
David Sterbaafd495a2018-08-24 15:57:38 +02004844 atomic_set(&eb->spinning_readers, 0);
David Sterba5c9c7992018-08-24 16:15:51 +02004845 atomic_set(&eb->read_locks, 0);
David Sterbac79adfc2018-08-24 16:24:26 +02004846 atomic_set(&eb->write_locks, 0);
David Sterba843ccf92018-08-24 14:56:28 +02004847#endif
4848
Josef Bacikdb7f3432013-08-07 14:54:37 -04004849 return eb;
4850}
4851
4852struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4853{
David Sterbacc5e31a2018-03-01 18:20:27 +01004854 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004855 struct page *p;
4856 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004857 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004858
David Sterba3f556f72014-06-15 03:20:26 +02004859 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004860 if (new == NULL)
4861 return NULL;
4862
4863 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004864 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004865 if (!p) {
4866 btrfs_release_extent_buffer(new);
4867 return NULL;
4868 }
4869 attach_extent_buffer_page(new, p);
4870 WARN_ON(PageDirty(p));
4871 SetPageUptodate(p);
4872 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004873 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004874 }
4875
Josef Bacikdb7f3432013-08-07 14:54:37 -04004876 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004877 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004878
4879 return new;
4880}
4881
Omar Sandoval0f331222015-09-29 20:50:31 -07004882struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4883 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004884{
4885 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004886 int num_pages;
4887 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004888
David Sterba3f556f72014-06-15 03:20:26 +02004889 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004890 if (!eb)
4891 return NULL;
4892
David Sterba65ad0102018-06-29 10:56:49 +02004893 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004894 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004895 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004896 if (!eb->pages[i])
4897 goto err;
4898 }
4899 set_extent_buffer_uptodate(eb);
4900 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004901 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004902
4903 return eb;
4904err:
4905 for (; i > 0; i--)
4906 __free_page(eb->pages[i - 1]);
4907 __free_extent_buffer(eb);
4908 return NULL;
4909}
4910
Omar Sandoval0f331222015-09-29 20:50:31 -07004911struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004912 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004913{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004914 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004915}
4916
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004917static void check_buffer_tree_ref(struct extent_buffer *eb)
4918{
Chris Mason242e18c2013-01-29 17:49:37 -05004919 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004920 /* the ref bit is tricky. We have to make sure it is set
4921 * if we have the buffer dirty. Otherwise the
4922 * code to free a buffer can end up dropping a dirty
4923 * page
4924 *
4925 * Once the ref bit is set, it won't go away while the
4926 * buffer is dirty or in writeback, and it also won't
4927 * go away while we have the reference count on the
4928 * eb bumped.
4929 *
4930 * We can't just set the ref bit without bumping the
4931 * ref on the eb because free_extent_buffer might
4932 * see the ref bit and try to clear it. If this happens
4933 * free_extent_buffer might end up dropping our original
4934 * ref by mistake and freeing the page before we are able
4935 * to add one more ref.
4936 *
4937 * So bump the ref count first, then set the bit. If someone
4938 * beat us to it, drop the ref we added.
4939 */
Chris Mason242e18c2013-01-29 17:49:37 -05004940 refs = atomic_read(&eb->refs);
4941 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4942 return;
4943
Josef Bacik594831c2012-07-20 16:11:08 -04004944 spin_lock(&eb->refs_lock);
4945 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004946 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004947 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004948}
4949
Mel Gorman2457aec2014-06-04 16:10:31 -07004950static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4951 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004952{
David Sterbacc5e31a2018-03-01 18:20:27 +01004953 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004954
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004955 check_buffer_tree_ref(eb);
4956
David Sterba65ad0102018-06-29 10:56:49 +02004957 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004958 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004959 struct page *p = eb->pages[i];
4960
Mel Gorman2457aec2014-06-04 16:10:31 -07004961 if (p != accessed)
4962 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004963 }
4964}
4965
Josef Bacikf28491e2013-12-16 13:24:27 -05004966struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4967 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004968{
4969 struct extent_buffer *eb;
4970
4971 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004972 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004973 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004974 if (eb && atomic_inc_not_zero(&eb->refs)) {
4975 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004976 /*
4977 * Lock our eb's refs_lock to avoid races with
4978 * free_extent_buffer. When we get our eb it might be flagged
4979 * with EXTENT_BUFFER_STALE and another task running
4980 * free_extent_buffer might have seen that flag set,
4981 * eb->refs == 2, that the buffer isn't under IO (dirty and
4982 * writeback flags not set) and it's still in the tree (flag
4983 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4984 * of decrementing the extent buffer's reference count twice.
4985 * So here we could race and increment the eb's reference count,
4986 * clear its stale flag, mark it as dirty and drop our reference
4987 * before the other task finishes executing free_extent_buffer,
4988 * which would later result in an attempt to free an extent
4989 * buffer that is dirty.
4990 */
4991 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4992 spin_lock(&eb->refs_lock);
4993 spin_unlock(&eb->refs_lock);
4994 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004995 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004996 return eb;
4997 }
4998 rcu_read_unlock();
4999
5000 return NULL;
5001}
5002
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005003#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5004struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005005 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005006{
5007 struct extent_buffer *eb, *exists = NULL;
5008 int ret;
5009
5010 eb = find_extent_buffer(fs_info, start);
5011 if (eb)
5012 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04005013 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005014 if (!eb)
5015 return NULL;
5016 eb->fs_info = fs_info;
5017again:
David Sterbae1860a72016-05-09 14:11:38 +02005018 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005019 if (ret)
5020 goto free_eb;
5021 spin_lock(&fs_info->buffer_lock);
5022 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005023 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005024 spin_unlock(&fs_info->buffer_lock);
5025 radix_tree_preload_end();
5026 if (ret == -EEXIST) {
5027 exists = find_extent_buffer(fs_info, start);
5028 if (exists)
5029 goto free_eb;
5030 else
5031 goto again;
5032 }
5033 check_buffer_tree_ref(eb);
5034 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
5035
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005036 return eb;
5037free_eb:
5038 btrfs_release_extent_buffer(eb);
5039 return exists;
5040}
5041#endif
5042
Josef Bacikf28491e2013-12-16 13:24:27 -05005043struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02005044 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05005045{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005046 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01005047 int num_pages;
5048 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005049 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005050 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005051 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05005052 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05005053 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05005054 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005055 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05005056
Jeff Mahoneyda170662016-06-15 09:22:56 -04005057 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07005058 btrfs_err(fs_info, "bad tree block start %llu", start);
5059 return ERR_PTR(-EINVAL);
5060 }
5061
Josef Bacikf28491e2013-12-16 13:24:27 -05005062 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005063 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04005064 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005065
David Sterba23d79d82014-06-15 02:55:29 +02005066 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04005067 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07005068 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05005069
David Sterba65ad0102018-06-29 10:56:49 +02005070 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04005071 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02005072 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07005073 if (!p) {
5074 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04005075 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005076 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005077
5078 spin_lock(&mapping->private_lock);
5079 if (PagePrivate(p)) {
5080 /*
5081 * We could have already allocated an eb for this page
5082 * and attached one so lets see if we can get a ref on
5083 * the existing eb, and if we can we know it's good and
5084 * we can just return that one, else we know we can just
5085 * overwrite page->private.
5086 */
5087 exists = (struct extent_buffer *)p->private;
5088 if (atomic_inc_not_zero(&exists->refs)) {
5089 spin_unlock(&mapping->private_lock);
5090 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005091 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005092 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005093 goto free_eb;
5094 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005095 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005096
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005097 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005098 * Do this so attach doesn't complain and we need to
5099 * drop the ref the old guy had.
5100 */
5101 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005102 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005103 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005104 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005105 attach_extent_buffer_page(eb, p);
5106 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005107 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005108 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005109 if (!PageUptodate(p))
5110 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005111
5112 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005113 * We can't unlock the pages just yet since the extent buffer
5114 * hasn't been properly inserted in the radix tree, this
5115 * opens a race with btree_releasepage which can free a page
5116 * while we are still filling in all pages for the buffer and
5117 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05005118 */
Chris Masond1310b22008-01-24 16:13:08 -05005119 }
5120 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005121 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005122again:
David Sterbae1860a72016-05-09 14:11:38 +02005123 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005124 if (ret) {
5125 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005126 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005127 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005128
Josef Bacikf28491e2013-12-16 13:24:27 -05005129 spin_lock(&fs_info->buffer_lock);
5130 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005131 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005132 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005133 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005134 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005135 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005136 if (exists)
5137 goto free_eb;
5138 else
Josef Bacik115391d2012-03-09 09:51:43 -05005139 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005140 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005141 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005142 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005143 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005144
5145 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005146 * Now it's safe to unlock the pages because any calls to
5147 * btree_releasepage will correctly detect that a page belongs to a
5148 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005149 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005150 for (i = 0; i < num_pages; i++)
5151 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005152 return eb;
5153
Chris Mason6af118ce2008-07-22 11:18:07 -04005154free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005155 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005156 for (i = 0; i < num_pages; i++) {
5157 if (eb->pages[i])
5158 unlock_page(eb->pages[i]);
5159 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005160
Miao Xie897ca6e92010-10-26 20:57:29 -04005161 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005162 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005163}
Chris Masond1310b22008-01-24 16:13:08 -05005164
Josef Bacik3083ee22012-03-09 16:01:49 -05005165static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5166{
5167 struct extent_buffer *eb =
5168 container_of(head, struct extent_buffer, rcu_head);
5169
5170 __free_extent_buffer(eb);
5171}
5172
David Sterbaf7a52a42013-04-26 14:56:29 +00005173static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005174{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005175 lockdep_assert_held(&eb->refs_lock);
5176
Josef Bacik3083ee22012-03-09 16:01:49 -05005177 WARN_ON(atomic_read(&eb->refs) == 0);
5178 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005179 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005180 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005181
Jan Schmidt815a51c2012-05-16 17:00:02 +02005182 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005183
Josef Bacikf28491e2013-12-16 13:24:27 -05005184 spin_lock(&fs_info->buffer_lock);
5185 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005186 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005187 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005188 } else {
5189 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005190 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005191
5192 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005193 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005194#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005195 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005196 __free_extent_buffer(eb);
5197 return 1;
5198 }
5199#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005200 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005201 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005202 }
5203 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005204
5205 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005206}
5207
Chris Masond1310b22008-01-24 16:13:08 -05005208void free_extent_buffer(struct extent_buffer *eb)
5209{
Chris Mason242e18c2013-01-29 17:49:37 -05005210 int refs;
5211 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005212 if (!eb)
5213 return;
5214
Chris Mason242e18c2013-01-29 17:49:37 -05005215 while (1) {
5216 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005217 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5218 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5219 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005220 break;
5221 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5222 if (old == refs)
5223 return;
5224 }
5225
Josef Bacik3083ee22012-03-09 16:01:49 -05005226 spin_lock(&eb->refs_lock);
5227 if (atomic_read(&eb->refs) == 2 &&
5228 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005229 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005230 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5231 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005232
Josef Bacik3083ee22012-03-09 16:01:49 -05005233 /*
5234 * I know this is terrible, but it's temporary until we stop tracking
5235 * the uptodate bits and such for the extent buffers.
5236 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005237 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005238}
Chris Masond1310b22008-01-24 16:13:08 -05005239
Josef Bacik3083ee22012-03-09 16:01:49 -05005240void free_extent_buffer_stale(struct extent_buffer *eb)
5241{
5242 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005243 return;
5244
Josef Bacik3083ee22012-03-09 16:01:49 -05005245 spin_lock(&eb->refs_lock);
5246 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5247
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005248 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005249 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5250 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005251 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005252}
5253
Chris Mason1d4284b2012-03-28 20:31:37 -04005254void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005255{
David Sterbacc5e31a2018-03-01 18:20:27 +01005256 int i;
5257 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005258 struct page *page;
5259
David Sterba65ad0102018-06-29 10:56:49 +02005260 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005261
5262 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005263 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005264 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005265 continue;
5266
Chris Masona61e6f22008-07-22 11:18:08 -04005267 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005268 WARN_ON(!PagePrivate(page));
5269
Chris Masond1310b22008-01-24 16:13:08 -05005270 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005271 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005272 if (!PageDirty(page))
5273 __xa_clear_mark(&page->mapping->i_pages,
5274 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005275 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005276 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005277 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005278 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005279 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005280}
Chris Masond1310b22008-01-24 16:13:08 -05005281
Liu Boabb57ef2018-09-14 01:44:42 +08005282bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005283{
David Sterbacc5e31a2018-03-01 18:20:27 +01005284 int i;
5285 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005286 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005287
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005288 check_buffer_tree_ref(eb);
5289
Chris Masonb9473432009-03-13 11:00:37 -04005290 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005291
David Sterba65ad0102018-06-29 10:56:49 +02005292 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005293 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005294 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5295
Liu Boabb57ef2018-09-14 01:44:42 +08005296 if (!was_dirty)
5297 for (i = 0; i < num_pages; i++)
5298 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005299
5300#ifdef CONFIG_BTRFS_DEBUG
5301 for (i = 0; i < num_pages; i++)
5302 ASSERT(PageDirty(eb->pages[i]));
5303#endif
5304
Chris Masonb9473432009-03-13 11:00:37 -04005305 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005306}
Chris Masond1310b22008-01-24 16:13:08 -05005307
David Sterba69ba3922015-12-03 13:08:59 +01005308void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005309{
David Sterbacc5e31a2018-03-01 18:20:27 +01005310 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005311 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005312 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005313
Chris Masonb4ce94d2009-02-04 09:25:08 -05005314 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005315 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005316 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005317 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005318 if (page)
5319 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005320 }
Chris Mason1259ab72008-05-12 13:39:03 -04005321}
5322
David Sterba09c25a82015-12-03 13:08:59 +01005323void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005324{
David Sterbacc5e31a2018-03-01 18:20:27 +01005325 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005326 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005327 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005328
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005329 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005330 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005331 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005332 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005333 SetPageUptodate(page);
5334 }
Chris Masond1310b22008-01-24 16:13:08 -05005335}
Chris Masond1310b22008-01-24 16:13:08 -05005336
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005337int read_extent_buffer_pages(struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005338{
David Sterbacc5e31a2018-03-01 18:20:27 +01005339 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005340 struct page *page;
5341 int err;
5342 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005343 int locked_pages = 0;
5344 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005345 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005346 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005347 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005348 unsigned long bio_flags = 0;
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005349 struct extent_io_tree *tree = &BTRFS_I(eb->fs_info->btree_inode)->io_tree;
Chris Masona86c12c2008-02-07 10:50:54 -05005350
Chris Masonb4ce94d2009-02-04 09:25:08 -05005351 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005352 return 0;
5353
David Sterba65ad0102018-06-29 10:56:49 +02005354 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005355 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005356 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005357 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005358 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005359 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005360 } else {
5361 lock_page(page);
5362 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005363 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005364 }
5365 /*
5366 * We need to firstly lock all pages to make sure that
5367 * the uptodate bit of our pages won't be affected by
5368 * clear_extent_buffer_uptodate().
5369 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005370 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005371 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005372 if (!PageUptodate(page)) {
5373 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005374 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005375 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005376 }
Liu Bo2571e732016-08-03 12:33:01 -07005377
Chris Masonce9adaa2008-04-09 16:28:12 -04005378 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005379 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005380 goto unlock_exit;
5381 }
5382
Filipe Manana656f30d2014-09-26 12:25:56 +01005383 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005384 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005385 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005386 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005387 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005388
Chris Masonce9adaa2008-04-09 16:28:12 -04005389 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005390 if (ret) {
5391 atomic_dec(&eb->io_pages);
5392 unlock_page(page);
5393 continue;
5394 }
5395
Chris Masonf1885912008-04-09 16:28:12 -04005396 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005397 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005398 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005399 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005400 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005401 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005402 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005403 /*
5404 * We use &bio in above __extent_read_full_page,
5405 * so we ensure that if it returns error, the
5406 * current page fails to add itself to bio and
5407 * it's been unlocked.
5408 *
5409 * We must dec io_pages by ourselves.
5410 */
5411 atomic_dec(&eb->io_pages);
5412 }
Chris Masond1310b22008-01-24 16:13:08 -05005413 } else {
5414 unlock_page(page);
5415 }
5416 }
5417
Jeff Mahoney355808c2011-10-03 23:23:14 -04005418 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005419 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005420 if (err)
5421 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005422 }
Chris Masona86c12c2008-02-07 10:50:54 -05005423
Arne Jansenbb82ab82011-06-10 14:06:53 +02005424 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005425 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005426
Josef Bacik8436ea912016-09-02 15:40:03 -04005427 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005428 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005429 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005430 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005431 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005432 }
Chris Masond3977122009-01-05 21:25:51 -05005433
Chris Masond1310b22008-01-24 16:13:08 -05005434 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005435
5436unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005437 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005438 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005439 page = eb->pages[locked_pages];
5440 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005441 }
5442 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005443}
Chris Masond1310b22008-01-24 16:13:08 -05005444
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005445void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5446 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005447{
5448 size_t cur;
5449 size_t offset;
5450 struct page *page;
5451 char *kaddr;
5452 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005453 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005454 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005455
Liu Bof716abd2017-08-09 11:10:16 -06005456 if (start + len > eb->len) {
5457 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5458 eb->start, eb->len, start, len);
5459 memset(dst, 0, len);
5460 return;
5461 }
Chris Masond1310b22008-01-24 16:13:08 -05005462
Johannes Thumshirn70730172018-12-05 15:23:03 +01005463 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005464
Chris Masond3977122009-01-05 21:25:51 -05005465 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005466 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005467
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005468 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005469 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005470 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005471
5472 dst += cur;
5473 len -= cur;
5474 offset = 0;
5475 i++;
5476 }
5477}
Chris Masond1310b22008-01-24 16:13:08 -05005478
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005479int read_extent_buffer_to_user(const struct extent_buffer *eb,
5480 void __user *dstv,
5481 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005482{
5483 size_t cur;
5484 size_t offset;
5485 struct page *page;
5486 char *kaddr;
5487 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005488 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005489 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005490 int ret = 0;
5491
5492 WARN_ON(start > eb->len);
5493 WARN_ON(start + len > eb->start + eb->len);
5494
Johannes Thumshirn70730172018-12-05 15:23:03 +01005495 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005496
5497 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005498 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005499
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005500 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005501 kaddr = page_address(page);
5502 if (copy_to_user(dst, kaddr + offset, cur)) {
5503 ret = -EFAULT;
5504 break;
5505 }
5506
5507 dst += cur;
5508 len -= cur;
5509 offset = 0;
5510 i++;
5511 }
5512
5513 return ret;
5514}
5515
Liu Bo415b35a2016-06-17 19:16:21 -07005516/*
5517 * return 0 if the item is found within a page.
5518 * return 1 if the item spans two pages.
5519 * return -EINVAL otherwise.
5520 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005521int map_private_extent_buffer(const struct extent_buffer *eb,
5522 unsigned long start, unsigned long min_len,
5523 char **map, unsigned long *map_start,
5524 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005525{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005526 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005527 char *kaddr;
5528 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005529 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005530 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005531 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005532 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005533
Liu Bof716abd2017-08-09 11:10:16 -06005534 if (start + min_len > eb->len) {
5535 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5536 eb->start, eb->len, start, min_len);
5537 return -EINVAL;
5538 }
5539
Chris Masond1310b22008-01-24 16:13:08 -05005540 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005541 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005542
5543 if (i == 0) {
5544 offset = start_offset;
5545 *map_start = 0;
5546 } else {
5547 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005548 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005549 }
Chris Masond3977122009-01-05 21:25:51 -05005550
David Sterbafb85fc92014-07-31 01:03:53 +02005551 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005552 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005553 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005554 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005555 return 0;
5556}
Chris Masond1310b22008-01-24 16:13:08 -05005557
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005558int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5559 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005560{
5561 size_t cur;
5562 size_t offset;
5563 struct page *page;
5564 char *kaddr;
5565 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005566 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005567 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005568 int ret = 0;
5569
5570 WARN_ON(start > eb->len);
5571 WARN_ON(start + len > eb->start + eb->len);
5572
Johannes Thumshirn70730172018-12-05 15:23:03 +01005573 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005574
Chris Masond3977122009-01-05 21:25:51 -05005575 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005576 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005577
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005578 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005579
Chris Masona6591712011-07-19 12:04:14 -04005580 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005581 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005582 if (ret)
5583 break;
5584
5585 ptr += cur;
5586 len -= cur;
5587 offset = 0;
5588 i++;
5589 }
5590 return ret;
5591}
Chris Masond1310b22008-01-24 16:13:08 -05005592
David Sterbaf157bf72016-11-09 17:43:38 +01005593void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5594 const void *srcv)
5595{
5596 char *kaddr;
5597
5598 WARN_ON(!PageUptodate(eb->pages[0]));
5599 kaddr = page_address(eb->pages[0]);
5600 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5601 BTRFS_FSID_SIZE);
5602}
5603
5604void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5605{
5606 char *kaddr;
5607
5608 WARN_ON(!PageUptodate(eb->pages[0]));
5609 kaddr = page_address(eb->pages[0]);
5610 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5611 BTRFS_FSID_SIZE);
5612}
5613
Chris Masond1310b22008-01-24 16:13:08 -05005614void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5615 unsigned long start, unsigned long len)
5616{
5617 size_t cur;
5618 size_t offset;
5619 struct page *page;
5620 char *kaddr;
5621 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005622 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005623 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005624
5625 WARN_ON(start > eb->len);
5626 WARN_ON(start + len > eb->start + eb->len);
5627
Johannes Thumshirn70730172018-12-05 15:23:03 +01005628 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005629
Chris Masond3977122009-01-05 21:25:51 -05005630 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005631 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005632 WARN_ON(!PageUptodate(page));
5633
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005634 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005635 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005636 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005637
5638 src += cur;
5639 len -= cur;
5640 offset = 0;
5641 i++;
5642 }
5643}
Chris Masond1310b22008-01-24 16:13:08 -05005644
David Sterbab159fa22016-11-08 18:09:03 +01005645void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5646 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005647{
5648 size_t cur;
5649 size_t offset;
5650 struct page *page;
5651 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005652 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005653 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005654
5655 WARN_ON(start > eb->len);
5656 WARN_ON(start + len > eb->start + eb->len);
5657
Johannes Thumshirn70730172018-12-05 15:23:03 +01005658 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005659
Chris Masond3977122009-01-05 21:25:51 -05005660 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005661 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005662 WARN_ON(!PageUptodate(page));
5663
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005664 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005665 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005666 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005667
5668 len -= cur;
5669 offset = 0;
5670 i++;
5671 }
5672}
Chris Masond1310b22008-01-24 16:13:08 -05005673
David Sterba58e80122016-11-08 18:30:31 +01005674void copy_extent_buffer_full(struct extent_buffer *dst,
5675 struct extent_buffer *src)
5676{
5677 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005678 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005679
5680 ASSERT(dst->len == src->len);
5681
David Sterba65ad0102018-06-29 10:56:49 +02005682 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005683 for (i = 0; i < num_pages; i++)
5684 copy_page(page_address(dst->pages[i]),
5685 page_address(src->pages[i]));
5686}
5687
Chris Masond1310b22008-01-24 16:13:08 -05005688void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5689 unsigned long dst_offset, unsigned long src_offset,
5690 unsigned long len)
5691{
5692 u64 dst_len = dst->len;
5693 size_t cur;
5694 size_t offset;
5695 struct page *page;
5696 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005697 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005698 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005699
5700 WARN_ON(src->len != dst_len);
5701
Johannes Thumshirn70730172018-12-05 15:23:03 +01005702 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005703
Chris Masond3977122009-01-05 21:25:51 -05005704 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005705 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005706 WARN_ON(!PageUptodate(page));
5707
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005708 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005709
Chris Masona6591712011-07-19 12:04:14 -04005710 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005711 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005712
5713 src_offset += cur;
5714 len -= cur;
5715 offset = 0;
5716 i++;
5717 }
5718}
Chris Masond1310b22008-01-24 16:13:08 -05005719
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005720/*
5721 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5722 * given bit number
5723 * @eb: the extent buffer
5724 * @start: offset of the bitmap item in the extent buffer
5725 * @nr: bit number
5726 * @page_index: return index of the page in the extent buffer that contains the
5727 * given bit number
5728 * @page_offset: return offset into the page given by page_index
5729 *
5730 * This helper hides the ugliness of finding the byte in an extent buffer which
5731 * contains a given bit.
5732 */
5733static inline void eb_bitmap_offset(struct extent_buffer *eb,
5734 unsigned long start, unsigned long nr,
5735 unsigned long *page_index,
5736 size_t *page_offset)
5737{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005738 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005739 size_t byte_offset = BIT_BYTE(nr);
5740 size_t offset;
5741
5742 /*
5743 * The byte we want is the offset of the extent buffer + the offset of
5744 * the bitmap item in the extent buffer + the offset of the byte in the
5745 * bitmap item.
5746 */
5747 offset = start_offset + start + byte_offset;
5748
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005749 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005750 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005751}
5752
5753/**
5754 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5755 * @eb: the extent buffer
5756 * @start: offset of the bitmap item in the extent buffer
5757 * @nr: bit number to test
5758 */
5759int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5760 unsigned long nr)
5761{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005762 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005763 struct page *page;
5764 unsigned long i;
5765 size_t offset;
5766
5767 eb_bitmap_offset(eb, start, nr, &i, &offset);
5768 page = eb->pages[i];
5769 WARN_ON(!PageUptodate(page));
5770 kaddr = page_address(page);
5771 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5772}
5773
5774/**
5775 * extent_buffer_bitmap_set - set an area of a bitmap
5776 * @eb: the extent buffer
5777 * @start: offset of the bitmap item in the extent buffer
5778 * @pos: bit number of the first bit
5779 * @len: number of bits to set
5780 */
5781void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5782 unsigned long pos, unsigned long len)
5783{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005784 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005785 struct page *page;
5786 unsigned long i;
5787 size_t offset;
5788 const unsigned int size = pos + len;
5789 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005790 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005791
5792 eb_bitmap_offset(eb, start, pos, &i, &offset);
5793 page = eb->pages[i];
5794 WARN_ON(!PageUptodate(page));
5795 kaddr = page_address(page);
5796
5797 while (len >= bits_to_set) {
5798 kaddr[offset] |= mask_to_set;
5799 len -= bits_to_set;
5800 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005801 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005802 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005803 offset = 0;
5804 page = eb->pages[++i];
5805 WARN_ON(!PageUptodate(page));
5806 kaddr = page_address(page);
5807 }
5808 }
5809 if (len) {
5810 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5811 kaddr[offset] |= mask_to_set;
5812 }
5813}
5814
5815
5816/**
5817 * extent_buffer_bitmap_clear - clear an area of a bitmap
5818 * @eb: the extent buffer
5819 * @start: offset of the bitmap item in the extent buffer
5820 * @pos: bit number of the first bit
5821 * @len: number of bits to clear
5822 */
5823void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5824 unsigned long pos, unsigned long len)
5825{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005826 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005827 struct page *page;
5828 unsigned long i;
5829 size_t offset;
5830 const unsigned int size = pos + len;
5831 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005832 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005833
5834 eb_bitmap_offset(eb, start, pos, &i, &offset);
5835 page = eb->pages[i];
5836 WARN_ON(!PageUptodate(page));
5837 kaddr = page_address(page);
5838
5839 while (len >= bits_to_clear) {
5840 kaddr[offset] &= ~mask_to_clear;
5841 len -= bits_to_clear;
5842 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005843 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005844 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005845 offset = 0;
5846 page = eb->pages[++i];
5847 WARN_ON(!PageUptodate(page));
5848 kaddr = page_address(page);
5849 }
5850 }
5851 if (len) {
5852 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5853 kaddr[offset] &= ~mask_to_clear;
5854 }
5855}
5856
Sergei Trofimovich33872062011-04-11 21:52:52 +00005857static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5858{
5859 unsigned long distance = (src > dst) ? src - dst : dst - src;
5860 return distance < len;
5861}
5862
Chris Masond1310b22008-01-24 16:13:08 -05005863static void copy_pages(struct page *dst_page, struct page *src_page,
5864 unsigned long dst_off, unsigned long src_off,
5865 unsigned long len)
5866{
Chris Masona6591712011-07-19 12:04:14 -04005867 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005868 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005869 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005870
Sergei Trofimovich33872062011-04-11 21:52:52 +00005871 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005872 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005873 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005874 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005875 if (areas_overlap(src_off, dst_off, len))
5876 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005877 }
Chris Masond1310b22008-01-24 16:13:08 -05005878
Chris Mason727011e2010-08-06 13:21:20 -04005879 if (must_memmove)
5880 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5881 else
5882 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005883}
5884
5885void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5886 unsigned long src_offset, unsigned long len)
5887{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005888 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005889 size_t cur;
5890 size_t dst_off_in_page;
5891 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005892 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005893 unsigned long dst_i;
5894 unsigned long src_i;
5895
5896 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005897 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005898 "memmove bogus src_offset %lu move len %lu dst len %lu",
5899 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005900 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005901 }
5902 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005903 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005904 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5905 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005906 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005907 }
5908
Chris Masond3977122009-01-05 21:25:51 -05005909 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01005910 dst_off_in_page = offset_in_page(start_offset + dst_offset);
5911 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005912
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005913 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5914 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005915
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005916 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005917 src_off_in_page));
5918 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005919 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005920
David Sterbafb85fc92014-07-31 01:03:53 +02005921 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005922 dst_off_in_page, src_off_in_page, cur);
5923
5924 src_offset += cur;
5925 dst_offset += cur;
5926 len -= cur;
5927 }
5928}
Chris Masond1310b22008-01-24 16:13:08 -05005929
5930void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5931 unsigned long src_offset, unsigned long len)
5932{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005933 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005934 size_t cur;
5935 size_t dst_off_in_page;
5936 size_t src_off_in_page;
5937 unsigned long dst_end = dst_offset + len - 1;
5938 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005939 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005940 unsigned long dst_i;
5941 unsigned long src_i;
5942
5943 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005944 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005945 "memmove bogus src_offset %lu move len %lu len %lu",
5946 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005947 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005948 }
5949 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005950 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005951 "memmove bogus dst_offset %lu move len %lu len %lu",
5952 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005953 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005954 }
Chris Mason727011e2010-08-06 13:21:20 -04005955 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005956 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5957 return;
5958 }
Chris Masond3977122009-01-05 21:25:51 -05005959 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005960 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5961 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005962
Johannes Thumshirn70730172018-12-05 15:23:03 +01005963 dst_off_in_page = offset_in_page(start_offset + dst_end);
5964 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05005965
5966 cur = min_t(unsigned long, len, src_off_in_page + 1);
5967 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005968 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005969 dst_off_in_page - cur + 1,
5970 src_off_in_page - cur + 1, cur);
5971
5972 dst_end -= cur;
5973 src_end -= cur;
5974 len -= cur;
5975 }
5976}
Chris Mason6af118ce2008-07-22 11:18:07 -04005977
David Sterbaf7a52a42013-04-26 14:56:29 +00005978int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005979{
Chris Mason6af118ce2008-07-22 11:18:07 -04005980 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005981
Miao Xie19fe0a82010-10-26 20:57:29 -04005982 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005983 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005984 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005985 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005986 spin_lock(&page->mapping->private_lock);
5987 if (!PagePrivate(page)) {
5988 spin_unlock(&page->mapping->private_lock);
5989 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005990 }
5991
Josef Bacik3083ee22012-03-09 16:01:49 -05005992 eb = (struct extent_buffer *)page->private;
5993 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005994
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005995 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005996 * This is a little awful but should be ok, we need to make sure that
5997 * the eb doesn't disappear out from under us while we're looking at
5998 * this page.
5999 */
6000 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006001 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05006002 spin_unlock(&eb->refs_lock);
6003 spin_unlock(&page->mapping->private_lock);
6004 return 0;
6005 }
6006 spin_unlock(&page->mapping->private_lock);
6007
Josef Bacik3083ee22012-03-09 16:01:49 -05006008 /*
6009 * If tree ref isn't set then we know the ref on this eb is a real ref,
6010 * so just return, this page will likely be freed soon anyway.
6011 */
6012 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
6013 spin_unlock(&eb->refs_lock);
6014 return 0;
6015 }
Josef Bacik3083ee22012-03-09 16:01:49 -05006016
David Sterbaf7a52a42013-04-26 14:56:29 +00006017 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04006018}