blob: dffa7c6373e10433404a75d0202e25ff57ed0bcc [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
Josef Bacik33ca8322019-09-23 10:05:17 -040062static inline void btrfs_extent_buffer_leak_debug_check(void)
63{
64 struct extent_buffer *eb;
65
66 while (!list_empty(&buffers)) {
67 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
68 pr_err("BTRFS: buffer leak start %llu len %lu refs %d bflags %lu\n",
69 eb->start, eb->len, atomic_read(&eb->refs), eb->bflags);
70 list_del(&eb->leak_list);
71 kmem_cache_free(extent_buffer_cache, eb);
72 }
73}
74
75static inline void btrfs_extent_state_leak_debug_check(void)
Eric Sandeen6d49ba12013-04-22 16:12:31 +000076{
77 struct extent_state *state;
Eric Sandeen6d49ba12013-04-22 16:12:31 +000078
79 while (!list_empty(&states)) {
80 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010081 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010082 state->start, state->end, state->state,
83 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020084 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000085 list_del(&state->leak_list);
86 kmem_cache_free(extent_state_cache, state);
87 }
Eric Sandeen6d49ba12013-04-22 16:12:31 +000088}
David Sterba8d599ae2013-04-30 15:22:23 +000089
Josef Bacika5dee372013-12-13 10:02:44 -050090#define btrfs_debug_check_extent_io_range(tree, start, end) \
91 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000092static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050093 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000094{
Nikolay Borisov65a680f2018-11-01 14:09:49 +020095 struct inode *inode = tree->private_data;
96 u64 isize;
97
98 if (!inode || !is_data_inode(inode))
99 return;
100
101 isize = i_size_read(inode);
102 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
103 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
104 "%s: ino %llu isize %llu odd range [%llu,%llu]",
105 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
106 }
David Sterba8d599ae2013-04-30 15:22:23 +0000107}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000108#else
109#define btrfs_leak_debug_add(new, head) do {} while (0)
110#define btrfs_leak_debug_del(entry) do {} while (0)
Josef Bacik33ca8322019-09-23 10:05:17 -0400111#define btrfs_extent_buffer_leak_debug_check() do {} while (0)
112#define btrfs_extent_state_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000113#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400114#endif
Chris Masond1310b22008-01-24 16:13:08 -0500115
Chris Masond1310b22008-01-24 16:13:08 -0500116struct tree_entry {
117 u64 start;
118 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500119 struct rb_node rb_node;
120};
121
122struct extent_page_data {
123 struct bio *bio;
124 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -0500125 /* tells writepage not to lock the state bits for this range
126 * it still does the unlocking
127 */
Chris Masonffbd5172009-04-20 15:50:09 -0400128 unsigned int extent_locked:1;
129
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600130 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400131 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500132};
133
David Sterba57599c72018-03-01 17:56:34 +0100134static int add_extent_changeset(struct extent_state *state, unsigned bits,
Qu Wenruod38ed272015-10-12 14:53:37 +0800135 struct extent_changeset *changeset,
136 int set)
137{
138 int ret;
139
140 if (!changeset)
David Sterba57599c72018-03-01 17:56:34 +0100141 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800142 if (set && (state->state & bits) == bits)
David Sterba57599c72018-03-01 17:56:34 +0100143 return 0;
Qu Wenruofefdc552015-10-12 15:35:38 +0800144 if (!set && (state->state & bits) == 0)
David Sterba57599c72018-03-01 17:56:34 +0100145 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800146 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100147 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800148 GFP_ATOMIC);
David Sterba57599c72018-03-01 17:56:34 +0100149 return ret;
Qu Wenruod38ed272015-10-12 14:53:37 +0800150}
151
Qu Wenruobb58eb92019-01-25 13:09:15 +0800152static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
153 unsigned long bio_flags)
154{
155 blk_status_t ret = 0;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800156 struct extent_io_tree *tree = bio->bi_private;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800157
158 bio->bi_private = NULL;
159
160 if (tree->ops)
161 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Nikolay Borisov50489a52019-04-10 19:46:04 +0300162 mirror_num, bio_flags);
Qu Wenruobb58eb92019-01-25 13:09:15 +0800163 else
164 btrfsic_submit_bio(bio);
165
166 return blk_status_to_errno(ret);
167}
168
Qu Wenruo30659762019-03-20 14:27:42 +0800169/* Cleanup unsubmitted bios */
170static void end_write_bio(struct extent_page_data *epd, int ret)
171{
172 if (epd->bio) {
173 epd->bio->bi_status = errno_to_blk_status(ret);
174 bio_endio(epd->bio);
175 epd->bio = NULL;
176 }
177}
178
Qu Wenruof4340622019-03-20 14:27:41 +0800179/*
180 * Submit bio from extent page data via submit_one_bio
181 *
182 * Return 0 if everything is OK.
183 * Return <0 for error.
184 */
185static int __must_check flush_write_bio(struct extent_page_data *epd)
Qu Wenruobb58eb92019-01-25 13:09:15 +0800186{
Qu Wenruof4340622019-03-20 14:27:41 +0800187 int ret = 0;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800188
Qu Wenruof4340622019-03-20 14:27:41 +0800189 if (epd->bio) {
Qu Wenruobb58eb92019-01-25 13:09:15 +0800190 ret = submit_one_bio(epd->bio, 0, 0);
Qu Wenruof4340622019-03-20 14:27:41 +0800191 /*
192 * Clean up of epd->bio is handled by its endio function.
193 * And endio is either triggered by successful bio execution
194 * or the error handler of submit bio hook.
195 * So at this point, no matter what happened, we don't need
196 * to clean up epd->bio.
197 */
Qu Wenruobb58eb92019-01-25 13:09:15 +0800198 epd->bio = NULL;
199 }
Qu Wenruof4340622019-03-20 14:27:41 +0800200 return ret;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800201}
David Sterbae2932ee2017-06-23 04:16:17 +0200202
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400203int __init extent_state_cache_init(void)
Chris Masond1310b22008-01-24 16:13:08 -0500204{
David Sterba837e1972012-09-07 03:00:48 -0600205 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200206 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300207 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500208 if (!extent_state_cache)
209 return -ENOMEM;
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400210 return 0;
211}
Chris Masond1310b22008-01-24 16:13:08 -0500212
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400213int __init extent_io_init(void)
214{
David Sterba837e1972012-09-07 03:00:48 -0600215 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200216 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300217 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500218 if (!extent_buffer_cache)
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400219 return -ENOMEM;
Chris Mason9be33952013-05-17 18:30:14 -0400220
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400221 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
222 offsetof(struct btrfs_io_bio, bio),
223 BIOSET_NEED_BVECS))
Chris Mason9be33952013-05-17 18:30:14 -0400224 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700225
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400226 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700227 goto free_bioset;
228
Chris Masond1310b22008-01-24 16:13:08 -0500229 return 0;
230
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700231free_bioset:
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400232 bioset_exit(&btrfs_bioset);
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700233
Chris Mason9be33952013-05-17 18:30:14 -0400234free_buffer_cache:
235 kmem_cache_destroy(extent_buffer_cache);
236 extent_buffer_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500237 return -ENOMEM;
238}
239
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400240void __cold extent_state_cache_exit(void)
241{
242 btrfs_extent_state_leak_debug_check();
243 kmem_cache_destroy(extent_state_cache);
244}
245
David Sterbae67c7182018-02-19 17:24:18 +0100246void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500247{
Josef Bacik33ca8322019-09-23 10:05:17 -0400248 btrfs_extent_buffer_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000249
250 /*
251 * Make sure all delayed rcu free are flushed before we
252 * destroy caches.
253 */
254 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800255 kmem_cache_destroy(extent_buffer_cache);
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400256 bioset_exit(&btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500257}
258
Qu Wenruoc258d6e2019-03-01 10:47:58 +0800259void extent_io_tree_init(struct btrfs_fs_info *fs_info,
Qu Wenruo43eb5f22019-03-01 10:47:59 +0800260 struct extent_io_tree *tree, unsigned int owner,
261 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500262{
Qu Wenruoc258d6e2019-03-01 10:47:58 +0800263 tree->fs_info = fs_info;
Eric Paris6bef4d32010-02-23 19:43:04 +0000264 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500265 tree->ops = NULL;
266 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500267 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400268 tree->private_data = private_data;
Qu Wenruo43eb5f22019-03-01 10:47:59 +0800269 tree->owner = owner;
Chris Masond1310b22008-01-24 16:13:08 -0500270}
Chris Masond1310b22008-01-24 16:13:08 -0500271
Nikolay Borisov41e7acd2019-03-25 14:31:24 +0200272void extent_io_tree_release(struct extent_io_tree *tree)
273{
274 spin_lock(&tree->lock);
275 /*
276 * Do a single barrier for the waitqueue_active check here, the state
277 * of the waitqueue should not change once extent_io_tree_release is
278 * called.
279 */
280 smp_mb();
281 while (!RB_EMPTY_ROOT(&tree->state)) {
282 struct rb_node *node;
283 struct extent_state *state;
284
285 node = rb_first(&tree->state);
286 state = rb_entry(node, struct extent_state, rb_node);
287 rb_erase(&state->rb_node, &tree->state);
288 RB_CLEAR_NODE(&state->rb_node);
289 /*
290 * btree io trees aren't supposed to have tasks waiting for
291 * changes in the flags of extent states ever.
292 */
293 ASSERT(!waitqueue_active(&state->wq));
294 free_extent_state(state);
295
296 cond_resched_lock(&tree->lock);
297 }
298 spin_unlock(&tree->lock);
299}
300
Christoph Hellwigb2950862008-12-02 09:54:17 -0500301static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500302{
303 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500304
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100305 /*
306 * The given mask might be not appropriate for the slab allocator,
307 * drop the unsupported bits
308 */
309 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500310 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400311 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500312 return state;
313 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100314 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100315 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000316 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200317 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500318 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100319 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500320 return state;
321}
Chris Masond1310b22008-01-24 16:13:08 -0500322
Chris Mason4845e442010-05-25 20:56:50 -0400323void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500324{
Chris Masond1310b22008-01-24 16:13:08 -0500325 if (!state)
326 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200327 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100328 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000329 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100330 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500331 kmem_cache_free(extent_state_cache, state);
332 }
333}
Chris Masond1310b22008-01-24 16:13:08 -0500334
Filipe Mananaf2071b22014-02-12 15:05:53 +0000335static struct rb_node *tree_insert(struct rb_root *root,
336 struct rb_node *search_start,
337 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000338 struct rb_node *node,
339 struct rb_node ***p_in,
340 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500341{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000342 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500343 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500344 struct tree_entry *entry;
345
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000346 if (p_in && parent_in) {
347 p = *p_in;
348 parent = *parent_in;
349 goto do_insert;
350 }
351
Filipe Mananaf2071b22014-02-12 15:05:53 +0000352 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500353 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500354 parent = *p;
355 entry = rb_entry(parent, struct tree_entry, rb_node);
356
357 if (offset < entry->start)
358 p = &(*p)->rb_left;
359 else if (offset > entry->end)
360 p = &(*p)->rb_right;
361 else
362 return parent;
363 }
364
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000365do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500366 rb_link_node(node, parent, p);
367 rb_insert_color(node, root);
368 return NULL;
369}
370
Nikolay Borisov8666e632019-06-05 14:50:04 +0300371/**
372 * __etree_search - searche @tree for an entry that contains @offset. Such
373 * entry would have entry->start <= offset && entry->end >= offset.
374 *
375 * @tree - the tree to search
376 * @offset - offset that should fall within an entry in @tree
377 * @next_ret - pointer to the first entry whose range ends after @offset
378 * @prev - pointer to the first entry whose range begins before @offset
379 * @p_ret - pointer where new node should be anchored (used when inserting an
380 * entry in the tree)
381 * @parent_ret - points to entry which would have been the parent of the entry,
382 * containing @offset
383 *
384 * This function returns a pointer to the entry that contains @offset byte
385 * address. If no such entry exists, then NULL is returned and the other
386 * pointer arguments to the function are filled, otherwise the found entry is
387 * returned and other pointers are left untouched.
388 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500389static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000390 struct rb_node **next_ret,
Nikolay Borisov352646c2019-01-30 16:51:00 +0200391 struct rb_node **prev_ret,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000392 struct rb_node ***p_ret,
393 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500394{
Chris Mason80ea96b2008-02-01 14:51:59 -0500395 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000396 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500397 struct rb_node *prev = NULL;
398 struct rb_node *orig_prev = NULL;
399 struct tree_entry *entry;
400 struct tree_entry *prev_entry = NULL;
401
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000402 while (*n) {
403 prev = *n;
404 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500405 prev_entry = entry;
406
407 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000408 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500409 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000410 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500411 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000412 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500413 }
414
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000415 if (p_ret)
416 *p_ret = n;
417 if (parent_ret)
418 *parent_ret = prev;
419
Nikolay Borisov352646c2019-01-30 16:51:00 +0200420 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500421 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500422 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500423 prev = rb_next(prev);
424 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
425 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200426 *next_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500427 prev = orig_prev;
428 }
429
Nikolay Borisov352646c2019-01-30 16:51:00 +0200430 if (prev_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500431 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500432 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500433 prev = rb_prev(prev);
434 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
435 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200436 *prev_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500437 }
438 return NULL;
439}
440
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000441static inline struct rb_node *
442tree_search_for_insert(struct extent_io_tree *tree,
443 u64 offset,
444 struct rb_node ***p_ret,
445 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500446{
Nikolay Borisov352646c2019-01-30 16:51:00 +0200447 struct rb_node *next= NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500448 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500449
Nikolay Borisov352646c2019-01-30 16:51:00 +0200450 ret = __etree_search(tree, offset, &next, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500451 if (!ret)
Nikolay Borisov352646c2019-01-30 16:51:00 +0200452 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500453 return ret;
454}
455
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000456static inline struct rb_node *tree_search(struct extent_io_tree *tree,
457 u64 offset)
458{
459 return tree_search_for_insert(tree, offset, NULL, NULL);
460}
461
Chris Masond1310b22008-01-24 16:13:08 -0500462/*
463 * utility function to look for merge candidates inside a given range.
464 * Any extents with matching state are merged together into a single
465 * extent in the tree. Extents with EXTENT_IO in their state field
466 * are not merged because the end_io handlers need to be able to do
467 * operations on them without sleeping (or doing allocations/splits).
468 *
469 * This should be called with the tree lock held.
470 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000471static void merge_state(struct extent_io_tree *tree,
472 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500473{
474 struct extent_state *other;
475 struct rb_node *other_node;
476
Nikolay Borisov88826792019-03-14 15:28:31 +0200477 if (state->state & (EXTENT_LOCKED | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000478 return;
Chris Masond1310b22008-01-24 16:13:08 -0500479
480 other_node = rb_prev(&state->rb_node);
481 if (other_node) {
482 other = rb_entry(other_node, struct extent_state, rb_node);
483 if (other->end == state->start - 1 &&
484 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200485 if (tree->private_data &&
486 is_data_inode(tree->private_data))
487 btrfs_merge_delalloc_extent(tree->private_data,
488 state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500489 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500490 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100491 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500492 free_extent_state(other);
493 }
494 }
495 other_node = rb_next(&state->rb_node);
496 if (other_node) {
497 other = rb_entry(other_node, struct extent_state, rb_node);
498 if (other->start == state->end + 1 &&
499 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200500 if (tree->private_data &&
501 is_data_inode(tree->private_data))
502 btrfs_merge_delalloc_extent(tree->private_data,
503 state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400504 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400505 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100506 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400507 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500508 }
509 }
Chris Masond1310b22008-01-24 16:13:08 -0500510}
511
Xiao Guangrong3150b692011-07-14 03:19:08 +0000512static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800513 struct extent_state *state, unsigned *bits,
514 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000515
Chris Masond1310b22008-01-24 16:13:08 -0500516/*
517 * insert an extent_state struct into the tree. 'bits' are set on the
518 * struct before it is inserted.
519 *
520 * This may return -EEXIST if the extent is already there, in which case the
521 * state struct is freed.
522 *
523 * The tree lock is not taken internally. This is a utility function and
524 * probably isn't what you want to call (see set/clear_extent_bit).
525 */
526static int insert_state(struct extent_io_tree *tree,
527 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000528 struct rb_node ***p,
529 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800530 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500531{
532 struct rb_node *node;
533
David Sterba27922372019-06-18 20:00:05 +0200534 if (end < start) {
535 btrfs_err(tree->fs_info,
536 "insert state: end < start %llu %llu", end, start);
537 WARN_ON(1);
538 }
Chris Masond1310b22008-01-24 16:13:08 -0500539 state->start = start;
540 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400541
Qu Wenruod38ed272015-10-12 14:53:37 +0800542 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000543
Filipe Mananaf2071b22014-02-12 15:05:53 +0000544 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500545 if (node) {
546 struct extent_state *found;
547 found = rb_entry(node, struct extent_state, rb_node);
David Sterba27922372019-06-18 20:00:05 +0200548 btrfs_err(tree->fs_info,
549 "found node %llu %llu on insert of %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200550 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500551 return -EEXIST;
552 }
553 merge_state(tree, state);
554 return 0;
555}
556
557/*
558 * split a given extent state struct in two, inserting the preallocated
559 * struct 'prealloc' as the newly created second half. 'split' indicates an
560 * offset inside 'orig' where it should be split.
561 *
562 * Before calling,
563 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
564 * are two extent state structs in the tree:
565 * prealloc: [orig->start, split - 1]
566 * orig: [ split, orig->end ]
567 *
568 * The tree locks are not taken by this function. They need to be held
569 * by the caller.
570 */
571static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
572 struct extent_state *prealloc, u64 split)
573{
574 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400575
Nikolay Borisovabbb55f2018-11-01 14:09:53 +0200576 if (tree->private_data && is_data_inode(tree->private_data))
577 btrfs_split_delalloc_extent(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400578
Chris Masond1310b22008-01-24 16:13:08 -0500579 prealloc->start = orig->start;
580 prealloc->end = split - 1;
581 prealloc->state = orig->state;
582 orig->start = split;
583
Filipe Mananaf2071b22014-02-12 15:05:53 +0000584 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
585 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500586 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500587 free_extent_state(prealloc);
588 return -EEXIST;
589 }
590 return 0;
591}
592
Li Zefancdc6a392012-03-12 16:39:48 +0800593static struct extent_state *next_state(struct extent_state *state)
594{
595 struct rb_node *next = rb_next(&state->rb_node);
596 if (next)
597 return rb_entry(next, struct extent_state, rb_node);
598 else
599 return NULL;
600}
601
Chris Masond1310b22008-01-24 16:13:08 -0500602/*
603 * utility function to clear some bits in an extent state struct.
Andrea Gelmini52042d82018-11-28 12:05:13 +0100604 * it will optionally wake up anyone waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500605 *
606 * If no bits are set on the state struct after clearing things, the
607 * struct is freed and removed from the tree
608 */
Li Zefancdc6a392012-03-12 16:39:48 +0800609static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
610 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800611 unsigned *bits, int wake,
612 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500613{
Li Zefancdc6a392012-03-12 16:39:48 +0800614 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100615 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100616 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500617
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400618 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500619 u64 range = state->end - state->start + 1;
620 WARN_ON(range > tree->dirty_bytes);
621 tree->dirty_bytes -= range;
622 }
Nikolay Borisova36bb5f2018-11-01 14:09:51 +0200623
624 if (tree->private_data && is_data_inode(tree->private_data))
625 btrfs_clear_delalloc_extent(tree->private_data, state, bits);
626
David Sterba57599c72018-03-01 17:56:34 +0100627 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
628 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400629 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500630 if (wake)
631 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400632 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800633 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100634 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500635 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100636 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500637 free_extent_state(state);
638 } else {
639 WARN_ON(1);
640 }
641 } else {
642 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800643 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500644 }
Li Zefancdc6a392012-03-12 16:39:48 +0800645 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500646}
647
Xiao Guangrong82337672011-04-20 06:44:57 +0000648static struct extent_state *
649alloc_extent_state_atomic(struct extent_state *prealloc)
650{
651 if (!prealloc)
652 prealloc = alloc_extent_state(GFP_ATOMIC);
653
654 return prealloc;
655}
656
Eric Sandeen48a3b632013-04-25 20:41:01 +0000657static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400658{
David Sterba05912a32018-07-18 19:23:45 +0200659 struct inode *inode = tree->private_data;
660
661 btrfs_panic(btrfs_sb(inode->i_sb), err,
662 "locking error: extent tree was modified by another thread while locked");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400663}
664
Chris Masond1310b22008-01-24 16:13:08 -0500665/*
666 * clear some bits on a range in the tree. This may require splitting
667 * or inserting elements in the tree, so the gfp mask is used to
668 * indicate which allocations or sleeping are allowed.
669 *
670 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
671 * the given range from the tree regardless of state (ie for truncate).
672 *
673 * the range [start, end] is inclusive.
674 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100675 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500676 */
David Sterba66b0c882017-10-31 16:30:47 +0100677int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800678 unsigned bits, int wake, int delete,
679 struct extent_state **cached_state,
680 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500681{
682 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400683 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500684 struct extent_state *prealloc = NULL;
685 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400686 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500687 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000688 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500689
Josef Bacika5dee372013-12-13 10:02:44 -0500690 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +0800691 trace_btrfs_clear_extent_bit(tree, start, end - start + 1, bits);
David Sterba8d599ae2013-04-30 15:22:23 +0000692
Josef Bacik7ee9e442013-06-21 16:37:03 -0400693 if (bits & EXTENT_DELALLOC)
694 bits |= EXTENT_NORESERVE;
695
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400696 if (delete)
697 bits |= ~EXTENT_CTLBITS;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400698
Nikolay Borisov88826792019-03-14 15:28:31 +0200699 if (bits & (EXTENT_LOCKED | EXTENT_BOUNDARY))
Josef Bacik2ac55d42010-02-03 19:33:23 +0000700 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500701again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800702 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000703 /*
704 * Don't care for allocation failure here because we might end
705 * up not needing the pre-allocated extent state at all, which
706 * is the case if we only have in the tree extent states that
707 * cover our input range and don't cover too any other range.
708 * If we end up needing a new extent state we allocate it later.
709 */
Chris Masond1310b22008-01-24 16:13:08 -0500710 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500711 }
712
Chris Masoncad321a2008-12-17 14:51:42 -0500713 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400714 if (cached_state) {
715 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000716
717 if (clear) {
718 *cached_state = NULL;
719 cached_state = NULL;
720 }
721
Filipe Manana27a35072014-07-06 20:09:59 +0100722 if (cached && extent_state_in_tree(cached) &&
723 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000724 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200725 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400726 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400727 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400728 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000729 if (clear)
730 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400731 }
Chris Masond1310b22008-01-24 16:13:08 -0500732 /*
733 * this search will find the extents that end after
734 * our range starts
735 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500736 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500737 if (!node)
738 goto out;
739 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400740hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500741 if (state->start > end)
742 goto out;
743 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400744 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500745
Liu Bo04493142012-02-16 18:34:37 +0800746 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800747 if (!(state->state & bits)) {
748 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800749 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800750 }
Liu Bo04493142012-02-16 18:34:37 +0800751
Chris Masond1310b22008-01-24 16:13:08 -0500752 /*
753 * | ---- desired range ---- |
754 * | state | or
755 * | ------------- state -------------- |
756 *
757 * We need to split the extent we found, and may flip
758 * bits on second half.
759 *
760 * If the extent we found extends past our range, we
761 * just split and search again. It'll get split again
762 * the next time though.
763 *
764 * If the extent we found is inside our range, we clear
765 * the desired bit on it.
766 */
767
768 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000769 prealloc = alloc_extent_state_atomic(prealloc);
770 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500771 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400772 if (err)
773 extent_io_tree_panic(tree, err);
774
Chris Masond1310b22008-01-24 16:13:08 -0500775 prealloc = NULL;
776 if (err)
777 goto out;
778 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800779 state = clear_state_bit(tree, state, &bits, wake,
780 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800781 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500782 }
783 goto search_again;
784 }
785 /*
786 * | ---- desired range ---- |
787 * | state |
788 * We need to split the extent, and clear the bit
789 * on the first half
790 */
791 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000792 prealloc = alloc_extent_state_atomic(prealloc);
793 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500794 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400795 if (err)
796 extent_io_tree_panic(tree, err);
797
Chris Masond1310b22008-01-24 16:13:08 -0500798 if (wake)
799 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400800
Qu Wenruofefdc552015-10-12 15:35:38 +0800801 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400802
Chris Masond1310b22008-01-24 16:13:08 -0500803 prealloc = NULL;
804 goto out;
805 }
Chris Mason42daec22009-09-23 19:51:09 -0400806
Qu Wenruofefdc552015-10-12 15:35:38 +0800807 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800808next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400809 if (last_end == (u64)-1)
810 goto out;
811 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800812 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800813 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500814
815search_again:
816 if (start > end)
817 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500818 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800819 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500820 cond_resched();
821 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200822
823out:
824 spin_unlock(&tree->lock);
825 if (prealloc)
826 free_extent_state(prealloc);
827
828 return 0;
829
Chris Masond1310b22008-01-24 16:13:08 -0500830}
Chris Masond1310b22008-01-24 16:13:08 -0500831
Jeff Mahoney143bede2012-03-01 14:56:26 +0100832static void wait_on_state(struct extent_io_tree *tree,
833 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500834 __releases(tree->lock)
835 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500836{
837 DEFINE_WAIT(wait);
838 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500839 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500840 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500841 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500842 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500843}
844
845/*
846 * waits for one or more bits to clear on a range in the state tree.
847 * The range [start, end] is inclusive.
848 * The tree lock is taken by this function
849 */
David Sterba41074882013-04-29 13:38:46 +0000850static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
851 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500852{
853 struct extent_state *state;
854 struct rb_node *node;
855
Josef Bacika5dee372013-12-13 10:02:44 -0500856 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000857
Chris Masoncad321a2008-12-17 14:51:42 -0500858 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500859again:
860 while (1) {
861 /*
862 * this search will find all the extents that end after
863 * our range starts
864 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500865 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100866process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500867 if (!node)
868 break;
869
870 state = rb_entry(node, struct extent_state, rb_node);
871
872 if (state->start > end)
873 goto out;
874
875 if (state->state & bits) {
876 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200877 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500878 wait_on_state(tree, state);
879 free_extent_state(state);
880 goto again;
881 }
882 start = state->end + 1;
883
884 if (start > end)
885 break;
886
Filipe Mananac50d3e72014-03-31 14:53:25 +0100887 if (!cond_resched_lock(&tree->lock)) {
888 node = rb_next(node);
889 goto process_node;
890 }
Chris Masond1310b22008-01-24 16:13:08 -0500891 }
892out:
Chris Masoncad321a2008-12-17 14:51:42 -0500893 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500894}
Chris Masond1310b22008-01-24 16:13:08 -0500895
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000896static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500897 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800898 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500899{
David Sterba9ee49a042015-01-14 19:52:13 +0100900 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100901 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400902
Nikolay Borisove06a1fc2018-11-01 14:09:50 +0200903 if (tree->private_data && is_data_inode(tree->private_data))
904 btrfs_set_delalloc_extent(tree->private_data, state, bits);
905
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400906 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500907 u64 range = state->end - state->start + 1;
908 tree->dirty_bytes += range;
909 }
David Sterba57599c72018-03-01 17:56:34 +0100910 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
911 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400912 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500913}
914
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100915static void cache_state_if_flags(struct extent_state *state,
916 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100917 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400918{
919 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100920 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400921 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200922 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400923 }
924 }
925}
926
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100927static void cache_state(struct extent_state *state,
928 struct extent_state **cached_ptr)
929{
930 return cache_state_if_flags(state, cached_ptr,
Nikolay Borisov88826792019-03-14 15:28:31 +0200931 EXTENT_LOCKED | EXTENT_BOUNDARY);
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100932}
933
Chris Masond1310b22008-01-24 16:13:08 -0500934/*
Chris Mason1edbb732009-09-02 13:24:36 -0400935 * set some bits on a range in the tree. This may require allocations or
936 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500937 *
Chris Mason1edbb732009-09-02 13:24:36 -0400938 * If any of the exclusive bits are set, this will fail with -EEXIST if some
939 * part of the range already has the desired bits set. The start of the
940 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500941 *
Chris Mason1edbb732009-09-02 13:24:36 -0400942 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500943 */
Chris Mason1edbb732009-09-02 13:24:36 -0400944
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100945static int __must_check
946__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100947 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000948 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800949 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500950{
951 struct extent_state *state;
952 struct extent_state *prealloc = NULL;
953 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000954 struct rb_node **p;
955 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500956 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500957 u64 last_start;
958 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400959
Josef Bacika5dee372013-12-13 10:02:44 -0500960 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +0800961 trace_btrfs_set_extent_bit(tree, start, end - start + 1, bits);
David Sterba8d599ae2013-04-30 15:22:23 +0000962
Chris Masond1310b22008-01-24 16:13:08 -0500963again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800964 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200965 /*
966 * Don't care for allocation failure here because we might end
967 * up not needing the pre-allocated extent state at all, which
968 * is the case if we only have in the tree extent states that
969 * cover our input range and don't cover too any other range.
970 * If we end up needing a new extent state we allocate it later.
971 */
Chris Masond1310b22008-01-24 16:13:08 -0500972 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500973 }
974
Chris Masoncad321a2008-12-17 14:51:42 -0500975 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400976 if (cached_state && *cached_state) {
977 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400978 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100979 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400980 node = &state->rb_node;
981 goto hit_next;
982 }
983 }
Chris Masond1310b22008-01-24 16:13:08 -0500984 /*
985 * this search will find all the extents that end after
986 * our range starts.
987 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000988 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500989 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000990 prealloc = alloc_extent_state_atomic(prealloc);
991 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000992 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800993 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400994 if (err)
995 extent_io_tree_panic(tree, err);
996
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000997 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500998 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500999 goto out;
1000 }
Chris Masond1310b22008-01-24 16:13:08 -05001001 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -04001002hit_next:
Chris Masond1310b22008-01-24 16:13:08 -05001003 last_start = state->start;
1004 last_end = state->end;
1005
1006 /*
1007 * | ---- desired range ---- |
1008 * | state |
1009 *
1010 * Just lock what we found and keep going
1011 */
1012 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001013 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001014 *failed_start = state->start;
1015 err = -EEXIST;
1016 goto out;
1017 }
Chris Mason42daec22009-09-23 19:51:09 -04001018
Qu Wenruod38ed272015-10-12 14:53:37 +08001019 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001020 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001021 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -04001022 if (last_end == (u64)-1)
1023 goto out;
1024 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001025 state = next_state(state);
1026 if (start < end && state && state->start == start &&
1027 !need_resched())
1028 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -05001029 goto search_again;
1030 }
1031
1032 /*
1033 * | ---- desired range ---- |
1034 * | state |
1035 * or
1036 * | ------------- state -------------- |
1037 *
1038 * We need to split the extent we found, and may flip bits on
1039 * second half.
1040 *
1041 * If the extent we found extends past our
1042 * range, we just split and search again. It'll get split
1043 * again the next time though.
1044 *
1045 * If the extent we found is inside our range, we set the
1046 * desired bit on it.
1047 */
1048 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -04001049 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001050 *failed_start = start;
1051 err = -EEXIST;
1052 goto out;
1053 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001054
1055 prealloc = alloc_extent_state_atomic(prealloc);
1056 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001057 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001058 if (err)
1059 extent_io_tree_panic(tree, err);
1060
Chris Masond1310b22008-01-24 16:13:08 -05001061 prealloc = NULL;
1062 if (err)
1063 goto out;
1064 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001065 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001066 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001067 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -04001068 if (last_end == (u64)-1)
1069 goto out;
1070 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001071 state = next_state(state);
1072 if (start < end && state && state->start == start &&
1073 !need_resched())
1074 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -05001075 }
1076 goto search_again;
1077 }
1078 /*
1079 * | ---- desired range ---- |
1080 * | state | or | state |
1081 *
1082 * There's a hole, we need to insert something in it and
1083 * ignore the extent we found.
1084 */
1085 if (state->start > start) {
1086 u64 this_end;
1087 if (end < last_start)
1088 this_end = end;
1089 else
Chris Masond3977122009-01-05 21:25:51 -05001090 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +00001091
1092 prealloc = alloc_extent_state_atomic(prealloc);
1093 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001094
1095 /*
1096 * Avoid to free 'prealloc' if it can be merged with
1097 * the later extent.
1098 */
Chris Masond1310b22008-01-24 16:13:08 -05001099 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001100 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001101 if (err)
1102 extent_io_tree_panic(tree, err);
1103
Chris Mason2c64c532009-09-02 15:04:12 -04001104 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001105 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001106 start = this_end + 1;
1107 goto search_again;
1108 }
1109 /*
1110 * | ---- desired range ---- |
1111 * | state |
1112 * We need to split the extent, and set the bit
1113 * on the first half
1114 */
1115 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001116 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001117 *failed_start = start;
1118 err = -EEXIST;
1119 goto out;
1120 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001121
1122 prealloc = alloc_extent_state_atomic(prealloc);
1123 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001124 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001125 if (err)
1126 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001127
Qu Wenruod38ed272015-10-12 14:53:37 +08001128 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001129 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001130 merge_state(tree, prealloc);
1131 prealloc = NULL;
1132 goto out;
1133 }
1134
David Sterbab5a4ba142016-04-27 01:02:15 +02001135search_again:
1136 if (start > end)
1137 goto out;
1138 spin_unlock(&tree->lock);
1139 if (gfpflags_allow_blocking(mask))
1140 cond_resched();
1141 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001142
1143out:
Chris Masoncad321a2008-12-17 14:51:42 -05001144 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001145 if (prealloc)
1146 free_extent_state(prealloc);
1147
1148 return err;
1149
Chris Masond1310b22008-01-24 16:13:08 -05001150}
Chris Masond1310b22008-01-24 16:13:08 -05001151
David Sterba41074882013-04-29 13:38:46 +00001152int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001153 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001154 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001155{
1156 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001157 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001158}
1159
1160
Josef Bacik462d6fa2011-09-26 13:56:12 -04001161/**
Liu Bo10983f22012-07-11 15:26:19 +08001162 * convert_extent_bit - convert all bits in a given range from one bit to
1163 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001164 * @tree: the io tree to search
1165 * @start: the start offset in bytes
1166 * @end: the end offset in bytes (inclusive)
1167 * @bits: the bits to set in this range
1168 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001169 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001170 *
1171 * This will go through and set bits for the given range. If any states exist
1172 * already in this range they are set with the given bit and cleared of the
1173 * clear_bits. This is only meant to be used by things that are mergeable, ie
1174 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1175 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001176 *
1177 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001178 */
1179int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001180 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001181 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001182{
1183 struct extent_state *state;
1184 struct extent_state *prealloc = NULL;
1185 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001186 struct rb_node **p;
1187 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001188 int err = 0;
1189 u64 last_start;
1190 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001191 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001192
Josef Bacika5dee372013-12-13 10:02:44 -05001193 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +08001194 trace_btrfs_convert_extent_bit(tree, start, end - start + 1, bits,
1195 clear_bits);
David Sterba8d599ae2013-04-30 15:22:23 +00001196
Josef Bacik462d6fa2011-09-26 13:56:12 -04001197again:
David Sterba210aa272016-04-26 23:54:39 +02001198 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001199 /*
1200 * Best effort, don't worry if extent state allocation fails
1201 * here for the first iteration. We might have a cached state
1202 * that matches exactly the target range, in which case no
1203 * extent state allocations are needed. We'll only know this
1204 * after locking the tree.
1205 */
David Sterba210aa272016-04-26 23:54:39 +02001206 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001207 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001208 return -ENOMEM;
1209 }
1210
1211 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001212 if (cached_state && *cached_state) {
1213 state = *cached_state;
1214 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001215 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001216 node = &state->rb_node;
1217 goto hit_next;
1218 }
1219 }
1220
Josef Bacik462d6fa2011-09-26 13:56:12 -04001221 /*
1222 * this search will find all the extents that end after
1223 * our range starts.
1224 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001225 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001226 if (!node) {
1227 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001228 if (!prealloc) {
1229 err = -ENOMEM;
1230 goto out;
1231 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001232 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001233 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001234 if (err)
1235 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001236 cache_state(prealloc, cached_state);
1237 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001238 goto out;
1239 }
1240 state = rb_entry(node, struct extent_state, rb_node);
1241hit_next:
1242 last_start = state->start;
1243 last_end = state->end;
1244
1245 /*
1246 * | ---- desired range ---- |
1247 * | state |
1248 *
1249 * Just lock what we found and keep going
1250 */
1251 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001252 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001253 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001254 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001255 if (last_end == (u64)-1)
1256 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001257 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001258 if (start < end && state && state->start == start &&
1259 !need_resched())
1260 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001261 goto search_again;
1262 }
1263
1264 /*
1265 * | ---- desired range ---- |
1266 * | state |
1267 * or
1268 * | ------------- state -------------- |
1269 *
1270 * We need to split the extent we found, and may flip bits on
1271 * second half.
1272 *
1273 * If the extent we found extends past our
1274 * range, we just split and search again. It'll get split
1275 * again the next time though.
1276 *
1277 * If the extent we found is inside our range, we set the
1278 * desired bit on it.
1279 */
1280 if (state->start < start) {
1281 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001282 if (!prealloc) {
1283 err = -ENOMEM;
1284 goto out;
1285 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001286 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001287 if (err)
1288 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001289 prealloc = NULL;
1290 if (err)
1291 goto out;
1292 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001293 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001294 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001295 state = clear_state_bit(tree, state, &clear_bits, 0,
1296 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001297 if (last_end == (u64)-1)
1298 goto out;
1299 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001300 if (start < end && state && state->start == start &&
1301 !need_resched())
1302 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001303 }
1304 goto search_again;
1305 }
1306 /*
1307 * | ---- desired range ---- |
1308 * | state | or | state |
1309 *
1310 * There's a hole, we need to insert something in it and
1311 * ignore the extent we found.
1312 */
1313 if (state->start > start) {
1314 u64 this_end;
1315 if (end < last_start)
1316 this_end = end;
1317 else
1318 this_end = last_start - 1;
1319
1320 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001321 if (!prealloc) {
1322 err = -ENOMEM;
1323 goto out;
1324 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001325
1326 /*
1327 * Avoid to free 'prealloc' if it can be merged with
1328 * the later extent.
1329 */
1330 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001331 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001332 if (err)
1333 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001334 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001335 prealloc = NULL;
1336 start = this_end + 1;
1337 goto search_again;
1338 }
1339 /*
1340 * | ---- desired range ---- |
1341 * | state |
1342 * We need to split the extent, and set the bit
1343 * on the first half
1344 */
1345 if (state->start <= end && state->end > end) {
1346 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001347 if (!prealloc) {
1348 err = -ENOMEM;
1349 goto out;
1350 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001351
1352 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001353 if (err)
1354 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001355
Qu Wenruod38ed272015-10-12 14:53:37 +08001356 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001357 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001358 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001359 prealloc = NULL;
1360 goto out;
1361 }
1362
Josef Bacik462d6fa2011-09-26 13:56:12 -04001363search_again:
1364 if (start > end)
1365 goto out;
1366 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001367 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001368 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001369 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001370
1371out:
1372 spin_unlock(&tree->lock);
1373 if (prealloc)
1374 free_extent_state(prealloc);
1375
1376 return err;
1377}
1378
Chris Masond1310b22008-01-24 16:13:08 -05001379/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001380int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001381 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001382{
1383 /*
1384 * We don't support EXTENT_LOCKED yet, as current changeset will
1385 * record any bits changed, so for EXTENT_LOCKED case, it will
1386 * either fail with -EEXIST or changeset will record the whole
1387 * range.
1388 */
1389 BUG_ON(bits & EXTENT_LOCKED);
1390
David Sterba2c53b912016-04-26 23:54:39 +02001391 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001392 changeset);
1393}
1394
Nikolay Borisov4ca73652019-03-27 14:24:10 +02001395int set_extent_bits_nowait(struct extent_io_tree *tree, u64 start, u64 end,
1396 unsigned bits)
1397{
1398 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL,
1399 GFP_NOWAIT, NULL);
1400}
1401
Qu Wenruofefdc552015-10-12 15:35:38 +08001402int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1403 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001404 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001405{
1406 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001407 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001408}
1409
Qu Wenruofefdc552015-10-12 15:35:38 +08001410int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001411 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001412{
1413 /*
1414 * Don't support EXTENT_LOCKED case, same reason as
1415 * set_record_extent_bits().
1416 */
1417 BUG_ON(bits & EXTENT_LOCKED);
1418
David Sterbaf734c442016-04-26 23:54:39 +02001419 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001420 changeset);
1421}
1422
Chris Masond352ac62008-09-29 15:18:18 -04001423/*
1424 * either insert or lock state struct between start and end use mask to tell
1425 * us if waiting is desired.
1426 */
Chris Mason1edbb732009-09-02 13:24:36 -04001427int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001428 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001429{
1430 int err;
1431 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001432
Chris Masond1310b22008-01-24 16:13:08 -05001433 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001434 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001435 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001436 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001437 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001438 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1439 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001440 } else
Chris Masond1310b22008-01-24 16:13:08 -05001441 break;
Chris Masond1310b22008-01-24 16:13:08 -05001442 WARN_ON(start > end);
1443 }
1444 return err;
1445}
Chris Masond1310b22008-01-24 16:13:08 -05001446
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001447int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001448{
1449 int err;
1450 u64 failed_start;
1451
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001452 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001453 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001454 if (err == -EEXIST) {
1455 if (failed_start > start)
1456 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001457 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001458 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001459 }
Josef Bacik25179202008-10-29 14:49:05 -04001460 return 1;
1461}
Josef Bacik25179202008-10-29 14:49:05 -04001462
David Sterbabd1fa4f2015-12-03 13:08:59 +01001463void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001464{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001465 unsigned long index = start >> PAGE_SHIFT;
1466 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001467 struct page *page;
1468
1469 while (index <= end_index) {
1470 page = find_get_page(inode->i_mapping, index);
1471 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1472 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001473 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001474 index++;
1475 }
Chris Mason4adaa612013-03-26 13:07:00 -04001476}
1477
David Sterbaf6311572015-12-03 13:08:59 +01001478void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001479{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001480 unsigned long index = start >> PAGE_SHIFT;
1481 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001482 struct page *page;
1483
1484 while (index <= end_index) {
1485 page = find_get_page(inode->i_mapping, index);
1486 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001487 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001488 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001489 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001490 index++;
1491 }
Chris Mason4adaa612013-03-26 13:07:00 -04001492}
1493
Chris Masond352ac62008-09-29 15:18:18 -04001494/* find the first state struct with 'bits' set after 'start', and
1495 * return it. tree->lock must be held. NULL will returned if
1496 * nothing was found after 'start'
1497 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001498static struct extent_state *
1499find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001500 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001501{
1502 struct rb_node *node;
1503 struct extent_state *state;
1504
1505 /*
1506 * this search will find all the extents that end after
1507 * our range starts.
1508 */
1509 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001510 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001511 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001512
Chris Masond3977122009-01-05 21:25:51 -05001513 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001514 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001515 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001516 return state;
Chris Masond3977122009-01-05 21:25:51 -05001517
Chris Masond7fc6402008-02-18 12:12:38 -05001518 node = rb_next(node);
1519 if (!node)
1520 break;
1521 }
1522out:
1523 return NULL;
1524}
Chris Masond7fc6402008-02-18 12:12:38 -05001525
Chris Masond352ac62008-09-29 15:18:18 -04001526/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001527 * find the first offset in the io tree with 'bits' set. zero is
1528 * returned if we find something, and *start_ret and *end_ret are
1529 * set to reflect the state struct that was found.
1530 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001531 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001532 */
1533int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001534 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001535 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001536{
1537 struct extent_state *state;
1538 int ret = 1;
1539
1540 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001541 if (cached_state && *cached_state) {
1542 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001543 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001544 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001545 if (state->state & bits)
1546 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001547 }
1548 free_extent_state(*cached_state);
1549 *cached_state = NULL;
1550 goto out;
1551 }
1552 free_extent_state(*cached_state);
1553 *cached_state = NULL;
1554 }
1555
Xiao Guangrong69261c42011-07-14 03:19:45 +00001556 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001557got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001558 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001559 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001560 *start_ret = state->start;
1561 *end_ret = state->end;
1562 ret = 0;
1563 }
Josef Bacike6138872012-09-27 17:07:30 -04001564out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001565 spin_unlock(&tree->lock);
1566 return ret;
1567}
1568
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001569/**
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001570 * find_first_clear_extent_bit - find the first range that has @bits not set.
1571 * This range could start before @start.
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001572 *
1573 * @tree - the tree to search
1574 * @start - the offset at/after which the found extent should start
1575 * @start_ret - records the beginning of the range
1576 * @end_ret - records the end of the range (inclusive)
1577 * @bits - the set of bits which must be unset
1578 *
1579 * Since unallocated range is also considered one which doesn't have the bits
1580 * set it's possible that @end_ret contains -1, this happens in case the range
1581 * spans (last_range_end, end of device]. In this case it's up to the caller to
1582 * trim @end_ret to the appropriate size.
1583 */
1584void find_first_clear_extent_bit(struct extent_io_tree *tree, u64 start,
1585 u64 *start_ret, u64 *end_ret, unsigned bits)
1586{
1587 struct extent_state *state;
1588 struct rb_node *node, *prev = NULL, *next;
1589
1590 spin_lock(&tree->lock);
1591
1592 /* Find first extent with bits cleared */
1593 while (1) {
1594 node = __etree_search(tree, start, &next, &prev, NULL, NULL);
1595 if (!node) {
1596 node = next;
1597 if (!node) {
1598 /*
1599 * We are past the last allocated chunk,
1600 * set start at the end of the last extent. The
1601 * device alloc tree should never be empty so
1602 * prev is always set.
1603 */
1604 ASSERT(prev);
1605 state = rb_entry(prev, struct extent_state, rb_node);
1606 *start_ret = state->end + 1;
1607 *end_ret = -1;
1608 goto out;
1609 }
1610 }
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001611 /*
1612 * At this point 'node' either contains 'start' or start is
1613 * before 'node'
1614 */
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001615 state = rb_entry(node, struct extent_state, rb_node);
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001616
1617 if (in_range(start, state->start, state->end - state->start + 1)) {
1618 if (state->state & bits) {
1619 /*
1620 * |--range with bits sets--|
1621 * |
1622 * start
1623 */
1624 start = state->end + 1;
1625 } else {
1626 /*
1627 * 'start' falls within a range that doesn't
1628 * have the bits set, so take its start as
1629 * the beginning of the desired range
1630 *
1631 * |--range with bits cleared----|
1632 * |
1633 * start
1634 */
1635 *start_ret = state->start;
1636 break;
1637 }
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001638 } else {
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001639 /*
1640 * |---prev range---|---hole/unset---|---node range---|
1641 * |
1642 * start
1643 *
1644 * or
1645 *
1646 * |---hole/unset--||--first node--|
1647 * 0 |
1648 * start
1649 */
1650 if (prev) {
1651 state = rb_entry(prev, struct extent_state,
1652 rb_node);
1653 *start_ret = state->end + 1;
1654 } else {
1655 *start_ret = 0;
1656 }
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001657 break;
1658 }
1659 }
1660
1661 /*
1662 * Find the longest stretch from start until an entry which has the
1663 * bits set
1664 */
1665 while (1) {
1666 state = rb_entry(node, struct extent_state, rb_node);
1667 if (state->end >= start && !(state->state & bits)) {
1668 *end_ret = state->end;
1669 } else {
1670 *end_ret = state->start - 1;
1671 break;
1672 }
1673
1674 node = rb_next(node);
1675 if (!node)
1676 break;
1677 }
1678out:
1679 spin_unlock(&tree->lock);
1680}
1681
Xiao Guangrong69261c42011-07-14 03:19:45 +00001682/*
Chris Masond352ac62008-09-29 15:18:18 -04001683 * find a contiguous range of bytes in the file marked as delalloc, not
1684 * more than 'max_bytes'. start and end are used to return the range,
1685 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001686 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001687 */
Lu Fengqi3522e902018-11-29 11:33:38 +08001688static noinline bool find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001689 u64 *start, u64 *end, u64 max_bytes,
1690 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001691{
1692 struct rb_node *node;
1693 struct extent_state *state;
1694 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001695 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001696 u64 total_bytes = 0;
1697
Chris Masoncad321a2008-12-17 14:51:42 -05001698 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001699
Chris Masond1310b22008-01-24 16:13:08 -05001700 /*
1701 * this search will find all the extents that end after
1702 * our range starts.
1703 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001704 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001705 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001706 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001707 goto out;
1708 }
1709
Chris Masond3977122009-01-05 21:25:51 -05001710 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001711 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001712 if (found && (state->start != cur_start ||
1713 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001714 goto out;
1715 }
1716 if (!(state->state & EXTENT_DELALLOC)) {
1717 if (!found)
1718 *end = state->end;
1719 goto out;
1720 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001721 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001722 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001723 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001724 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001725 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001726 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001727 *end = state->end;
1728 cur_start = state->end + 1;
1729 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001730 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001731 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001732 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001733 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001734 break;
1735 }
1736out:
Chris Masoncad321a2008-12-17 14:51:42 -05001737 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001738 return found;
1739}
1740
Liu Boda2c7002017-02-10 16:41:05 +01001741static int __process_pages_contig(struct address_space *mapping,
1742 struct page *locked_page,
1743 pgoff_t start_index, pgoff_t end_index,
1744 unsigned long page_ops, pgoff_t *index_ret);
1745
Jeff Mahoney143bede2012-03-01 14:56:26 +01001746static noinline void __unlock_for_delalloc(struct inode *inode,
1747 struct page *locked_page,
1748 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001749{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001750 unsigned long index = start >> PAGE_SHIFT;
1751 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001752
Liu Bo76c00212017-02-10 16:42:14 +01001753 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001754 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001755 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001756
Liu Bo76c00212017-02-10 16:42:14 +01001757 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1758 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001759}
1760
1761static noinline int lock_delalloc_pages(struct inode *inode,
1762 struct page *locked_page,
1763 u64 delalloc_start,
1764 u64 delalloc_end)
1765{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001766 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001767 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001768 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001769 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001770
Liu Bo76c00212017-02-10 16:42:14 +01001771 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001772 if (index == locked_page->index && index == end_index)
1773 return 0;
1774
Liu Bo76c00212017-02-10 16:42:14 +01001775 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1776 end_index, PAGE_LOCK, &index_ret);
1777 if (ret == -EAGAIN)
1778 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1779 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001780 return ret;
1781}
1782
1783/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001784 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1785 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001786 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001787 * Return: true if we find something
1788 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001789 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001790EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001791noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001792 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001793 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001794{
Goldwyn Rodrigues99780592019-06-21 10:02:54 -05001795 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Nikolay Borisov917aace2018-10-26 14:43:20 +03001796 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001797 u64 delalloc_start;
1798 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001799 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001800 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001801 int ret;
1802 int loops = 0;
1803
1804again:
1805 /* step one, find a bunch of delalloc bytes starting at start */
1806 delalloc_start = *start;
1807 delalloc_end = 0;
1808 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001809 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001810 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001811 *start = delalloc_start;
1812 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001813 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001814 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001815 }
1816
1817 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001818 * start comes from the offset of locked_page. We have to lock
1819 * pages in order, so we can't process delalloc bytes before
1820 * locked_page
1821 */
Chris Masond3977122009-01-05 21:25:51 -05001822 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001823 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001824
1825 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001826 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001827 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001828 if (delalloc_end + 1 - delalloc_start > max_bytes)
1829 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001830
Chris Masonc8b97812008-10-29 14:49:59 -04001831 /* step two, lock all the pages after the page that has start */
1832 ret = lock_delalloc_pages(inode, locked_page,
1833 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001834 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001835 if (ret == -EAGAIN) {
1836 /* some of the pages are gone, lets avoid looping by
1837 * shortening the size of the delalloc range we're searching
1838 */
Chris Mason9655d292009-09-02 15:22:30 -04001839 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001840 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001841 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001842 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001843 loops = 1;
1844 goto again;
1845 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001846 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001847 goto out_failed;
1848 }
1849 }
Chris Masonc8b97812008-10-29 14:49:59 -04001850
1851 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001852 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001853
1854 /* then test to make sure it is all still delalloc */
1855 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001856 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001857 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001858 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001859 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001860 __unlock_for_delalloc(inode, locked_page,
1861 delalloc_start, delalloc_end);
1862 cond_resched();
1863 goto again;
1864 }
Chris Mason9655d292009-09-02 15:22:30 -04001865 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001866 *start = delalloc_start;
1867 *end = delalloc_end;
1868out_failed:
1869 return found;
1870}
1871
Liu Boda2c7002017-02-10 16:41:05 +01001872static int __process_pages_contig(struct address_space *mapping,
1873 struct page *locked_page,
1874 pgoff_t start_index, pgoff_t end_index,
1875 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001876{
Liu Bo873695b2017-02-02 17:49:22 -08001877 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001878 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001879 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001880 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001881 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001882 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001883 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001884
Liu Boda2c7002017-02-10 16:41:05 +01001885 if (page_ops & PAGE_LOCK) {
1886 ASSERT(page_ops == PAGE_LOCK);
1887 ASSERT(index_ret && *index_ret == start_index);
1888 }
1889
Filipe Manana704de492014-10-06 22:14:22 +01001890 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001891 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001892
Chris Masond3977122009-01-05 21:25:51 -05001893 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001894 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001895 min_t(unsigned long,
1896 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001897 if (ret == 0) {
1898 /*
1899 * Only if we're going to lock these pages,
1900 * can we find nothing at @index.
1901 */
1902 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001903 err = -EAGAIN;
1904 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001905 }
Chris Mason8b62b722009-09-02 16:53:46 -04001906
Liu Boda2c7002017-02-10 16:41:05 +01001907 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001908 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001909 SetPagePrivate2(pages[i]);
1910
Chris Masonc8b97812008-10-29 14:49:59 -04001911 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001912 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001913 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001914 continue;
1915 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001916 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001917 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001918 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001919 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001920 if (page_ops & PAGE_SET_ERROR)
1921 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001922 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001923 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001924 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001925 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001926 if (page_ops & PAGE_LOCK) {
1927 lock_page(pages[i]);
1928 if (!PageDirty(pages[i]) ||
1929 pages[i]->mapping != mapping) {
1930 unlock_page(pages[i]);
1931 put_page(pages[i]);
1932 err = -EAGAIN;
1933 goto out;
1934 }
1935 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001936 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001937 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001938 }
1939 nr_pages -= ret;
1940 index += ret;
1941 cond_resched();
1942 }
Liu Boda2c7002017-02-10 16:41:05 +01001943out:
1944 if (err && index_ret)
1945 *index_ret = start_index + pages_locked - 1;
1946 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001947}
Chris Masonc8b97812008-10-29 14:49:59 -04001948
Liu Bo873695b2017-02-02 17:49:22 -08001949void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
Nikolay Borisov74e91942019-07-17 16:18:16 +03001950 struct page *locked_page,
1951 unsigned clear_bits,
1952 unsigned long page_ops)
Liu Bo873695b2017-02-02 17:49:22 -08001953{
1954 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001955 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001956
1957 __process_pages_contig(inode->i_mapping, locked_page,
1958 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001959 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001960}
1961
Chris Masond352ac62008-09-29 15:18:18 -04001962/*
1963 * count the number of bytes in the tree that have a given bit(s)
1964 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1965 * cached. The total number found is returned.
1966 */
Chris Masond1310b22008-01-24 16:13:08 -05001967u64 count_range_bits(struct extent_io_tree *tree,
1968 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001969 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001970{
1971 struct rb_node *node;
1972 struct extent_state *state;
1973 u64 cur_start = *start;
1974 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001975 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001976 int found = 0;
1977
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301978 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001979 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001980
Chris Masoncad321a2008-12-17 14:51:42 -05001981 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001982 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1983 total_bytes = tree->dirty_bytes;
1984 goto out;
1985 }
1986 /*
1987 * this search will find all the extents that end after
1988 * our range starts.
1989 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001990 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001991 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001992 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001993
Chris Masond3977122009-01-05 21:25:51 -05001994 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001995 state = rb_entry(node, struct extent_state, rb_node);
1996 if (state->start > search_end)
1997 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001998 if (contig && found && state->start > last + 1)
1999 break;
2000 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05002001 total_bytes += min(search_end, state->end) + 1 -
2002 max(cur_start, state->start);
2003 if (total_bytes >= max_bytes)
2004 break;
2005 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04002006 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05002007 found = 1;
2008 }
Chris Masonec29ed52011-02-23 16:23:20 -05002009 last = state->end;
2010 } else if (contig && found) {
2011 break;
Chris Masond1310b22008-01-24 16:13:08 -05002012 }
2013 node = rb_next(node);
2014 if (!node)
2015 break;
2016 }
2017out:
Chris Masoncad321a2008-12-17 14:51:42 -05002018 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002019 return total_bytes;
2020}
Christoph Hellwigb2950862008-12-02 09:54:17 -05002021
Chris Masond352ac62008-09-29 15:18:18 -04002022/*
2023 * set the private field for a given byte offset in the tree. If there isn't
2024 * an extent_state there already, this does nothing.
2025 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01002026static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01002027 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05002028{
2029 struct rb_node *node;
2030 struct extent_state *state;
2031 int ret = 0;
2032
Chris Masoncad321a2008-12-17 14:51:42 -05002033 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002034 /*
2035 * this search will find all the extents that end after
2036 * our range starts.
2037 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002038 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04002039 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05002040 ret = -ENOENT;
2041 goto out;
2042 }
2043 state = rb_entry(node, struct extent_state, rb_node);
2044 if (state->start != start) {
2045 ret = -ENOENT;
2046 goto out;
2047 }
David Sterba47dc1962016-02-11 13:24:13 +01002048 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002049out:
Chris Masoncad321a2008-12-17 14:51:42 -05002050 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002051 return ret;
2052}
2053
Arnd Bergmannf827ba92016-02-22 22:53:20 +01002054static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01002055 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05002056{
2057 struct rb_node *node;
2058 struct extent_state *state;
2059 int ret = 0;
2060
Chris Masoncad321a2008-12-17 14:51:42 -05002061 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002062 /*
2063 * this search will find all the extents that end after
2064 * our range starts.
2065 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002066 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04002067 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05002068 ret = -ENOENT;
2069 goto out;
2070 }
2071 state = rb_entry(node, struct extent_state, rb_node);
2072 if (state->start != start) {
2073 ret = -ENOENT;
2074 goto out;
2075 }
David Sterba47dc1962016-02-11 13:24:13 +01002076 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002077out:
Chris Masoncad321a2008-12-17 14:51:42 -05002078 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002079 return ret;
2080}
2081
2082/*
2083 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05002084 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05002085 * has the bits set. Otherwise, 1 is returned if any bit in the
2086 * range is found set.
2087 */
2088int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01002089 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05002090{
2091 struct extent_state *state = NULL;
2092 struct rb_node *node;
2093 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002094
Chris Masoncad321a2008-12-17 14:51:42 -05002095 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002096 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002097 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002098 node = &cached->rb_node;
2099 else
2100 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002101 while (node && start <= end) {
2102 state = rb_entry(node, struct extent_state, rb_node);
2103
2104 if (filled && state->start > start) {
2105 bitset = 0;
2106 break;
2107 }
2108
2109 if (state->start > end)
2110 break;
2111
2112 if (state->state & bits) {
2113 bitset = 1;
2114 if (!filled)
2115 break;
2116 } else if (filled) {
2117 bitset = 0;
2118 break;
2119 }
Chris Mason46562ce2009-09-23 20:23:16 -04002120
2121 if (state->end == (u64)-1)
2122 break;
2123
Chris Masond1310b22008-01-24 16:13:08 -05002124 start = state->end + 1;
2125 if (start > end)
2126 break;
2127 node = rb_next(node);
2128 if (!node) {
2129 if (filled)
2130 bitset = 0;
2131 break;
2132 }
2133 }
Chris Masoncad321a2008-12-17 14:51:42 -05002134 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002135 return bitset;
2136}
Chris Masond1310b22008-01-24 16:13:08 -05002137
2138/*
2139 * helper function to set a given page up to date if all the
2140 * extents in the tree for that page are up to date
2141 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002142static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002143{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002144 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002145 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002146 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002147 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002148}
2149
Josef Bacik7870d082017-05-05 11:57:15 -04002150int free_io_failure(struct extent_io_tree *failure_tree,
2151 struct extent_io_tree *io_tree,
2152 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002153{
2154 int ret;
2155 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002156
David Sterba47dc1962016-02-11 13:24:13 +01002157 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002158 ret = clear_extent_bits(failure_tree, rec->start,
2159 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002160 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002161 if (ret)
2162 err = ret;
2163
Josef Bacik7870d082017-05-05 11:57:15 -04002164 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05002165 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002166 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05002167 if (ret && !err)
2168 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002169
2170 kfree(rec);
2171 return err;
2172}
2173
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002174/*
2175 * this bypasses the standard btrfs submit functions deliberately, as
2176 * the standard behavior is to write all copies in a raid setup. here we only
2177 * want to write the one bad copy. so we do the mapping for ourselves and issue
2178 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002179 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002180 * actually prevents the read that triggered the error from finishing.
2181 * currently, there can be no more than two copies of every data bit. thus,
2182 * exactly one rewrite is required.
2183 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04002184int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
2185 u64 length, u64 logical, struct page *page,
2186 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002187{
2188 struct bio *bio;
2189 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002190 u64 map_length = 0;
2191 u64 sector;
2192 struct btrfs_bio *bbio = NULL;
2193 int ret;
2194
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002195 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002196 BUG_ON(!mirror_num);
2197
David Sterbac5e4c3d2017-06-12 17:29:41 +02002198 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002199 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002200 map_length = length;
2201
Filipe Mananab5de8d02016-05-27 22:21:27 +01002202 /*
2203 * Avoid races with device replace and make sure our bbio has devices
2204 * associated to its stripes that don't go away while we are doing the
2205 * read repair operation.
2206 */
2207 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002208 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002209 /*
2210 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2211 * to update all raid stripes, but here we just want to correct
2212 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2213 * stripe's dev and sector.
2214 */
2215 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2216 &map_length, &bbio, 0);
2217 if (ret) {
2218 btrfs_bio_counter_dec(fs_info);
2219 bio_put(bio);
2220 return -EIO;
2221 }
2222 ASSERT(bbio->mirror_num == 1);
2223 } else {
2224 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2225 &map_length, &bbio, mirror_num);
2226 if (ret) {
2227 btrfs_bio_counter_dec(fs_info);
2228 bio_put(bio);
2229 return -EIO;
2230 }
2231 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002232 }
Liu Boc7253282017-03-29 10:53:58 -07002233
2234 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002235 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002236 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002237 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002238 if (!dev || !dev->bdev ||
2239 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002240 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002241 bio_put(bio);
2242 return -EIO;
2243 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002244 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002245 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002246 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002247
Mike Christie4e49ea42016-06-05 14:31:41 -05002248 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002249 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002250 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002251 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002252 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002253 return -EIO;
2254 }
2255
David Sterbab14af3b2015-10-08 10:43:10 +02002256 btrfs_info_rl_in_rcu(fs_info,
2257 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002258 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002259 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002260 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002261 bio_put(bio);
2262 return 0;
2263}
2264
David Sterba20a1fbf92019-03-20 11:23:44 +01002265int btrfs_repair_eb_io_failure(struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002266{
David Sterba20a1fbf92019-03-20 11:23:44 +01002267 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacikea466792012-03-26 21:57:36 -04002268 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002269 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002270 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002271
David Howellsbc98a422017-07-17 08:45:34 +01002272 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002273 return -EROFS;
2274
Josef Bacikea466792012-03-26 21:57:36 -04002275 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002276 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002277
Josef Bacik6ec656b2017-05-05 11:57:14 -04002278 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002279 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002280 if (ret)
2281 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002282 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002283 }
2284
2285 return ret;
2286}
2287
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002288/*
2289 * each time an IO finishes, we do a fast check in the IO failure tree
2290 * to see if we need to process or clean up an io_failure_record
2291 */
Josef Bacik7870d082017-05-05 11:57:15 -04002292int clean_io_failure(struct btrfs_fs_info *fs_info,
2293 struct extent_io_tree *failure_tree,
2294 struct extent_io_tree *io_tree, u64 start,
2295 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002296{
2297 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002298 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002299 struct extent_state *state;
2300 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002301 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002302
2303 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002304 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2305 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002306 if (!ret)
2307 return 0;
2308
Josef Bacik7870d082017-05-05 11:57:15 -04002309 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002310 if (ret)
2311 return 0;
2312
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002313 BUG_ON(!failrec->this_mirror);
2314
2315 if (failrec->in_validation) {
2316 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002317 btrfs_debug(fs_info,
2318 "clean_io_failure: freeing dummy error at %llu",
2319 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002320 goto out;
2321 }
David Howellsbc98a422017-07-17 08:45:34 +01002322 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002323 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002324
Josef Bacik7870d082017-05-05 11:57:15 -04002325 spin_lock(&io_tree->lock);
2326 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002327 failrec->start,
2328 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002329 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002330
Miao Xie883d0de2013-07-25 19:22:35 +08002331 if (state && state->start <= failrec->start &&
2332 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002333 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2334 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002335 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002336 repair_io_failure(fs_info, ino, start, failrec->len,
2337 failrec->logical, page, pg_offset,
2338 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002339 }
2340 }
2341
2342out:
Josef Bacik7870d082017-05-05 11:57:15 -04002343 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002344
Miao Xie454ff3d2014-09-12 18:43:58 +08002345 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002346}
2347
Miao Xief6124962014-09-12 18:44:04 +08002348/*
2349 * Can be called when
2350 * - hold extent lock
2351 * - under ordered extent
2352 * - the inode is freeing
2353 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002354void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002355{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002356 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002357 struct io_failure_record *failrec;
2358 struct extent_state *state, *next;
2359
2360 if (RB_EMPTY_ROOT(&failure_tree->state))
2361 return;
2362
2363 spin_lock(&failure_tree->lock);
2364 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2365 while (state) {
2366 if (state->start > end)
2367 break;
2368
2369 ASSERT(state->end <= end);
2370
2371 next = next_state(state);
2372
David Sterba47dc1962016-02-11 13:24:13 +01002373 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002374 free_extent_state(state);
2375 kfree(failrec);
2376
2377 state = next;
2378 }
2379 spin_unlock(&failure_tree->lock);
2380}
2381
Miao Xie2fe63032014-09-12 18:43:59 +08002382int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002383 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002384{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002385 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002386 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002387 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002388 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2389 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2390 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002391 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002392 u64 logical;
2393
David Sterba47dc1962016-02-11 13:24:13 +01002394 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002395 if (ret) {
2396 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2397 if (!failrec)
2398 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002399
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002400 failrec->start = start;
2401 failrec->len = end - start + 1;
2402 failrec->this_mirror = 0;
2403 failrec->bio_flags = 0;
2404 failrec->in_validation = 0;
2405
2406 read_lock(&em_tree->lock);
2407 em = lookup_extent_mapping(em_tree, start, failrec->len);
2408 if (!em) {
2409 read_unlock(&em_tree->lock);
2410 kfree(failrec);
2411 return -EIO;
2412 }
2413
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002414 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002415 free_extent_map(em);
2416 em = NULL;
2417 }
2418 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002419 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002420 kfree(failrec);
2421 return -EIO;
2422 }
Miao Xie2fe63032014-09-12 18:43:59 +08002423
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002424 logical = start - em->start;
2425 logical = em->block_start + logical;
2426 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2427 logical = em->block_start;
2428 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2429 extent_set_compress_type(&failrec->bio_flags,
2430 em->compress_type);
2431 }
Miao Xie2fe63032014-09-12 18:43:59 +08002432
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002433 btrfs_debug(fs_info,
2434 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2435 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002436
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002437 failrec->logical = logical;
2438 free_extent_map(em);
2439
2440 /* set the bits in the private failure tree */
2441 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002442 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002443 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002444 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002445 /* set the bits in the inode's tree */
2446 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002447 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002448 if (ret < 0) {
2449 kfree(failrec);
2450 return ret;
2451 }
2452 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002453 btrfs_debug(fs_info,
2454 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2455 failrec->logical, failrec->start, failrec->len,
2456 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002457 /*
2458 * when data can be on disk more than twice, add to failrec here
2459 * (e.g. with a list for failed_mirror) to make
2460 * clean_io_failure() clean all those errors at once.
2461 */
2462 }
Miao Xie2fe63032014-09-12 18:43:59 +08002463
2464 *failrec_ret = failrec;
2465
2466 return 0;
2467}
2468
Ming Leia0b60d72017-12-18 20:22:11 +08002469bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002470 struct io_failure_record *failrec, int failed_mirror)
2471{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002472 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002473 int num_copies;
2474
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002475 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002476 if (num_copies == 1) {
2477 /*
2478 * we only have a single copy of the data, so don't bother with
2479 * all the retry and error correction code that follows. no
2480 * matter what the error is, it is very likely to persist.
2481 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002482 btrfs_debug(fs_info,
2483 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2484 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002485 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002486 }
2487
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002488 /*
2489 * there are two premises:
2490 * a) deliver good data to the caller
2491 * b) correct the bad sectors on disk
2492 */
Ming Leia0b60d72017-12-18 20:22:11 +08002493 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002494 /*
2495 * to fulfill b), we need to know the exact failing sectors, as
2496 * we don't want to rewrite any more than the failed ones. thus,
2497 * we need separate read requests for the failed bio
2498 *
2499 * if the following BUG_ON triggers, our validation request got
2500 * merged. we need separate requests for our algorithm to work.
2501 */
2502 BUG_ON(failrec->in_validation);
2503 failrec->in_validation = 1;
2504 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002505 } else {
2506 /*
2507 * we're ready to fulfill a) and b) alongside. get a good copy
2508 * of the failed sector and if we succeed, we have setup
2509 * everything for repair_io_failure to do the rest for us.
2510 */
2511 if (failrec->in_validation) {
2512 BUG_ON(failrec->this_mirror != failed_mirror);
2513 failrec->in_validation = 0;
2514 failrec->this_mirror = 0;
2515 }
2516 failrec->failed_mirror = failed_mirror;
2517 failrec->this_mirror++;
2518 if (failrec->this_mirror == failed_mirror)
2519 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002520 }
2521
Miao Xiefacc8a222013-07-25 19:22:34 +08002522 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002523 btrfs_debug(fs_info,
2524 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2525 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002526 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002527 }
2528
Liu Boc3cfb652017-07-13 15:00:50 -07002529 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002530}
2531
2532
2533struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2534 struct io_failure_record *failrec,
2535 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002536 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002537{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002538 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002539 struct bio *bio;
2540 struct btrfs_io_bio *btrfs_failed_bio;
2541 struct btrfs_io_bio *btrfs_bio;
2542
David Sterbac5e4c3d2017-06-12 17:29:41 +02002543 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002544 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002545 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002546 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002547 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002548 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002549
Miao Xiefacc8a222013-07-25 19:22:34 +08002550 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2551 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002552 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2553
2554 btrfs_bio = btrfs_io_bio(bio);
2555 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002556 icsum *= csum_size;
2557 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002558 csum_size);
2559 }
2560
Miao Xie2fe63032014-09-12 18:43:59 +08002561 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002562
Miao Xie2fe63032014-09-12 18:43:59 +08002563 return bio;
2564}
2565
2566/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002567 * This is a generic handler for readpage errors. If other copies exist, read
2568 * those and write back good data to the failed position. Does not investigate
2569 * in remapping the failed extent elsewhere, hoping the device will be smart
2570 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002571 */
Miao Xie2fe63032014-09-12 18:43:59 +08002572static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2573 struct page *page, u64 start, u64 end,
2574 int failed_mirror)
2575{
2576 struct io_failure_record *failrec;
2577 struct inode *inode = page->mapping->host;
2578 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002579 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002580 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002581 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002582 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002583 int ret;
Christoph Hellwig8a2ee442019-02-15 19:13:07 +08002584 unsigned failed_bio_pages = failed_bio->bi_iter.bi_size >> PAGE_SHIFT;
Miao Xie2fe63032014-09-12 18:43:59 +08002585
Mike Christie1f7ad752016-06-05 14:31:51 -05002586 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002587
2588 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2589 if (ret)
2590 return ret;
2591
Ming Leia0b60d72017-12-18 20:22:11 +08002592 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002593 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002594 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002595 return -EIO;
2596 }
2597
Ming Leia0b60d72017-12-18 20:22:11 +08002598 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002599 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002600
2601 phy_offset >>= inode->i_sb->s_blocksize_bits;
2602 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2603 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002604 (int)phy_offset, failed_bio->bi_end_io,
2605 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002606 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002607
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002608 btrfs_debug(btrfs_sb(inode->i_sb),
2609 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2610 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002611
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002612 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Nikolay Borisov50489a52019-04-10 19:46:04 +03002613 failrec->bio_flags);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002614 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002615 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002616 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002617 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002618 }
2619
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002620 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002621}
2622
Chris Masond1310b22008-01-24 16:13:08 -05002623/* lots and lots of room for performance fixes in the end_bio funcs */
2624
David Sterbab5227c02015-12-03 13:08:59 +01002625void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002626{
2627 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002628 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002629
Nikolay Borisovc6297322018-11-08 10:18:08 +02002630 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002631
Jeff Mahoney87826df2012-02-15 16:23:57 +01002632 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002633 ClearPageUptodate(page);
2634 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002635 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002636 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002637 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002638}
2639
Chris Masond1310b22008-01-24 16:13:08 -05002640/*
2641 * after a writepage IO is done, we need to:
2642 * clear the uptodate bits on error
2643 * clear the writeback bits in the extent tree for this IO
2644 * end_page_writeback if the page has no more pending IO
2645 *
2646 * Scheduling is not allowed, so the extent state tree is expected
2647 * to have one and only one object corresponding to this IO.
2648 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002649static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002650{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002651 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002652 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002653 u64 start;
2654 u64 end;
Ming Lei6dc4f102019-02-15 19:13:19 +08002655 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002656
David Sterbac09abff2017-07-13 18:10:07 +02002657 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002658 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002659 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002660 struct inode *inode = page->mapping->host;
2661 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002662
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002663 /* We always issue full-page reads, but if some block
2664 * in a page fails to read, blk_update_request() will
2665 * advance bv_offset and adjust bv_len to compensate.
2666 * Print a warning for nonzero offsets, and an error
2667 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002668 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2669 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002670 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002671 "partial page write in btrfs with offset %u and length %u",
2672 bvec->bv_offset, bvec->bv_len);
2673 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002674 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002675 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002676 bvec->bv_offset, bvec->bv_len);
2677 }
Chris Masond1310b22008-01-24 16:13:08 -05002678
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002679 start = page_offset(page);
2680 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002681
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002682 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002683 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002684 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002685
Chris Masond1310b22008-01-24 16:13:08 -05002686 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002687}
2688
Miao Xie883d0de2013-07-25 19:22:35 +08002689static void
2690endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2691 int uptodate)
2692{
2693 struct extent_state *cached = NULL;
2694 u64 end = start + len - 1;
2695
2696 if (uptodate && tree->track_uptodate)
2697 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002698 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002699}
2700
Chris Masond1310b22008-01-24 16:13:08 -05002701/*
2702 * after a readpage IO is done, we need to:
2703 * clear the uptodate bits on error
2704 * set the uptodate bits if things worked
2705 * set the page up to date if all extents in the tree are uptodate
2706 * clear the lock bit in the extent tree
2707 * unlock the page if there are no other extents locked for it
2708 *
2709 * Scheduling is not allowed, so the extent state tree is expected
2710 * to have one and only one object corresponding to this IO.
2711 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002712static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002713{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002714 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002715 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002716 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002717 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002718 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002719 u64 start;
2720 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002721 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002722 u64 extent_start = 0;
2723 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002724 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002725 int ret;
Ming Lei6dc4f102019-02-15 19:13:19 +08002726 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002727
David Sterbac09abff2017-07-13 18:10:07 +02002728 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002729 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002730 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002731 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002732 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002733 bool data_inode = btrfs_ino(BTRFS_I(inode))
2734 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002735
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002736 btrfs_debug(fs_info,
2737 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002738 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002739 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002740 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002741 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002742
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002743 /* We always issue full-page reads, but if some block
2744 * in a page fails to read, blk_update_request() will
2745 * advance bv_offset and adjust bv_len to compensate.
2746 * Print a warning for nonzero offsets, and an error
2747 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002748 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2749 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002750 btrfs_err(fs_info,
2751 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002752 bvec->bv_offset, bvec->bv_len);
2753 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002754 btrfs_info(fs_info,
2755 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002756 bvec->bv_offset, bvec->bv_len);
2757 }
Chris Masond1310b22008-01-24 16:13:08 -05002758
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002759 start = page_offset(page);
2760 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002761 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002762
Chris Mason9be33952013-05-17 18:30:14 -04002763 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002764 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002765 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2766 page, start, end,
2767 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002768 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002769 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002770 else
Josef Bacik7870d082017-05-05 11:57:15 -04002771 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2772 failure_tree, tree, start,
2773 page,
2774 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002775 }
Josef Bacikea466792012-03-26 21:57:36 -04002776
Miao Xief2a09da2013-07-25 19:22:33 +08002777 if (likely(uptodate))
2778 goto readpage_ok;
2779
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002780 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002781
2782 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002783 * The generic bio_readpage_error handles errors the
2784 * following way: If possible, new read requests are
2785 * created and submitted and will end up in
2786 * end_bio_extent_readpage as well (if we're lucky,
2787 * not in the !uptodate case). In that case it returns
2788 * 0 and we just go on with the next page in our bio.
2789 * If it can't handle the error it will return -EIO and
2790 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002791 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002792 ret = bio_readpage_error(bio, offset, page, start, end,
2793 mirror);
2794 if (ret == 0) {
2795 uptodate = !bio->bi_status;
2796 offset += len;
2797 continue;
2798 }
2799 } else {
2800 struct extent_buffer *eb;
2801
2802 eb = (struct extent_buffer *)page->private;
2803 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2804 eb->read_mirror = mirror;
2805 atomic_dec(&eb->io_pages);
2806 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2807 &eb->bflags))
2808 btree_readahead_hook(eb, -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002809 }
Miao Xief2a09da2013-07-25 19:22:33 +08002810readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002811 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002812 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002813 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002814 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002815
2816 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002817 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002818 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002819 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002820 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002821 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002822 ClearPageUptodate(page);
2823 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002824 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002825 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002826 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002827
2828 if (unlikely(!uptodate)) {
2829 if (extent_len) {
2830 endio_readpage_release_extent(tree,
2831 extent_start,
2832 extent_len, 1);
2833 extent_start = 0;
2834 extent_len = 0;
2835 }
2836 endio_readpage_release_extent(tree, start,
2837 end - start + 1, 0);
2838 } else if (!extent_len) {
2839 extent_start = start;
2840 extent_len = end + 1 - start;
2841 } else if (extent_start + extent_len == start) {
2842 extent_len += end + 1 - start;
2843 } else {
2844 endio_readpage_release_extent(tree, extent_start,
2845 extent_len, uptodate);
2846 extent_start = start;
2847 extent_len = end + 1 - start;
2848 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002849 }
Chris Masond1310b22008-01-24 16:13:08 -05002850
Miao Xie883d0de2013-07-25 19:22:35 +08002851 if (extent_len)
2852 endio_readpage_release_extent(tree, extent_start, extent_len,
2853 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002854 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002855 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002856}
2857
Chris Mason9be33952013-05-17 18:30:14 -04002858/*
David Sterba184f9992017-06-12 17:29:39 +02002859 * Initialize the members up to but not including 'bio'. Use after allocating a
2860 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2861 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002862 */
David Sterba184f9992017-06-12 17:29:39 +02002863static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002864{
David Sterba184f9992017-06-12 17:29:39 +02002865 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2866}
2867
2868/*
David Sterba6e707bc2017-06-02 17:26:26 +02002869 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2870 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2871 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002872 */
David Sterbae749af442019-06-18 20:00:16 +02002873struct bio *btrfs_bio_alloc(u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002874{
2875 struct bio *bio;
2876
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002877 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
David Sterbac821e7f32017-06-02 18:35:36 +02002878 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002879 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002880 return bio;
2881}
2882
David Sterba8b6c1d52017-06-02 17:48:13 +02002883struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002884{
Miao Xie23ea8e52014-09-12 18:43:54 +08002885 struct btrfs_io_bio *btrfs_bio;
2886 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002887
David Sterba6e707bc2017-06-02 17:26:26 +02002888 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002889 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002890 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002891 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002892 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002893 return new;
2894}
Chris Mason9be33952013-05-17 18:30:14 -04002895
David Sterbac5e4c3d2017-06-12 17:29:41 +02002896struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002897{
Miao Xiefacc8a222013-07-25 19:22:34 +08002898 struct bio *bio;
2899
David Sterba6e707bc2017-06-02 17:26:26 +02002900 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002901 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002902 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002903 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002904}
2905
Liu Boe4770942017-05-16 10:57:14 -07002906struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002907{
2908 struct bio *bio;
2909 struct btrfs_io_bio *btrfs_bio;
2910
2911 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002912 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002913 ASSERT(bio);
2914
2915 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002916 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002917
2918 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002919 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002920 return bio;
2921}
Chris Mason9be33952013-05-17 18:30:14 -04002922
David Sterba4b81ba42017-06-06 19:14:26 +02002923/*
2924 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002925 * @tree: tree so we can call our merge_bio hook
2926 * @wbc: optional writeback control for io accounting
2927 * @page: page to add to the bio
2928 * @pg_offset: offset of the new bio or to check whether we are adding
2929 * a contiguous page to the previous one
2930 * @size: portion of page that we want to write
2931 * @offset: starting offset in the page
2932 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002933 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002934 * @end_io_func: end_io callback for new bio
2935 * @mirror_num: desired mirror to read/write
2936 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2937 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002938 */
2939static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002940 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002941 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002942 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002943 struct block_device *bdev,
2944 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002945 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002946 int mirror_num,
2947 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002948 unsigned long bio_flags,
2949 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002950{
2951 int ret = 0;
2952 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002953 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002954 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002955
David Sterba5c2b1fd2017-06-06 19:22:55 +02002956 ASSERT(bio_ret);
2957
2958 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002959 bool contig;
2960 bool can_merge = true;
2961
Chris Masond1310b22008-01-24 16:13:08 -05002962 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002963 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002964 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002965 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002966 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002967
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002968 ASSERT(tree->ops);
2969 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002970 can_merge = false;
2971
2972 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002973 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002974 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002975 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002976 if (ret < 0) {
2977 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002978 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002979 }
Chris Masond1310b22008-01-24 16:13:08 -05002980 bio = NULL;
2981 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002982 if (wbc)
Tejun Heo34e51a52019-06-27 13:39:49 -07002983 wbc_account_cgroup_owner(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002984 return 0;
2985 }
2986 }
Chris Masonc8b97812008-10-29 14:49:59 -04002987
David Sterbae749af442019-06-18 20:00:16 +02002988 bio = btrfs_bio_alloc(offset);
2989 bio_set_dev(bio, bdev);
David Sterba6c5a4e22017-10-04 17:10:34 +02002990 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002991 bio->bi_end_io = end_io_func;
2992 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002993 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002994 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002995 if (wbc) {
2996 wbc_init_bio(wbc, bio);
Tejun Heo34e51a52019-06-27 13:39:49 -07002997 wbc_account_cgroup_owner(wbc, page, page_size);
Chris Masonda2f0f72015-07-02 13:57:22 -07002998 }
Chris Mason70dec802008-01-29 09:59:12 -05002999
David Sterba5c2b1fd2017-06-06 19:22:55 +02003000 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05003001
3002 return ret;
3003}
3004
Eric Sandeen48a3b632013-04-25 20:41:01 +00003005static void attach_extent_buffer_page(struct extent_buffer *eb,
3006 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05003007{
3008 if (!PagePrivate(page)) {
3009 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003010 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05003011 set_page_private(page, (unsigned long)eb);
3012 } else {
3013 WARN_ON(page->private != (unsigned long)eb);
3014 }
3015}
3016
Chris Masond1310b22008-01-24 16:13:08 -05003017void set_page_extent_mapped(struct page *page)
3018{
3019 if (!PagePrivate(page)) {
3020 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003021 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04003022 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05003023 }
3024}
3025
Miao Xie125bac012013-07-25 19:22:37 +08003026static struct extent_map *
3027__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
3028 u64 start, u64 len, get_extent_t *get_extent,
3029 struct extent_map **em_cached)
3030{
3031 struct extent_map *em;
3032
3033 if (em_cached && *em_cached) {
3034 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00003035 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08003036 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02003037 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08003038 return em;
3039 }
3040
3041 free_extent_map(em);
3042 *em_cached = NULL;
3043 }
3044
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003045 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08003046 if (em_cached && !IS_ERR_OR_NULL(em)) {
3047 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02003048 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08003049 *em_cached = em;
3050 }
3051 return em;
3052}
Chris Masond1310b22008-01-24 16:13:08 -05003053/*
3054 * basic readpage implementation. Locked extent state structs are inserted
3055 * into the tree that are removed when the IO is done (by the end_io
3056 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003057 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07003058 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05003059 */
Miao Xie99740902013-07-25 19:22:36 +08003060static int __do_readpage(struct extent_io_tree *tree,
3061 struct page *page,
3062 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003063 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003064 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003065 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003066 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05003067{
3068 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003069 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02003070 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003071 u64 cur = start;
3072 u64 extent_offset;
3073 u64 last_byte = i_size_read(inode);
3074 u64 block_start;
3075 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05003076 struct extent_map *em;
3077 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07003078 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003079 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02003080 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003081 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04003082 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05003083 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00003084 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003085
3086 set_page_extent_mapped(page);
3087
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003088 if (!PageUptodate(page)) {
3089 if (cleancache_get_page(page) == 0) {
3090 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003091 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003092 goto out;
3093 }
3094 }
3095
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003096 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04003097 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01003098 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04003099
3100 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003101 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003102 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003103 memset(userpage + zero_offset, 0, iosize);
3104 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003105 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003106 }
3107 }
Chris Masond1310b22008-01-24 16:13:08 -05003108 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01003109 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02003110 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003111
Chris Masond1310b22008-01-24 16:13:08 -05003112 if (cur >= last_byte) {
3113 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003114 struct extent_state *cached = NULL;
3115
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003116 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003117 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003118 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003119 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003120 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003121 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003122 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003123 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003124 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003125 break;
3126 }
Miao Xie125bac012013-07-25 19:22:37 +08003127 em = __get_extent_map(inode, page, pg_offset, cur,
3128 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003129 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003130 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003131 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003132 break;
3133 }
Chris Masond1310b22008-01-24 16:13:08 -05003134 extent_offset = cur - em->start;
3135 BUG_ON(extent_map_end(em) <= cur);
3136 BUG_ON(end < cur);
3137
Li Zefan261507a02010-12-17 14:21:50 +08003138 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003139 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003140 extent_set_compress_type(&this_bio_flag,
3141 em->compress_type);
3142 }
Chris Masonc8b97812008-10-29 14:49:59 -04003143
Chris Masond1310b22008-01-24 16:13:08 -05003144 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3145 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003146 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003147 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3148 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02003149 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003150 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02003151 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003152 disk_io_size = iosize;
3153 }
Chris Masond1310b22008-01-24 16:13:08 -05003154 bdev = em->bdev;
3155 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003156 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3157 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003158
3159 /*
3160 * If we have a file range that points to a compressed extent
3161 * and it's followed by a consecutive file range that points to
3162 * to the same compressed extent (possibly with a different
3163 * offset and/or length, so it either points to the whole extent
3164 * or only part of it), we must make sure we do not submit a
3165 * single bio to populate the pages for the 2 ranges because
3166 * this makes the compressed extent read zero out the pages
3167 * belonging to the 2nd range. Imagine the following scenario:
3168 *
3169 * File layout
3170 * [0 - 8K] [8K - 24K]
3171 * | |
3172 * | |
3173 * points to extent X, points to extent X,
3174 * offset 4K, length of 8K offset 0, length 16K
3175 *
3176 * [extent X, compressed length = 4K uncompressed length = 16K]
3177 *
3178 * If the bio to read the compressed extent covers both ranges,
3179 * it will decompress extent X into the pages belonging to the
3180 * first range and then it will stop, zeroing out the remaining
3181 * pages that belong to the other range that points to extent X.
3182 * So here we make sure we submit 2 bios, one for the first
3183 * range and another one for the third range. Both will target
3184 * the same physical extent from disk, but we can't currently
3185 * make the compressed bio endio callback populate the pages
3186 * for both ranges because each compressed bio is tightly
3187 * coupled with a single extent map, and each range can have
3188 * an extent map with a different offset value relative to the
3189 * uncompressed data of our extent and different lengths. This
3190 * is a corner case so we prioritize correctness over
3191 * non-optimal behavior (submitting 2 bios for the same extent).
3192 */
3193 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3194 prev_em_start && *prev_em_start != (u64)-1 &&
Filipe Manana8e928212019-02-14 15:17:20 +00003195 *prev_em_start != em->start)
Filipe Manana005efed2015-09-14 09:09:31 +01003196 force_bio_submit = true;
3197
3198 if (prev_em_start)
Filipe Manana8e928212019-02-14 15:17:20 +00003199 *prev_em_start = em->start;
Filipe Manana005efed2015-09-14 09:09:31 +01003200
Chris Masond1310b22008-01-24 16:13:08 -05003201 free_extent_map(em);
3202 em = NULL;
3203
3204 /* we've found a hole, just zero and go on */
3205 if (block_start == EXTENT_MAP_HOLE) {
3206 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003207 struct extent_state *cached = NULL;
3208
Cong Wang7ac687d2011-11-25 23:14:28 +08003209 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003210 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003211 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003212 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003213
3214 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003215 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003216 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003217 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003218 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003219 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003220 continue;
3221 }
3222 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003223 if (test_range_bit(tree, cur, cur_end,
3224 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003225 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003226 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003227 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003228 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003229 continue;
3230 }
Chris Mason70dec802008-01-29 09:59:12 -05003231 /* we have an inline extent but it didn't get marked up
3232 * to date. Error out
3233 */
3234 if (block_start == EXTENT_MAP_INLINE) {
3235 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003236 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003237 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003238 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003239 continue;
3240 }
Chris Masond1310b22008-01-24 16:13:08 -05003241
David Sterba4b81ba42017-06-06 19:14:26 +02003242 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003243 page, offset, disk_io_size,
3244 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003245 end_bio_extent_readpage, mirror_num,
3246 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003247 this_bio_flag,
3248 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003249 if (!ret) {
3250 nr++;
3251 *bio_flags = this_bio_flag;
3252 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003253 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003254 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003255 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003256 }
Chris Masond1310b22008-01-24 16:13:08 -05003257 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003258 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003259 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003260out:
Chris Masond1310b22008-01-24 16:13:08 -05003261 if (!nr) {
3262 if (!PageError(page))
3263 SetPageUptodate(page);
3264 unlock_page(page);
3265 }
Liu Bobaf863b2016-07-11 10:39:07 -07003266 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003267}
3268
Nikolay Borisove65ef212019-03-11 09:55:38 +02003269static inline void contiguous_readpages(struct extent_io_tree *tree,
Miao Xie99740902013-07-25 19:22:36 +08003270 struct page *pages[], int nr_pages,
3271 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003272 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003273 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003274 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003275 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003276{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003277 struct btrfs_inode *inode = BTRFS_I(pages[0]->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003278 int index;
3279
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003280 btrfs_lock_and_flush_ordered_range(tree, inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003281
3282 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003283 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003284 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003285 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003286 }
3287}
3288
Miao Xie99740902013-07-25 19:22:36 +08003289static int __extent_read_full_page(struct extent_io_tree *tree,
3290 struct page *page,
3291 get_extent_t *get_extent,
3292 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003293 unsigned long *bio_flags,
3294 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003295{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003296 struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003297 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003298 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003299 int ret;
3300
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003301 btrfs_lock_and_flush_ordered_range(tree, inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003302
Miao Xie125bac012013-07-25 19:22:37 +08003303 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003304 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003305 return ret;
3306}
3307
Chris Masond1310b22008-01-24 16:13:08 -05003308int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003309 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003310{
3311 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003312 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003313 int ret;
3314
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003315 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003316 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003317 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003318 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003319 return ret;
3320}
Chris Masond1310b22008-01-24 16:13:08 -05003321
David Sterba3d4b9492017-02-10 19:33:41 +01003322static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003323 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003324{
3325 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003326}
3327
Chris Masond1310b22008-01-24 16:13:08 -05003328/*
Chris Mason40f76582014-05-21 13:35:51 -07003329 * helper for __extent_writepage, doing all of the delayed allocation setup.
3330 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003331 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003332 * to write the page (copy into inline extent). In this case the IO has
3333 * been started and the page is already unlocked.
3334 *
3335 * This returns 0 if all went well (page still locked)
3336 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003337 */
Chris Mason40f76582014-05-21 13:35:51 -07003338static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003339 struct page *page, struct writeback_control *wbc,
3340 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003341{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003342 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003343 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003344 u64 delalloc_to_write = 0;
3345 u64 delalloc_end = 0;
3346 int ret;
3347 int page_started = 0;
3348
Chris Mason40f76582014-05-21 13:35:51 -07003349
3350 while (delalloc_end < page_end) {
Goldwyn Rodrigues99780592019-06-21 10:02:54 -05003351 found = find_lock_delalloc_range(inode, page,
Chris Mason40f76582014-05-21 13:35:51 -07003352 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003353 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003354 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003355 delalloc_start = delalloc_end + 1;
3356 continue;
3357 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003358 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3359 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003360 if (ret) {
3361 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003362 /*
3363 * btrfs_run_delalloc_range should return < 0 for error
3364 * but just in case, we use > 0 here meaning the IO is
3365 * started, so we don't want to return > 0 unless
3366 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003367 */
3368 ret = ret < 0 ? ret : -EIO;
3369 goto done;
3370 }
3371 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003372 * delalloc_end is already one less than the total length, so
3373 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003374 */
3375 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003376 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003377 delalloc_start = delalloc_end + 1;
3378 }
3379 if (wbc->nr_to_write < delalloc_to_write) {
3380 int thresh = 8192;
3381
3382 if (delalloc_to_write < thresh * 2)
3383 thresh = delalloc_to_write;
3384 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3385 thresh);
3386 }
3387
3388 /* did the fill delalloc function already unlock and start
3389 * the IO?
3390 */
3391 if (page_started) {
3392 /*
3393 * we've unlocked the page, so we can't update
3394 * the mapping's writeback index, just update
3395 * nr_to_write.
3396 */
3397 wbc->nr_to_write -= *nr_written;
3398 return 1;
3399 }
3400
3401 ret = 0;
3402
3403done:
3404 return ret;
3405}
3406
3407/*
3408 * helper for __extent_writepage. This calls the writepage start hooks,
3409 * and does the loop to map the page into extents and bios.
3410 *
3411 * We return 1 if the IO is started and the page is unlocked,
3412 * 0 if all went well (page still locked)
3413 * < 0 if there were errors (page still locked)
3414 */
3415static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3416 struct page *page,
3417 struct writeback_control *wbc,
3418 struct extent_page_data *epd,
3419 loff_t i_size,
3420 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003421 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003422{
Chris Masond1310b22008-01-24 16:13:08 -05003423 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003424 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003425 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003426 u64 end;
3427 u64 cur = start;
3428 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003429 u64 block_start;
3430 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003431 struct extent_map *em;
3432 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003433 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003434 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003435 int ret = 0;
3436 int nr = 0;
3437 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003438
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003439 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3440 if (ret) {
3441 /* Fixup worker will requeue */
3442 if (ret == -EBUSY)
3443 wbc->pages_skipped++;
3444 else
3445 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003446
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003447 update_nr_written(wbc, nr_written);
3448 unlock_page(page);
3449 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003450 }
3451
Chris Mason11c83492009-04-20 15:50:09 -04003452 /*
3453 * we don't want to touch the inode after unlocking the page,
3454 * so we update the mapping writeback index now
3455 */
David Sterba3d4b9492017-02-10 19:33:41 +01003456 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003457
Chris Masond1310b22008-01-24 16:13:08 -05003458 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003459 if (i_size <= start) {
Nikolay Borisovc6297322018-11-08 10:18:08 +02003460 btrfs_writepage_endio_finish_ordered(page, start, page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003461 goto done;
3462 }
3463
Chris Masond1310b22008-01-24 16:13:08 -05003464 blocksize = inode->i_sb->s_blocksize;
3465
3466 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003467 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003468 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003469
Chris Mason40f76582014-05-21 13:35:51 -07003470 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003471 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003472 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003473 break;
3474 }
David Sterba3c98c622017-06-23 04:01:08 +02003475 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003476 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003477 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003478 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003479 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003480 break;
3481 }
3482
3483 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003484 em_end = extent_map_end(em);
3485 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003486 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003487 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003488 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003489 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003490 bdev = em->bdev;
3491 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003492 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003493 free_extent_map(em);
3494 em = NULL;
3495
Chris Masonc8b97812008-10-29 14:49:59 -04003496 /*
3497 * compressed and inline extents are written through other
3498 * paths in the FS
3499 */
3500 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003501 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003502 /*
3503 * end_io notification does not happen here for
3504 * compressed extents
3505 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003506 if (!compressed)
3507 btrfs_writepage_endio_finish_ordered(page, cur,
3508 cur + iosize - 1,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003509 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003510 else if (compressed) {
3511 /* we don't want to end_page_writeback on
3512 * a compressed extent. this happens
3513 * elsewhere
3514 */
3515 nr++;
3516 }
3517
3518 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003519 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003520 continue;
3521 }
Chris Masonc8b97812008-10-29 14:49:59 -04003522
David Sterba5cdc84b2018-07-18 20:32:52 +02003523 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003524 if (!PageWriteback(page)) {
3525 btrfs_err(BTRFS_I(inode)->root->fs_info,
3526 "page %lu not writeback, cur %llu end %llu",
3527 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003528 }
David Sterba58409ed2016-05-04 11:46:10 +02003529
David Sterba4b81ba42017-06-06 19:14:26 +02003530 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003531 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003532 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003533 end_bio_extent_writepage,
3534 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003535 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003536 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003537 if (PageWriteback(page))
3538 end_page_writeback(page);
3539 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003540
Chris Masond1310b22008-01-24 16:13:08 -05003541 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003542 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003543 nr++;
3544 }
3545done:
Chris Mason40f76582014-05-21 13:35:51 -07003546 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003547 return ret;
3548}
3549
3550/*
3551 * the writepage semantics are similar to regular writepage. extent
3552 * records are inserted to lock ranges in the tree, and as dirty areas
3553 * are found, they are marked writeback. Then the lock bits are removed
3554 * and the end_io handler clears the writeback ranges
Qu Wenruo30659762019-03-20 14:27:42 +08003555 *
3556 * Return 0 if everything goes well.
3557 * Return <0 for error.
Chris Mason40f76582014-05-21 13:35:51 -07003558 */
3559static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003560 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003561{
3562 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003563 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003564 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003565 int ret;
3566 int nr = 0;
3567 size_t pg_offset = 0;
3568 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003569 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003570 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003571 unsigned long nr_written = 0;
3572
Liu Boff40adf2017-08-24 18:19:48 -06003573 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003574
3575 trace___extent_writepage(page, inode, wbc);
3576
3577 WARN_ON(!PageLocked(page));
3578
3579 ClearPageError(page);
3580
Johannes Thumshirn70730172018-12-05 15:23:03 +01003581 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003582 if (page->index > end_index ||
3583 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003584 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003585 unlock_page(page);
3586 return 0;
3587 }
3588
3589 if (page->index == end_index) {
3590 char *userpage;
3591
3592 userpage = kmap_atomic(page);
3593 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003594 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003595 kunmap_atomic(userpage);
3596 flush_dcache_page(page);
3597 }
3598
3599 pg_offset = 0;
3600
3601 set_page_extent_mapped(page);
3602
Nikolay Borisov7789a552018-11-08 10:18:06 +02003603 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003604 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003605 if (ret == 1)
3606 goto done_unlocked;
3607 if (ret)
3608 goto done;
3609 }
Chris Mason40f76582014-05-21 13:35:51 -07003610
3611 ret = __extent_writepage_io(inode, page, wbc, epd,
3612 i_size, nr_written, write_flags, &nr);
3613 if (ret == 1)
3614 goto done_unlocked;
3615
3616done:
Chris Masond1310b22008-01-24 16:13:08 -05003617 if (nr == 0) {
3618 /* make sure the mapping tag for page dirty gets cleared */
3619 set_page_writeback(page);
3620 end_page_writeback(page);
3621 }
Filipe Manana61391d52014-05-09 17:17:40 +01003622 if (PageError(page)) {
3623 ret = ret < 0 ? ret : -EIO;
3624 end_extent_writepage(page, ret, start, page_end);
3625 }
Chris Masond1310b22008-01-24 16:13:08 -05003626 unlock_page(page);
Qu Wenruo30659762019-03-20 14:27:42 +08003627 ASSERT(ret <= 0);
Chris Mason40f76582014-05-21 13:35:51 -07003628 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003629
Chris Mason11c83492009-04-20 15:50:09 -04003630done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003631 return 0;
3632}
3633
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003634void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003635{
NeilBrown74316202014-07-07 15:16:04 +10003636 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3637 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003638}
3639
Filipe Manana18dfa712019-09-11 17:42:00 +01003640static void end_extent_buffer_writeback(struct extent_buffer *eb)
3641{
3642 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3643 smp_mb__after_atomic();
3644 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3645}
3646
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003647/*
3648 * Lock eb pages and flush the bio if we can't the locks
3649 *
3650 * Return 0 if nothing went wrong
3651 * Return >0 is same as 0, except bio is not submitted
3652 * Return <0 if something went wrong, no page is locked
3653 */
David Sterba9df76fb2019-03-20 11:21:41 +01003654static noinline_for_stack int lock_extent_buffer_for_io(struct extent_buffer *eb,
Chris Mason0e378df2014-05-19 20:55:27 -07003655 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003656{
David Sterba9df76fb2019-03-20 11:21:41 +01003657 struct btrfs_fs_info *fs_info = eb->fs_info;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003658 int i, num_pages, failed_page_nr;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003659 int flush = 0;
3660 int ret = 0;
3661
3662 if (!btrfs_try_tree_write_lock(eb)) {
Qu Wenruof4340622019-03-20 14:27:41 +08003663 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003664 if (ret < 0)
3665 return ret;
3666 flush = 1;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003667 btrfs_tree_lock(eb);
3668 }
3669
3670 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3671 btrfs_tree_unlock(eb);
3672 if (!epd->sync_io)
3673 return 0;
3674 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003675 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003676 if (ret < 0)
3677 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003678 flush = 1;
3679 }
Chris Masona098d8e82012-03-21 12:09:56 -04003680 while (1) {
3681 wait_on_extent_buffer_writeback(eb);
3682 btrfs_tree_lock(eb);
3683 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3684 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003685 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003686 }
3687 }
3688
Josef Bacik51561ff2012-07-20 16:25:24 -04003689 /*
3690 * We need to do this to prevent races in people who check if the eb is
3691 * under IO since we can end up having no IO bits set for a short period
3692 * of time.
3693 */
3694 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003695 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3696 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003697 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003698 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003699 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3700 -eb->len,
3701 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003702 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003703 } else {
3704 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003705 }
3706
3707 btrfs_tree_unlock(eb);
3708
3709 if (!ret)
3710 return ret;
3711
David Sterba65ad0102018-06-29 10:56:49 +02003712 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003713 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003714 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003715
3716 if (!trylock_page(p)) {
3717 if (!flush) {
Filipe Manana18dfa712019-09-11 17:42:00 +01003718 int err;
3719
3720 err = flush_write_bio(epd);
3721 if (err < 0) {
3722 ret = err;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003723 failed_page_nr = i;
3724 goto err_unlock;
3725 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003726 flush = 1;
3727 }
3728 lock_page(p);
3729 }
3730 }
3731
3732 return ret;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003733err_unlock:
3734 /* Unlock already locked pages */
3735 for (i = 0; i < failed_page_nr; i++)
3736 unlock_page(eb->pages[i]);
Filipe Manana18dfa712019-09-11 17:42:00 +01003737 /*
3738 * Clear EXTENT_BUFFER_WRITEBACK and wake up anyone waiting on it.
3739 * Also set back EXTENT_BUFFER_DIRTY so future attempts to this eb can
3740 * be made and undo everything done before.
3741 */
3742 btrfs_tree_lock(eb);
3743 spin_lock(&eb->refs_lock);
3744 set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
3745 end_extent_buffer_writeback(eb);
3746 spin_unlock(&eb->refs_lock);
3747 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes, eb->len,
3748 fs_info->dirty_metadata_batch);
3749 btrfs_clear_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
3750 btrfs_tree_unlock(eb);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003751 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003752}
3753
Filipe Manana656f30d2014-09-26 12:25:56 +01003754static void set_btree_ioerr(struct page *page)
3755{
3756 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Dennis Zhoueb5b64f2019-09-13 14:54:07 +01003757 struct btrfs_fs_info *fs_info;
Filipe Manana656f30d2014-09-26 12:25:56 +01003758
3759 SetPageError(page);
3760 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3761 return;
3762
3763 /*
Dennis Zhoueb5b64f2019-09-13 14:54:07 +01003764 * If we error out, we should add back the dirty_metadata_bytes
3765 * to make it consistent.
3766 */
3767 fs_info = eb->fs_info;
3768 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3769 eb->len, fs_info->dirty_metadata_batch);
3770
3771 /*
Filipe Manana656f30d2014-09-26 12:25:56 +01003772 * If writeback for a btree extent that doesn't belong to a log tree
3773 * failed, increment the counter transaction->eb_write_errors.
3774 * We do this because while the transaction is running and before it's
3775 * committing (when we call filemap_fdata[write|wait]_range against
3776 * the btree inode), we might have
3777 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3778 * returns an error or an error happens during writeback, when we're
3779 * committing the transaction we wouldn't know about it, since the pages
3780 * can be no longer dirty nor marked anymore for writeback (if a
3781 * subsequent modification to the extent buffer didn't happen before the
3782 * transaction commit), which makes filemap_fdata[write|wait]_range not
3783 * able to find the pages tagged with SetPageError at transaction
3784 * commit time. So if this happens we must abort the transaction,
3785 * otherwise we commit a super block with btree roots that point to
3786 * btree nodes/leafs whose content on disk is invalid - either garbage
3787 * or the content of some node/leaf from a past generation that got
3788 * cowed or deleted and is no longer valid.
3789 *
3790 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3791 * not be enough - we need to distinguish between log tree extents vs
3792 * non-log tree extents, and the next filemap_fdatawait_range() call
3793 * will catch and clear such errors in the mapping - and that call might
3794 * be from a log sync and not from a transaction commit. Also, checking
3795 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3796 * not done and would not be reliable - the eb might have been released
3797 * from memory and reading it back again means that flag would not be
3798 * set (since it's a runtime flag, not persisted on disk).
3799 *
3800 * Using the flags below in the btree inode also makes us achieve the
3801 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3802 * writeback for all dirty pages and before filemap_fdatawait_range()
3803 * is called, the writeback for all dirty pages had already finished
3804 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3805 * filemap_fdatawait_range() would return success, as it could not know
3806 * that writeback errors happened (the pages were no longer tagged for
3807 * writeback).
3808 */
3809 switch (eb->log_index) {
3810 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003811 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003812 break;
3813 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003814 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003815 break;
3816 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003817 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003818 break;
3819 default:
3820 BUG(); /* unexpected, logic error */
3821 }
3822}
3823
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003824static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003825{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003826 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003827 struct extent_buffer *eb;
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003828 int done;
Ming Lei6dc4f102019-02-15 19:13:19 +08003829 struct bvec_iter_all iter_all;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003830
David Sterbac09abff2017-07-13 18:10:07 +02003831 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003832 bio_for_each_segment_all(bvec, bio, iter_all) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003833 struct page *page = bvec->bv_page;
3834
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003835 eb = (struct extent_buffer *)page->private;
3836 BUG_ON(!eb);
3837 done = atomic_dec_and_test(&eb->io_pages);
3838
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003839 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003840 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003841 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003842 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003843 }
3844
3845 end_page_writeback(page);
3846
3847 if (!done)
3848 continue;
3849
3850 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003851 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003852
3853 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003854}
3855
Chris Mason0e378df2014-05-19 20:55:27 -07003856static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003857 struct writeback_control *wbc,
3858 struct extent_page_data *epd)
3859{
David Sterba0ab02062019-03-20 11:27:57 +01003860 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003861 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003862 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003863 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003864 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003865 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003866 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003867 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003868 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003869
Filipe Manana656f30d2014-09-26 12:25:56 +01003870 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003871 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003872 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003873
Liu Bo851cd172016-09-23 13:44:44 -07003874 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3875 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003876 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003877 end = btrfs_node_key_ptr_offset(nritems);
3878
David Sterbab159fa22016-11-08 18:09:03 +01003879 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003880 } else {
3881 /*
3882 * leaf:
3883 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3884 */
3885 start = btrfs_item_nr_offset(nritems);
David Sterba8f881e82019-03-20 11:33:10 +01003886 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(eb);
David Sterbab159fa22016-11-08 18:09:03 +01003887 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003888 }
3889
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003890 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003891 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003892
3893 clear_page_dirty_for_io(p);
3894 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003895 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003896 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003897 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003898 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003899 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003900 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003901 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003902 if (PageWriteback(p))
3903 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003904 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3905 end_extent_buffer_writeback(eb);
3906 ret = -EIO;
3907 break;
3908 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003909 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003910 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003911 unlock_page(p);
3912 }
3913
3914 if (unlikely(ret)) {
3915 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003916 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003917 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003918 unlock_page(p);
3919 }
3920 }
3921
3922 return ret;
3923}
3924
3925int btree_write_cache_pages(struct address_space *mapping,
3926 struct writeback_control *wbc)
3927{
3928 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003929 struct extent_buffer *eb, *prev_eb = NULL;
3930 struct extent_page_data epd = {
3931 .bio = NULL,
3932 .tree = tree,
3933 .extent_locked = 0,
3934 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3935 };
3936 int ret = 0;
3937 int done = 0;
3938 int nr_to_write_done = 0;
3939 struct pagevec pvec;
3940 int nr_pages;
3941 pgoff_t index;
3942 pgoff_t end; /* Inclusive */
3943 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003944 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003945
Mel Gorman86679822017-11-15 17:37:52 -08003946 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003947 if (wbc->range_cyclic) {
3948 index = mapping->writeback_index; /* Start from prev offset */
3949 end = -1;
3950 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003951 index = wbc->range_start >> PAGE_SHIFT;
3952 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003953 scanned = 1;
3954 }
3955 if (wbc->sync_mode == WB_SYNC_ALL)
3956 tag = PAGECACHE_TAG_TOWRITE;
3957 else
3958 tag = PAGECACHE_TAG_DIRTY;
3959retry:
3960 if (wbc->sync_mode == WB_SYNC_ALL)
3961 tag_pages_for_writeback(mapping, index, end);
3962 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003963 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003964 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003965 unsigned i;
3966
3967 scanned = 1;
3968 for (i = 0; i < nr_pages; i++) {
3969 struct page *page = pvec.pages[i];
3970
3971 if (!PagePrivate(page))
3972 continue;
3973
Josef Bacikb5bae262012-09-14 13:43:01 -04003974 spin_lock(&mapping->private_lock);
3975 if (!PagePrivate(page)) {
3976 spin_unlock(&mapping->private_lock);
3977 continue;
3978 }
3979
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003980 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003981
3982 /*
3983 * Shouldn't happen and normally this would be a BUG_ON
3984 * but no sense in crashing the users box for something
3985 * we can survive anyway.
3986 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303987 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003988 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003989 continue;
3990 }
3991
Josef Bacikb5bae262012-09-14 13:43:01 -04003992 if (eb == prev_eb) {
3993 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003994 continue;
3995 }
3996
Josef Bacikb5bae262012-09-14 13:43:01 -04003997 ret = atomic_inc_not_zero(&eb->refs);
3998 spin_unlock(&mapping->private_lock);
3999 if (!ret)
4000 continue;
4001
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004002 prev_eb = eb;
David Sterba9df76fb2019-03-20 11:21:41 +01004003 ret = lock_extent_buffer_for_io(eb, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004004 if (!ret) {
4005 free_extent_buffer(eb);
4006 continue;
Filipe Manana0607eb1d2019-09-11 17:42:28 +01004007 } else if (ret < 0) {
4008 done = 1;
4009 free_extent_buffer(eb);
4010 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004011 }
4012
David Sterba0ab02062019-03-20 11:27:57 +01004013 ret = write_one_eb(eb, wbc, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004014 if (ret) {
4015 done = 1;
4016 free_extent_buffer(eb);
4017 break;
4018 }
4019 free_extent_buffer(eb);
4020
4021 /*
4022 * the filesystem may choose to bump up nr_to_write.
4023 * We have to make sure to honor the new nr_to_write
4024 * at any time
4025 */
4026 nr_to_write_done = wbc->nr_to_write <= 0;
4027 }
4028 pagevec_release(&pvec);
4029 cond_resched();
4030 }
4031 if (!scanned && !done) {
4032 /*
4033 * We hit the last page and there is more work to be done: wrap
4034 * back to the start of the file
4035 */
4036 scanned = 1;
4037 index = 0;
4038 goto retry;
4039 }
Qu Wenruo2b952ee2019-03-20 14:27:43 +08004040 ASSERT(ret <= 0);
4041 if (ret < 0) {
4042 end_write_bio(&epd, ret);
4043 return ret;
4044 }
4045 ret = flush_write_bio(&epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004046 return ret;
4047}
4048
Chris Masond1310b22008-01-24 16:13:08 -05004049/**
Chris Mason4bef0842008-09-08 11:18:08 -04004050 * 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 -05004051 * @mapping: address space structure to write
4052 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02004053 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05004054 *
4055 * If a page is already under I/O, write_cache_pages() skips it, even
4056 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
4057 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
4058 * and msync() need to guarantee that all the data which was dirty at the time
4059 * the call was made get new I/O started against them. If wbc->sync_mode is
4060 * WB_SYNC_ALL then we were called for data integrity and we must wait for
4061 * existing IO to complete.
4062 */
David Sterba4242b642017-02-10 19:38:24 +01004063static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04004064 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01004065 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05004066{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004067 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05004068 int ret = 0;
4069 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004070 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004071 struct pagevec pvec;
4072 int nr_pages;
4073 pgoff_t index;
4074 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08004075 pgoff_t done_index;
4076 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004077 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05004078 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05004079
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004080 /*
4081 * We have to hold onto the inode so that ordered extents can do their
4082 * work when the IO finishes. The alternative to this is failing to add
4083 * an ordered extent if the igrab() fails there and that is a huge pain
4084 * to deal with, so instead just hold onto the inode throughout the
4085 * writepages operation. If it fails here we are freeing up the inode
4086 * anyway and we'd rather not waste our time writing out stuff that is
4087 * going to be truncated anyway.
4088 */
4089 if (!igrab(inode))
4090 return 0;
4091
Mel Gorman86679822017-11-15 17:37:52 -08004092 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05004093 if (wbc->range_cyclic) {
4094 index = mapping->writeback_index; /* Start from prev offset */
4095 end = -1;
4096 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004097 index = wbc->range_start >> PAGE_SHIFT;
4098 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08004099 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
4100 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004101 scanned = 1;
4102 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08004103
4104 /*
4105 * We do the tagged writepage as long as the snapshot flush bit is set
4106 * and we are the first one who do the filemap_flush() on this inode.
4107 *
4108 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
4109 * not race in and drop the bit.
4110 */
4111 if (range_whole && wbc->nr_to_write == LONG_MAX &&
4112 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
4113 &BTRFS_I(inode)->runtime_flags))
4114 wbc->tagged_writepages = 1;
4115
4116 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004117 tag = PAGECACHE_TAG_TOWRITE;
4118 else
4119 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004120retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08004121 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004122 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08004123 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004124 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08004125 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
4126 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05004127 unsigned i;
4128
4129 scanned = 1;
4130 for (i = 0; i < nr_pages; i++) {
4131 struct page *page = pvec.pages[i];
4132
Liu Boa91326672016-03-07 16:56:21 -08004133 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05004134 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07004135 * At this point we hold neither the i_pages lock nor
4136 * the page lock: the page may be truncated or
4137 * invalidated (changing page->mapping to NULL),
4138 * or even swizzled back from swapper_space to
4139 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05004140 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004141 if (!trylock_page(page)) {
Qu Wenruof4340622019-03-20 14:27:41 +08004142 ret = flush_write_bio(epd);
4143 BUG_ON(ret < 0);
Josef Bacikc8f2f242013-02-11 11:33:00 -05004144 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004145 }
Chris Masond1310b22008-01-24 16:13:08 -05004146
4147 if (unlikely(page->mapping != mapping)) {
4148 unlock_page(page);
4149 continue;
4150 }
4151
Chris Masond2c3f4f2008-11-19 12:44:22 -05004152 if (wbc->sync_mode != WB_SYNC_NONE) {
Qu Wenruof4340622019-03-20 14:27:41 +08004153 if (PageWriteback(page)) {
4154 ret = flush_write_bio(epd);
4155 BUG_ON(ret < 0);
4156 }
Chris Masond1310b22008-01-24 16:13:08 -05004157 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004158 }
Chris Masond1310b22008-01-24 16:13:08 -05004159
4160 if (PageWriteback(page) ||
4161 !clear_page_dirty_for_io(page)) {
4162 unlock_page(page);
4163 continue;
4164 }
4165
David Sterbaaab6e9e2017-11-30 18:00:02 +01004166 ret = __extent_writepage(page, wbc, epd);
Liu Boa91326672016-03-07 16:56:21 -08004167 if (ret < 0) {
4168 /*
4169 * done_index is set past this page,
4170 * so media errors will not choke
4171 * background writeout for the entire
4172 * file. This has consequences for
4173 * range_cyclic semantics (ie. it may
4174 * not be suitable for data integrity
4175 * writeout).
4176 */
4177 done_index = page->index + 1;
4178 done = 1;
4179 break;
4180 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004181
4182 /*
4183 * the filesystem may choose to bump up nr_to_write.
4184 * We have to make sure to honor the new nr_to_write
4185 * at any time
4186 */
4187 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004188 }
4189 pagevec_release(&pvec);
4190 cond_resched();
4191 }
Liu Bo894b36e2016-03-07 16:56:22 -08004192 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004193 /*
4194 * We hit the last page and there is more work to be done: wrap
4195 * back to the start of the file
4196 */
4197 scanned = 1;
4198 index = 0;
4199 goto retry;
4200 }
Liu Boa91326672016-03-07 16:56:21 -08004201
4202 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4203 mapping->writeback_index = done_index;
4204
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004205 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004206 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004207}
Chris Masond1310b22008-01-24 16:13:08 -05004208
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004209int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004210{
4211 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004212 struct extent_page_data epd = {
4213 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004214 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004215 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004216 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004217 };
Chris Masond1310b22008-01-24 16:13:08 -05004218
Chris Masond1310b22008-01-24 16:13:08 -05004219 ret = __extent_writepage(page, wbc, &epd);
Qu Wenruo30659762019-03-20 14:27:42 +08004220 ASSERT(ret <= 0);
4221 if (ret < 0) {
4222 end_write_bio(&epd, ret);
4223 return ret;
4224 }
Chris Masond1310b22008-01-24 16:13:08 -05004225
Qu Wenruo30659762019-03-20 14:27:42 +08004226 ret = flush_write_bio(&epd);
4227 ASSERT(ret <= 0);
Chris Masond1310b22008-01-24 16:13:08 -05004228 return ret;
4229}
Chris Masond1310b22008-01-24 16:13:08 -05004230
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004231int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004232 int mode)
4233{
4234 int ret = 0;
4235 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004236 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004237 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004238 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4239 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004240
4241 struct extent_page_data epd = {
4242 .bio = NULL,
4243 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004244 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004245 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004246 };
4247 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004248 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004249 .nr_to_write = nr_pages * 2,
4250 .range_start = start,
4251 .range_end = end + 1,
4252 };
4253
Chris Masond3977122009-01-05 21:25:51 -05004254 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004255 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004256 if (clear_page_dirty_for_io(page))
4257 ret = __extent_writepage(page, &wbc_writepages, &epd);
4258 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004259 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004260 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004261 unlock_page(page);
4262 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004263 put_page(page);
4264 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004265 }
4266
Qu Wenruo02c6db42019-03-20 14:27:45 +08004267 ASSERT(ret <= 0);
4268 if (ret < 0) {
4269 end_write_bio(&epd, ret);
4270 return ret;
4271 }
4272 ret = flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004273 return ret;
4274}
Chris Masond1310b22008-01-24 16:13:08 -05004275
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004276int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004277 struct writeback_control *wbc)
4278{
4279 int ret = 0;
4280 struct extent_page_data epd = {
4281 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004282 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004283 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004284 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004285 };
4286
David Sterba935db852017-06-23 04:30:28 +02004287 ret = extent_write_cache_pages(mapping, wbc, &epd);
Qu Wenruoa2a72fb2019-03-20 14:27:48 +08004288 ASSERT(ret <= 0);
4289 if (ret < 0) {
4290 end_write_bio(&epd, ret);
4291 return ret;
4292 }
4293 ret = flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004294 return ret;
4295}
Chris Masond1310b22008-01-24 16:13:08 -05004296
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004297int extent_readpages(struct address_space *mapping, struct list_head *pages,
4298 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004299{
4300 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004301 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004302 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004303 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004304 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004305 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004306 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004307
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004308 while (!list_empty(pages)) {
Nikolay Borisove65ef212019-03-11 09:55:38 +02004309 u64 contig_end = 0;
4310
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004311 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004312 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004313
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004314 prefetchw(&page->flags);
4315 list_del(&page->lru);
4316 if (add_to_page_cache_lru(page, mapping, page->index,
4317 readahead_gfp_mask(mapping))) {
4318 put_page(page);
Nikolay Borisove65ef212019-03-11 09:55:38 +02004319 break;
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004320 }
4321
4322 pagepool[nr++] = page;
Nikolay Borisove65ef212019-03-11 09:55:38 +02004323 contig_end = page_offset(page) + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004324 }
Liu Bo67c96842012-07-20 21:43:09 -06004325
Nikolay Borisove65ef212019-03-11 09:55:38 +02004326 if (nr) {
4327 u64 contig_start = page_offset(pagepool[0]);
4328
4329 ASSERT(contig_start + nr * PAGE_SIZE - 1 == contig_end);
4330
4331 contiguous_readpages(tree, pagepool, nr, contig_start,
4332 contig_end, &em_cached, &bio, &bio_flags,
4333 &prev_em_start);
4334 }
Chris Masond1310b22008-01-24 16:13:08 -05004335 }
Liu Bo67c96842012-07-20 21:43:09 -06004336
Miao Xie125bac012013-07-25 19:22:37 +08004337 if (em_cached)
4338 free_extent_map(em_cached);
4339
Chris Masond1310b22008-01-24 16:13:08 -05004340 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004341 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004342 return 0;
4343}
Chris Masond1310b22008-01-24 16:13:08 -05004344
4345/*
4346 * basic invalidatepage code, this waits on any locked or writeback
4347 * ranges corresponding to the page, and then deletes any extent state
4348 * records from the tree
4349 */
4350int extent_invalidatepage(struct extent_io_tree *tree,
4351 struct page *page, unsigned long offset)
4352{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004353 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004354 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004355 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004356 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4357
Qu Wenruofda28322013-02-26 08:10:22 +00004358 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004359 if (start > end)
4360 return 0;
4361
David Sterbaff13db42015-12-03 14:30:40 +01004362 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004363 wait_on_page_writeback(page);
Omar Sandovale1821632019-08-15 14:04:04 -07004364 clear_extent_bit(tree, start, end, EXTENT_LOCKED | EXTENT_DELALLOC |
4365 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004366 return 0;
4367}
Chris Masond1310b22008-01-24 16:13:08 -05004368
4369/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004370 * a helper for releasepage, this tests for areas of the page that
4371 * are locked or under IO and drops the related state bits if it is safe
4372 * to drop the page.
4373 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004374static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004375 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004376{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004377 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004378 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004379 int ret = 1;
4380
Nikolay Borisov88826792019-03-14 15:28:31 +02004381 if (test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL)) {
Chris Mason7b13b7b2008-04-18 10:29:50 -04004382 ret = 0;
Nikolay Borisov88826792019-03-14 15:28:31 +02004383 } else {
Chris Mason11ef1602009-09-23 20:28:46 -04004384 /*
4385 * at this point we can safely clear everything except the
4386 * locked bit and the nodatasum bit
4387 */
David Sterba66b0c882017-10-31 16:30:47 +01004388 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004389 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004390 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004391
4392 /* if clear_extent_bit failed for enomem reasons,
4393 * we can't allow the release to continue.
4394 */
4395 if (ret < 0)
4396 ret = 0;
4397 else
4398 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004399 }
4400 return ret;
4401}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004402
4403/*
Chris Masond1310b22008-01-24 16:13:08 -05004404 * a helper for releasepage. As long as there are no locked extents
4405 * in the range corresponding to the page, both state records and extent
4406 * map records are removed
4407 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004408int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004409{
4410 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004411 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004412 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004413 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4414 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4415 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004416
Mel Gormand0164ad2015-11-06 16:28:21 -08004417 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004418 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004419 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004420 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004421 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004422 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004423 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004424 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004425 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004426 break;
4427 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004428 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4429 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004430 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004431 free_extent_map(em);
4432 break;
4433 }
4434 if (!test_range_bit(tree, em->start,
4435 extent_map_end(em) - 1,
Nikolay Borisov4e586ca2019-03-14 15:28:30 +02004436 EXTENT_LOCKED, 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004437 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4438 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004439 remove_extent_mapping(map, em);
4440 /* once for the rb tree */
4441 free_extent_map(em);
4442 }
4443 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004444 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004445
4446 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004447 free_extent_map(em);
4448 }
Chris Masond1310b22008-01-24 16:13:08 -05004449 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004450 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004451}
Chris Masond1310b22008-01-24 16:13:08 -05004452
Chris Masonec29ed52011-02-23 16:23:20 -05004453/*
4454 * helper function for fiemap, which doesn't want to see any holes.
4455 * This maps until we find something past 'last'
4456 */
4457static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004458 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004459{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004460 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004461 struct extent_map *em;
4462 u64 len;
4463
4464 if (offset >= last)
4465 return NULL;
4466
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304467 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004468 len = last - offset;
4469 if (len == 0)
4470 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004471 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004472 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004473 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004474 return em;
4475
4476 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004477 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004478 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004479
4480 /* this is a hole, advance to the next extent */
4481 offset = extent_map_end(em);
4482 free_extent_map(em);
4483 if (offset >= last)
4484 break;
4485 }
4486 return NULL;
4487}
4488
Qu Wenruo47518322017-04-07 10:43:15 +08004489/*
4490 * To cache previous fiemap extent
4491 *
4492 * Will be used for merging fiemap extent
4493 */
4494struct fiemap_cache {
4495 u64 offset;
4496 u64 phys;
4497 u64 len;
4498 u32 flags;
4499 bool cached;
4500};
4501
4502/*
4503 * Helper to submit fiemap extent.
4504 *
4505 * Will try to merge current fiemap extent specified by @offset, @phys,
4506 * @len and @flags with cached one.
4507 * And only when we fails to merge, cached one will be submitted as
4508 * fiemap extent.
4509 *
4510 * Return value is the same as fiemap_fill_next_extent().
4511 */
4512static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4513 struct fiemap_cache *cache,
4514 u64 offset, u64 phys, u64 len, u32 flags)
4515{
4516 int ret = 0;
4517
4518 if (!cache->cached)
4519 goto assign;
4520
4521 /*
4522 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004523 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004524 * Not recoverable.
4525 *
4526 * NOTE: Physical address can overlap, due to compression
4527 */
4528 if (cache->offset + cache->len > offset) {
4529 WARN_ON(1);
4530 return -EINVAL;
4531 }
4532
4533 /*
4534 * Only merges fiemap extents if
4535 * 1) Their logical addresses are continuous
4536 *
4537 * 2) Their physical addresses are continuous
4538 * So truly compressed (physical size smaller than logical size)
4539 * extents won't get merged with each other
4540 *
4541 * 3) Share same flags except FIEMAP_EXTENT_LAST
4542 * So regular extent won't get merged with prealloc extent
4543 */
4544 if (cache->offset + cache->len == offset &&
4545 cache->phys + cache->len == phys &&
4546 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4547 (flags & ~FIEMAP_EXTENT_LAST)) {
4548 cache->len += len;
4549 cache->flags |= flags;
4550 goto try_submit_last;
4551 }
4552
4553 /* Not mergeable, need to submit cached one */
4554 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4555 cache->len, cache->flags);
4556 cache->cached = false;
4557 if (ret)
4558 return ret;
4559assign:
4560 cache->cached = true;
4561 cache->offset = offset;
4562 cache->phys = phys;
4563 cache->len = len;
4564 cache->flags = flags;
4565try_submit_last:
4566 if (cache->flags & FIEMAP_EXTENT_LAST) {
4567 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4568 cache->phys, cache->len, cache->flags);
4569 cache->cached = false;
4570 }
4571 return ret;
4572}
4573
4574/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004575 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004576 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004577 * The last fiemap cache may still be cached in the following case:
4578 * 0 4k 8k
4579 * |<- Fiemap range ->|
4580 * |<------------ First extent ----------->|
4581 *
4582 * In this case, the first extent range will be cached but not emitted.
4583 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004584 */
David Sterba5c5aff92019-03-20 11:29:46 +01004585static int emit_last_fiemap_cache(struct fiemap_extent_info *fieinfo,
Qu Wenruo848c23b2017-06-22 10:01:21 +08004586 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004587{
4588 int ret;
4589
4590 if (!cache->cached)
4591 return 0;
4592
Qu Wenruo47518322017-04-07 10:43:15 +08004593 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4594 cache->len, cache->flags);
4595 cache->cached = false;
4596 if (ret > 0)
4597 ret = 0;
4598 return ret;
4599}
4600
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004601int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004602 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004603{
Josef Bacik975f84f2010-11-23 19:36:57 +00004604 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004605 u64 off = start;
4606 u64 max = start + len;
4607 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004608 u32 found_type;
4609 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004610 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004611 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004612 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004613 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004614 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004615 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004616 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004617 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004618 struct fiemap_cache cache = { 0 };
David Sterba5911c8f2019-05-15 15:31:04 +02004619 struct ulist *roots;
4620 struct ulist *tmp_ulist;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004621 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004622 u64 em_start = 0;
4623 u64 em_len = 0;
4624 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004625
4626 if (len == 0)
4627 return -EINVAL;
4628
Josef Bacik975f84f2010-11-23 19:36:57 +00004629 path = btrfs_alloc_path();
4630 if (!path)
4631 return -ENOMEM;
4632 path->leave_spinning = 1;
4633
David Sterba5911c8f2019-05-15 15:31:04 +02004634 roots = ulist_alloc(GFP_KERNEL);
4635 tmp_ulist = ulist_alloc(GFP_KERNEL);
4636 if (!roots || !tmp_ulist) {
4637 ret = -ENOMEM;
4638 goto out_free_ulist;
4639 }
4640
Jeff Mahoneyda170662016-06-15 09:22:56 -04004641 start = round_down(start, btrfs_inode_sectorsize(inode));
4642 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004643
Chris Masonec29ed52011-02-23 16:23:20 -05004644 /*
4645 * lookup the last file extent. We're not using i_size here
4646 * because there might be preallocation past i_size
4647 */
David Sterbaf85b7372017-01-20 14:54:07 +01004648 ret = btrfs_lookup_file_extent(NULL, root, path,
4649 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004650 if (ret < 0) {
David Sterba5911c8f2019-05-15 15:31:04 +02004651 goto out_free_ulist;
Liu Bo2d324f52016-05-17 17:21:48 -07004652 } else {
4653 WARN_ON(!ret);
4654 if (ret == 1)
4655 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004656 }
Liu Bo2d324f52016-05-17 17:21:48 -07004657
Josef Bacik975f84f2010-11-23 19:36:57 +00004658 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004659 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004660 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004661
Chris Masonec29ed52011-02-23 16:23:20 -05004662 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004663 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004664 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004665 /* have to trust i_size as the end */
4666 last = (u64)-1;
4667 last_for_get_extent = isize;
4668 } else {
4669 /*
4670 * remember the start of the last extent. There are a
4671 * bunch of different factors that go into the length of the
4672 * extent, so its much less complex to remember where it started
4673 */
4674 last = found_key.offset;
4675 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004676 }
Liu Bofe09e162013-09-22 12:54:23 +08004677 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004678
Chris Masonec29ed52011-02-23 16:23:20 -05004679 /*
4680 * we might have some extents allocated but more delalloc past those
4681 * extents. so, we trust isize unless the start of the last extent is
4682 * beyond isize
4683 */
4684 if (last < isize) {
4685 last = (u64)-1;
4686 last_for_get_extent = isize;
4687 }
4688
David Sterbaff13db42015-12-03 14:30:40 +01004689 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004690 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004691
David Sterbae3350e12017-06-23 04:09:57 +02004692 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004693 if (!em)
4694 goto out;
4695 if (IS_ERR(em)) {
4696 ret = PTR_ERR(em);
4697 goto out;
4698 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004699
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004700 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004701 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004702
Chris Masonea8efc72011-03-08 11:54:40 -05004703 /* break if the extent we found is outside the range */
4704 if (em->start >= max || extent_map_end(em) < off)
4705 break;
4706
4707 /*
4708 * get_extent may return an extent that starts before our
4709 * requested range. We have to make sure the ranges
4710 * we return to fiemap always move forward and don't
4711 * overlap, so adjust the offsets here
4712 */
4713 em_start = max(em->start, off);
4714
4715 /*
4716 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004717 * for adjusting the disk offset below. Only do this if the
4718 * extent isn't compressed since our in ram offset may be past
4719 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004720 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004721 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4722 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004723 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004724 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004725 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004726 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4727 disko = em->block_start + offset_in_extent;
4728 else
4729 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004730
Chris Masonea8efc72011-03-08 11:54:40 -05004731 /*
4732 * bump off for our next call to get_extent
4733 */
4734 off = extent_map_end(em);
4735 if (off >= max)
4736 end = 1;
4737
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004738 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004739 end = 1;
4740 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004741 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004742 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4743 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004744 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004745 flags |= (FIEMAP_EXTENT_DELALLOC |
4746 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004747 } else if (fieinfo->fi_extents_max) {
4748 u64 bytenr = em->block_start -
4749 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004750
Liu Bofe09e162013-09-22 12:54:23 +08004751 /*
4752 * As btrfs supports shared space, this information
4753 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004754 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4755 * then we're just getting a count and we can skip the
4756 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004757 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004758 ret = btrfs_check_shared(root,
4759 btrfs_ino(BTRFS_I(inode)),
David Sterba5911c8f2019-05-15 15:31:04 +02004760 bytenr, roots, tmp_ulist);
Josef Bacikdc046b12014-09-10 16:20:45 -04004761 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004762 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004763 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004764 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004765 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004766 }
4767 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4768 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004769 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4770 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004771
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004772 free_extent_map(em);
4773 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004774 if ((em_start >= last) || em_len == (u64)-1 ||
4775 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004776 flags |= FIEMAP_EXTENT_LAST;
4777 end = 1;
4778 }
4779
Chris Masonec29ed52011-02-23 16:23:20 -05004780 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004781 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004782 if (IS_ERR(em)) {
4783 ret = PTR_ERR(em);
4784 goto out;
4785 }
4786 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004787 flags |= FIEMAP_EXTENT_LAST;
4788 end = 1;
4789 }
Qu Wenruo47518322017-04-07 10:43:15 +08004790 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4791 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004792 if (ret) {
4793 if (ret == 1)
4794 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004795 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004796 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004797 }
4798out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004799 if (!ret)
David Sterba5c5aff92019-03-20 11:29:46 +01004800 ret = emit_last_fiemap_cache(fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004801 free_extent_map(em);
4802out:
Liu Boa52f4cd2013-05-01 16:23:41 +00004803 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004804 &cached_state);
David Sterba5911c8f2019-05-15 15:31:04 +02004805
4806out_free_ulist:
Colin Ian Kinge02d48e2019-07-05 08:26:24 +01004807 btrfs_free_path(path);
David Sterba5911c8f2019-05-15 15:31:04 +02004808 ulist_free(roots);
4809 ulist_free(tmp_ulist);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004810 return ret;
4811}
4812
Chris Mason727011e2010-08-06 13:21:20 -04004813static void __free_extent_buffer(struct extent_buffer *eb)
4814{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004815 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004816 kmem_cache_free(extent_buffer_cache, eb);
4817}
4818
Josef Bacika26e8c92014-03-28 17:07:27 -04004819int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004820{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004821 return (atomic_read(&eb->io_pages) ||
4822 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4823 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004824}
4825
Miao Xie897ca6e92010-10-26 20:57:29 -04004826/*
David Sterba55ac0132018-07-19 17:24:32 +02004827 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004828 */
David Sterba55ac0132018-07-19 17:24:32 +02004829static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004830{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004831 int i;
4832 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004833 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004834
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004835 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004836
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004837 num_pages = num_extent_pages(eb);
4838 for (i = 0; i < num_pages; i++) {
4839 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004840
Forrest Liu5d2361d2015-02-09 17:31:45 +08004841 if (!page)
4842 continue;
4843 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004844 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004845 /*
4846 * We do this since we'll remove the pages after we've
4847 * removed the eb from the radix tree, so we could race
4848 * and have this page now attached to the new eb. So
4849 * only clear page_private if it's still connected to
4850 * this eb.
4851 */
4852 if (PagePrivate(page) &&
4853 page->private == (unsigned long)eb) {
4854 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4855 BUG_ON(PageDirty(page));
4856 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004857 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004858 * We need to make sure we haven't be attached
4859 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004860 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004861 ClearPagePrivate(page);
4862 set_page_private(page, 0);
4863 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004864 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004865 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004866
4867 if (mapped)
4868 spin_unlock(&page->mapping->private_lock);
4869
Nicholas D Steeves01327612016-05-19 21:18:45 -04004870 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004871 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004872 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004873}
4874
4875/*
4876 * Helper for releasing the extent buffer.
4877 */
4878static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4879{
David Sterba55ac0132018-07-19 17:24:32 +02004880 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004881 __free_extent_buffer(eb);
4882}
4883
Josef Bacikf28491e2013-12-16 13:24:27 -05004884static struct extent_buffer *
4885__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004886 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004887{
4888 struct extent_buffer *eb = NULL;
4889
Michal Hockod1b5c562015-08-19 14:17:40 +02004890 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004891 eb->start = start;
4892 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004893 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004894 eb->bflags = 0;
4895 rwlock_init(&eb->lock);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004896 atomic_set(&eb->blocking_readers, 0);
David Sterba06297d82019-05-02 16:47:23 +02004897 eb->blocking_writers = 0;
David Sterbaed1b4ed2018-08-24 16:31:17 +02004898 eb->lock_nested = false;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004899 init_waitqueue_head(&eb->write_lock_wq);
4900 init_waitqueue_head(&eb->read_lock_wq);
4901
4902 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4903
4904 spin_lock_init(&eb->refs_lock);
4905 atomic_set(&eb->refs, 1);
4906 atomic_set(&eb->io_pages, 0);
4907
4908 /*
4909 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4910 */
4911 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4912 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4913 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4914
David Sterba843ccf92018-08-24 14:56:28 +02004915#ifdef CONFIG_BTRFS_DEBUG
David Sterbaf3dc24c2019-05-02 16:51:53 +02004916 eb->spinning_writers = 0;
David Sterbaafd495a2018-08-24 15:57:38 +02004917 atomic_set(&eb->spinning_readers, 0);
David Sterba5c9c7992018-08-24 16:15:51 +02004918 atomic_set(&eb->read_locks, 0);
David Sterba00801ae2019-05-02 16:53:47 +02004919 eb->write_locks = 0;
David Sterba843ccf92018-08-24 14:56:28 +02004920#endif
4921
Josef Bacikdb7f3432013-08-07 14:54:37 -04004922 return eb;
4923}
4924
4925struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4926{
David Sterbacc5e31a2018-03-01 18:20:27 +01004927 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004928 struct page *p;
4929 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004930 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004931
David Sterba3f556f72014-06-15 03:20:26 +02004932 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004933 if (new == NULL)
4934 return NULL;
4935
4936 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004937 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004938 if (!p) {
4939 btrfs_release_extent_buffer(new);
4940 return NULL;
4941 }
4942 attach_extent_buffer_page(new, p);
4943 WARN_ON(PageDirty(p));
4944 SetPageUptodate(p);
4945 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004946 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004947 }
4948
Josef Bacikdb7f3432013-08-07 14:54:37 -04004949 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004950 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004951
4952 return new;
4953}
4954
Omar Sandoval0f331222015-09-29 20:50:31 -07004955struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4956 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004957{
4958 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004959 int num_pages;
4960 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004961
David Sterba3f556f72014-06-15 03:20:26 +02004962 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004963 if (!eb)
4964 return NULL;
4965
David Sterba65ad0102018-06-29 10:56:49 +02004966 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004967 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004968 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004969 if (!eb->pages[i])
4970 goto err;
4971 }
4972 set_extent_buffer_uptodate(eb);
4973 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004974 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004975
4976 return eb;
4977err:
4978 for (; i > 0; i--)
4979 __free_page(eb->pages[i - 1]);
4980 __free_extent_buffer(eb);
4981 return NULL;
4982}
4983
Omar Sandoval0f331222015-09-29 20:50:31 -07004984struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004985 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004986{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004987 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004988}
4989
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004990static void check_buffer_tree_ref(struct extent_buffer *eb)
4991{
Chris Mason242e18c2013-01-29 17:49:37 -05004992 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004993 /* the ref bit is tricky. We have to make sure it is set
4994 * if we have the buffer dirty. Otherwise the
4995 * code to free a buffer can end up dropping a dirty
4996 * page
4997 *
4998 * Once the ref bit is set, it won't go away while the
4999 * buffer is dirty or in writeback, and it also won't
5000 * go away while we have the reference count on the
5001 * eb bumped.
5002 *
5003 * We can't just set the ref bit without bumping the
5004 * ref on the eb because free_extent_buffer might
5005 * see the ref bit and try to clear it. If this happens
5006 * free_extent_buffer might end up dropping our original
5007 * ref by mistake and freeing the page before we are able
5008 * to add one more ref.
5009 *
5010 * So bump the ref count first, then set the bit. If someone
5011 * beat us to it, drop the ref we added.
5012 */
Chris Mason242e18c2013-01-29 17:49:37 -05005013 refs = atomic_read(&eb->refs);
5014 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5015 return;
5016
Josef Bacik594831c2012-07-20 16:11:08 -04005017 spin_lock(&eb->refs_lock);
5018 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005019 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04005020 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005021}
5022
Mel Gorman2457aec2014-06-04 16:10:31 -07005023static void mark_extent_buffer_accessed(struct extent_buffer *eb,
5024 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04005025{
David Sterbacc5e31a2018-03-01 18:20:27 +01005026 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04005027
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005028 check_buffer_tree_ref(eb);
5029
David Sterba65ad0102018-06-29 10:56:49 +02005030 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04005031 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005032 struct page *p = eb->pages[i];
5033
Mel Gorman2457aec2014-06-04 16:10:31 -07005034 if (p != accessed)
5035 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04005036 }
5037}
5038
Josef Bacikf28491e2013-12-16 13:24:27 -05005039struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
5040 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005041{
5042 struct extent_buffer *eb;
5043
5044 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05005045 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005046 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005047 if (eb && atomic_inc_not_zero(&eb->refs)) {
5048 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01005049 /*
5050 * Lock our eb's refs_lock to avoid races with
5051 * free_extent_buffer. When we get our eb it might be flagged
5052 * with EXTENT_BUFFER_STALE and another task running
5053 * free_extent_buffer might have seen that flag set,
5054 * eb->refs == 2, that the buffer isn't under IO (dirty and
5055 * writeback flags not set) and it's still in the tree (flag
5056 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
5057 * of decrementing the extent buffer's reference count twice.
5058 * So here we could race and increment the eb's reference count,
5059 * clear its stale flag, mark it as dirty and drop our reference
5060 * before the other task finishes executing free_extent_buffer,
5061 * which would later result in an attempt to free an extent
5062 * buffer that is dirty.
5063 */
5064 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
5065 spin_lock(&eb->refs_lock);
5066 spin_unlock(&eb->refs_lock);
5067 }
Mel Gorman2457aec2014-06-04 16:10:31 -07005068 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005069 return eb;
5070 }
5071 rcu_read_unlock();
5072
5073 return NULL;
5074}
5075
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005076#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5077struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005078 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005079{
5080 struct extent_buffer *eb, *exists = NULL;
5081 int ret;
5082
5083 eb = find_extent_buffer(fs_info, start);
5084 if (eb)
5085 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04005086 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005087 if (!eb)
5088 return NULL;
5089 eb->fs_info = fs_info;
5090again:
David Sterbae1860a72016-05-09 14:11:38 +02005091 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005092 if (ret)
5093 goto free_eb;
5094 spin_lock(&fs_info->buffer_lock);
5095 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005096 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005097 spin_unlock(&fs_info->buffer_lock);
5098 radix_tree_preload_end();
5099 if (ret == -EEXIST) {
5100 exists = find_extent_buffer(fs_info, start);
5101 if (exists)
5102 goto free_eb;
5103 else
5104 goto again;
5105 }
5106 check_buffer_tree_ref(eb);
5107 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
5108
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005109 return eb;
5110free_eb:
5111 btrfs_release_extent_buffer(eb);
5112 return exists;
5113}
5114#endif
5115
Josef Bacikf28491e2013-12-16 13:24:27 -05005116struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02005117 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05005118{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005119 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01005120 int num_pages;
5121 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005122 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005123 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005124 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05005125 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05005126 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05005127 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005128 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05005129
Jeff Mahoneyda170662016-06-15 09:22:56 -04005130 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07005131 btrfs_err(fs_info, "bad tree block start %llu", start);
5132 return ERR_PTR(-EINVAL);
5133 }
5134
Josef Bacikf28491e2013-12-16 13:24:27 -05005135 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005136 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04005137 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005138
David Sterba23d79d82014-06-15 02:55:29 +02005139 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04005140 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07005141 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05005142
David Sterba65ad0102018-06-29 10:56:49 +02005143 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04005144 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02005145 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07005146 if (!p) {
5147 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04005148 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005149 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005150
5151 spin_lock(&mapping->private_lock);
5152 if (PagePrivate(p)) {
5153 /*
5154 * We could have already allocated an eb for this page
5155 * and attached one so lets see if we can get a ref on
5156 * the existing eb, and if we can we know it's good and
5157 * we can just return that one, else we know we can just
5158 * overwrite page->private.
5159 */
5160 exists = (struct extent_buffer *)p->private;
5161 if (atomic_inc_not_zero(&exists->refs)) {
5162 spin_unlock(&mapping->private_lock);
5163 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005164 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005165 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005166 goto free_eb;
5167 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005168 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005169
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005170 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005171 * Do this so attach doesn't complain and we need to
5172 * drop the ref the old guy had.
5173 */
5174 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005175 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005176 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005177 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005178 attach_extent_buffer_page(eb, p);
5179 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005180 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005181 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005182 if (!PageUptodate(p))
5183 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005184
5185 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005186 * We can't unlock the pages just yet since the extent buffer
5187 * hasn't been properly inserted in the radix tree, this
5188 * opens a race with btree_releasepage which can free a page
5189 * while we are still filling in all pages for the buffer and
5190 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05005191 */
Chris Masond1310b22008-01-24 16:13:08 -05005192 }
5193 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005194 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005195again:
David Sterbae1860a72016-05-09 14:11:38 +02005196 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005197 if (ret) {
5198 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005199 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005200 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005201
Josef Bacikf28491e2013-12-16 13:24:27 -05005202 spin_lock(&fs_info->buffer_lock);
5203 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005204 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005205 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005206 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005207 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005208 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005209 if (exists)
5210 goto free_eb;
5211 else
Josef Bacik115391d2012-03-09 09:51:43 -05005212 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005213 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005214 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005215 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005216 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005217
5218 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005219 * Now it's safe to unlock the pages because any calls to
5220 * btree_releasepage will correctly detect that a page belongs to a
5221 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005222 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005223 for (i = 0; i < num_pages; i++)
5224 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005225 return eb;
5226
Chris Mason6af118ce2008-07-22 11:18:07 -04005227free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005228 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005229 for (i = 0; i < num_pages; i++) {
5230 if (eb->pages[i])
5231 unlock_page(eb->pages[i]);
5232 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005233
Miao Xie897ca6e92010-10-26 20:57:29 -04005234 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005235 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005236}
Chris Masond1310b22008-01-24 16:13:08 -05005237
Josef Bacik3083ee22012-03-09 16:01:49 -05005238static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5239{
5240 struct extent_buffer *eb =
5241 container_of(head, struct extent_buffer, rcu_head);
5242
5243 __free_extent_buffer(eb);
5244}
5245
David Sterbaf7a52a42013-04-26 14:56:29 +00005246static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005247{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005248 lockdep_assert_held(&eb->refs_lock);
5249
Josef Bacik3083ee22012-03-09 16:01:49 -05005250 WARN_ON(atomic_read(&eb->refs) == 0);
5251 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005252 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005253 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005254
Jan Schmidt815a51c2012-05-16 17:00:02 +02005255 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005256
Josef Bacikf28491e2013-12-16 13:24:27 -05005257 spin_lock(&fs_info->buffer_lock);
5258 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005259 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005260 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005261 } else {
5262 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005263 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005264
5265 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005266 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005267#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005268 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005269 __free_extent_buffer(eb);
5270 return 1;
5271 }
5272#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005273 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005274 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005275 }
5276 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005277
5278 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005279}
5280
Chris Masond1310b22008-01-24 16:13:08 -05005281void free_extent_buffer(struct extent_buffer *eb)
5282{
Chris Mason242e18c2013-01-29 17:49:37 -05005283 int refs;
5284 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005285 if (!eb)
5286 return;
5287
Chris Mason242e18c2013-01-29 17:49:37 -05005288 while (1) {
5289 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005290 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5291 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5292 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005293 break;
5294 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5295 if (old == refs)
5296 return;
5297 }
5298
Josef Bacik3083ee22012-03-09 16:01:49 -05005299 spin_lock(&eb->refs_lock);
5300 if (atomic_read(&eb->refs) == 2 &&
5301 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005302 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005303 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5304 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005305
Josef Bacik3083ee22012-03-09 16:01:49 -05005306 /*
5307 * I know this is terrible, but it's temporary until we stop tracking
5308 * the uptodate bits and such for the extent buffers.
5309 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005310 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005311}
Chris Masond1310b22008-01-24 16:13:08 -05005312
Josef Bacik3083ee22012-03-09 16:01:49 -05005313void free_extent_buffer_stale(struct extent_buffer *eb)
5314{
5315 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005316 return;
5317
Josef Bacik3083ee22012-03-09 16:01:49 -05005318 spin_lock(&eb->refs_lock);
5319 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5320
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005321 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005322 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5323 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005324 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005325}
5326
Chris Mason1d4284b2012-03-28 20:31:37 -04005327void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005328{
David Sterbacc5e31a2018-03-01 18:20:27 +01005329 int i;
5330 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005331 struct page *page;
5332
David Sterba65ad0102018-06-29 10:56:49 +02005333 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005334
5335 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005336 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005337 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005338 continue;
5339
Chris Masona61e6f22008-07-22 11:18:08 -04005340 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005341 WARN_ON(!PagePrivate(page));
5342
Chris Masond1310b22008-01-24 16:13:08 -05005343 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005344 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005345 if (!PageDirty(page))
5346 __xa_clear_mark(&page->mapping->i_pages,
5347 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005348 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005349 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005350 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005351 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005352 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005353}
Chris Masond1310b22008-01-24 16:13:08 -05005354
Liu Boabb57ef2018-09-14 01:44:42 +08005355bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005356{
David Sterbacc5e31a2018-03-01 18:20:27 +01005357 int i;
5358 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005359 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005360
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005361 check_buffer_tree_ref(eb);
5362
Chris Masonb9473432009-03-13 11:00:37 -04005363 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005364
David Sterba65ad0102018-06-29 10:56:49 +02005365 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005366 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005367 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5368
Liu Boabb57ef2018-09-14 01:44:42 +08005369 if (!was_dirty)
5370 for (i = 0; i < num_pages; i++)
5371 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005372
5373#ifdef CONFIG_BTRFS_DEBUG
5374 for (i = 0; i < num_pages; i++)
5375 ASSERT(PageDirty(eb->pages[i]));
5376#endif
5377
Chris Masonb9473432009-03-13 11:00:37 -04005378 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005379}
Chris Masond1310b22008-01-24 16:13:08 -05005380
David Sterba69ba3922015-12-03 13:08:59 +01005381void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005382{
David Sterbacc5e31a2018-03-01 18:20:27 +01005383 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005384 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005385 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005386
Chris Masonb4ce94d2009-02-04 09:25:08 -05005387 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005388 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005389 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005390 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005391 if (page)
5392 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005393 }
Chris Mason1259ab72008-05-12 13:39:03 -04005394}
5395
David Sterba09c25a82015-12-03 13:08:59 +01005396void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005397{
David Sterbacc5e31a2018-03-01 18:20:27 +01005398 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005399 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005400 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005401
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005402 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005403 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005404 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005405 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005406 SetPageUptodate(page);
5407 }
Chris Masond1310b22008-01-24 16:13:08 -05005408}
Chris Masond1310b22008-01-24 16:13:08 -05005409
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005410int read_extent_buffer_pages(struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005411{
David Sterbacc5e31a2018-03-01 18:20:27 +01005412 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005413 struct page *page;
5414 int err;
5415 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005416 int locked_pages = 0;
5417 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005418 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005419 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005420 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005421 unsigned long bio_flags = 0;
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005422 struct extent_io_tree *tree = &BTRFS_I(eb->fs_info->btree_inode)->io_tree;
Chris Masona86c12c2008-02-07 10:50:54 -05005423
Chris Masonb4ce94d2009-02-04 09:25:08 -05005424 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005425 return 0;
5426
David Sterba65ad0102018-06-29 10:56:49 +02005427 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005428 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005429 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005430 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005431 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005432 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005433 } else {
5434 lock_page(page);
5435 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005436 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005437 }
5438 /*
5439 * We need to firstly lock all pages to make sure that
5440 * the uptodate bit of our pages won't be affected by
5441 * clear_extent_buffer_uptodate().
5442 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005443 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005444 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005445 if (!PageUptodate(page)) {
5446 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005447 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005448 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005449 }
Liu Bo2571e732016-08-03 12:33:01 -07005450
Chris Masonce9adaa2008-04-09 16:28:12 -04005451 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005452 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005453 goto unlock_exit;
5454 }
5455
Filipe Manana656f30d2014-09-26 12:25:56 +01005456 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005457 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005458 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005459 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005460 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005461
Chris Masonce9adaa2008-04-09 16:28:12 -04005462 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005463 if (ret) {
5464 atomic_dec(&eb->io_pages);
5465 unlock_page(page);
5466 continue;
5467 }
5468
Chris Masonf1885912008-04-09 16:28:12 -04005469 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005470 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005471 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005472 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005473 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005474 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005475 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005476 /*
5477 * We use &bio in above __extent_read_full_page,
5478 * so we ensure that if it returns error, the
5479 * current page fails to add itself to bio and
5480 * it's been unlocked.
5481 *
5482 * We must dec io_pages by ourselves.
5483 */
5484 atomic_dec(&eb->io_pages);
5485 }
Chris Masond1310b22008-01-24 16:13:08 -05005486 } else {
5487 unlock_page(page);
5488 }
5489 }
5490
Jeff Mahoney355808c2011-10-03 23:23:14 -04005491 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005492 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005493 if (err)
5494 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005495 }
Chris Masona86c12c2008-02-07 10:50:54 -05005496
Arne Jansenbb82ab82011-06-10 14:06:53 +02005497 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005498 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005499
Josef Bacik8436ea912016-09-02 15:40:03 -04005500 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005501 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005502 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005503 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005504 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005505 }
Chris Masond3977122009-01-05 21:25:51 -05005506
Chris Masond1310b22008-01-24 16:13:08 -05005507 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005508
5509unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005510 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005511 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005512 page = eb->pages[locked_pages];
5513 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005514 }
5515 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005516}
Chris Masond1310b22008-01-24 16:13:08 -05005517
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005518void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5519 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005520{
5521 size_t cur;
5522 size_t offset;
5523 struct page *page;
5524 char *kaddr;
5525 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005526 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005527 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005528
Liu Bof716abd2017-08-09 11:10:16 -06005529 if (start + len > eb->len) {
5530 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5531 eb->start, eb->len, start, len);
5532 memset(dst, 0, len);
5533 return;
5534 }
Chris Masond1310b22008-01-24 16:13:08 -05005535
Johannes Thumshirn70730172018-12-05 15:23:03 +01005536 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005537
Chris Masond3977122009-01-05 21:25:51 -05005538 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005539 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005540
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005541 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005542 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005543 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005544
5545 dst += cur;
5546 len -= cur;
5547 offset = 0;
5548 i++;
5549 }
5550}
Chris Masond1310b22008-01-24 16:13:08 -05005551
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005552int read_extent_buffer_to_user(const struct extent_buffer *eb,
5553 void __user *dstv,
5554 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005555{
5556 size_t cur;
5557 size_t offset;
5558 struct page *page;
5559 char *kaddr;
5560 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005561 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005562 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005563 int ret = 0;
5564
5565 WARN_ON(start > eb->len);
5566 WARN_ON(start + len > eb->start + eb->len);
5567
Johannes Thumshirn70730172018-12-05 15:23:03 +01005568 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005569
5570 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005571 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005572
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005573 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005574 kaddr = page_address(page);
5575 if (copy_to_user(dst, kaddr + offset, cur)) {
5576 ret = -EFAULT;
5577 break;
5578 }
5579
5580 dst += cur;
5581 len -= cur;
5582 offset = 0;
5583 i++;
5584 }
5585
5586 return ret;
5587}
5588
Liu Bo415b35a2016-06-17 19:16:21 -07005589/*
5590 * return 0 if the item is found within a page.
5591 * return 1 if the item spans two pages.
5592 * return -EINVAL otherwise.
5593 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005594int map_private_extent_buffer(const struct extent_buffer *eb,
5595 unsigned long start, unsigned long min_len,
5596 char **map, unsigned long *map_start,
5597 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005598{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005599 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005600 char *kaddr;
5601 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005602 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005603 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005604 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005605 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005606
Liu Bof716abd2017-08-09 11:10:16 -06005607 if (start + min_len > eb->len) {
5608 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5609 eb->start, eb->len, start, min_len);
5610 return -EINVAL;
5611 }
5612
Chris Masond1310b22008-01-24 16:13:08 -05005613 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005614 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005615
5616 if (i == 0) {
5617 offset = start_offset;
5618 *map_start = 0;
5619 } else {
5620 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005621 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005622 }
Chris Masond3977122009-01-05 21:25:51 -05005623
David Sterbafb85fc92014-07-31 01:03:53 +02005624 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005625 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005626 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005627 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005628 return 0;
5629}
Chris Masond1310b22008-01-24 16:13:08 -05005630
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005631int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5632 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005633{
5634 size_t cur;
5635 size_t offset;
5636 struct page *page;
5637 char *kaddr;
5638 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005639 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005640 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005641 int ret = 0;
5642
5643 WARN_ON(start > eb->len);
5644 WARN_ON(start + len > eb->start + eb->len);
5645
Johannes Thumshirn70730172018-12-05 15:23:03 +01005646 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005647
Chris Masond3977122009-01-05 21:25:51 -05005648 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005649 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005650
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005651 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005652
Chris Masona6591712011-07-19 12:04:14 -04005653 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005654 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005655 if (ret)
5656 break;
5657
5658 ptr += cur;
5659 len -= cur;
5660 offset = 0;
5661 i++;
5662 }
5663 return ret;
5664}
Chris Masond1310b22008-01-24 16:13:08 -05005665
David Sterbaf157bf72016-11-09 17:43:38 +01005666void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5667 const void *srcv)
5668{
5669 char *kaddr;
5670
5671 WARN_ON(!PageUptodate(eb->pages[0]));
5672 kaddr = page_address(eb->pages[0]);
5673 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5674 BTRFS_FSID_SIZE);
5675}
5676
5677void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5678{
5679 char *kaddr;
5680
5681 WARN_ON(!PageUptodate(eb->pages[0]));
5682 kaddr = page_address(eb->pages[0]);
5683 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5684 BTRFS_FSID_SIZE);
5685}
5686
Chris Masond1310b22008-01-24 16:13:08 -05005687void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5688 unsigned long start, unsigned long len)
5689{
5690 size_t cur;
5691 size_t offset;
5692 struct page *page;
5693 char *kaddr;
5694 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005695 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005696 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005697
5698 WARN_ON(start > eb->len);
5699 WARN_ON(start + len > eb->start + eb->len);
5700
Johannes Thumshirn70730172018-12-05 15:23:03 +01005701 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005702
Chris Masond3977122009-01-05 21:25:51 -05005703 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005704 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005705 WARN_ON(!PageUptodate(page));
5706
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005707 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005708 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005709 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005710
5711 src += cur;
5712 len -= cur;
5713 offset = 0;
5714 i++;
5715 }
5716}
Chris Masond1310b22008-01-24 16:13:08 -05005717
David Sterbab159fa22016-11-08 18:09:03 +01005718void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5719 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005720{
5721 size_t cur;
5722 size_t offset;
5723 struct page *page;
5724 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005725 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005726 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005727
5728 WARN_ON(start > eb->len);
5729 WARN_ON(start + len > eb->start + eb->len);
5730
Johannes Thumshirn70730172018-12-05 15:23:03 +01005731 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005732
Chris Masond3977122009-01-05 21:25:51 -05005733 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005734 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005735 WARN_ON(!PageUptodate(page));
5736
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005737 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005738 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005739 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005740
5741 len -= cur;
5742 offset = 0;
5743 i++;
5744 }
5745}
Chris Masond1310b22008-01-24 16:13:08 -05005746
David Sterba58e80122016-11-08 18:30:31 +01005747void copy_extent_buffer_full(struct extent_buffer *dst,
5748 struct extent_buffer *src)
5749{
5750 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005751 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005752
5753 ASSERT(dst->len == src->len);
5754
David Sterba65ad0102018-06-29 10:56:49 +02005755 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005756 for (i = 0; i < num_pages; i++)
5757 copy_page(page_address(dst->pages[i]),
5758 page_address(src->pages[i]));
5759}
5760
Chris Masond1310b22008-01-24 16:13:08 -05005761void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5762 unsigned long dst_offset, unsigned long src_offset,
5763 unsigned long len)
5764{
5765 u64 dst_len = dst->len;
5766 size_t cur;
5767 size_t offset;
5768 struct page *page;
5769 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005770 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005771 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005772
5773 WARN_ON(src->len != dst_len);
5774
Johannes Thumshirn70730172018-12-05 15:23:03 +01005775 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005776
Chris Masond3977122009-01-05 21:25:51 -05005777 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005778 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005779 WARN_ON(!PageUptodate(page));
5780
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005781 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005782
Chris Masona6591712011-07-19 12:04:14 -04005783 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005784 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005785
5786 src_offset += cur;
5787 len -= cur;
5788 offset = 0;
5789 i++;
5790 }
5791}
Chris Masond1310b22008-01-24 16:13:08 -05005792
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005793/*
5794 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5795 * given bit number
5796 * @eb: the extent buffer
5797 * @start: offset of the bitmap item in the extent buffer
5798 * @nr: bit number
5799 * @page_index: return index of the page in the extent buffer that contains the
5800 * given bit number
5801 * @page_offset: return offset into the page given by page_index
5802 *
5803 * This helper hides the ugliness of finding the byte in an extent buffer which
5804 * contains a given bit.
5805 */
5806static inline void eb_bitmap_offset(struct extent_buffer *eb,
5807 unsigned long start, unsigned long nr,
5808 unsigned long *page_index,
5809 size_t *page_offset)
5810{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005811 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005812 size_t byte_offset = BIT_BYTE(nr);
5813 size_t offset;
5814
5815 /*
5816 * The byte we want is the offset of the extent buffer + the offset of
5817 * the bitmap item in the extent buffer + the offset of the byte in the
5818 * bitmap item.
5819 */
5820 offset = start_offset + start + byte_offset;
5821
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005822 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005823 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005824}
5825
5826/**
5827 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5828 * @eb: the extent buffer
5829 * @start: offset of the bitmap item in the extent buffer
5830 * @nr: bit number to test
5831 */
5832int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5833 unsigned long nr)
5834{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005835 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005836 struct page *page;
5837 unsigned long i;
5838 size_t offset;
5839
5840 eb_bitmap_offset(eb, start, nr, &i, &offset);
5841 page = eb->pages[i];
5842 WARN_ON(!PageUptodate(page));
5843 kaddr = page_address(page);
5844 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5845}
5846
5847/**
5848 * extent_buffer_bitmap_set - set an area of a bitmap
5849 * @eb: the extent buffer
5850 * @start: offset of the bitmap item in the extent buffer
5851 * @pos: bit number of the first bit
5852 * @len: number of bits to set
5853 */
5854void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5855 unsigned long pos, unsigned long len)
5856{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005857 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005858 struct page *page;
5859 unsigned long i;
5860 size_t offset;
5861 const unsigned int size = pos + len;
5862 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005863 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005864
5865 eb_bitmap_offset(eb, start, pos, &i, &offset);
5866 page = eb->pages[i];
5867 WARN_ON(!PageUptodate(page));
5868 kaddr = page_address(page);
5869
5870 while (len >= bits_to_set) {
5871 kaddr[offset] |= mask_to_set;
5872 len -= bits_to_set;
5873 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005874 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005875 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005876 offset = 0;
5877 page = eb->pages[++i];
5878 WARN_ON(!PageUptodate(page));
5879 kaddr = page_address(page);
5880 }
5881 }
5882 if (len) {
5883 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5884 kaddr[offset] |= mask_to_set;
5885 }
5886}
5887
5888
5889/**
5890 * extent_buffer_bitmap_clear - clear an area of a bitmap
5891 * @eb: the extent buffer
5892 * @start: offset of the bitmap item in the extent buffer
5893 * @pos: bit number of the first bit
5894 * @len: number of bits to clear
5895 */
5896void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5897 unsigned long pos, unsigned long len)
5898{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005899 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005900 struct page *page;
5901 unsigned long i;
5902 size_t offset;
5903 const unsigned int size = pos + len;
5904 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005905 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005906
5907 eb_bitmap_offset(eb, start, pos, &i, &offset);
5908 page = eb->pages[i];
5909 WARN_ON(!PageUptodate(page));
5910 kaddr = page_address(page);
5911
5912 while (len >= bits_to_clear) {
5913 kaddr[offset] &= ~mask_to_clear;
5914 len -= bits_to_clear;
5915 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005916 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005917 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005918 offset = 0;
5919 page = eb->pages[++i];
5920 WARN_ON(!PageUptodate(page));
5921 kaddr = page_address(page);
5922 }
5923 }
5924 if (len) {
5925 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5926 kaddr[offset] &= ~mask_to_clear;
5927 }
5928}
5929
Sergei Trofimovich33872062011-04-11 21:52:52 +00005930static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5931{
5932 unsigned long distance = (src > dst) ? src - dst : dst - src;
5933 return distance < len;
5934}
5935
Chris Masond1310b22008-01-24 16:13:08 -05005936static void copy_pages(struct page *dst_page, struct page *src_page,
5937 unsigned long dst_off, unsigned long src_off,
5938 unsigned long len)
5939{
Chris Masona6591712011-07-19 12:04:14 -04005940 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005941 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005942 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005943
Sergei Trofimovich33872062011-04-11 21:52:52 +00005944 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005945 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005946 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005947 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005948 if (areas_overlap(src_off, dst_off, len))
5949 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005950 }
Chris Masond1310b22008-01-24 16:13:08 -05005951
Chris Mason727011e2010-08-06 13:21:20 -04005952 if (must_memmove)
5953 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5954 else
5955 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005956}
5957
5958void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5959 unsigned long src_offset, unsigned long len)
5960{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005961 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005962 size_t cur;
5963 size_t dst_off_in_page;
5964 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005965 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005966 unsigned long dst_i;
5967 unsigned long src_i;
5968
5969 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005970 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005971 "memmove bogus src_offset %lu move len %lu dst len %lu",
5972 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005973 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005974 }
5975 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005976 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005977 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5978 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01005979 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05005980 }
5981
Chris Masond3977122009-01-05 21:25:51 -05005982 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01005983 dst_off_in_page = offset_in_page(start_offset + dst_offset);
5984 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005985
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005986 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5987 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005988
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005989 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005990 src_off_in_page));
5991 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005992 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005993
David Sterbafb85fc92014-07-31 01:03:53 +02005994 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005995 dst_off_in_page, src_off_in_page, cur);
5996
5997 src_offset += cur;
5998 dst_offset += cur;
5999 len -= cur;
6000 }
6001}
Chris Masond1310b22008-01-24 16:13:08 -05006002
6003void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
6004 unsigned long src_offset, unsigned long len)
6005{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006006 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05006007 size_t cur;
6008 size_t dst_off_in_page;
6009 size_t src_off_in_page;
6010 unsigned long dst_end = dst_offset + len - 1;
6011 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01006012 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05006013 unsigned long dst_i;
6014 unsigned long src_i;
6015
6016 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006017 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006018 "memmove bogus src_offset %lu move len %lu len %lu",
6019 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006020 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006021 }
6022 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006023 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006024 "memmove bogus dst_offset %lu move len %lu len %lu",
6025 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006026 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006027 }
Chris Mason727011e2010-08-06 13:21:20 -04006028 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05006029 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
6030 return;
6031 }
Chris Masond3977122009-01-05 21:25:51 -05006032 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006033 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
6034 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05006035
Johannes Thumshirn70730172018-12-05 15:23:03 +01006036 dst_off_in_page = offset_in_page(start_offset + dst_end);
6037 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05006038
6039 cur = min_t(unsigned long, len, src_off_in_page + 1);
6040 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02006041 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05006042 dst_off_in_page - cur + 1,
6043 src_off_in_page - cur + 1, cur);
6044
6045 dst_end -= cur;
6046 src_end -= cur;
6047 len -= cur;
6048 }
6049}
Chris Mason6af118ce2008-07-22 11:18:07 -04006050
David Sterbaf7a52a42013-04-26 14:56:29 +00006051int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04006052{
Chris Mason6af118ce2008-07-22 11:18:07 -04006053 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04006054
Miao Xie19fe0a82010-10-26 20:57:29 -04006055 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006056 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05006057 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04006058 */
Josef Bacik3083ee22012-03-09 16:01:49 -05006059 spin_lock(&page->mapping->private_lock);
6060 if (!PagePrivate(page)) {
6061 spin_unlock(&page->mapping->private_lock);
6062 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04006063 }
6064
Josef Bacik3083ee22012-03-09 16:01:49 -05006065 eb = (struct extent_buffer *)page->private;
6066 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04006067
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006068 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05006069 * This is a little awful but should be ok, we need to make sure that
6070 * the eb doesn't disappear out from under us while we're looking at
6071 * this page.
6072 */
6073 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006074 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05006075 spin_unlock(&eb->refs_lock);
6076 spin_unlock(&page->mapping->private_lock);
6077 return 0;
6078 }
6079 spin_unlock(&page->mapping->private_lock);
6080
Josef Bacik3083ee22012-03-09 16:01:49 -05006081 /*
6082 * If tree ref isn't set then we know the ref on this eb is a real ref,
6083 * so just return, this page will likely be freed soon anyway.
6084 */
6085 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
6086 spin_unlock(&eb->refs_lock);
6087 return 0;
6088 }
Josef Bacik3083ee22012-03-09 16:01:49 -05006089
David Sterbaf7a52a42013-04-26 14:56:29 +00006090 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04006091}