blob: 9aa79ad794c9dd735ed54be9c4ab57b911006e12 [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 Bacik251792012008-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 Bacik251792012008-10-29 14:49:05 -04001428 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001429 }
Josef Bacik251792012008-10-29 14:49:05 -04001430 return 1;
1431}
Josef Bacik251792012008-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 Mason46562cec2009-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;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002585 int i;
Ming Lei6dc4f102019-02-15 19:13:19 +08002586 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002587
David Sterbac09abff2017-07-13 18:10:07 +02002588 ASSERT(!bio_flagged(bio, BIO_CLONED));
Ming Lei6dc4f102019-02-15 19:13:19 +08002589 bio_for_each_segment_all(bvec, bio, i, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002590 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002591 struct inode *inode = page->mapping->host;
2592 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002593
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002594 /* We always issue full-page reads, but if some block
2595 * in a page fails to read, blk_update_request() will
2596 * advance bv_offset and adjust bv_len to compensate.
2597 * Print a warning for nonzero offsets, and an error
2598 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002599 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2600 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002601 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002602 "partial page write in btrfs with offset %u and length %u",
2603 bvec->bv_offset, bvec->bv_len);
2604 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002605 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002606 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002607 bvec->bv_offset, bvec->bv_len);
2608 }
Chris Masond1310b22008-01-24 16:13:08 -05002609
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002610 start = page_offset(page);
2611 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002612
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002613 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002614 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002615 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002616
Chris Masond1310b22008-01-24 16:13:08 -05002617 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002618}
2619
Miao Xie883d0de2013-07-25 19:22:35 +08002620static void
2621endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2622 int uptodate)
2623{
2624 struct extent_state *cached = NULL;
2625 u64 end = start + len - 1;
2626
2627 if (uptodate && tree->track_uptodate)
2628 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002629 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002630}
2631
Chris Masond1310b22008-01-24 16:13:08 -05002632/*
2633 * after a readpage IO is done, we need to:
2634 * clear the uptodate bits on error
2635 * set the uptodate bits if things worked
2636 * set the page up to date if all extents in the tree are uptodate
2637 * clear the lock bit in the extent tree
2638 * unlock the page if there are no other extents locked for it
2639 *
2640 * Scheduling is not allowed, so the extent state tree is expected
2641 * to have one and only one object corresponding to this IO.
2642 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002643static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002644{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002645 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002646 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002647 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002648 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002649 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002650 u64 start;
2651 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002652 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002653 u64 extent_start = 0;
2654 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002655 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002656 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002657 int i;
Ming Lei6dc4f102019-02-15 19:13:19 +08002658 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002659
David Sterbac09abff2017-07-13 18:10:07 +02002660 ASSERT(!bio_flagged(bio, BIO_CLONED));
Ming Lei6dc4f102019-02-15 19:13:19 +08002661 bio_for_each_segment_all(bvec, bio, i, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002662 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002663 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002664 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002665 bool data_inode = btrfs_ino(BTRFS_I(inode))
2666 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002667
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002668 btrfs_debug(fs_info,
2669 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002670 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002671 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002672 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002673 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002674
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002675 /* We always issue full-page reads, but if some block
2676 * in a page fails to read, blk_update_request() will
2677 * advance bv_offset and adjust bv_len to compensate.
2678 * Print a warning for nonzero offsets, and an error
2679 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002680 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2681 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002682 btrfs_err(fs_info,
2683 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002684 bvec->bv_offset, bvec->bv_len);
2685 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002686 btrfs_info(fs_info,
2687 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002688 bvec->bv_offset, bvec->bv_len);
2689 }
Chris Masond1310b22008-01-24 16:13:08 -05002690
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002691 start = page_offset(page);
2692 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002693 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002694
Chris Mason9be33952013-05-17 18:30:14 -04002695 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002696 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002697 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2698 page, start, end,
2699 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002700 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002701 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002702 else
Josef Bacik7870d082017-05-05 11:57:15 -04002703 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2704 failure_tree, tree, start,
2705 page,
2706 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002707 }
Josef Bacikea466792012-03-26 21:57:36 -04002708
Miao Xief2a09da2013-07-25 19:22:33 +08002709 if (likely(uptodate))
2710 goto readpage_ok;
2711
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002712 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002713
2714 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002715 * The generic bio_readpage_error handles errors the
2716 * following way: If possible, new read requests are
2717 * created and submitted and will end up in
2718 * end_bio_extent_readpage as well (if we're lucky,
2719 * not in the !uptodate case). In that case it returns
2720 * 0 and we just go on with the next page in our bio.
2721 * If it can't handle the error it will return -EIO and
2722 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002723 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002724 ret = bio_readpage_error(bio, offset, page, start, end,
2725 mirror);
2726 if (ret == 0) {
2727 uptodate = !bio->bi_status;
2728 offset += len;
2729 continue;
2730 }
2731 } else {
2732 struct extent_buffer *eb;
2733
2734 eb = (struct extent_buffer *)page->private;
2735 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2736 eb->read_mirror = mirror;
2737 atomic_dec(&eb->io_pages);
2738 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2739 &eb->bflags))
2740 btree_readahead_hook(eb, -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002741 }
Miao Xief2a09da2013-07-25 19:22:33 +08002742readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002743 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002744 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002745 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002746 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002747
2748 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002749 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002750 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002751 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002752 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002753 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002754 ClearPageUptodate(page);
2755 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002756 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002757 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002758 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002759
2760 if (unlikely(!uptodate)) {
2761 if (extent_len) {
2762 endio_readpage_release_extent(tree,
2763 extent_start,
2764 extent_len, 1);
2765 extent_start = 0;
2766 extent_len = 0;
2767 }
2768 endio_readpage_release_extent(tree, start,
2769 end - start + 1, 0);
2770 } else if (!extent_len) {
2771 extent_start = start;
2772 extent_len = end + 1 - start;
2773 } else if (extent_start + extent_len == start) {
2774 extent_len += end + 1 - start;
2775 } else {
2776 endio_readpage_release_extent(tree, extent_start,
2777 extent_len, uptodate);
2778 extent_start = start;
2779 extent_len = end + 1 - start;
2780 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002781 }
Chris Masond1310b22008-01-24 16:13:08 -05002782
Miao Xie883d0de2013-07-25 19:22:35 +08002783 if (extent_len)
2784 endio_readpage_release_extent(tree, extent_start, extent_len,
2785 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002786 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002787 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002788}
2789
Chris Mason9be33952013-05-17 18:30:14 -04002790/*
David Sterba184f9992017-06-12 17:29:39 +02002791 * Initialize the members up to but not including 'bio'. Use after allocating a
2792 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2793 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002794 */
David Sterba184f9992017-06-12 17:29:39 +02002795static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002796{
David Sterba184f9992017-06-12 17:29:39 +02002797 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2798}
2799
2800/*
David Sterba6e707bc2017-06-02 17:26:26 +02002801 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2802 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2803 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002804 */
David Sterbac821e7f32017-06-02 18:35:36 +02002805struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002806{
2807 struct bio *bio;
2808
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002809 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002810 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002811 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002812 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002813 return bio;
2814}
2815
David Sterba8b6c1d52017-06-02 17:48:13 +02002816struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002817{
Miao Xie23ea8e52014-09-12 18:43:54 +08002818 struct btrfs_io_bio *btrfs_bio;
2819 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002820
David Sterba6e707bc2017-06-02 17:26:26 +02002821 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002822 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002823 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002824 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002825 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002826 return new;
2827}
Chris Mason9be33952013-05-17 18:30:14 -04002828
David Sterbac5e4c3d2017-06-12 17:29:41 +02002829struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002830{
Miao Xiefacc8a222013-07-25 19:22:34 +08002831 struct bio *bio;
2832
David Sterba6e707bc2017-06-02 17:26:26 +02002833 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002834 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002835 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002836 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002837}
2838
Liu Boe4770942017-05-16 10:57:14 -07002839struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002840{
2841 struct bio *bio;
2842 struct btrfs_io_bio *btrfs_bio;
2843
2844 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002845 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002846 ASSERT(bio);
2847
2848 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002849 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002850
2851 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002852 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002853 return bio;
2854}
Chris Mason9be33952013-05-17 18:30:14 -04002855
David Sterba4b81ba42017-06-06 19:14:26 +02002856/*
2857 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002858 * @tree: tree so we can call our merge_bio hook
2859 * @wbc: optional writeback control for io accounting
2860 * @page: page to add to the bio
2861 * @pg_offset: offset of the new bio or to check whether we are adding
2862 * a contiguous page to the previous one
2863 * @size: portion of page that we want to write
2864 * @offset: starting offset in the page
2865 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002866 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002867 * @end_io_func: end_io callback for new bio
2868 * @mirror_num: desired mirror to read/write
2869 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2870 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002871 */
2872static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002873 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002874 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002875 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002876 struct block_device *bdev,
2877 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002878 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002879 int mirror_num,
2880 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002881 unsigned long bio_flags,
2882 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002883{
2884 int ret = 0;
2885 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002886 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002887 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002888
David Sterba5c2b1fd2017-06-06 19:22:55 +02002889 ASSERT(bio_ret);
2890
2891 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002892 bool contig;
2893 bool can_merge = true;
2894
Chris Masond1310b22008-01-24 16:13:08 -05002895 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002896 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002897 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002898 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002899 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002900
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002901 ASSERT(tree->ops);
2902 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002903 can_merge = false;
2904
2905 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002906 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002907 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002908 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002909 if (ret < 0) {
2910 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002911 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002912 }
Chris Masond1310b22008-01-24 16:13:08 -05002913 bio = NULL;
2914 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002915 if (wbc)
2916 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002917 return 0;
2918 }
2919 }
Chris Masonc8b97812008-10-29 14:49:59 -04002920
David Sterba6273b7f2017-10-04 17:30:11 +02002921 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002922 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002923 bio->bi_end_io = end_io_func;
2924 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002925 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002926 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002927 if (wbc) {
2928 wbc_init_bio(wbc, bio);
2929 wbc_account_io(wbc, page, page_size);
2930 }
Chris Mason70dec802008-01-29 09:59:12 -05002931
David Sterba5c2b1fd2017-06-06 19:22:55 +02002932 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002933
2934 return ret;
2935}
2936
Eric Sandeen48a3b632013-04-25 20:41:01 +00002937static void attach_extent_buffer_page(struct extent_buffer *eb,
2938 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002939{
2940 if (!PagePrivate(page)) {
2941 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002942 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002943 set_page_private(page, (unsigned long)eb);
2944 } else {
2945 WARN_ON(page->private != (unsigned long)eb);
2946 }
2947}
2948
Chris Masond1310b22008-01-24 16:13:08 -05002949void set_page_extent_mapped(struct page *page)
2950{
2951 if (!PagePrivate(page)) {
2952 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002953 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002954 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002955 }
2956}
2957
Miao Xie125bac012013-07-25 19:22:37 +08002958static struct extent_map *
2959__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2960 u64 start, u64 len, get_extent_t *get_extent,
2961 struct extent_map **em_cached)
2962{
2963 struct extent_map *em;
2964
2965 if (em_cached && *em_cached) {
2966 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002967 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002968 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002969 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002970 return em;
2971 }
2972
2973 free_extent_map(em);
2974 *em_cached = NULL;
2975 }
2976
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002977 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002978 if (em_cached && !IS_ERR_OR_NULL(em)) {
2979 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002980 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002981 *em_cached = em;
2982 }
2983 return em;
2984}
Chris Masond1310b22008-01-24 16:13:08 -05002985/*
2986 * basic readpage implementation. Locked extent state structs are inserted
2987 * into the tree that are removed when the IO is done (by the end_io
2988 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002989 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002990 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002991 */
Miao Xie99740902013-07-25 19:22:36 +08002992static int __do_readpage(struct extent_io_tree *tree,
2993 struct page *page,
2994 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002995 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002996 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002997 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002998 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002999{
3000 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003001 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02003002 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003003 u64 cur = start;
3004 u64 extent_offset;
3005 u64 last_byte = i_size_read(inode);
3006 u64 block_start;
3007 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05003008 struct extent_map *em;
3009 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07003010 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003011 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02003012 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003013 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04003014 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05003015 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00003016 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003017
3018 set_page_extent_mapped(page);
3019
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003020 if (!PageUptodate(page)) {
3021 if (cleancache_get_page(page) == 0) {
3022 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003023 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003024 goto out;
3025 }
3026 }
3027
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003028 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04003029 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01003030 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04003031
3032 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003033 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003034 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003035 memset(userpage + zero_offset, 0, iosize);
3036 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003037 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003038 }
3039 }
Chris Masond1310b22008-01-24 16:13:08 -05003040 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01003041 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02003042 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003043
Chris Masond1310b22008-01-24 16:13:08 -05003044 if (cur >= last_byte) {
3045 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003046 struct extent_state *cached = NULL;
3047
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003048 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003049 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003050 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003051 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003052 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003053 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003054 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003055 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003056 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003057 break;
3058 }
Miao Xie125bac012013-07-25 19:22:37 +08003059 em = __get_extent_map(inode, page, pg_offset, cur,
3060 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003061 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003062 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003063 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003064 break;
3065 }
Chris Masond1310b22008-01-24 16:13:08 -05003066 extent_offset = cur - em->start;
3067 BUG_ON(extent_map_end(em) <= cur);
3068 BUG_ON(end < cur);
3069
Li Zefan261507a02010-12-17 14:21:50 +08003070 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003071 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003072 extent_set_compress_type(&this_bio_flag,
3073 em->compress_type);
3074 }
Chris Masonc8b97812008-10-29 14:49:59 -04003075
Chris Masond1310b22008-01-24 16:13:08 -05003076 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3077 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003078 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003079 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3080 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02003081 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003082 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02003083 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003084 disk_io_size = iosize;
3085 }
Chris Masond1310b22008-01-24 16:13:08 -05003086 bdev = em->bdev;
3087 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003088 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3089 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003090
3091 /*
3092 * If we have a file range that points to a compressed extent
3093 * and it's followed by a consecutive file range that points to
3094 * to the same compressed extent (possibly with a different
3095 * offset and/or length, so it either points to the whole extent
3096 * or only part of it), we must make sure we do not submit a
3097 * single bio to populate the pages for the 2 ranges because
3098 * this makes the compressed extent read zero out the pages
3099 * belonging to the 2nd range. Imagine the following scenario:
3100 *
3101 * File layout
3102 * [0 - 8K] [8K - 24K]
3103 * | |
3104 * | |
3105 * points to extent X, points to extent X,
3106 * offset 4K, length of 8K offset 0, length 16K
3107 *
3108 * [extent X, compressed length = 4K uncompressed length = 16K]
3109 *
3110 * If the bio to read the compressed extent covers both ranges,
3111 * it will decompress extent X into the pages belonging to the
3112 * first range and then it will stop, zeroing out the remaining
3113 * pages that belong to the other range that points to extent X.
3114 * So here we make sure we submit 2 bios, one for the first
3115 * range and another one for the third range. Both will target
3116 * the same physical extent from disk, but we can't currently
3117 * make the compressed bio endio callback populate the pages
3118 * for both ranges because each compressed bio is tightly
3119 * coupled with a single extent map, and each range can have
3120 * an extent map with a different offset value relative to the
3121 * uncompressed data of our extent and different lengths. This
3122 * is a corner case so we prioritize correctness over
3123 * non-optimal behavior (submitting 2 bios for the same extent).
3124 */
3125 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3126 prev_em_start && *prev_em_start != (u64)-1 &&
Filipe Manana8e928212019-02-14 15:17:20 +00003127 *prev_em_start != em->start)
Filipe Manana005efed2015-09-14 09:09:31 +01003128 force_bio_submit = true;
3129
3130 if (prev_em_start)
Filipe Manana8e928212019-02-14 15:17:20 +00003131 *prev_em_start = em->start;
Filipe Manana005efed2015-09-14 09:09:31 +01003132
Chris Masond1310b22008-01-24 16:13:08 -05003133 free_extent_map(em);
3134 em = NULL;
3135
3136 /* we've found a hole, just zero and go on */
3137 if (block_start == EXTENT_MAP_HOLE) {
3138 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003139 struct extent_state *cached = NULL;
3140
Cong Wang7ac687d2011-11-25 23:14:28 +08003141 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003142 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003143 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003144 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003145
3146 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003147 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003148 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003149 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003150 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003151 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003152 continue;
3153 }
3154 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003155 if (test_range_bit(tree, cur, cur_end,
3156 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003157 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003158 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003159 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003160 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003161 continue;
3162 }
Chris Mason70dec802008-01-29 09:59:12 -05003163 /* we have an inline extent but it didn't get marked up
3164 * to date. Error out
3165 */
3166 if (block_start == EXTENT_MAP_INLINE) {
3167 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003168 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003169 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003170 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003171 continue;
3172 }
Chris Masond1310b22008-01-24 16:13:08 -05003173
David Sterba4b81ba42017-06-06 19:14:26 +02003174 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003175 page, offset, disk_io_size,
3176 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003177 end_bio_extent_readpage, mirror_num,
3178 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003179 this_bio_flag,
3180 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003181 if (!ret) {
3182 nr++;
3183 *bio_flags = this_bio_flag;
3184 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003185 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003186 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003187 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003188 }
Chris Masond1310b22008-01-24 16:13:08 -05003189 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003190 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003191 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003192out:
Chris Masond1310b22008-01-24 16:13:08 -05003193 if (!nr) {
3194 if (!PageError(page))
3195 SetPageUptodate(page);
3196 unlock_page(page);
3197 }
Liu Bobaf863b2016-07-11 10:39:07 -07003198 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003199}
3200
Nikolay Borisove65ef212019-03-11 09:55:38 +02003201static inline void contiguous_readpages(struct extent_io_tree *tree,
Miao Xie99740902013-07-25 19:22:36 +08003202 struct page *pages[], int nr_pages,
3203 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003204 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003205 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003206 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003207 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003208{
3209 struct inode *inode;
3210 struct btrfs_ordered_extent *ordered;
3211 int index;
3212
3213 inode = pages[0]->mapping->host;
3214 while (1) {
3215 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003216 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003217 end - start + 1);
3218 if (!ordered)
3219 break;
3220 unlock_extent(tree, start, end);
3221 btrfs_start_ordered_extent(inode, ordered, 1);
3222 btrfs_put_ordered_extent(ordered);
3223 }
3224
3225 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003226 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003227 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003228 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003229 }
3230}
3231
Miao Xie99740902013-07-25 19:22:36 +08003232static int __extent_read_full_page(struct extent_io_tree *tree,
3233 struct page *page,
3234 get_extent_t *get_extent,
3235 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003236 unsigned long *bio_flags,
3237 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003238{
3239 struct inode *inode = page->mapping->host;
3240 struct btrfs_ordered_extent *ordered;
3241 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003242 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003243 int ret;
3244
3245 while (1) {
3246 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003247 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003248 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003249 if (!ordered)
3250 break;
3251 unlock_extent(tree, start, end);
3252 btrfs_start_ordered_extent(inode, ordered, 1);
3253 btrfs_put_ordered_extent(ordered);
3254 }
3255
Miao Xie125bac012013-07-25 19:22:37 +08003256 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003257 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003258 return ret;
3259}
3260
Chris Masond1310b22008-01-24 16:13:08 -05003261int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003262 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003263{
3264 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003265 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003266 int ret;
3267
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003268 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003269 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003270 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003271 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003272 return ret;
3273}
Chris Masond1310b22008-01-24 16:13:08 -05003274
David Sterba3d4b9492017-02-10 19:33:41 +01003275static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003276 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003277{
3278 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003279}
3280
Chris Masond1310b22008-01-24 16:13:08 -05003281/*
Chris Mason40f76582014-05-21 13:35:51 -07003282 * helper for __extent_writepage, doing all of the delayed allocation setup.
3283 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003284 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003285 * to write the page (copy into inline extent). In this case the IO has
3286 * been started and the page is already unlocked.
3287 *
3288 * This returns 0 if all went well (page still locked)
3289 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003290 */
Chris Mason40f76582014-05-21 13:35:51 -07003291static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003292 struct page *page, struct writeback_control *wbc,
3293 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003294{
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003295 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003296 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003297 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003298 u64 delalloc_to_write = 0;
3299 u64 delalloc_end = 0;
3300 int ret;
3301 int page_started = 0;
3302
Chris Mason40f76582014-05-21 13:35:51 -07003303
3304 while (delalloc_end < page_end) {
Lu Fengqi3522e902018-11-29 11:33:38 +08003305 found = find_lock_delalloc_range(inode, tree,
Chris Mason40f76582014-05-21 13:35:51 -07003306 page,
3307 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003308 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003309 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003310 delalloc_start = delalloc_end + 1;
3311 continue;
3312 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003313 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3314 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003315 /* File system has been set read-only */
3316 if (ret) {
3317 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003318 /*
3319 * btrfs_run_delalloc_range should return < 0 for error
3320 * but just in case, we use > 0 here meaning the IO is
3321 * started, so we don't want to return > 0 unless
3322 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003323 */
3324 ret = ret < 0 ? ret : -EIO;
3325 goto done;
3326 }
3327 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003328 * delalloc_end is already one less than the total length, so
3329 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003330 */
3331 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003332 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003333 delalloc_start = delalloc_end + 1;
3334 }
3335 if (wbc->nr_to_write < delalloc_to_write) {
3336 int thresh = 8192;
3337
3338 if (delalloc_to_write < thresh * 2)
3339 thresh = delalloc_to_write;
3340 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3341 thresh);
3342 }
3343
3344 /* did the fill delalloc function already unlock and start
3345 * the IO?
3346 */
3347 if (page_started) {
3348 /*
3349 * we've unlocked the page, so we can't update
3350 * the mapping's writeback index, just update
3351 * nr_to_write.
3352 */
3353 wbc->nr_to_write -= *nr_written;
3354 return 1;
3355 }
3356
3357 ret = 0;
3358
3359done:
3360 return ret;
3361}
3362
3363/*
3364 * helper for __extent_writepage. This calls the writepage start hooks,
3365 * and does the loop to map the page into extents and bios.
3366 *
3367 * We return 1 if the IO is started and the page is unlocked,
3368 * 0 if all went well (page still locked)
3369 * < 0 if there were errors (page still locked)
3370 */
3371static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3372 struct page *page,
3373 struct writeback_control *wbc,
3374 struct extent_page_data *epd,
3375 loff_t i_size,
3376 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003377 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003378{
Chris Masond1310b22008-01-24 16:13:08 -05003379 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003380 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003381 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003382 u64 end;
3383 u64 cur = start;
3384 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003385 u64 block_start;
3386 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003387 struct extent_map *em;
3388 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003389 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003390 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003391 int ret = 0;
3392 int nr = 0;
3393 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003394
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003395 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3396 if (ret) {
3397 /* Fixup worker will requeue */
3398 if (ret == -EBUSY)
3399 wbc->pages_skipped++;
3400 else
3401 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003402
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003403 update_nr_written(wbc, nr_written);
3404 unlock_page(page);
3405 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003406 }
3407
Chris Mason11c83492009-04-20 15:50:09 -04003408 /*
3409 * we don't want to touch the inode after unlocking the page,
3410 * so we update the mapping writeback index now
3411 */
David Sterba3d4b9492017-02-10 19:33:41 +01003412 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003413
Chris Masond1310b22008-01-24 16:13:08 -05003414 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003415 if (i_size <= start) {
Nikolay Borisovc6297322018-11-08 10:18:08 +02003416 btrfs_writepage_endio_finish_ordered(page, start, page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003417 goto done;
3418 }
3419
Chris Masond1310b22008-01-24 16:13:08 -05003420 blocksize = inode->i_sb->s_blocksize;
3421
3422 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003423 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003424 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003425
Chris Mason40f76582014-05-21 13:35:51 -07003426 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003427 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003428 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003429 break;
3430 }
David Sterba3c98c622017-06-23 04:01:08 +02003431 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003432 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003433 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003434 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003435 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003436 break;
3437 }
3438
3439 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003440 em_end = extent_map_end(em);
3441 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003442 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003443 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003444 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003445 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003446 bdev = em->bdev;
3447 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003448 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003449 free_extent_map(em);
3450 em = NULL;
3451
Chris Masonc8b97812008-10-29 14:49:59 -04003452 /*
3453 * compressed and inline extents are written through other
3454 * paths in the FS
3455 */
3456 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003457 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003458 /*
3459 * end_io notification does not happen here for
3460 * compressed extents
3461 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003462 if (!compressed)
3463 btrfs_writepage_endio_finish_ordered(page, cur,
3464 cur + iosize - 1,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003465 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003466 else if (compressed) {
3467 /* we don't want to end_page_writeback on
3468 * a compressed extent. this happens
3469 * elsewhere
3470 */
3471 nr++;
3472 }
3473
3474 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003475 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003476 continue;
3477 }
Chris Masonc8b97812008-10-29 14:49:59 -04003478
David Sterba5cdc84b2018-07-18 20:32:52 +02003479 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003480 if (!PageWriteback(page)) {
3481 btrfs_err(BTRFS_I(inode)->root->fs_info,
3482 "page %lu not writeback, cur %llu end %llu",
3483 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003484 }
David Sterba58409ed2016-05-04 11:46:10 +02003485
David Sterba4b81ba42017-06-06 19:14:26 +02003486 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003487 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003488 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003489 end_bio_extent_writepage,
3490 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003491 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003492 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003493 if (PageWriteback(page))
3494 end_page_writeback(page);
3495 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003496
Chris Masond1310b22008-01-24 16:13:08 -05003497 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003498 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003499 nr++;
3500 }
3501done:
Chris Mason40f76582014-05-21 13:35:51 -07003502 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003503 return ret;
3504}
3505
3506/*
3507 * the writepage semantics are similar to regular writepage. extent
3508 * records are inserted to lock ranges in the tree, and as dirty areas
3509 * are found, they are marked writeback. Then the lock bits are removed
3510 * and the end_io handler clears the writeback ranges
Qu Wenruo30659762019-03-20 14:27:42 +08003511 *
3512 * Return 0 if everything goes well.
3513 * Return <0 for error.
Chris Mason40f76582014-05-21 13:35:51 -07003514 */
3515static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003516 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003517{
3518 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003519 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003520 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003521 int ret;
3522 int nr = 0;
3523 size_t pg_offset = 0;
3524 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003525 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003526 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003527 unsigned long nr_written = 0;
3528
Liu Boff40adf2017-08-24 18:19:48 -06003529 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003530
3531 trace___extent_writepage(page, inode, wbc);
3532
3533 WARN_ON(!PageLocked(page));
3534
3535 ClearPageError(page);
3536
Johannes Thumshirn70730172018-12-05 15:23:03 +01003537 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003538 if (page->index > end_index ||
3539 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003540 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003541 unlock_page(page);
3542 return 0;
3543 }
3544
3545 if (page->index == end_index) {
3546 char *userpage;
3547
3548 userpage = kmap_atomic(page);
3549 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003550 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003551 kunmap_atomic(userpage);
3552 flush_dcache_page(page);
3553 }
3554
3555 pg_offset = 0;
3556
3557 set_page_extent_mapped(page);
3558
Nikolay Borisov7789a552018-11-08 10:18:06 +02003559 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003560 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003561 if (ret == 1)
3562 goto done_unlocked;
3563 if (ret)
3564 goto done;
3565 }
Chris Mason40f76582014-05-21 13:35:51 -07003566
3567 ret = __extent_writepage_io(inode, page, wbc, epd,
3568 i_size, nr_written, write_flags, &nr);
3569 if (ret == 1)
3570 goto done_unlocked;
3571
3572done:
Chris Masond1310b22008-01-24 16:13:08 -05003573 if (nr == 0) {
3574 /* make sure the mapping tag for page dirty gets cleared */
3575 set_page_writeback(page);
3576 end_page_writeback(page);
3577 }
Filipe Manana61391d52014-05-09 17:17:40 +01003578 if (PageError(page)) {
3579 ret = ret < 0 ? ret : -EIO;
3580 end_extent_writepage(page, ret, start, page_end);
3581 }
Chris Masond1310b22008-01-24 16:13:08 -05003582 unlock_page(page);
Qu Wenruo30659762019-03-20 14:27:42 +08003583 ASSERT(ret <= 0);
Chris Mason40f76582014-05-21 13:35:51 -07003584 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003585
Chris Mason11c83492009-04-20 15:50:09 -04003586done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003587 return 0;
3588}
3589
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003590void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003591{
NeilBrown74316202014-07-07 15:16:04 +10003592 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3593 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003594}
3595
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003596/*
3597 * Lock eb pages and flush the bio if we can't the locks
3598 *
3599 * Return 0 if nothing went wrong
3600 * Return >0 is same as 0, except bio is not submitted
3601 * Return <0 if something went wrong, no page is locked
3602 */
David Sterba9df76fb2019-03-20 11:21:41 +01003603static noinline_for_stack int lock_extent_buffer_for_io(struct extent_buffer *eb,
Chris Mason0e378df2014-05-19 20:55:27 -07003604 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003605{
David Sterba9df76fb2019-03-20 11:21:41 +01003606 struct btrfs_fs_info *fs_info = eb->fs_info;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003607 int i, num_pages, failed_page_nr;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003608 int flush = 0;
3609 int ret = 0;
3610
3611 if (!btrfs_try_tree_write_lock(eb)) {
Qu Wenruof4340622019-03-20 14:27:41 +08003612 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003613 if (ret < 0)
3614 return ret;
3615 flush = 1;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003616 btrfs_tree_lock(eb);
3617 }
3618
3619 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3620 btrfs_tree_unlock(eb);
3621 if (!epd->sync_io)
3622 return 0;
3623 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003624 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003625 if (ret < 0)
3626 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003627 flush = 1;
3628 }
Chris Masona098d8e82012-03-21 12:09:56 -04003629 while (1) {
3630 wait_on_extent_buffer_writeback(eb);
3631 btrfs_tree_lock(eb);
3632 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3633 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003634 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003635 }
3636 }
3637
Josef Bacik51561ff2012-07-20 16:25:24 -04003638 /*
3639 * We need to do this to prevent races in people who check if the eb is
3640 * under IO since we can end up having no IO bits set for a short period
3641 * of time.
3642 */
3643 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003644 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3645 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003646 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003647 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003648 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3649 -eb->len,
3650 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003651 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003652 } else {
3653 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003654 }
3655
3656 btrfs_tree_unlock(eb);
3657
3658 if (!ret)
3659 return ret;
3660
David Sterba65ad0102018-06-29 10:56:49 +02003661 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003662 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003663 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003664
3665 if (!trylock_page(p)) {
3666 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003667 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003668 if (ret < 0) {
3669 failed_page_nr = i;
3670 goto err_unlock;
3671 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003672 flush = 1;
3673 }
3674 lock_page(p);
3675 }
3676 }
3677
3678 return ret;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003679err_unlock:
3680 /* Unlock already locked pages */
3681 for (i = 0; i < failed_page_nr; i++)
3682 unlock_page(eb->pages[i]);
3683 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003684}
3685
3686static void end_extent_buffer_writeback(struct extent_buffer *eb)
3687{
3688 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003689 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003690 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3691}
3692
Filipe Manana656f30d2014-09-26 12:25:56 +01003693static void set_btree_ioerr(struct page *page)
3694{
3695 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003696
3697 SetPageError(page);
3698 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3699 return;
3700
3701 /*
3702 * If writeback for a btree extent that doesn't belong to a log tree
3703 * failed, increment the counter transaction->eb_write_errors.
3704 * We do this because while the transaction is running and before it's
3705 * committing (when we call filemap_fdata[write|wait]_range against
3706 * the btree inode), we might have
3707 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3708 * returns an error or an error happens during writeback, when we're
3709 * committing the transaction we wouldn't know about it, since the pages
3710 * can be no longer dirty nor marked anymore for writeback (if a
3711 * subsequent modification to the extent buffer didn't happen before the
3712 * transaction commit), which makes filemap_fdata[write|wait]_range not
3713 * able to find the pages tagged with SetPageError at transaction
3714 * commit time. So if this happens we must abort the transaction,
3715 * otherwise we commit a super block with btree roots that point to
3716 * btree nodes/leafs whose content on disk is invalid - either garbage
3717 * or the content of some node/leaf from a past generation that got
3718 * cowed or deleted and is no longer valid.
3719 *
3720 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3721 * not be enough - we need to distinguish between log tree extents vs
3722 * non-log tree extents, and the next filemap_fdatawait_range() call
3723 * will catch and clear such errors in the mapping - and that call might
3724 * be from a log sync and not from a transaction commit. Also, checking
3725 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3726 * not done and would not be reliable - the eb might have been released
3727 * from memory and reading it back again means that flag would not be
3728 * set (since it's a runtime flag, not persisted on disk).
3729 *
3730 * Using the flags below in the btree inode also makes us achieve the
3731 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3732 * writeback for all dirty pages and before filemap_fdatawait_range()
3733 * is called, the writeback for all dirty pages had already finished
3734 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3735 * filemap_fdatawait_range() would return success, as it could not know
3736 * that writeback errors happened (the pages were no longer tagged for
3737 * writeback).
3738 */
3739 switch (eb->log_index) {
3740 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003741 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003742 break;
3743 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003744 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003745 break;
3746 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003747 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003748 break;
3749 default:
3750 BUG(); /* unexpected, logic error */
3751 }
3752}
3753
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003754static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003755{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003756 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003757 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003758 int i, done;
Ming Lei6dc4f102019-02-15 19:13:19 +08003759 struct bvec_iter_all iter_all;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003760
David Sterbac09abff2017-07-13 18:10:07 +02003761 ASSERT(!bio_flagged(bio, BIO_CLONED));
Ming Lei6dc4f102019-02-15 19:13:19 +08003762 bio_for_each_segment_all(bvec, bio, i, iter_all) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003763 struct page *page = bvec->bv_page;
3764
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003765 eb = (struct extent_buffer *)page->private;
3766 BUG_ON(!eb);
3767 done = atomic_dec_and_test(&eb->io_pages);
3768
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003769 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003770 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003771 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003772 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003773 }
3774
3775 end_page_writeback(page);
3776
3777 if (!done)
3778 continue;
3779
3780 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003781 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003782
3783 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003784}
3785
Chris Mason0e378df2014-05-19 20:55:27 -07003786static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003787 struct writeback_control *wbc,
3788 struct extent_page_data *epd)
3789{
David Sterba0ab02062019-03-20 11:27:57 +01003790 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003791 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003792 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003793 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003794 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003795 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003796 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003797 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003798 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003799
Filipe Manana656f30d2014-09-26 12:25:56 +01003800 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003801 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003802 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003803
Liu Bo851cd172016-09-23 13:44:44 -07003804 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3805 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003806 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003807 end = btrfs_node_key_ptr_offset(nritems);
3808
David Sterbab159fa22016-11-08 18:09:03 +01003809 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003810 } else {
3811 /*
3812 * leaf:
3813 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3814 */
3815 start = btrfs_item_nr_offset(nritems);
David Sterba8f881e82019-03-20 11:33:10 +01003816 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(eb);
David Sterbab159fa22016-11-08 18:09:03 +01003817 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003818 }
3819
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003820 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003821 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003822
3823 clear_page_dirty_for_io(p);
3824 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003825 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003826 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003827 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003828 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003829 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003830 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003831 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003832 if (PageWriteback(p))
3833 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003834 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3835 end_extent_buffer_writeback(eb);
3836 ret = -EIO;
3837 break;
3838 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003839 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003840 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003841 unlock_page(p);
3842 }
3843
3844 if (unlikely(ret)) {
3845 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003846 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003847 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003848 unlock_page(p);
3849 }
3850 }
3851
3852 return ret;
3853}
3854
3855int btree_write_cache_pages(struct address_space *mapping,
3856 struct writeback_control *wbc)
3857{
3858 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003859 struct extent_buffer *eb, *prev_eb = NULL;
3860 struct extent_page_data epd = {
3861 .bio = NULL,
3862 .tree = tree,
3863 .extent_locked = 0,
3864 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3865 };
3866 int ret = 0;
3867 int done = 0;
3868 int nr_to_write_done = 0;
3869 struct pagevec pvec;
3870 int nr_pages;
3871 pgoff_t index;
3872 pgoff_t end; /* Inclusive */
3873 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003874 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003875
Mel Gorman86679822017-11-15 17:37:52 -08003876 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003877 if (wbc->range_cyclic) {
3878 index = mapping->writeback_index; /* Start from prev offset */
3879 end = -1;
3880 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003881 index = wbc->range_start >> PAGE_SHIFT;
3882 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003883 scanned = 1;
3884 }
3885 if (wbc->sync_mode == WB_SYNC_ALL)
3886 tag = PAGECACHE_TAG_TOWRITE;
3887 else
3888 tag = PAGECACHE_TAG_DIRTY;
3889retry:
3890 if (wbc->sync_mode == WB_SYNC_ALL)
3891 tag_pages_for_writeback(mapping, index, end);
3892 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003893 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003894 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003895 unsigned i;
3896
3897 scanned = 1;
3898 for (i = 0; i < nr_pages; i++) {
3899 struct page *page = pvec.pages[i];
3900
3901 if (!PagePrivate(page))
3902 continue;
3903
Josef Bacikb5bae262012-09-14 13:43:01 -04003904 spin_lock(&mapping->private_lock);
3905 if (!PagePrivate(page)) {
3906 spin_unlock(&mapping->private_lock);
3907 continue;
3908 }
3909
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003910 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003911
3912 /*
3913 * Shouldn't happen and normally this would be a BUG_ON
3914 * but no sense in crashing the users box for something
3915 * we can survive anyway.
3916 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303917 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003918 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003919 continue;
3920 }
3921
Josef Bacikb5bae262012-09-14 13:43:01 -04003922 if (eb == prev_eb) {
3923 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003924 continue;
3925 }
3926
Josef Bacikb5bae262012-09-14 13:43:01 -04003927 ret = atomic_inc_not_zero(&eb->refs);
3928 spin_unlock(&mapping->private_lock);
3929 if (!ret)
3930 continue;
3931
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003932 prev_eb = eb;
David Sterba9df76fb2019-03-20 11:21:41 +01003933 ret = lock_extent_buffer_for_io(eb, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003934 if (!ret) {
3935 free_extent_buffer(eb);
3936 continue;
3937 }
3938
David Sterba0ab02062019-03-20 11:27:57 +01003939 ret = write_one_eb(eb, wbc, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003940 if (ret) {
3941 done = 1;
3942 free_extent_buffer(eb);
3943 break;
3944 }
3945 free_extent_buffer(eb);
3946
3947 /*
3948 * the filesystem may choose to bump up nr_to_write.
3949 * We have to make sure to honor the new nr_to_write
3950 * at any time
3951 */
3952 nr_to_write_done = wbc->nr_to_write <= 0;
3953 }
3954 pagevec_release(&pvec);
3955 cond_resched();
3956 }
3957 if (!scanned && !done) {
3958 /*
3959 * We hit the last page and there is more work to be done: wrap
3960 * back to the start of the file
3961 */
3962 scanned = 1;
3963 index = 0;
3964 goto retry;
3965 }
Qu Wenruo2b952ee2019-03-20 14:27:43 +08003966 ASSERT(ret <= 0);
3967 if (ret < 0) {
3968 end_write_bio(&epd, ret);
3969 return ret;
3970 }
3971 ret = flush_write_bio(&epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003972 return ret;
3973}
3974
Chris Masond1310b22008-01-24 16:13:08 -05003975/**
Chris Mason4bef0842008-09-08 11:18:08 -04003976 * 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 -05003977 * @mapping: address space structure to write
3978 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003979 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003980 *
3981 * If a page is already under I/O, write_cache_pages() skips it, even
3982 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3983 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3984 * and msync() need to guarantee that all the data which was dirty at the time
3985 * the call was made get new I/O started against them. If wbc->sync_mode is
3986 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3987 * existing IO to complete.
3988 */
David Sterba4242b642017-02-10 19:38:24 +01003989static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003990 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003991 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003992{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003993 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003994 int ret = 0;
3995 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003996 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003997 struct pagevec pvec;
3998 int nr_pages;
3999 pgoff_t index;
4000 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08004001 pgoff_t done_index;
4002 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004003 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05004004 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05004005
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004006 /*
4007 * We have to hold onto the inode so that ordered extents can do their
4008 * work when the IO finishes. The alternative to this is failing to add
4009 * an ordered extent if the igrab() fails there and that is a huge pain
4010 * to deal with, so instead just hold onto the inode throughout the
4011 * writepages operation. If it fails here we are freeing up the inode
4012 * anyway and we'd rather not waste our time writing out stuff that is
4013 * going to be truncated anyway.
4014 */
4015 if (!igrab(inode))
4016 return 0;
4017
Mel Gorman86679822017-11-15 17:37:52 -08004018 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05004019 if (wbc->range_cyclic) {
4020 index = mapping->writeback_index; /* Start from prev offset */
4021 end = -1;
4022 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004023 index = wbc->range_start >> PAGE_SHIFT;
4024 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08004025 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
4026 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004027 scanned = 1;
4028 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08004029
4030 /*
4031 * We do the tagged writepage as long as the snapshot flush bit is set
4032 * and we are the first one who do the filemap_flush() on this inode.
4033 *
4034 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
4035 * not race in and drop the bit.
4036 */
4037 if (range_whole && wbc->nr_to_write == LONG_MAX &&
4038 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
4039 &BTRFS_I(inode)->runtime_flags))
4040 wbc->tagged_writepages = 1;
4041
4042 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004043 tag = PAGECACHE_TAG_TOWRITE;
4044 else
4045 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004046retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08004047 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004048 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08004049 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004050 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08004051 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
4052 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05004053 unsigned i;
4054
4055 scanned = 1;
4056 for (i = 0; i < nr_pages; i++) {
4057 struct page *page = pvec.pages[i];
4058
Liu Boa91326672016-03-07 16:56:21 -08004059 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05004060 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07004061 * At this point we hold neither the i_pages lock nor
4062 * the page lock: the page may be truncated or
4063 * invalidated (changing page->mapping to NULL),
4064 * or even swizzled back from swapper_space to
4065 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05004066 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004067 if (!trylock_page(page)) {
Qu Wenruof4340622019-03-20 14:27:41 +08004068 ret = flush_write_bio(epd);
4069 BUG_ON(ret < 0);
Josef Bacikc8f2f242013-02-11 11:33:00 -05004070 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004071 }
Chris Masond1310b22008-01-24 16:13:08 -05004072
4073 if (unlikely(page->mapping != mapping)) {
4074 unlock_page(page);
4075 continue;
4076 }
4077
Chris Masond2c3f4f2008-11-19 12:44:22 -05004078 if (wbc->sync_mode != WB_SYNC_NONE) {
Qu Wenruof4340622019-03-20 14:27:41 +08004079 if (PageWriteback(page)) {
4080 ret = flush_write_bio(epd);
4081 BUG_ON(ret < 0);
4082 }
Chris Masond1310b22008-01-24 16:13:08 -05004083 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004084 }
Chris Masond1310b22008-01-24 16:13:08 -05004085
4086 if (PageWriteback(page) ||
4087 !clear_page_dirty_for_io(page)) {
4088 unlock_page(page);
4089 continue;
4090 }
4091
David Sterbaaab6e9e2017-11-30 18:00:02 +01004092 ret = __extent_writepage(page, wbc, epd);
Liu Boa91326672016-03-07 16:56:21 -08004093 if (ret < 0) {
4094 /*
4095 * done_index is set past this page,
4096 * so media errors will not choke
4097 * background writeout for the entire
4098 * file. This has consequences for
4099 * range_cyclic semantics (ie. it may
4100 * not be suitable for data integrity
4101 * writeout).
4102 */
4103 done_index = page->index + 1;
4104 done = 1;
4105 break;
4106 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004107
4108 /*
4109 * the filesystem may choose to bump up nr_to_write.
4110 * We have to make sure to honor the new nr_to_write
4111 * at any time
4112 */
4113 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004114 }
4115 pagevec_release(&pvec);
4116 cond_resched();
4117 }
Liu Bo894b36e2016-03-07 16:56:22 -08004118 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004119 /*
4120 * We hit the last page and there is more work to be done: wrap
4121 * back to the start of the file
4122 */
4123 scanned = 1;
4124 index = 0;
4125 goto retry;
4126 }
Liu Boa91326672016-03-07 16:56:21 -08004127
4128 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4129 mapping->writeback_index = done_index;
4130
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004131 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004132 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004133}
Chris Masond1310b22008-01-24 16:13:08 -05004134
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004135int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004136{
4137 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004138 struct extent_page_data epd = {
4139 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004140 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004141 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004142 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004143 };
Chris Masond1310b22008-01-24 16:13:08 -05004144
Chris Masond1310b22008-01-24 16:13:08 -05004145 ret = __extent_writepage(page, wbc, &epd);
Qu Wenruo30659762019-03-20 14:27:42 +08004146 ASSERT(ret <= 0);
4147 if (ret < 0) {
4148 end_write_bio(&epd, ret);
4149 return ret;
4150 }
Chris Masond1310b22008-01-24 16:13:08 -05004151
Qu Wenruo30659762019-03-20 14:27:42 +08004152 ret = flush_write_bio(&epd);
4153 ASSERT(ret <= 0);
Chris Masond1310b22008-01-24 16:13:08 -05004154 return ret;
4155}
Chris Masond1310b22008-01-24 16:13:08 -05004156
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004157int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004158 int mode)
4159{
4160 int ret = 0;
4161 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004162 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004163 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004164 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4165 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004166
4167 struct extent_page_data epd = {
4168 .bio = NULL,
4169 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004170 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004171 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004172 };
4173 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004174 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004175 .nr_to_write = nr_pages * 2,
4176 .range_start = start,
4177 .range_end = end + 1,
4178 };
4179
Chris Masond3977122009-01-05 21:25:51 -05004180 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004181 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004182 if (clear_page_dirty_for_io(page))
4183 ret = __extent_writepage(page, &wbc_writepages, &epd);
4184 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004185 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004186 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004187 unlock_page(page);
4188 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004189 put_page(page);
4190 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004191 }
4192
Qu Wenruo02c6db42019-03-20 14:27:45 +08004193 ASSERT(ret <= 0);
4194 if (ret < 0) {
4195 end_write_bio(&epd, ret);
4196 return ret;
4197 }
4198 ret = flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004199 return ret;
4200}
Chris Masond1310b22008-01-24 16:13:08 -05004201
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004202int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004203 struct writeback_control *wbc)
4204{
4205 int ret = 0;
4206 struct extent_page_data epd = {
4207 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004208 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004209 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004210 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004211 };
4212
David Sterba935db852017-06-23 04:30:28 +02004213 ret = extent_write_cache_pages(mapping, wbc, &epd);
Qu Wenruoa2a72fb2019-03-20 14:27:48 +08004214 ASSERT(ret <= 0);
4215 if (ret < 0) {
4216 end_write_bio(&epd, ret);
4217 return ret;
4218 }
4219 ret = flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004220 return ret;
4221}
Chris Masond1310b22008-01-24 16:13:08 -05004222
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004223int extent_readpages(struct address_space *mapping, struct list_head *pages,
4224 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004225{
4226 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004227 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004228 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004229 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004230 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004231 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004232 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004233
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004234 while (!list_empty(pages)) {
Nikolay Borisove65ef212019-03-11 09:55:38 +02004235 u64 contig_end = 0;
4236
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004237 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004238 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004239
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004240 prefetchw(&page->flags);
4241 list_del(&page->lru);
4242 if (add_to_page_cache_lru(page, mapping, page->index,
4243 readahead_gfp_mask(mapping))) {
4244 put_page(page);
Nikolay Borisove65ef212019-03-11 09:55:38 +02004245 break;
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004246 }
4247
4248 pagepool[nr++] = page;
Nikolay Borisove65ef212019-03-11 09:55:38 +02004249 contig_end = page_offset(page) + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004250 }
Liu Bo67c96842012-07-20 21:43:09 -06004251
Nikolay Borisove65ef212019-03-11 09:55:38 +02004252 if (nr) {
4253 u64 contig_start = page_offset(pagepool[0]);
4254
4255 ASSERT(contig_start + nr * PAGE_SIZE - 1 == contig_end);
4256
4257 contiguous_readpages(tree, pagepool, nr, contig_start,
4258 contig_end, &em_cached, &bio, &bio_flags,
4259 &prev_em_start);
4260 }
Chris Masond1310b22008-01-24 16:13:08 -05004261 }
Liu Bo67c96842012-07-20 21:43:09 -06004262
Miao Xie125bac012013-07-25 19:22:37 +08004263 if (em_cached)
4264 free_extent_map(em_cached);
4265
Chris Masond1310b22008-01-24 16:13:08 -05004266 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004267 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004268 return 0;
4269}
Chris Masond1310b22008-01-24 16:13:08 -05004270
4271/*
4272 * basic invalidatepage code, this waits on any locked or writeback
4273 * ranges corresponding to the page, and then deletes any extent state
4274 * records from the tree
4275 */
4276int extent_invalidatepage(struct extent_io_tree *tree,
4277 struct page *page, unsigned long offset)
4278{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004279 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004280 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004281 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004282 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4283
Qu Wenruofda28322013-02-26 08:10:22 +00004284 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004285 if (start > end)
4286 return 0;
4287
David Sterbaff13db42015-12-03 14:30:40 +01004288 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004289 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004290 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004291 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4292 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004293 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004294 return 0;
4295}
Chris Masond1310b22008-01-24 16:13:08 -05004296
4297/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004298 * a helper for releasepage, this tests for areas of the page that
4299 * are locked or under IO and drops the related state bits if it is safe
4300 * to drop the page.
4301 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004302static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004303 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004304{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004305 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004306 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004307 int ret = 1;
4308
Nikolay Borisov88826792019-03-14 15:28:31 +02004309 if (test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL)) {
Chris Mason7b13b7b2008-04-18 10:29:50 -04004310 ret = 0;
Nikolay Borisov88826792019-03-14 15:28:31 +02004311 } else {
Chris Mason11ef1602009-09-23 20:28:46 -04004312 /*
4313 * at this point we can safely clear everything except the
4314 * locked bit and the nodatasum bit
4315 */
David Sterba66b0c882017-10-31 16:30:47 +01004316 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004317 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004318 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004319
4320 /* if clear_extent_bit failed for enomem reasons,
4321 * we can't allow the release to continue.
4322 */
4323 if (ret < 0)
4324 ret = 0;
4325 else
4326 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004327 }
4328 return ret;
4329}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004330
4331/*
Chris Masond1310b22008-01-24 16:13:08 -05004332 * a helper for releasepage. As long as there are no locked extents
4333 * in the range corresponding to the page, both state records and extent
4334 * map records are removed
4335 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004336int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004337{
4338 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004339 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004340 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004341 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4342 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4343 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004344
Mel Gormand0164ad2015-11-06 16:28:21 -08004345 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004346 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004347 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004348 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004349 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004350 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004351 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004352 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004353 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004354 break;
4355 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004356 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4357 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004358 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004359 free_extent_map(em);
4360 break;
4361 }
4362 if (!test_range_bit(tree, em->start,
4363 extent_map_end(em) - 1,
Nikolay Borisov4e586ca2019-03-14 15:28:30 +02004364 EXTENT_LOCKED, 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004365 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4366 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004367 remove_extent_mapping(map, em);
4368 /* once for the rb tree */
4369 free_extent_map(em);
4370 }
4371 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004372 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004373
4374 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004375 free_extent_map(em);
4376 }
Chris Masond1310b22008-01-24 16:13:08 -05004377 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004378 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004379}
Chris Masond1310b22008-01-24 16:13:08 -05004380
Chris Masonec29ed52011-02-23 16:23:20 -05004381/*
4382 * helper function for fiemap, which doesn't want to see any holes.
4383 * This maps until we find something past 'last'
4384 */
4385static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004386 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004387{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004388 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004389 struct extent_map *em;
4390 u64 len;
4391
4392 if (offset >= last)
4393 return NULL;
4394
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304395 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004396 len = last - offset;
4397 if (len == 0)
4398 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004399 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004400 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004401 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004402 return em;
4403
4404 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004405 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004406 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004407
4408 /* this is a hole, advance to the next extent */
4409 offset = extent_map_end(em);
4410 free_extent_map(em);
4411 if (offset >= last)
4412 break;
4413 }
4414 return NULL;
4415}
4416
Qu Wenruo47518322017-04-07 10:43:15 +08004417/*
4418 * To cache previous fiemap extent
4419 *
4420 * Will be used for merging fiemap extent
4421 */
4422struct fiemap_cache {
4423 u64 offset;
4424 u64 phys;
4425 u64 len;
4426 u32 flags;
4427 bool cached;
4428};
4429
4430/*
4431 * Helper to submit fiemap extent.
4432 *
4433 * Will try to merge current fiemap extent specified by @offset, @phys,
4434 * @len and @flags with cached one.
4435 * And only when we fails to merge, cached one will be submitted as
4436 * fiemap extent.
4437 *
4438 * Return value is the same as fiemap_fill_next_extent().
4439 */
4440static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4441 struct fiemap_cache *cache,
4442 u64 offset, u64 phys, u64 len, u32 flags)
4443{
4444 int ret = 0;
4445
4446 if (!cache->cached)
4447 goto assign;
4448
4449 /*
4450 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004451 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004452 * Not recoverable.
4453 *
4454 * NOTE: Physical address can overlap, due to compression
4455 */
4456 if (cache->offset + cache->len > offset) {
4457 WARN_ON(1);
4458 return -EINVAL;
4459 }
4460
4461 /*
4462 * Only merges fiemap extents if
4463 * 1) Their logical addresses are continuous
4464 *
4465 * 2) Their physical addresses are continuous
4466 * So truly compressed (physical size smaller than logical size)
4467 * extents won't get merged with each other
4468 *
4469 * 3) Share same flags except FIEMAP_EXTENT_LAST
4470 * So regular extent won't get merged with prealloc extent
4471 */
4472 if (cache->offset + cache->len == offset &&
4473 cache->phys + cache->len == phys &&
4474 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4475 (flags & ~FIEMAP_EXTENT_LAST)) {
4476 cache->len += len;
4477 cache->flags |= flags;
4478 goto try_submit_last;
4479 }
4480
4481 /* Not mergeable, need to submit cached one */
4482 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4483 cache->len, cache->flags);
4484 cache->cached = false;
4485 if (ret)
4486 return ret;
4487assign:
4488 cache->cached = true;
4489 cache->offset = offset;
4490 cache->phys = phys;
4491 cache->len = len;
4492 cache->flags = flags;
4493try_submit_last:
4494 if (cache->flags & FIEMAP_EXTENT_LAST) {
4495 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4496 cache->phys, cache->len, cache->flags);
4497 cache->cached = false;
4498 }
4499 return ret;
4500}
4501
4502/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004503 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004504 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004505 * The last fiemap cache may still be cached in the following case:
4506 * 0 4k 8k
4507 * |<- Fiemap range ->|
4508 * |<------------ First extent ----------->|
4509 *
4510 * In this case, the first extent range will be cached but not emitted.
4511 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004512 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004513static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4514 struct fiemap_extent_info *fieinfo,
4515 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004516{
4517 int ret;
4518
4519 if (!cache->cached)
4520 return 0;
4521
Qu Wenruo47518322017-04-07 10:43:15 +08004522 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4523 cache->len, cache->flags);
4524 cache->cached = false;
4525 if (ret > 0)
4526 ret = 0;
4527 return ret;
4528}
4529
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004530int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004531 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004532{
Josef Bacik975f84f2010-11-23 19:36:57 +00004533 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004534 u64 off = start;
4535 u64 max = start + len;
4536 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004537 u32 found_type;
4538 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004539 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004540 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004541 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004542 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004543 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004544 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004545 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004546 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004547 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004548 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004549 u64 em_start = 0;
4550 u64 em_len = 0;
4551 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004552
4553 if (len == 0)
4554 return -EINVAL;
4555
Josef Bacik975f84f2010-11-23 19:36:57 +00004556 path = btrfs_alloc_path();
4557 if (!path)
4558 return -ENOMEM;
4559 path->leave_spinning = 1;
4560
Jeff Mahoneyda170662016-06-15 09:22:56 -04004561 start = round_down(start, btrfs_inode_sectorsize(inode));
4562 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004563
Chris Masonec29ed52011-02-23 16:23:20 -05004564 /*
4565 * lookup the last file extent. We're not using i_size here
4566 * because there might be preallocation past i_size
4567 */
David Sterbaf85b7372017-01-20 14:54:07 +01004568 ret = btrfs_lookup_file_extent(NULL, root, path,
4569 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004570 if (ret < 0) {
4571 btrfs_free_path(path);
4572 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004573 } else {
4574 WARN_ON(!ret);
4575 if (ret == 1)
4576 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004577 }
Liu Bo2d324f52016-05-17 17:21:48 -07004578
Josef Bacik975f84f2010-11-23 19:36:57 +00004579 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004580 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004581 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004582
Chris Masonec29ed52011-02-23 16:23:20 -05004583 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004584 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004585 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004586 /* have to trust i_size as the end */
4587 last = (u64)-1;
4588 last_for_get_extent = isize;
4589 } else {
4590 /*
4591 * remember the start of the last extent. There are a
4592 * bunch of different factors that go into the length of the
4593 * extent, so its much less complex to remember where it started
4594 */
4595 last = found_key.offset;
4596 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004597 }
Liu Bofe09e162013-09-22 12:54:23 +08004598 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004599
Chris Masonec29ed52011-02-23 16:23:20 -05004600 /*
4601 * we might have some extents allocated but more delalloc past those
4602 * extents. so, we trust isize unless the start of the last extent is
4603 * beyond isize
4604 */
4605 if (last < isize) {
4606 last = (u64)-1;
4607 last_for_get_extent = isize;
4608 }
4609
David Sterbaff13db42015-12-03 14:30:40 +01004610 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004611 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004612
David Sterbae3350e12017-06-23 04:09:57 +02004613 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004614 if (!em)
4615 goto out;
4616 if (IS_ERR(em)) {
4617 ret = PTR_ERR(em);
4618 goto out;
4619 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004620
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004621 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004622 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004623
Chris Masonea8efc72011-03-08 11:54:40 -05004624 /* break if the extent we found is outside the range */
4625 if (em->start >= max || extent_map_end(em) < off)
4626 break;
4627
4628 /*
4629 * get_extent may return an extent that starts before our
4630 * requested range. We have to make sure the ranges
4631 * we return to fiemap always move forward and don't
4632 * overlap, so adjust the offsets here
4633 */
4634 em_start = max(em->start, off);
4635
4636 /*
4637 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004638 * for adjusting the disk offset below. Only do this if the
4639 * extent isn't compressed since our in ram offset may be past
4640 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004641 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004642 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4643 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004644 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004645 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004646 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004647 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4648 disko = em->block_start + offset_in_extent;
4649 else
4650 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004651
Chris Masonea8efc72011-03-08 11:54:40 -05004652 /*
4653 * bump off for our next call to get_extent
4654 */
4655 off = extent_map_end(em);
4656 if (off >= max)
4657 end = 1;
4658
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004659 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004660 end = 1;
4661 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004662 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004663 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4664 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004665 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004666 flags |= (FIEMAP_EXTENT_DELALLOC |
4667 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004668 } else if (fieinfo->fi_extents_max) {
4669 u64 bytenr = em->block_start -
4670 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004671
Liu Bofe09e162013-09-22 12:54:23 +08004672 /*
4673 * As btrfs supports shared space, this information
4674 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004675 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4676 * then we're just getting a count and we can skip the
4677 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004678 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004679 ret = btrfs_check_shared(root,
4680 btrfs_ino(BTRFS_I(inode)),
4681 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004682 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004683 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004684 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004685 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004686 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004687 }
4688 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4689 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004690 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4691 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004692
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004693 free_extent_map(em);
4694 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004695 if ((em_start >= last) || em_len == (u64)-1 ||
4696 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004697 flags |= FIEMAP_EXTENT_LAST;
4698 end = 1;
4699 }
4700
Chris Masonec29ed52011-02-23 16:23:20 -05004701 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004702 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004703 if (IS_ERR(em)) {
4704 ret = PTR_ERR(em);
4705 goto out;
4706 }
4707 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004708 flags |= FIEMAP_EXTENT_LAST;
4709 end = 1;
4710 }
Qu Wenruo47518322017-04-07 10:43:15 +08004711 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4712 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004713 if (ret) {
4714 if (ret == 1)
4715 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004716 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004717 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004718 }
4719out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004720 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004721 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004722 free_extent_map(em);
4723out:
Liu Bofe09e162013-09-22 12:54:23 +08004724 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004725 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004726 &cached_state);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004727 return ret;
4728}
4729
Chris Mason727011e2010-08-06 13:21:20 -04004730static void __free_extent_buffer(struct extent_buffer *eb)
4731{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004732 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004733 kmem_cache_free(extent_buffer_cache, eb);
4734}
4735
Josef Bacika26e8c92014-03-28 17:07:27 -04004736int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004737{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004738 return (atomic_read(&eb->io_pages) ||
4739 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4740 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004741}
4742
Miao Xie897ca6e92010-10-26 20:57:29 -04004743/*
David Sterba55ac0132018-07-19 17:24:32 +02004744 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004745 */
David Sterba55ac0132018-07-19 17:24:32 +02004746static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004747{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004748 int i;
4749 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004750 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004751
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004752 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004753
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004754 num_pages = num_extent_pages(eb);
4755 for (i = 0; i < num_pages; i++) {
4756 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004757
Forrest Liu5d2361d2015-02-09 17:31:45 +08004758 if (!page)
4759 continue;
4760 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004761 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004762 /*
4763 * We do this since we'll remove the pages after we've
4764 * removed the eb from the radix tree, so we could race
4765 * and have this page now attached to the new eb. So
4766 * only clear page_private if it's still connected to
4767 * this eb.
4768 */
4769 if (PagePrivate(page) &&
4770 page->private == (unsigned long)eb) {
4771 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4772 BUG_ON(PageDirty(page));
4773 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004774 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004775 * We need to make sure we haven't be attached
4776 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004777 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004778 ClearPagePrivate(page);
4779 set_page_private(page, 0);
4780 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004781 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004782 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004783
4784 if (mapped)
4785 spin_unlock(&page->mapping->private_lock);
4786
Nicholas D Steeves01327612016-05-19 21:18:45 -04004787 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004788 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004789 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004790}
4791
4792/*
4793 * Helper for releasing the extent buffer.
4794 */
4795static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4796{
David Sterba55ac0132018-07-19 17:24:32 +02004797 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004798 __free_extent_buffer(eb);
4799}
4800
Josef Bacikf28491e2013-12-16 13:24:27 -05004801static struct extent_buffer *
4802__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004803 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004804{
4805 struct extent_buffer *eb = NULL;
4806
Michal Hockod1b5c562015-08-19 14:17:40 +02004807 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004808 eb->start = start;
4809 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004810 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004811 eb->bflags = 0;
4812 rwlock_init(&eb->lock);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004813 atomic_set(&eb->blocking_readers, 0);
4814 atomic_set(&eb->blocking_writers, 0);
David Sterbaed1b4ed2018-08-24 16:31:17 +02004815 eb->lock_nested = false;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004816 init_waitqueue_head(&eb->write_lock_wq);
4817 init_waitqueue_head(&eb->read_lock_wq);
4818
4819 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4820
4821 spin_lock_init(&eb->refs_lock);
4822 atomic_set(&eb->refs, 1);
4823 atomic_set(&eb->io_pages, 0);
4824
4825 /*
4826 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4827 */
4828 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4829 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4830 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4831
David Sterba843ccf92018-08-24 14:56:28 +02004832#ifdef CONFIG_BTRFS_DEBUG
4833 atomic_set(&eb->spinning_writers, 0);
David Sterbaafd495a2018-08-24 15:57:38 +02004834 atomic_set(&eb->spinning_readers, 0);
David Sterba5c9c7992018-08-24 16:15:51 +02004835 atomic_set(&eb->read_locks, 0);
David Sterbac79adfc2018-08-24 16:24:26 +02004836 atomic_set(&eb->write_locks, 0);
David Sterba843ccf92018-08-24 14:56:28 +02004837#endif
4838
Josef Bacikdb7f3432013-08-07 14:54:37 -04004839 return eb;
4840}
4841
4842struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4843{
David Sterbacc5e31a2018-03-01 18:20:27 +01004844 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004845 struct page *p;
4846 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004847 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004848
David Sterba3f556f72014-06-15 03:20:26 +02004849 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004850 if (new == NULL)
4851 return NULL;
4852
4853 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004854 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004855 if (!p) {
4856 btrfs_release_extent_buffer(new);
4857 return NULL;
4858 }
4859 attach_extent_buffer_page(new, p);
4860 WARN_ON(PageDirty(p));
4861 SetPageUptodate(p);
4862 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004863 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004864 }
4865
Josef Bacikdb7f3432013-08-07 14:54:37 -04004866 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004867 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004868
4869 return new;
4870}
4871
Omar Sandoval0f331222015-09-29 20:50:31 -07004872struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4873 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004874{
4875 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004876 int num_pages;
4877 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004878
David Sterba3f556f72014-06-15 03:20:26 +02004879 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004880 if (!eb)
4881 return NULL;
4882
David Sterba65ad0102018-06-29 10:56:49 +02004883 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004884 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004885 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004886 if (!eb->pages[i])
4887 goto err;
4888 }
4889 set_extent_buffer_uptodate(eb);
4890 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004891 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004892
4893 return eb;
4894err:
4895 for (; i > 0; i--)
4896 __free_page(eb->pages[i - 1]);
4897 __free_extent_buffer(eb);
4898 return NULL;
4899}
4900
Omar Sandoval0f331222015-09-29 20:50:31 -07004901struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004902 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004903{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004904 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004905}
4906
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004907static void check_buffer_tree_ref(struct extent_buffer *eb)
4908{
Chris Mason242e18c2013-01-29 17:49:37 -05004909 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004910 /* the ref bit is tricky. We have to make sure it is set
4911 * if we have the buffer dirty. Otherwise the
4912 * code to free a buffer can end up dropping a dirty
4913 * page
4914 *
4915 * Once the ref bit is set, it won't go away while the
4916 * buffer is dirty or in writeback, and it also won't
4917 * go away while we have the reference count on the
4918 * eb bumped.
4919 *
4920 * We can't just set the ref bit without bumping the
4921 * ref on the eb because free_extent_buffer might
4922 * see the ref bit and try to clear it. If this happens
4923 * free_extent_buffer might end up dropping our original
4924 * ref by mistake and freeing the page before we are able
4925 * to add one more ref.
4926 *
4927 * So bump the ref count first, then set the bit. If someone
4928 * beat us to it, drop the ref we added.
4929 */
Chris Mason242e18c2013-01-29 17:49:37 -05004930 refs = atomic_read(&eb->refs);
4931 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4932 return;
4933
Josef Bacik594831c2012-07-20 16:11:08 -04004934 spin_lock(&eb->refs_lock);
4935 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004936 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004937 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004938}
4939
Mel Gorman2457aec2014-06-04 16:10:31 -07004940static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4941 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004942{
David Sterbacc5e31a2018-03-01 18:20:27 +01004943 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004944
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004945 check_buffer_tree_ref(eb);
4946
David Sterba65ad0102018-06-29 10:56:49 +02004947 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004948 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004949 struct page *p = eb->pages[i];
4950
Mel Gorman2457aec2014-06-04 16:10:31 -07004951 if (p != accessed)
4952 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004953 }
4954}
4955
Josef Bacikf28491e2013-12-16 13:24:27 -05004956struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4957 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004958{
4959 struct extent_buffer *eb;
4960
4961 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004962 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004963 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004964 if (eb && atomic_inc_not_zero(&eb->refs)) {
4965 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004966 /*
4967 * Lock our eb's refs_lock to avoid races with
4968 * free_extent_buffer. When we get our eb it might be flagged
4969 * with EXTENT_BUFFER_STALE and another task running
4970 * free_extent_buffer might have seen that flag set,
4971 * eb->refs == 2, that the buffer isn't under IO (dirty and
4972 * writeback flags not set) and it's still in the tree (flag
4973 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4974 * of decrementing the extent buffer's reference count twice.
4975 * So here we could race and increment the eb's reference count,
4976 * clear its stale flag, mark it as dirty and drop our reference
4977 * before the other task finishes executing free_extent_buffer,
4978 * which would later result in an attempt to free an extent
4979 * buffer that is dirty.
4980 */
4981 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4982 spin_lock(&eb->refs_lock);
4983 spin_unlock(&eb->refs_lock);
4984 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004985 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004986 return eb;
4987 }
4988 rcu_read_unlock();
4989
4990 return NULL;
4991}
4992
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004993#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4994struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004995 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004996{
4997 struct extent_buffer *eb, *exists = NULL;
4998 int ret;
4999
5000 eb = find_extent_buffer(fs_info, start);
5001 if (eb)
5002 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04005003 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005004 if (!eb)
5005 return NULL;
5006 eb->fs_info = fs_info;
5007again:
David Sterbae1860a72016-05-09 14:11:38 +02005008 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005009 if (ret)
5010 goto free_eb;
5011 spin_lock(&fs_info->buffer_lock);
5012 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005013 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005014 spin_unlock(&fs_info->buffer_lock);
5015 radix_tree_preload_end();
5016 if (ret == -EEXIST) {
5017 exists = find_extent_buffer(fs_info, start);
5018 if (exists)
5019 goto free_eb;
5020 else
5021 goto again;
5022 }
5023 check_buffer_tree_ref(eb);
5024 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
5025
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005026 return eb;
5027free_eb:
5028 btrfs_release_extent_buffer(eb);
5029 return exists;
5030}
5031#endif
5032
Josef Bacikf28491e2013-12-16 13:24:27 -05005033struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02005034 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05005035{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005036 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01005037 int num_pages;
5038 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005039 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005040 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005041 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05005042 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05005043 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05005044 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005045 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05005046
Jeff Mahoneyda170662016-06-15 09:22:56 -04005047 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07005048 btrfs_err(fs_info, "bad tree block start %llu", start);
5049 return ERR_PTR(-EINVAL);
5050 }
5051
Josef Bacikf28491e2013-12-16 13:24:27 -05005052 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005053 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04005054 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005055
David Sterba23d79d82014-06-15 02:55:29 +02005056 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04005057 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07005058 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05005059
David Sterba65ad0102018-06-29 10:56:49 +02005060 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04005061 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02005062 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07005063 if (!p) {
5064 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04005065 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005066 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005067
5068 spin_lock(&mapping->private_lock);
5069 if (PagePrivate(p)) {
5070 /*
5071 * We could have already allocated an eb for this page
5072 * and attached one so lets see if we can get a ref on
5073 * the existing eb, and if we can we know it's good and
5074 * we can just return that one, else we know we can just
5075 * overwrite page->private.
5076 */
5077 exists = (struct extent_buffer *)p->private;
5078 if (atomic_inc_not_zero(&exists->refs)) {
5079 spin_unlock(&mapping->private_lock);
5080 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005081 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005082 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005083 goto free_eb;
5084 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005085 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005086
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005087 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005088 * Do this so attach doesn't complain and we need to
5089 * drop the ref the old guy had.
5090 */
5091 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005092 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005093 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005094 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005095 attach_extent_buffer_page(eb, p);
5096 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005097 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005098 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005099 if (!PageUptodate(p))
5100 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005101
5102 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005103 * We can't unlock the pages just yet since the extent buffer
5104 * hasn't been properly inserted in the radix tree, this
5105 * opens a race with btree_releasepage which can free a page
5106 * while we are still filling in all pages for the buffer and
5107 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05005108 */
Chris Masond1310b22008-01-24 16:13:08 -05005109 }
5110 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005111 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005112again:
David Sterbae1860a72016-05-09 14:11:38 +02005113 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005114 if (ret) {
5115 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005116 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005117 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005118
Josef Bacikf28491e2013-12-16 13:24:27 -05005119 spin_lock(&fs_info->buffer_lock);
5120 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005121 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005122 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005123 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005124 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005125 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005126 if (exists)
5127 goto free_eb;
5128 else
Josef Bacik115391d2012-03-09 09:51:43 -05005129 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005130 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005131 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005132 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005133 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005134
5135 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005136 * Now it's safe to unlock the pages because any calls to
5137 * btree_releasepage will correctly detect that a page belongs to a
5138 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005139 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005140 for (i = 0; i < num_pages; i++)
5141 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005142 return eb;
5143
Chris Mason6af118ce2008-07-22 11:18:07 -04005144free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005145 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005146 for (i = 0; i < num_pages; i++) {
5147 if (eb->pages[i])
5148 unlock_page(eb->pages[i]);
5149 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005150
Miao Xie897ca6e92010-10-26 20:57:29 -04005151 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005152 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005153}
Chris Masond1310b22008-01-24 16:13:08 -05005154
Josef Bacik3083ee22012-03-09 16:01:49 -05005155static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5156{
5157 struct extent_buffer *eb =
5158 container_of(head, struct extent_buffer, rcu_head);
5159
5160 __free_extent_buffer(eb);
5161}
5162
David Sterbaf7a52a42013-04-26 14:56:29 +00005163static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005164{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005165 lockdep_assert_held(&eb->refs_lock);
5166
Josef Bacik3083ee22012-03-09 16:01:49 -05005167 WARN_ON(atomic_read(&eb->refs) == 0);
5168 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005169 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005170 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005171
Jan Schmidt815a51c2012-05-16 17:00:02 +02005172 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005173
Josef Bacikf28491e2013-12-16 13:24:27 -05005174 spin_lock(&fs_info->buffer_lock);
5175 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005176 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005177 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005178 } else {
5179 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005180 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005181
5182 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005183 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005184#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005185 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005186 __free_extent_buffer(eb);
5187 return 1;
5188 }
5189#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005190 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005191 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005192 }
5193 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005194
5195 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005196}
5197
Chris Masond1310b22008-01-24 16:13:08 -05005198void free_extent_buffer(struct extent_buffer *eb)
5199{
Chris Mason242e18c2013-01-29 17:49:37 -05005200 int refs;
5201 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005202 if (!eb)
5203 return;
5204
Chris Mason242e18c2013-01-29 17:49:37 -05005205 while (1) {
5206 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005207 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5208 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5209 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005210 break;
5211 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5212 if (old == refs)
5213 return;
5214 }
5215
Josef Bacik3083ee22012-03-09 16:01:49 -05005216 spin_lock(&eb->refs_lock);
5217 if (atomic_read(&eb->refs) == 2 &&
5218 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005219 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005220 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5221 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005222
Josef Bacik3083ee22012-03-09 16:01:49 -05005223 /*
5224 * I know this is terrible, but it's temporary until we stop tracking
5225 * the uptodate bits and such for the extent buffers.
5226 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005227 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005228}
Chris Masond1310b22008-01-24 16:13:08 -05005229
Josef Bacik3083ee22012-03-09 16:01:49 -05005230void free_extent_buffer_stale(struct extent_buffer *eb)
5231{
5232 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005233 return;
5234
Josef Bacik3083ee22012-03-09 16:01:49 -05005235 spin_lock(&eb->refs_lock);
5236 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5237
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005238 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005239 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5240 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005241 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005242}
5243
Chris Mason1d4284b2012-03-28 20:31:37 -04005244void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005245{
David Sterbacc5e31a2018-03-01 18:20:27 +01005246 int i;
5247 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005248 struct page *page;
5249
David Sterba65ad0102018-06-29 10:56:49 +02005250 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005251
5252 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005253 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005254 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005255 continue;
5256
Chris Masona61e6f22008-07-22 11:18:08 -04005257 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005258 WARN_ON(!PagePrivate(page));
5259
Chris Masond1310b22008-01-24 16:13:08 -05005260 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005261 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005262 if (!PageDirty(page))
5263 __xa_clear_mark(&page->mapping->i_pages,
5264 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005265 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005266 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005267 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005268 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005269 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005270}
Chris Masond1310b22008-01-24 16:13:08 -05005271
Liu Boabb57ef2018-09-14 01:44:42 +08005272bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005273{
David Sterbacc5e31a2018-03-01 18:20:27 +01005274 int i;
5275 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005276 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005277
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005278 check_buffer_tree_ref(eb);
5279
Chris Masonb9473432009-03-13 11:00:37 -04005280 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005281
David Sterba65ad0102018-06-29 10:56:49 +02005282 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005283 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005284 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5285
Liu Boabb57ef2018-09-14 01:44:42 +08005286 if (!was_dirty)
5287 for (i = 0; i < num_pages; i++)
5288 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005289
5290#ifdef CONFIG_BTRFS_DEBUG
5291 for (i = 0; i < num_pages; i++)
5292 ASSERT(PageDirty(eb->pages[i]));
5293#endif
5294
Chris Masonb9473432009-03-13 11:00:37 -04005295 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005296}
Chris Masond1310b22008-01-24 16:13:08 -05005297
David Sterba69ba3922015-12-03 13:08:59 +01005298void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005299{
David Sterbacc5e31a2018-03-01 18:20:27 +01005300 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005301 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005302 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005303
Chris Masonb4ce94d2009-02-04 09:25:08 -05005304 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005305 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005306 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005307 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005308 if (page)
5309 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005310 }
Chris Mason1259ab72008-05-12 13:39:03 -04005311}
5312
David Sterba09c25a82015-12-03 13:08:59 +01005313void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005314{
David Sterbacc5e31a2018-03-01 18:20:27 +01005315 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005316 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005317 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005318
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005319 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005320 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005321 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005322 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005323 SetPageUptodate(page);
5324 }
Chris Masond1310b22008-01-24 16:13:08 -05005325}
Chris Masond1310b22008-01-24 16:13:08 -05005326
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005327int read_extent_buffer_pages(struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005328{
David Sterbacc5e31a2018-03-01 18:20:27 +01005329 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005330 struct page *page;
5331 int err;
5332 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005333 int locked_pages = 0;
5334 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005335 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005336 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005337 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005338 unsigned long bio_flags = 0;
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005339 struct extent_io_tree *tree = &BTRFS_I(eb->fs_info->btree_inode)->io_tree;
Chris Masona86c12c2008-02-07 10:50:54 -05005340
Chris Masonb4ce94d2009-02-04 09:25:08 -05005341 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005342 return 0;
5343
David Sterba65ad0102018-06-29 10:56:49 +02005344 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005345 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005346 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005347 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005348 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005349 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005350 } else {
5351 lock_page(page);
5352 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005353 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005354 }
5355 /*
5356 * We need to firstly lock all pages to make sure that
5357 * the uptodate bit of our pages won't be affected by
5358 * clear_extent_buffer_uptodate().
5359 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005360 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005361 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005362 if (!PageUptodate(page)) {
5363 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005364 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005365 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005366 }
Liu Bo2571e732016-08-03 12:33:01 -07005367
Chris Masonce9adaa2008-04-09 16:28:12 -04005368 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005369 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005370 goto unlock_exit;
5371 }
5372
Filipe Manana656f30d2014-09-26 12:25:56 +01005373 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005374 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005375 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005376 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005377 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005378
Chris Masonce9adaa2008-04-09 16:28:12 -04005379 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005380 if (ret) {
5381 atomic_dec(&eb->io_pages);
5382 unlock_page(page);
5383 continue;
5384 }
5385
Chris Masonf1885912008-04-09 16:28:12 -04005386 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005387 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005388 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005389 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005390 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005391 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005392 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005393 /*
5394 * We use &bio in above __extent_read_full_page,
5395 * so we ensure that if it returns error, the
5396 * current page fails to add itself to bio and
5397 * it's been unlocked.
5398 *
5399 * We must dec io_pages by ourselves.
5400 */
5401 atomic_dec(&eb->io_pages);
5402 }
Chris Masond1310b22008-01-24 16:13:08 -05005403 } else {
5404 unlock_page(page);
5405 }
5406 }
5407
Jeff Mahoney355808c2011-10-03 23:23:14 -04005408 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005409 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005410 if (err)
5411 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005412 }
Chris Masona86c12c2008-02-07 10:50:54 -05005413
Arne Jansenbb82ab82011-06-10 14:06:53 +02005414 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005415 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005416
Josef Bacik8436ea912016-09-02 15:40:03 -04005417 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005418 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005419 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005420 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005421 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005422 }
Chris Masond3977122009-01-05 21:25:51 -05005423
Chris Masond1310b22008-01-24 16:13:08 -05005424 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005425
5426unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005427 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005428 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005429 page = eb->pages[locked_pages];
5430 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005431 }
5432 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005433}
Chris Masond1310b22008-01-24 16:13:08 -05005434
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005435void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5436 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005437{
5438 size_t cur;
5439 size_t offset;
5440 struct page *page;
5441 char *kaddr;
5442 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005443 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005444 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005445
Liu Bof716abd2017-08-09 11:10:16 -06005446 if (start + len > eb->len) {
5447 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5448 eb->start, eb->len, start, len);
5449 memset(dst, 0, len);
5450 return;
5451 }
Chris Masond1310b22008-01-24 16:13:08 -05005452
Johannes Thumshirn70730172018-12-05 15:23:03 +01005453 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005454
Chris Masond3977122009-01-05 21:25:51 -05005455 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005456 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005457
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005458 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005459 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005460 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005461
5462 dst += cur;
5463 len -= cur;
5464 offset = 0;
5465 i++;
5466 }
5467}
Chris Masond1310b22008-01-24 16:13:08 -05005468
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005469int read_extent_buffer_to_user(const struct extent_buffer *eb,
5470 void __user *dstv,
5471 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005472{
5473 size_t cur;
5474 size_t offset;
5475 struct page *page;
5476 char *kaddr;
5477 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005478 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005479 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005480 int ret = 0;
5481
5482 WARN_ON(start > eb->len);
5483 WARN_ON(start + len > eb->start + eb->len);
5484
Johannes Thumshirn70730172018-12-05 15:23:03 +01005485 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005486
5487 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005488 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005489
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005490 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005491 kaddr = page_address(page);
5492 if (copy_to_user(dst, kaddr + offset, cur)) {
5493 ret = -EFAULT;
5494 break;
5495 }
5496
5497 dst += cur;
5498 len -= cur;
5499 offset = 0;
5500 i++;
5501 }
5502
5503 return ret;
5504}
5505
Liu Bo415b35a2016-06-17 19:16:21 -07005506/*
5507 * return 0 if the item is found within a page.
5508 * return 1 if the item spans two pages.
5509 * return -EINVAL otherwise.
5510 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005511int map_private_extent_buffer(const struct extent_buffer *eb,
5512 unsigned long start, unsigned long min_len,
5513 char **map, unsigned long *map_start,
5514 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005515{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005516 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005517 char *kaddr;
5518 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005519 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005520 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005521 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005522 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005523
Liu Bof716abd2017-08-09 11:10:16 -06005524 if (start + min_len > eb->len) {
5525 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5526 eb->start, eb->len, start, min_len);
5527 return -EINVAL;
5528 }
5529
Chris Masond1310b22008-01-24 16:13:08 -05005530 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005531 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005532
5533 if (i == 0) {
5534 offset = start_offset;
5535 *map_start = 0;
5536 } else {
5537 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005538 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005539 }
Chris Masond3977122009-01-05 21:25:51 -05005540
David Sterbafb85fc92014-07-31 01:03:53 +02005541 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005542 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005543 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005544 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005545 return 0;
5546}
Chris Masond1310b22008-01-24 16:13:08 -05005547
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005548int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5549 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005550{
5551 size_t cur;
5552 size_t offset;
5553 struct page *page;
5554 char *kaddr;
5555 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005556 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005557 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005558 int ret = 0;
5559
5560 WARN_ON(start > eb->len);
5561 WARN_ON(start + len > eb->start + eb->len);
5562
Johannes Thumshirn70730172018-12-05 15:23:03 +01005563 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005564
Chris Masond3977122009-01-05 21:25:51 -05005565 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005566 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005567
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005568 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005569
Chris Masona6591712011-07-19 12:04:14 -04005570 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005571 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005572 if (ret)
5573 break;
5574
5575 ptr += cur;
5576 len -= cur;
5577 offset = 0;
5578 i++;
5579 }
5580 return ret;
5581}
Chris Masond1310b22008-01-24 16:13:08 -05005582
David Sterbaf157bf72016-11-09 17:43:38 +01005583void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5584 const void *srcv)
5585{
5586 char *kaddr;
5587
5588 WARN_ON(!PageUptodate(eb->pages[0]));
5589 kaddr = page_address(eb->pages[0]);
5590 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5591 BTRFS_FSID_SIZE);
5592}
5593
5594void write_extent_buffer_fsid(struct extent_buffer *eb, 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, fsid), srcv,
5601 BTRFS_FSID_SIZE);
5602}
5603
Chris Masond1310b22008-01-24 16:13:08 -05005604void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5605 unsigned long start, unsigned long len)
5606{
5607 size_t cur;
5608 size_t offset;
5609 struct page *page;
5610 char *kaddr;
5611 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005612 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005613 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005614
5615 WARN_ON(start > eb->len);
5616 WARN_ON(start + len > eb->start + eb->len);
5617
Johannes Thumshirn70730172018-12-05 15:23:03 +01005618 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005619
Chris Masond3977122009-01-05 21:25:51 -05005620 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005621 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005622 WARN_ON(!PageUptodate(page));
5623
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005624 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005625 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005626 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005627
5628 src += cur;
5629 len -= cur;
5630 offset = 0;
5631 i++;
5632 }
5633}
Chris Masond1310b22008-01-24 16:13:08 -05005634
David Sterbab159fa22016-11-08 18:09:03 +01005635void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5636 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005637{
5638 size_t cur;
5639 size_t offset;
5640 struct page *page;
5641 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005642 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005643 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005644
5645 WARN_ON(start > eb->len);
5646 WARN_ON(start + len > eb->start + eb->len);
5647
Johannes Thumshirn70730172018-12-05 15:23:03 +01005648 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005649
Chris Masond3977122009-01-05 21:25:51 -05005650 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005651 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005652 WARN_ON(!PageUptodate(page));
5653
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005654 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005655 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005656 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005657
5658 len -= cur;
5659 offset = 0;
5660 i++;
5661 }
5662}
Chris Masond1310b22008-01-24 16:13:08 -05005663
David Sterba58e80122016-11-08 18:30:31 +01005664void copy_extent_buffer_full(struct extent_buffer *dst,
5665 struct extent_buffer *src)
5666{
5667 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005668 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005669
5670 ASSERT(dst->len == src->len);
5671
David Sterba65ad0102018-06-29 10:56:49 +02005672 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005673 for (i = 0; i < num_pages; i++)
5674 copy_page(page_address(dst->pages[i]),
5675 page_address(src->pages[i]));
5676}
5677
Chris Masond1310b22008-01-24 16:13:08 -05005678void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5679 unsigned long dst_offset, unsigned long src_offset,
5680 unsigned long len)
5681{
5682 u64 dst_len = dst->len;
5683 size_t cur;
5684 size_t offset;
5685 struct page *page;
5686 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005687 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005688 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005689
5690 WARN_ON(src->len != dst_len);
5691
Johannes Thumshirn70730172018-12-05 15:23:03 +01005692 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005693
Chris Masond3977122009-01-05 21:25:51 -05005694 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005695 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005696 WARN_ON(!PageUptodate(page));
5697
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005698 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005699
Chris Masona6591712011-07-19 12:04:14 -04005700 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005701 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005702
5703 src_offset += cur;
5704 len -= cur;
5705 offset = 0;
5706 i++;
5707 }
5708}
Chris Masond1310b22008-01-24 16:13:08 -05005709
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005710/*
5711 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5712 * given bit number
5713 * @eb: the extent buffer
5714 * @start: offset of the bitmap item in the extent buffer
5715 * @nr: bit number
5716 * @page_index: return index of the page in the extent buffer that contains the
5717 * given bit number
5718 * @page_offset: return offset into the page given by page_index
5719 *
5720 * This helper hides the ugliness of finding the byte in an extent buffer which
5721 * contains a given bit.
5722 */
5723static inline void eb_bitmap_offset(struct extent_buffer *eb,
5724 unsigned long start, unsigned long nr,
5725 unsigned long *page_index,
5726 size_t *page_offset)
5727{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005728 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005729 size_t byte_offset = BIT_BYTE(nr);
5730 size_t offset;
5731
5732 /*
5733 * The byte we want is the offset of the extent buffer + the offset of
5734 * the bitmap item in the extent buffer + the offset of the byte in the
5735 * bitmap item.
5736 */
5737 offset = start_offset + start + byte_offset;
5738
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005739 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005740 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005741}
5742
5743/**
5744 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5745 * @eb: the extent buffer
5746 * @start: offset of the bitmap item in the extent buffer
5747 * @nr: bit number to test
5748 */
5749int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5750 unsigned long nr)
5751{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005752 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005753 struct page *page;
5754 unsigned long i;
5755 size_t offset;
5756
5757 eb_bitmap_offset(eb, start, nr, &i, &offset);
5758 page = eb->pages[i];
5759 WARN_ON(!PageUptodate(page));
5760 kaddr = page_address(page);
5761 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5762}
5763
5764/**
5765 * extent_buffer_bitmap_set - set an area of a bitmap
5766 * @eb: the extent buffer
5767 * @start: offset of the bitmap item in the extent buffer
5768 * @pos: bit number of the first bit
5769 * @len: number of bits to set
5770 */
5771void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5772 unsigned long pos, unsigned long len)
5773{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005774 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005775 struct page *page;
5776 unsigned long i;
5777 size_t offset;
5778 const unsigned int size = pos + len;
5779 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005780 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005781
5782 eb_bitmap_offset(eb, start, pos, &i, &offset);
5783 page = eb->pages[i];
5784 WARN_ON(!PageUptodate(page));
5785 kaddr = page_address(page);
5786
5787 while (len >= bits_to_set) {
5788 kaddr[offset] |= mask_to_set;
5789 len -= bits_to_set;
5790 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005791 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005792 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005793 offset = 0;
5794 page = eb->pages[++i];
5795 WARN_ON(!PageUptodate(page));
5796 kaddr = page_address(page);
5797 }
5798 }
5799 if (len) {
5800 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5801 kaddr[offset] |= mask_to_set;
5802 }
5803}
5804
5805
5806/**
5807 * extent_buffer_bitmap_clear - clear an area of a bitmap
5808 * @eb: the extent buffer
5809 * @start: offset of the bitmap item in the extent buffer
5810 * @pos: bit number of the first bit
5811 * @len: number of bits to clear
5812 */
5813void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5814 unsigned long pos, unsigned long len)
5815{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005816 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005817 struct page *page;
5818 unsigned long i;
5819 size_t offset;
5820 const unsigned int size = pos + len;
5821 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005822 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005823
5824 eb_bitmap_offset(eb, start, pos, &i, &offset);
5825 page = eb->pages[i];
5826 WARN_ON(!PageUptodate(page));
5827 kaddr = page_address(page);
5828
5829 while (len >= bits_to_clear) {
5830 kaddr[offset] &= ~mask_to_clear;
5831 len -= bits_to_clear;
5832 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005833 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005834 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005835 offset = 0;
5836 page = eb->pages[++i];
5837 WARN_ON(!PageUptodate(page));
5838 kaddr = page_address(page);
5839 }
5840 }
5841 if (len) {
5842 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5843 kaddr[offset] &= ~mask_to_clear;
5844 }
5845}
5846
Sergei Trofimovich33872062011-04-11 21:52:52 +00005847static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5848{
5849 unsigned long distance = (src > dst) ? src - dst : dst - src;
5850 return distance < len;
5851}
5852
Chris Masond1310b22008-01-24 16:13:08 -05005853static void copy_pages(struct page *dst_page, struct page *src_page,
5854 unsigned long dst_off, unsigned long src_off,
5855 unsigned long len)
5856{
Chris Masona6591712011-07-19 12:04:14 -04005857 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005858 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005859 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005860
Sergei Trofimovich33872062011-04-11 21:52:52 +00005861 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005862 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005863 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005864 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005865 if (areas_overlap(src_off, dst_off, len))
5866 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005867 }
Chris Masond1310b22008-01-24 16:13:08 -05005868
Chris Mason727011e2010-08-06 13:21:20 -04005869 if (must_memmove)
5870 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5871 else
5872 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005873}
5874
5875void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5876 unsigned long src_offset, unsigned long len)
5877{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005878 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005879 size_t cur;
5880 size_t dst_off_in_page;
5881 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005882 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005883 unsigned long dst_i;
5884 unsigned long src_i;
5885
5886 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005887 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005888 "memmove bogus src_offset %lu move len %lu dst len %lu",
5889 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005890 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005891 }
5892 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005893 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005894 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5895 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005896 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005897 }
5898
Chris Masond3977122009-01-05 21:25:51 -05005899 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01005900 dst_off_in_page = offset_in_page(start_offset + dst_offset);
5901 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005902
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005903 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5904 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005905
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005906 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005907 src_off_in_page));
5908 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005909 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005910
David Sterbafb85fc92014-07-31 01:03:53 +02005911 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005912 dst_off_in_page, src_off_in_page, cur);
5913
5914 src_offset += cur;
5915 dst_offset += cur;
5916 len -= cur;
5917 }
5918}
Chris Masond1310b22008-01-24 16:13:08 -05005919
5920void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5921 unsigned long src_offset, unsigned long len)
5922{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005923 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005924 size_t cur;
5925 size_t dst_off_in_page;
5926 size_t src_off_in_page;
5927 unsigned long dst_end = dst_offset + len - 1;
5928 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005929 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005930 unsigned long dst_i;
5931 unsigned long src_i;
5932
5933 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005934 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005935 "memmove bogus src_offset %lu move len %lu len %lu",
5936 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005937 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005938 }
5939 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005940 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005941 "memmove bogus dst_offset %lu move len %lu len %lu",
5942 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005943 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005944 }
Chris Mason727011e2010-08-06 13:21:20 -04005945 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005946 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5947 return;
5948 }
Chris Masond3977122009-01-05 21:25:51 -05005949 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005950 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5951 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005952
Johannes Thumshirn70730172018-12-05 15:23:03 +01005953 dst_off_in_page = offset_in_page(start_offset + dst_end);
5954 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05005955
5956 cur = min_t(unsigned long, len, src_off_in_page + 1);
5957 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005958 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005959 dst_off_in_page - cur + 1,
5960 src_off_in_page - cur + 1, cur);
5961
5962 dst_end -= cur;
5963 src_end -= cur;
5964 len -= cur;
5965 }
5966}
Chris Mason6af118ce2008-07-22 11:18:07 -04005967
David Sterbaf7a52a42013-04-26 14:56:29 +00005968int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005969{
Chris Mason6af118ce2008-07-22 11:18:07 -04005970 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005971
Miao Xie19fe0a82010-10-26 20:57:29 -04005972 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005973 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005974 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005975 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005976 spin_lock(&page->mapping->private_lock);
5977 if (!PagePrivate(page)) {
5978 spin_unlock(&page->mapping->private_lock);
5979 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005980 }
5981
Josef Bacik3083ee22012-03-09 16:01:49 -05005982 eb = (struct extent_buffer *)page->private;
5983 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005984
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005985 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005986 * This is a little awful but should be ok, we need to make sure that
5987 * the eb doesn't disappear out from under us while we're looking at
5988 * this page.
5989 */
5990 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005991 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005992 spin_unlock(&eb->refs_lock);
5993 spin_unlock(&page->mapping->private_lock);
5994 return 0;
5995 }
5996 spin_unlock(&page->mapping->private_lock);
5997
Josef Bacik3083ee22012-03-09 16:01:49 -05005998 /*
5999 * If tree ref isn't set then we know the ref on this eb is a real ref,
6000 * so just return, this page will likely be freed soon anyway.
6001 */
6002 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
6003 spin_unlock(&eb->refs_lock);
6004 return 0;
6005 }
Josef Bacik3083ee22012-03-09 16:01:49 -05006006
David Sterbaf7a52a42013-04-26 14:56:29 +00006007 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04006008}