blob: 3047ab59f19c061aa3fdfb7d5ea75655e50f307f [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"
Josef Bacik9c7d3a52019-09-23 10:05:19 -040017#include "extent-io-tree.h"
Chris Masond1310b22008-01-24 16:13:08 -050018#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040019#include "ctree.h"
20#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020021#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010022#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040023#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040024#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080025#include "backref.h"
David Sterba6af49db2017-06-23 04:09:57 +020026#include "disk-io.h"
Chris Masond1310b22008-01-24 16:13:08 -050027
Chris Masond1310b22008-01-24 16:13:08 -050028static struct kmem_cache *extent_state_cache;
29static struct kmem_cache *extent_buffer_cache;
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -040030static struct bio_set btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050031
Filipe Manana27a35072014-07-06 20:09:59 +010032static inline bool extent_state_in_tree(const struct extent_state *state)
33{
34 return !RB_EMPTY_NODE(&state->rb_node);
35}
36
Eric Sandeen6d49ba12013-04-22 16:12:31 +000037#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050038static LIST_HEAD(buffers);
39static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040040
Chris Masond3977122009-01-05 21:25:51 -050041static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000042
43static inline
44void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
45{
46 unsigned long flags;
47
48 spin_lock_irqsave(&leak_lock, flags);
49 list_add(new, head);
50 spin_unlock_irqrestore(&leak_lock, flags);
51}
52
53static inline
54void btrfs_leak_debug_del(struct list_head *entry)
55{
56 unsigned long flags;
57
58 spin_lock_irqsave(&leak_lock, flags);
59 list_del(entry);
60 spin_unlock_irqrestore(&leak_lock, flags);
61}
62
Josef Bacik33ca8322019-09-23 10:05:17 -040063static inline void btrfs_extent_buffer_leak_debug_check(void)
64{
65 struct extent_buffer *eb;
66
67 while (!list_empty(&buffers)) {
68 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
69 pr_err("BTRFS: buffer leak start %llu len %lu refs %d bflags %lu\n",
70 eb->start, eb->len, atomic_read(&eb->refs), eb->bflags);
71 list_del(&eb->leak_list);
72 kmem_cache_free(extent_buffer_cache, eb);
73 }
74}
75
76static inline void btrfs_extent_state_leak_debug_check(void)
Eric Sandeen6d49ba12013-04-22 16:12:31 +000077{
78 struct extent_state *state;
Eric Sandeen6d49ba12013-04-22 16:12:31 +000079
80 while (!list_empty(&states)) {
81 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010082 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010083 state->start, state->end, state->state,
84 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020085 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000086 list_del(&state->leak_list);
87 kmem_cache_free(extent_state_cache, state);
88 }
Eric Sandeen6d49ba12013-04-22 16:12:31 +000089}
David Sterba8d599ae2013-04-30 15:22:23 +000090
Josef Bacika5dee372013-12-13 10:02:44 -050091#define btrfs_debug_check_extent_io_range(tree, start, end) \
92 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000093static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050094 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000095{
Nikolay Borisov65a680f2018-11-01 14:09:49 +020096 struct inode *inode = tree->private_data;
97 u64 isize;
98
99 if (!inode || !is_data_inode(inode))
100 return;
101
102 isize = i_size_read(inode);
103 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
104 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
105 "%s: ino %llu isize %llu odd range [%llu,%llu]",
106 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
107 }
David Sterba8d599ae2013-04-30 15:22:23 +0000108}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000109#else
110#define btrfs_leak_debug_add(new, head) do {} while (0)
111#define btrfs_leak_debug_del(entry) do {} while (0)
Josef Bacik33ca8322019-09-23 10:05:17 -0400112#define btrfs_extent_buffer_leak_debug_check() do {} while (0)
113#define btrfs_extent_state_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000114#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400115#endif
Chris Masond1310b22008-01-24 16:13:08 -0500116
Chris Masond1310b22008-01-24 16:13:08 -0500117struct tree_entry {
118 u64 start;
119 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500120 struct rb_node rb_node;
121};
122
123struct extent_page_data {
124 struct bio *bio;
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
Josef Bacik41a2ee72020-01-17 09:02:21 -0500259/*
260 * For the file_extent_tree, we want to hold the inode lock when we lookup and
261 * update the disk_i_size, but lockdep will complain because our io_tree we hold
262 * the tree lock and get the inode lock when setting delalloc. These two things
263 * are unrelated, so make a class for the file_extent_tree so we don't get the
264 * two locking patterns mixed up.
265 */
266static struct lock_class_key file_extent_tree_class;
267
Qu Wenruoc258d6e2019-03-01 10:47:58 +0800268void extent_io_tree_init(struct btrfs_fs_info *fs_info,
Qu Wenruo43eb5f22019-03-01 10:47:59 +0800269 struct extent_io_tree *tree, unsigned int owner,
270 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500271{
Qu Wenruoc258d6e2019-03-01 10:47:58 +0800272 tree->fs_info = fs_info;
Eric Paris6bef4d32010-02-23 19:43:04 +0000273 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500274 tree->ops = NULL;
275 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500276 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400277 tree->private_data = private_data;
Qu Wenruo43eb5f22019-03-01 10:47:59 +0800278 tree->owner = owner;
Josef Bacik41a2ee72020-01-17 09:02:21 -0500279 if (owner == IO_TREE_INODE_FILE_EXTENT)
280 lockdep_set_class(&tree->lock, &file_extent_tree_class);
Chris Masond1310b22008-01-24 16:13:08 -0500281}
Chris Masond1310b22008-01-24 16:13:08 -0500282
Nikolay Borisov41e7acd2019-03-25 14:31:24 +0200283void extent_io_tree_release(struct extent_io_tree *tree)
284{
285 spin_lock(&tree->lock);
286 /*
287 * Do a single barrier for the waitqueue_active check here, the state
288 * of the waitqueue should not change once extent_io_tree_release is
289 * called.
290 */
291 smp_mb();
292 while (!RB_EMPTY_ROOT(&tree->state)) {
293 struct rb_node *node;
294 struct extent_state *state;
295
296 node = rb_first(&tree->state);
297 state = rb_entry(node, struct extent_state, rb_node);
298 rb_erase(&state->rb_node, &tree->state);
299 RB_CLEAR_NODE(&state->rb_node);
300 /*
301 * btree io trees aren't supposed to have tasks waiting for
302 * changes in the flags of extent states ever.
303 */
304 ASSERT(!waitqueue_active(&state->wq));
305 free_extent_state(state);
306
307 cond_resched_lock(&tree->lock);
308 }
309 spin_unlock(&tree->lock);
310}
311
Christoph Hellwigb2950862008-12-02 09:54:17 -0500312static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500313{
314 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500315
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100316 /*
317 * The given mask might be not appropriate for the slab allocator,
318 * drop the unsupported bits
319 */
320 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500321 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400322 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500323 return state;
324 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100325 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100326 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000327 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200328 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500329 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100330 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500331 return state;
332}
Chris Masond1310b22008-01-24 16:13:08 -0500333
Chris Mason4845e442010-05-25 20:56:50 -0400334void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500335{
Chris Masond1310b22008-01-24 16:13:08 -0500336 if (!state)
337 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200338 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100339 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000340 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100341 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500342 kmem_cache_free(extent_state_cache, state);
343 }
344}
Chris Masond1310b22008-01-24 16:13:08 -0500345
Filipe Mananaf2071b22014-02-12 15:05:53 +0000346static struct rb_node *tree_insert(struct rb_root *root,
347 struct rb_node *search_start,
348 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000349 struct rb_node *node,
350 struct rb_node ***p_in,
351 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500352{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000353 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500354 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500355 struct tree_entry *entry;
356
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000357 if (p_in && parent_in) {
358 p = *p_in;
359 parent = *parent_in;
360 goto do_insert;
361 }
362
Filipe Mananaf2071b22014-02-12 15:05:53 +0000363 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500364 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500365 parent = *p;
366 entry = rb_entry(parent, struct tree_entry, rb_node);
367
368 if (offset < entry->start)
369 p = &(*p)->rb_left;
370 else if (offset > entry->end)
371 p = &(*p)->rb_right;
372 else
373 return parent;
374 }
375
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000376do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500377 rb_link_node(node, parent, p);
378 rb_insert_color(node, root);
379 return NULL;
380}
381
Nikolay Borisov8666e632019-06-05 14:50:04 +0300382/**
383 * __etree_search - searche @tree for an entry that contains @offset. Such
384 * entry would have entry->start <= offset && entry->end >= offset.
385 *
386 * @tree - the tree to search
387 * @offset - offset that should fall within an entry in @tree
388 * @next_ret - pointer to the first entry whose range ends after @offset
389 * @prev - pointer to the first entry whose range begins before @offset
390 * @p_ret - pointer where new node should be anchored (used when inserting an
391 * entry in the tree)
392 * @parent_ret - points to entry which would have been the parent of the entry,
393 * containing @offset
394 *
395 * This function returns a pointer to the entry that contains @offset byte
396 * address. If no such entry exists, then NULL is returned and the other
397 * pointer arguments to the function are filled, otherwise the found entry is
398 * returned and other pointers are left untouched.
399 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500400static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000401 struct rb_node **next_ret,
Nikolay Borisov352646c2019-01-30 16:51:00 +0200402 struct rb_node **prev_ret,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000403 struct rb_node ***p_ret,
404 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500405{
Chris Mason80ea96b2008-02-01 14:51:59 -0500406 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000407 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500408 struct rb_node *prev = NULL;
409 struct rb_node *orig_prev = NULL;
410 struct tree_entry *entry;
411 struct tree_entry *prev_entry = NULL;
412
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000413 while (*n) {
414 prev = *n;
415 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500416 prev_entry = entry;
417
418 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000419 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500420 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000421 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500422 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000423 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500424 }
425
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000426 if (p_ret)
427 *p_ret = n;
428 if (parent_ret)
429 *parent_ret = prev;
430
Nikolay Borisov352646c2019-01-30 16:51:00 +0200431 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500432 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500433 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500434 prev = rb_next(prev);
435 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
436 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200437 *next_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500438 prev = orig_prev;
439 }
440
Nikolay Borisov352646c2019-01-30 16:51:00 +0200441 if (prev_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500442 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500443 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500444 prev = rb_prev(prev);
445 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
446 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200447 *prev_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500448 }
449 return NULL;
450}
451
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000452static inline struct rb_node *
453tree_search_for_insert(struct extent_io_tree *tree,
454 u64 offset,
455 struct rb_node ***p_ret,
456 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500457{
Nikolay Borisov352646c2019-01-30 16:51:00 +0200458 struct rb_node *next= NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500459 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500460
Nikolay Borisov352646c2019-01-30 16:51:00 +0200461 ret = __etree_search(tree, offset, &next, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500462 if (!ret)
Nikolay Borisov352646c2019-01-30 16:51:00 +0200463 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500464 return ret;
465}
466
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000467static inline struct rb_node *tree_search(struct extent_io_tree *tree,
468 u64 offset)
469{
470 return tree_search_for_insert(tree, offset, NULL, NULL);
471}
472
Chris Masond1310b22008-01-24 16:13:08 -0500473/*
474 * utility function to look for merge candidates inside a given range.
475 * Any extents with matching state are merged together into a single
476 * extent in the tree. Extents with EXTENT_IO in their state field
477 * are not merged because the end_io handlers need to be able to do
478 * operations on them without sleeping (or doing allocations/splits).
479 *
480 * This should be called with the tree lock held.
481 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000482static void merge_state(struct extent_io_tree *tree,
483 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500484{
485 struct extent_state *other;
486 struct rb_node *other_node;
487
Nikolay Borisov88826792019-03-14 15:28:31 +0200488 if (state->state & (EXTENT_LOCKED | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000489 return;
Chris Masond1310b22008-01-24 16:13:08 -0500490
491 other_node = rb_prev(&state->rb_node);
492 if (other_node) {
493 other = rb_entry(other_node, struct extent_state, rb_node);
494 if (other->end == state->start - 1 &&
495 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200496 if (tree->private_data &&
497 is_data_inode(tree->private_data))
498 btrfs_merge_delalloc_extent(tree->private_data,
499 state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500500 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500501 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100502 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500503 free_extent_state(other);
504 }
505 }
506 other_node = rb_next(&state->rb_node);
507 if (other_node) {
508 other = rb_entry(other_node, struct extent_state, rb_node);
509 if (other->start == state->end + 1 &&
510 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200511 if (tree->private_data &&
512 is_data_inode(tree->private_data))
513 btrfs_merge_delalloc_extent(tree->private_data,
514 state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400515 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400516 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100517 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400518 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500519 }
520 }
Chris Masond1310b22008-01-24 16:13:08 -0500521}
522
Xiao Guangrong3150b692011-07-14 03:19:08 +0000523static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800524 struct extent_state *state, unsigned *bits,
525 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000526
Chris Masond1310b22008-01-24 16:13:08 -0500527/*
528 * insert an extent_state struct into the tree. 'bits' are set on the
529 * struct before it is inserted.
530 *
531 * This may return -EEXIST if the extent is already there, in which case the
532 * state struct is freed.
533 *
534 * The tree lock is not taken internally. This is a utility function and
535 * probably isn't what you want to call (see set/clear_extent_bit).
536 */
537static int insert_state(struct extent_io_tree *tree,
538 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000539 struct rb_node ***p,
540 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800541 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500542{
543 struct rb_node *node;
544
David Sterba27922372019-06-18 20:00:05 +0200545 if (end < start) {
546 btrfs_err(tree->fs_info,
547 "insert state: end < start %llu %llu", end, start);
548 WARN_ON(1);
549 }
Chris Masond1310b22008-01-24 16:13:08 -0500550 state->start = start;
551 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400552
Qu Wenruod38ed272015-10-12 14:53:37 +0800553 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000554
Filipe Mananaf2071b22014-02-12 15:05:53 +0000555 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500556 if (node) {
557 struct extent_state *found;
558 found = rb_entry(node, struct extent_state, rb_node);
David Sterba27922372019-06-18 20:00:05 +0200559 btrfs_err(tree->fs_info,
560 "found node %llu %llu on insert of %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200561 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500562 return -EEXIST;
563 }
564 merge_state(tree, state);
565 return 0;
566}
567
568/*
569 * split a given extent state struct in two, inserting the preallocated
570 * struct 'prealloc' as the newly created second half. 'split' indicates an
571 * offset inside 'orig' where it should be split.
572 *
573 * Before calling,
574 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
575 * are two extent state structs in the tree:
576 * prealloc: [orig->start, split - 1]
577 * orig: [ split, orig->end ]
578 *
579 * The tree locks are not taken by this function. They need to be held
580 * by the caller.
581 */
582static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
583 struct extent_state *prealloc, u64 split)
584{
585 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400586
Nikolay Borisovabbb55f2018-11-01 14:09:53 +0200587 if (tree->private_data && is_data_inode(tree->private_data))
588 btrfs_split_delalloc_extent(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400589
Chris Masond1310b22008-01-24 16:13:08 -0500590 prealloc->start = orig->start;
591 prealloc->end = split - 1;
592 prealloc->state = orig->state;
593 orig->start = split;
594
Filipe Mananaf2071b22014-02-12 15:05:53 +0000595 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
596 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500597 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500598 free_extent_state(prealloc);
599 return -EEXIST;
600 }
601 return 0;
602}
603
Li Zefancdc6a392012-03-12 16:39:48 +0800604static struct extent_state *next_state(struct extent_state *state)
605{
606 struct rb_node *next = rb_next(&state->rb_node);
607 if (next)
608 return rb_entry(next, struct extent_state, rb_node);
609 else
610 return NULL;
611}
612
Chris Masond1310b22008-01-24 16:13:08 -0500613/*
614 * utility function to clear some bits in an extent state struct.
Andrea Gelmini52042d82018-11-28 12:05:13 +0100615 * it will optionally wake up anyone waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500616 *
617 * If no bits are set on the state struct after clearing things, the
618 * struct is freed and removed from the tree
619 */
Li Zefancdc6a392012-03-12 16:39:48 +0800620static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
621 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800622 unsigned *bits, int wake,
623 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500624{
Li Zefancdc6a392012-03-12 16:39:48 +0800625 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100626 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100627 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500628
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400629 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500630 u64 range = state->end - state->start + 1;
631 WARN_ON(range > tree->dirty_bytes);
632 tree->dirty_bytes -= range;
633 }
Nikolay Borisova36bb5f2018-11-01 14:09:51 +0200634
635 if (tree->private_data && is_data_inode(tree->private_data))
636 btrfs_clear_delalloc_extent(tree->private_data, state, bits);
637
David Sterba57599c72018-03-01 17:56:34 +0100638 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
639 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400640 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500641 if (wake)
642 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400643 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800644 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100645 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500646 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100647 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500648 free_extent_state(state);
649 } else {
650 WARN_ON(1);
651 }
652 } else {
653 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800654 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500655 }
Li Zefancdc6a392012-03-12 16:39:48 +0800656 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500657}
658
Xiao Guangrong82337672011-04-20 06:44:57 +0000659static struct extent_state *
660alloc_extent_state_atomic(struct extent_state *prealloc)
661{
662 if (!prealloc)
663 prealloc = alloc_extent_state(GFP_ATOMIC);
664
665 return prealloc;
666}
667
Eric Sandeen48a3b632013-04-25 20:41:01 +0000668static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400669{
David Sterba05912a32018-07-18 19:23:45 +0200670 struct inode *inode = tree->private_data;
671
672 btrfs_panic(btrfs_sb(inode->i_sb), err,
673 "locking error: extent tree was modified by another thread while locked");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400674}
675
Chris Masond1310b22008-01-24 16:13:08 -0500676/*
677 * clear some bits on a range in the tree. This may require splitting
678 * or inserting elements in the tree, so the gfp mask is used to
679 * indicate which allocations or sleeping are allowed.
680 *
681 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
682 * the given range from the tree regardless of state (ie for truncate).
683 *
684 * the range [start, end] is inclusive.
685 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100686 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500687 */
David Sterba66b0c882017-10-31 16:30:47 +0100688int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800689 unsigned bits, int wake, int delete,
690 struct extent_state **cached_state,
691 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500692{
693 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400694 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500695 struct extent_state *prealloc = NULL;
696 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400697 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500698 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000699 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500700
Josef Bacika5dee372013-12-13 10:02:44 -0500701 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +0800702 trace_btrfs_clear_extent_bit(tree, start, end - start + 1, bits);
David Sterba8d599ae2013-04-30 15:22:23 +0000703
Josef Bacik7ee9e442013-06-21 16:37:03 -0400704 if (bits & EXTENT_DELALLOC)
705 bits |= EXTENT_NORESERVE;
706
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400707 if (delete)
708 bits |= ~EXTENT_CTLBITS;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400709
Nikolay Borisov88826792019-03-14 15:28:31 +0200710 if (bits & (EXTENT_LOCKED | EXTENT_BOUNDARY))
Josef Bacik2ac55d42010-02-03 19:33:23 +0000711 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500712again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800713 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000714 /*
715 * Don't care for allocation failure here because we might end
716 * up not needing the pre-allocated extent state at all, which
717 * is the case if we only have in the tree extent states that
718 * cover our input range and don't cover too any other range.
719 * If we end up needing a new extent state we allocate it later.
720 */
Chris Masond1310b22008-01-24 16:13:08 -0500721 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500722 }
723
Chris Masoncad321a2008-12-17 14:51:42 -0500724 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400725 if (cached_state) {
726 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000727
728 if (clear) {
729 *cached_state = NULL;
730 cached_state = NULL;
731 }
732
Filipe Manana27a35072014-07-06 20:09:59 +0100733 if (cached && extent_state_in_tree(cached) &&
734 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000735 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200736 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400737 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400738 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400739 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000740 if (clear)
741 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400742 }
Chris Masond1310b22008-01-24 16:13:08 -0500743 /*
744 * this search will find the extents that end after
745 * our range starts
746 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500747 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500748 if (!node)
749 goto out;
750 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400751hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500752 if (state->start > end)
753 goto out;
754 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400755 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500756
Liu Bo04493142012-02-16 18:34:37 +0800757 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800758 if (!(state->state & bits)) {
759 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800760 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800761 }
Liu Bo04493142012-02-16 18:34:37 +0800762
Chris Masond1310b22008-01-24 16:13:08 -0500763 /*
764 * | ---- desired range ---- |
765 * | state | or
766 * | ------------- state -------------- |
767 *
768 * We need to split the extent we found, and may flip
769 * bits on second half.
770 *
771 * If the extent we found extends past our range, we
772 * just split and search again. It'll get split again
773 * the next time though.
774 *
775 * If the extent we found is inside our range, we clear
776 * the desired bit on it.
777 */
778
779 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000780 prealloc = alloc_extent_state_atomic(prealloc);
781 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500782 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400783 if (err)
784 extent_io_tree_panic(tree, err);
785
Chris Masond1310b22008-01-24 16:13:08 -0500786 prealloc = NULL;
787 if (err)
788 goto out;
789 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800790 state = clear_state_bit(tree, state, &bits, wake,
791 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800792 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500793 }
794 goto search_again;
795 }
796 /*
797 * | ---- desired range ---- |
798 * | state |
799 * We need to split the extent, and clear the bit
800 * on the first half
801 */
802 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000803 prealloc = alloc_extent_state_atomic(prealloc);
804 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500805 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400806 if (err)
807 extent_io_tree_panic(tree, err);
808
Chris Masond1310b22008-01-24 16:13:08 -0500809 if (wake)
810 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400811
Qu Wenruofefdc552015-10-12 15:35:38 +0800812 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400813
Chris Masond1310b22008-01-24 16:13:08 -0500814 prealloc = NULL;
815 goto out;
816 }
Chris Mason42daec22009-09-23 19:51:09 -0400817
Qu Wenruofefdc552015-10-12 15:35:38 +0800818 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800819next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400820 if (last_end == (u64)-1)
821 goto out;
822 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800823 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800824 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500825
826search_again:
827 if (start > end)
828 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500829 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800830 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500831 cond_resched();
832 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200833
834out:
835 spin_unlock(&tree->lock);
836 if (prealloc)
837 free_extent_state(prealloc);
838
839 return 0;
840
Chris Masond1310b22008-01-24 16:13:08 -0500841}
Chris Masond1310b22008-01-24 16:13:08 -0500842
Jeff Mahoney143bede2012-03-01 14:56:26 +0100843static void wait_on_state(struct extent_io_tree *tree,
844 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500845 __releases(tree->lock)
846 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500847{
848 DEFINE_WAIT(wait);
849 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500850 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500851 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500852 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500853 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500854}
855
856/*
857 * waits for one or more bits to clear on a range in the state tree.
858 * The range [start, end] is inclusive.
859 * The tree lock is taken by this function
860 */
David Sterba41074882013-04-29 13:38:46 +0000861static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
862 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500863{
864 struct extent_state *state;
865 struct rb_node *node;
866
Josef Bacika5dee372013-12-13 10:02:44 -0500867 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000868
Chris Masoncad321a2008-12-17 14:51:42 -0500869 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500870again:
871 while (1) {
872 /*
873 * this search will find all the extents that end after
874 * our range starts
875 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500876 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100877process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500878 if (!node)
879 break;
880
881 state = rb_entry(node, struct extent_state, rb_node);
882
883 if (state->start > end)
884 goto out;
885
886 if (state->state & bits) {
887 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200888 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500889 wait_on_state(tree, state);
890 free_extent_state(state);
891 goto again;
892 }
893 start = state->end + 1;
894
895 if (start > end)
896 break;
897
Filipe Mananac50d3e72014-03-31 14:53:25 +0100898 if (!cond_resched_lock(&tree->lock)) {
899 node = rb_next(node);
900 goto process_node;
901 }
Chris Masond1310b22008-01-24 16:13:08 -0500902 }
903out:
Chris Masoncad321a2008-12-17 14:51:42 -0500904 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500905}
Chris Masond1310b22008-01-24 16:13:08 -0500906
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000907static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500908 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800909 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500910{
David Sterba9ee49a042015-01-14 19:52:13 +0100911 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100912 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400913
Nikolay Borisove06a1fc2018-11-01 14:09:50 +0200914 if (tree->private_data && is_data_inode(tree->private_data))
915 btrfs_set_delalloc_extent(tree->private_data, state, bits);
916
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400917 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500918 u64 range = state->end - state->start + 1;
919 tree->dirty_bytes += range;
920 }
David Sterba57599c72018-03-01 17:56:34 +0100921 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
922 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400923 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500924}
925
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100926static void cache_state_if_flags(struct extent_state *state,
927 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100928 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400929{
930 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100931 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400932 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200933 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400934 }
935 }
936}
937
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100938static void cache_state(struct extent_state *state,
939 struct extent_state **cached_ptr)
940{
941 return cache_state_if_flags(state, cached_ptr,
Nikolay Borisov88826792019-03-14 15:28:31 +0200942 EXTENT_LOCKED | EXTENT_BOUNDARY);
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100943}
944
Chris Masond1310b22008-01-24 16:13:08 -0500945/*
Chris Mason1edbb732009-09-02 13:24:36 -0400946 * set some bits on a range in the tree. This may require allocations or
947 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500948 *
Chris Mason1edbb732009-09-02 13:24:36 -0400949 * If any of the exclusive bits are set, this will fail with -EEXIST if some
950 * part of the range already has the desired bits set. The start of the
951 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500952 *
Chris Mason1edbb732009-09-02 13:24:36 -0400953 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500954 */
Chris Mason1edbb732009-09-02 13:24:36 -0400955
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100956static int __must_check
957__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100958 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000959 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800960 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500961{
962 struct extent_state *state;
963 struct extent_state *prealloc = NULL;
964 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000965 struct rb_node **p;
966 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500967 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500968 u64 last_start;
969 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400970
Josef Bacika5dee372013-12-13 10:02:44 -0500971 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +0800972 trace_btrfs_set_extent_bit(tree, start, end - start + 1, bits);
David Sterba8d599ae2013-04-30 15:22:23 +0000973
Chris Masond1310b22008-01-24 16:13:08 -0500974again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800975 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200976 /*
977 * Don't care for allocation failure here because we might end
978 * up not needing the pre-allocated extent state at all, which
979 * is the case if we only have in the tree extent states that
980 * cover our input range and don't cover too any other range.
981 * If we end up needing a new extent state we allocate it later.
982 */
Chris Masond1310b22008-01-24 16:13:08 -0500983 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500984 }
985
Chris Masoncad321a2008-12-17 14:51:42 -0500986 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400987 if (cached_state && *cached_state) {
988 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400989 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100990 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400991 node = &state->rb_node;
992 goto hit_next;
993 }
994 }
Chris Masond1310b22008-01-24 16:13:08 -0500995 /*
996 * this search will find all the extents that end after
997 * our range starts.
998 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000999 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -05001000 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +00001001 prealloc = alloc_extent_state_atomic(prealloc);
1002 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001003 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001004 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001005 if (err)
1006 extent_io_tree_panic(tree, err);
1007
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001008 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001009 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001010 goto out;
1011 }
Chris Masond1310b22008-01-24 16:13:08 -05001012 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -04001013hit_next:
Chris Masond1310b22008-01-24 16:13:08 -05001014 last_start = state->start;
1015 last_end = state->end;
1016
1017 /*
1018 * | ---- desired range ---- |
1019 * | state |
1020 *
1021 * Just lock what we found and keep going
1022 */
1023 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001024 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001025 *failed_start = state->start;
1026 err = -EEXIST;
1027 goto out;
1028 }
Chris Mason42daec22009-09-23 19:51:09 -04001029
Qu Wenruod38ed272015-10-12 14:53:37 +08001030 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001031 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001032 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -04001033 if (last_end == (u64)-1)
1034 goto out;
1035 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001036 state = next_state(state);
1037 if (start < end && state && state->start == start &&
1038 !need_resched())
1039 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -05001040 goto search_again;
1041 }
1042
1043 /*
1044 * | ---- desired range ---- |
1045 * | state |
1046 * or
1047 * | ------------- state -------------- |
1048 *
1049 * We need to split the extent we found, and may flip bits on
1050 * second half.
1051 *
1052 * If the extent we found extends past our
1053 * range, we just split and search again. It'll get split
1054 * again the next time though.
1055 *
1056 * If the extent we found is inside our range, we set the
1057 * desired bit on it.
1058 */
1059 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -04001060 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001061 *failed_start = start;
1062 err = -EEXIST;
1063 goto out;
1064 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001065
1066 prealloc = alloc_extent_state_atomic(prealloc);
1067 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001068 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001069 if (err)
1070 extent_io_tree_panic(tree, err);
1071
Chris Masond1310b22008-01-24 16:13:08 -05001072 prealloc = NULL;
1073 if (err)
1074 goto out;
1075 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001076 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001077 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001078 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -04001079 if (last_end == (u64)-1)
1080 goto out;
1081 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001082 state = next_state(state);
1083 if (start < end && state && state->start == start &&
1084 !need_resched())
1085 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -05001086 }
1087 goto search_again;
1088 }
1089 /*
1090 * | ---- desired range ---- |
1091 * | state | or | state |
1092 *
1093 * There's a hole, we need to insert something in it and
1094 * ignore the extent we found.
1095 */
1096 if (state->start > start) {
1097 u64 this_end;
1098 if (end < last_start)
1099 this_end = end;
1100 else
Chris Masond3977122009-01-05 21:25:51 -05001101 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +00001102
1103 prealloc = alloc_extent_state_atomic(prealloc);
1104 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001105
1106 /*
1107 * Avoid to free 'prealloc' if it can be merged with
1108 * the later extent.
1109 */
Chris Masond1310b22008-01-24 16:13:08 -05001110 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001111 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001112 if (err)
1113 extent_io_tree_panic(tree, err);
1114
Chris Mason2c64c532009-09-02 15:04:12 -04001115 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001116 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001117 start = this_end + 1;
1118 goto search_again;
1119 }
1120 /*
1121 * | ---- desired range ---- |
1122 * | state |
1123 * We need to split the extent, and set the bit
1124 * on the first half
1125 */
1126 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001127 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001128 *failed_start = start;
1129 err = -EEXIST;
1130 goto out;
1131 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001132
1133 prealloc = alloc_extent_state_atomic(prealloc);
1134 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001135 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001136 if (err)
1137 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001138
Qu Wenruod38ed272015-10-12 14:53:37 +08001139 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001140 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001141 merge_state(tree, prealloc);
1142 prealloc = NULL;
1143 goto out;
1144 }
1145
David Sterbab5a4ba142016-04-27 01:02:15 +02001146search_again:
1147 if (start > end)
1148 goto out;
1149 spin_unlock(&tree->lock);
1150 if (gfpflags_allow_blocking(mask))
1151 cond_resched();
1152 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001153
1154out:
Chris Masoncad321a2008-12-17 14:51:42 -05001155 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001156 if (prealloc)
1157 free_extent_state(prealloc);
1158
1159 return err;
1160
Chris Masond1310b22008-01-24 16:13:08 -05001161}
Chris Masond1310b22008-01-24 16:13:08 -05001162
David Sterba41074882013-04-29 13:38:46 +00001163int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001164 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001165 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001166{
1167 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001168 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001169}
1170
1171
Josef Bacik462d6fa2011-09-26 13:56:12 -04001172/**
Liu Bo10983f22012-07-11 15:26:19 +08001173 * convert_extent_bit - convert all bits in a given range from one bit to
1174 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001175 * @tree: the io tree to search
1176 * @start: the start offset in bytes
1177 * @end: the end offset in bytes (inclusive)
1178 * @bits: the bits to set in this range
1179 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001180 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001181 *
1182 * This will go through and set bits for the given range. If any states exist
1183 * already in this range they are set with the given bit and cleared of the
1184 * clear_bits. This is only meant to be used by things that are mergeable, ie
1185 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1186 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001187 *
1188 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001189 */
1190int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001191 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001192 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001193{
1194 struct extent_state *state;
1195 struct extent_state *prealloc = NULL;
1196 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001197 struct rb_node **p;
1198 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001199 int err = 0;
1200 u64 last_start;
1201 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001202 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001203
Josef Bacika5dee372013-12-13 10:02:44 -05001204 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +08001205 trace_btrfs_convert_extent_bit(tree, start, end - start + 1, bits,
1206 clear_bits);
David Sterba8d599ae2013-04-30 15:22:23 +00001207
Josef Bacik462d6fa2011-09-26 13:56:12 -04001208again:
David Sterba210aa272016-04-26 23:54:39 +02001209 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001210 /*
1211 * Best effort, don't worry if extent state allocation fails
1212 * here for the first iteration. We might have a cached state
1213 * that matches exactly the target range, in which case no
1214 * extent state allocations are needed. We'll only know this
1215 * after locking the tree.
1216 */
David Sterba210aa272016-04-26 23:54:39 +02001217 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001218 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001219 return -ENOMEM;
1220 }
1221
1222 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001223 if (cached_state && *cached_state) {
1224 state = *cached_state;
1225 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001226 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001227 node = &state->rb_node;
1228 goto hit_next;
1229 }
1230 }
1231
Josef Bacik462d6fa2011-09-26 13:56:12 -04001232 /*
1233 * this search will find all the extents that end after
1234 * our range starts.
1235 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001236 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001237 if (!node) {
1238 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001239 if (!prealloc) {
1240 err = -ENOMEM;
1241 goto out;
1242 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001243 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001244 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001245 if (err)
1246 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001247 cache_state(prealloc, cached_state);
1248 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001249 goto out;
1250 }
1251 state = rb_entry(node, struct extent_state, rb_node);
1252hit_next:
1253 last_start = state->start;
1254 last_end = state->end;
1255
1256 /*
1257 * | ---- desired range ---- |
1258 * | state |
1259 *
1260 * Just lock what we found and keep going
1261 */
1262 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001263 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001264 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001265 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001266 if (last_end == (u64)-1)
1267 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001268 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001269 if (start < end && state && state->start == start &&
1270 !need_resched())
1271 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001272 goto search_again;
1273 }
1274
1275 /*
1276 * | ---- desired range ---- |
1277 * | state |
1278 * or
1279 * | ------------- state -------------- |
1280 *
1281 * We need to split the extent we found, and may flip bits on
1282 * second half.
1283 *
1284 * If the extent we found extends past our
1285 * range, we just split and search again. It'll get split
1286 * again the next time though.
1287 *
1288 * If the extent we found is inside our range, we set the
1289 * desired bit on it.
1290 */
1291 if (state->start < start) {
1292 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001293 if (!prealloc) {
1294 err = -ENOMEM;
1295 goto out;
1296 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001297 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001298 if (err)
1299 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001300 prealloc = NULL;
1301 if (err)
1302 goto out;
1303 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001304 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001305 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001306 state = clear_state_bit(tree, state, &clear_bits, 0,
1307 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001308 if (last_end == (u64)-1)
1309 goto out;
1310 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001311 if (start < end && state && state->start == start &&
1312 !need_resched())
1313 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001314 }
1315 goto search_again;
1316 }
1317 /*
1318 * | ---- desired range ---- |
1319 * | state | or | state |
1320 *
1321 * There's a hole, we need to insert something in it and
1322 * ignore the extent we found.
1323 */
1324 if (state->start > start) {
1325 u64 this_end;
1326 if (end < last_start)
1327 this_end = end;
1328 else
1329 this_end = last_start - 1;
1330
1331 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001332 if (!prealloc) {
1333 err = -ENOMEM;
1334 goto out;
1335 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001336
1337 /*
1338 * Avoid to free 'prealloc' if it can be merged with
1339 * the later extent.
1340 */
1341 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001342 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001343 if (err)
1344 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001345 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001346 prealloc = NULL;
1347 start = this_end + 1;
1348 goto search_again;
1349 }
1350 /*
1351 * | ---- desired range ---- |
1352 * | state |
1353 * We need to split the extent, and set the bit
1354 * on the first half
1355 */
1356 if (state->start <= end && state->end > end) {
1357 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001358 if (!prealloc) {
1359 err = -ENOMEM;
1360 goto out;
1361 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001362
1363 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001364 if (err)
1365 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001366
Qu Wenruod38ed272015-10-12 14:53:37 +08001367 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001368 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001369 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001370 prealloc = NULL;
1371 goto out;
1372 }
1373
Josef Bacik462d6fa2011-09-26 13:56:12 -04001374search_again:
1375 if (start > end)
1376 goto out;
1377 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001378 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001379 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001380 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001381
1382out:
1383 spin_unlock(&tree->lock);
1384 if (prealloc)
1385 free_extent_state(prealloc);
1386
1387 return err;
1388}
1389
Chris Masond1310b22008-01-24 16:13:08 -05001390/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001391int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001392 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001393{
1394 /*
1395 * We don't support EXTENT_LOCKED yet, as current changeset will
1396 * record any bits changed, so for EXTENT_LOCKED case, it will
1397 * either fail with -EEXIST or changeset will record the whole
1398 * range.
1399 */
1400 BUG_ON(bits & EXTENT_LOCKED);
1401
David Sterba2c53b912016-04-26 23:54:39 +02001402 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001403 changeset);
1404}
1405
Nikolay Borisov4ca73652019-03-27 14:24:10 +02001406int set_extent_bits_nowait(struct extent_io_tree *tree, u64 start, u64 end,
1407 unsigned bits)
1408{
1409 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL,
1410 GFP_NOWAIT, NULL);
1411}
1412
Qu Wenruofefdc552015-10-12 15:35:38 +08001413int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1414 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001415 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001416{
1417 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001418 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001419}
1420
Qu Wenruofefdc552015-10-12 15:35:38 +08001421int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001422 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001423{
1424 /*
1425 * Don't support EXTENT_LOCKED case, same reason as
1426 * set_record_extent_bits().
1427 */
1428 BUG_ON(bits & EXTENT_LOCKED);
1429
David Sterbaf734c442016-04-26 23:54:39 +02001430 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001431 changeset);
1432}
1433
Chris Masond352ac62008-09-29 15:18:18 -04001434/*
1435 * either insert or lock state struct between start and end use mask to tell
1436 * us if waiting is desired.
1437 */
Chris Mason1edbb732009-09-02 13:24:36 -04001438int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001439 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001440{
1441 int err;
1442 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001443
Chris Masond1310b22008-01-24 16:13:08 -05001444 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001445 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001446 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001447 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001448 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001449 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1450 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001451 } else
Chris Masond1310b22008-01-24 16:13:08 -05001452 break;
Chris Masond1310b22008-01-24 16:13:08 -05001453 WARN_ON(start > end);
1454 }
1455 return err;
1456}
Chris Masond1310b22008-01-24 16:13:08 -05001457
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001458int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001459{
1460 int err;
1461 u64 failed_start;
1462
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001463 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001464 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001465 if (err == -EEXIST) {
1466 if (failed_start > start)
1467 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001468 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001469 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001470 }
Josef Bacik25179202008-10-29 14:49:05 -04001471 return 1;
1472}
Josef Bacik25179202008-10-29 14:49:05 -04001473
David Sterbabd1fa4f2015-12-03 13:08:59 +01001474void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001475{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001476 unsigned long index = start >> PAGE_SHIFT;
1477 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001478 struct page *page;
1479
1480 while (index <= end_index) {
1481 page = find_get_page(inode->i_mapping, index);
1482 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1483 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001484 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001485 index++;
1486 }
Chris Mason4adaa612013-03-26 13:07:00 -04001487}
1488
David Sterbaf6311572015-12-03 13:08:59 +01001489void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001490{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001491 unsigned long index = start >> PAGE_SHIFT;
1492 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001493 struct page *page;
1494
1495 while (index <= end_index) {
1496 page = find_get_page(inode->i_mapping, index);
1497 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001498 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001499 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001500 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001501 index++;
1502 }
Chris Mason4adaa612013-03-26 13:07:00 -04001503}
1504
Chris Masond352ac62008-09-29 15:18:18 -04001505/* find the first state struct with 'bits' set after 'start', and
1506 * return it. tree->lock must be held. NULL will returned if
1507 * nothing was found after 'start'
1508 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001509static struct extent_state *
1510find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001511 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001512{
1513 struct rb_node *node;
1514 struct extent_state *state;
1515
1516 /*
1517 * this search will find all the extents that end after
1518 * our range starts.
1519 */
1520 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001521 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001522 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001523
Chris Masond3977122009-01-05 21:25:51 -05001524 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001525 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001526 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001527 return state;
Chris Masond3977122009-01-05 21:25:51 -05001528
Chris Masond7fc6402008-02-18 12:12:38 -05001529 node = rb_next(node);
1530 if (!node)
1531 break;
1532 }
1533out:
1534 return NULL;
1535}
Chris Masond7fc6402008-02-18 12:12:38 -05001536
Chris Masond352ac62008-09-29 15:18:18 -04001537/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001538 * find the first offset in the io tree with 'bits' set. zero is
1539 * returned if we find something, and *start_ret and *end_ret are
1540 * set to reflect the state struct that was found.
1541 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001542 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001543 */
1544int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001545 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001546 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001547{
1548 struct extent_state *state;
1549 int ret = 1;
1550
1551 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001552 if (cached_state && *cached_state) {
1553 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001554 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001555 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001556 if (state->state & bits)
1557 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001558 }
1559 free_extent_state(*cached_state);
1560 *cached_state = NULL;
1561 goto out;
1562 }
1563 free_extent_state(*cached_state);
1564 *cached_state = NULL;
1565 }
1566
Xiao Guangrong69261c42011-07-14 03:19:45 +00001567 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001568got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001569 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001570 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001571 *start_ret = state->start;
1572 *end_ret = state->end;
1573 ret = 0;
1574 }
Josef Bacike6138872012-09-27 17:07:30 -04001575out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001576 spin_unlock(&tree->lock);
1577 return ret;
1578}
1579
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001580/**
Josef Bacik41a2ee72020-01-17 09:02:21 -05001581 * find_contiguous_extent_bit: find a contiguous area of bits
1582 * @tree - io tree to check
1583 * @start - offset to start the search from
1584 * @start_ret - the first offset we found with the bits set
1585 * @end_ret - the final contiguous range of the bits that were set
1586 * @bits - bits to look for
1587 *
1588 * set_extent_bit and clear_extent_bit can temporarily split contiguous ranges
1589 * to set bits appropriately, and then merge them again. During this time it
1590 * will drop the tree->lock, so use this helper if you want to find the actual
1591 * contiguous area for given bits. We will search to the first bit we find, and
1592 * then walk down the tree until we find a non-contiguous area. The area
1593 * returned will be the full contiguous area with the bits set.
1594 */
1595int find_contiguous_extent_bit(struct extent_io_tree *tree, u64 start,
1596 u64 *start_ret, u64 *end_ret, unsigned bits)
1597{
1598 struct extent_state *state;
1599 int ret = 1;
1600
1601 spin_lock(&tree->lock);
1602 state = find_first_extent_bit_state(tree, start, bits);
1603 if (state) {
1604 *start_ret = state->start;
1605 *end_ret = state->end;
1606 while ((state = next_state(state)) != NULL) {
1607 if (state->start > (*end_ret + 1))
1608 break;
1609 *end_ret = state->end;
1610 }
1611 ret = 0;
1612 }
1613 spin_unlock(&tree->lock);
1614 return ret;
1615}
1616
1617/**
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001618 * find_first_clear_extent_bit - find the first range that has @bits not set.
1619 * This range could start before @start.
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001620 *
1621 * @tree - the tree to search
1622 * @start - the offset at/after which the found extent should start
1623 * @start_ret - records the beginning of the range
1624 * @end_ret - records the end of the range (inclusive)
1625 * @bits - the set of bits which must be unset
1626 *
1627 * Since unallocated range is also considered one which doesn't have the bits
1628 * set it's possible that @end_ret contains -1, this happens in case the range
1629 * spans (last_range_end, end of device]. In this case it's up to the caller to
1630 * trim @end_ret to the appropriate size.
1631 */
1632void find_first_clear_extent_bit(struct extent_io_tree *tree, u64 start,
1633 u64 *start_ret, u64 *end_ret, unsigned bits)
1634{
1635 struct extent_state *state;
1636 struct rb_node *node, *prev = NULL, *next;
1637
1638 spin_lock(&tree->lock);
1639
1640 /* Find first extent with bits cleared */
1641 while (1) {
1642 node = __etree_search(tree, start, &next, &prev, NULL, NULL);
Nikolay Borisov5750c372020-01-27 11:59:26 +02001643 if (!node && !next && !prev) {
1644 /*
1645 * Tree is completely empty, send full range and let
1646 * caller deal with it
1647 */
1648 *start_ret = 0;
1649 *end_ret = -1;
1650 goto out;
1651 } else if (!node && !next) {
1652 /*
1653 * We are past the last allocated chunk, set start at
1654 * the end of the last extent.
1655 */
1656 state = rb_entry(prev, struct extent_state, rb_node);
1657 *start_ret = state->end + 1;
1658 *end_ret = -1;
1659 goto out;
1660 } else if (!node) {
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001661 node = next;
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001662 }
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001663 /*
1664 * At this point 'node' either contains 'start' or start is
1665 * before 'node'
1666 */
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001667 state = rb_entry(node, struct extent_state, rb_node);
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001668
1669 if (in_range(start, state->start, state->end - state->start + 1)) {
1670 if (state->state & bits) {
1671 /*
1672 * |--range with bits sets--|
1673 * |
1674 * start
1675 */
1676 start = state->end + 1;
1677 } else {
1678 /*
1679 * 'start' falls within a range that doesn't
1680 * have the bits set, so take its start as
1681 * the beginning of the desired range
1682 *
1683 * |--range with bits cleared----|
1684 * |
1685 * start
1686 */
1687 *start_ret = state->start;
1688 break;
1689 }
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001690 } else {
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001691 /*
1692 * |---prev range---|---hole/unset---|---node range---|
1693 * |
1694 * start
1695 *
1696 * or
1697 *
1698 * |---hole/unset--||--first node--|
1699 * 0 |
1700 * start
1701 */
1702 if (prev) {
1703 state = rb_entry(prev, struct extent_state,
1704 rb_node);
1705 *start_ret = state->end + 1;
1706 } else {
1707 *start_ret = 0;
1708 }
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001709 break;
1710 }
1711 }
1712
1713 /*
1714 * Find the longest stretch from start until an entry which has the
1715 * bits set
1716 */
1717 while (1) {
1718 state = rb_entry(node, struct extent_state, rb_node);
1719 if (state->end >= start && !(state->state & bits)) {
1720 *end_ret = state->end;
1721 } else {
1722 *end_ret = state->start - 1;
1723 break;
1724 }
1725
1726 node = rb_next(node);
1727 if (!node)
1728 break;
1729 }
1730out:
1731 spin_unlock(&tree->lock);
1732}
1733
Xiao Guangrong69261c42011-07-14 03:19:45 +00001734/*
Chris Masond352ac62008-09-29 15:18:18 -04001735 * find a contiguous range of bytes in the file marked as delalloc, not
1736 * more than 'max_bytes'. start and end are used to return the range,
1737 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001738 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001739 */
Josef Bacik083e75e2019-09-23 10:05:20 -04001740bool btrfs_find_delalloc_range(struct extent_io_tree *tree, u64 *start,
1741 u64 *end, u64 max_bytes,
1742 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001743{
1744 struct rb_node *node;
1745 struct extent_state *state;
1746 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001747 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001748 u64 total_bytes = 0;
1749
Chris Masoncad321a2008-12-17 14:51:42 -05001750 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001751
Chris Masond1310b22008-01-24 16:13:08 -05001752 /*
1753 * this search will find all the extents that end after
1754 * our range starts.
1755 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001756 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001757 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001758 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001759 goto out;
1760 }
1761
Chris Masond3977122009-01-05 21:25:51 -05001762 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001763 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001764 if (found && (state->start != cur_start ||
1765 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001766 goto out;
1767 }
1768 if (!(state->state & EXTENT_DELALLOC)) {
1769 if (!found)
1770 *end = state->end;
1771 goto out;
1772 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001773 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001774 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001775 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001776 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001777 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001778 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001779 *end = state->end;
1780 cur_start = state->end + 1;
1781 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001782 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001783 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001784 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001785 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001786 break;
1787 }
1788out:
Chris Masoncad321a2008-12-17 14:51:42 -05001789 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001790 return found;
1791}
1792
Liu Boda2c7002017-02-10 16:41:05 +01001793static int __process_pages_contig(struct address_space *mapping,
1794 struct page *locked_page,
1795 pgoff_t start_index, pgoff_t end_index,
1796 unsigned long page_ops, pgoff_t *index_ret);
1797
Jeff Mahoney143bede2012-03-01 14:56:26 +01001798static noinline void __unlock_for_delalloc(struct inode *inode,
1799 struct page *locked_page,
1800 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001801{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001802 unsigned long index = start >> PAGE_SHIFT;
1803 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001804
Liu Bo76c00212017-02-10 16:42:14 +01001805 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001806 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001807 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001808
Liu Bo76c00212017-02-10 16:42:14 +01001809 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1810 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001811}
1812
1813static noinline int lock_delalloc_pages(struct inode *inode,
1814 struct page *locked_page,
1815 u64 delalloc_start,
1816 u64 delalloc_end)
1817{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001818 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001819 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001820 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001821 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001822
Liu Bo76c00212017-02-10 16:42:14 +01001823 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001824 if (index == locked_page->index && index == end_index)
1825 return 0;
1826
Liu Bo76c00212017-02-10 16:42:14 +01001827 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1828 end_index, PAGE_LOCK, &index_ret);
1829 if (ret == -EAGAIN)
1830 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1831 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001832 return ret;
1833}
1834
1835/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001836 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1837 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001838 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001839 * Return: true if we find something
1840 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001841 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001842EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001843noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001844 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001845 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001846{
Goldwyn Rodrigues99780592019-06-21 10:02:54 -05001847 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Nikolay Borisov917aace2018-10-26 14:43:20 +03001848 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001849 u64 delalloc_start;
1850 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001851 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001852 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001853 int ret;
1854 int loops = 0;
1855
1856again:
1857 /* step one, find a bunch of delalloc bytes starting at start */
1858 delalloc_start = *start;
1859 delalloc_end = 0;
Josef Bacik083e75e2019-09-23 10:05:20 -04001860 found = btrfs_find_delalloc_range(tree, &delalloc_start, &delalloc_end,
1861 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001862 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001863 *start = delalloc_start;
1864 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001865 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001866 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001867 }
1868
1869 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001870 * start comes from the offset of locked_page. We have to lock
1871 * pages in order, so we can't process delalloc bytes before
1872 * locked_page
1873 */
Chris Masond3977122009-01-05 21:25:51 -05001874 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001875 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001876
1877 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001878 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001879 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001880 if (delalloc_end + 1 - delalloc_start > max_bytes)
1881 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001882
Chris Masonc8b97812008-10-29 14:49:59 -04001883 /* step two, lock all the pages after the page that has start */
1884 ret = lock_delalloc_pages(inode, locked_page,
1885 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001886 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001887 if (ret == -EAGAIN) {
1888 /* some of the pages are gone, lets avoid looping by
1889 * shortening the size of the delalloc range we're searching
1890 */
Chris Mason9655d292009-09-02 15:22:30 -04001891 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001892 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001893 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001894 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001895 loops = 1;
1896 goto again;
1897 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001898 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001899 goto out_failed;
1900 }
1901 }
Chris Masonc8b97812008-10-29 14:49:59 -04001902
1903 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001904 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001905
1906 /* then test to make sure it is all still delalloc */
1907 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001908 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001909 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001910 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001911 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001912 __unlock_for_delalloc(inode, locked_page,
1913 delalloc_start, delalloc_end);
1914 cond_resched();
1915 goto again;
1916 }
Chris Mason9655d292009-09-02 15:22:30 -04001917 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001918 *start = delalloc_start;
1919 *end = delalloc_end;
1920out_failed:
1921 return found;
1922}
1923
Liu Boda2c7002017-02-10 16:41:05 +01001924static int __process_pages_contig(struct address_space *mapping,
1925 struct page *locked_page,
1926 pgoff_t start_index, pgoff_t end_index,
1927 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001928{
Liu Bo873695b2017-02-02 17:49:22 -08001929 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001930 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001931 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001932 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001933 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001934 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001935 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001936
Liu Boda2c7002017-02-10 16:41:05 +01001937 if (page_ops & PAGE_LOCK) {
1938 ASSERT(page_ops == PAGE_LOCK);
1939 ASSERT(index_ret && *index_ret == start_index);
1940 }
1941
Filipe Manana704de492014-10-06 22:14:22 +01001942 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001943 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001944
Chris Masond3977122009-01-05 21:25:51 -05001945 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001946 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001947 min_t(unsigned long,
1948 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001949 if (ret == 0) {
1950 /*
1951 * Only if we're going to lock these pages,
1952 * can we find nothing at @index.
1953 */
1954 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001955 err = -EAGAIN;
1956 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001957 }
Chris Mason8b62b722009-09-02 16:53:46 -04001958
Liu Boda2c7002017-02-10 16:41:05 +01001959 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001960 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001961 SetPagePrivate2(pages[i]);
1962
Chris Mason1d53c9e2019-07-10 12:28:16 -07001963 if (locked_page && pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001964 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001965 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001966 continue;
1967 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001968 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001969 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001970 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001971 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001972 if (page_ops & PAGE_SET_ERROR)
1973 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001974 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001975 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001976 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001977 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001978 if (page_ops & PAGE_LOCK) {
1979 lock_page(pages[i]);
1980 if (!PageDirty(pages[i]) ||
1981 pages[i]->mapping != mapping) {
1982 unlock_page(pages[i]);
1983 put_page(pages[i]);
1984 err = -EAGAIN;
1985 goto out;
1986 }
1987 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001988 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001989 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001990 }
1991 nr_pages -= ret;
1992 index += ret;
1993 cond_resched();
1994 }
Liu Boda2c7002017-02-10 16:41:05 +01001995out:
1996 if (err && index_ret)
1997 *index_ret = start_index + pages_locked - 1;
1998 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001999}
Chris Masonc8b97812008-10-29 14:49:59 -04002000
Liu Bo873695b2017-02-02 17:49:22 -08002001void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
Nikolay Borisov74e91942019-07-17 16:18:16 +03002002 struct page *locked_page,
2003 unsigned clear_bits,
2004 unsigned long page_ops)
Liu Bo873695b2017-02-02 17:49:22 -08002005{
2006 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01002007 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08002008
2009 __process_pages_contig(inode->i_mapping, locked_page,
2010 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01002011 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08002012}
2013
Chris Masond352ac62008-09-29 15:18:18 -04002014/*
2015 * count the number of bytes in the tree that have a given bit(s)
2016 * set. This can be fairly slow, except for EXTENT_DIRTY which is
2017 * cached. The total number found is returned.
2018 */
Chris Masond1310b22008-01-24 16:13:08 -05002019u64 count_range_bits(struct extent_io_tree *tree,
2020 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01002021 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05002022{
2023 struct rb_node *node;
2024 struct extent_state *state;
2025 u64 cur_start = *start;
2026 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05002027 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002028 int found = 0;
2029
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302030 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05002031 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05002032
Chris Masoncad321a2008-12-17 14:51:42 -05002033 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002034 if (cur_start == 0 && bits == EXTENT_DIRTY) {
2035 total_bytes = tree->dirty_bytes;
2036 goto out;
2037 }
2038 /*
2039 * this search will find all the extents that end after
2040 * our range starts.
2041 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002042 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05002043 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05002044 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05002045
Chris Masond3977122009-01-05 21:25:51 -05002046 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05002047 state = rb_entry(node, struct extent_state, rb_node);
2048 if (state->start > search_end)
2049 break;
Chris Masonec29ed52011-02-23 16:23:20 -05002050 if (contig && found && state->start > last + 1)
2051 break;
2052 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05002053 total_bytes += min(search_end, state->end) + 1 -
2054 max(cur_start, state->start);
2055 if (total_bytes >= max_bytes)
2056 break;
2057 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04002058 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05002059 found = 1;
2060 }
Chris Masonec29ed52011-02-23 16:23:20 -05002061 last = state->end;
2062 } else if (contig && found) {
2063 break;
Chris Masond1310b22008-01-24 16:13:08 -05002064 }
2065 node = rb_next(node);
2066 if (!node)
2067 break;
2068 }
2069out:
Chris Masoncad321a2008-12-17 14:51:42 -05002070 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002071 return total_bytes;
2072}
Christoph Hellwigb2950862008-12-02 09:54:17 -05002073
Chris Masond352ac62008-09-29 15:18:18 -04002074/*
2075 * set the private field for a given byte offset in the tree. If there isn't
2076 * an extent_state there already, this does nothing.
2077 */
Josef Bacikb3f167a2019-09-23 10:05:21 -04002078int set_state_failrec(struct extent_io_tree *tree, u64 start,
2079 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05002080{
2081 struct rb_node *node;
2082 struct extent_state *state;
2083 int ret = 0;
2084
Chris Masoncad321a2008-12-17 14:51:42 -05002085 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002086 /*
2087 * this search will find all the extents that end after
2088 * our range starts.
2089 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002090 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04002091 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05002092 ret = -ENOENT;
2093 goto out;
2094 }
2095 state = rb_entry(node, struct extent_state, rb_node);
2096 if (state->start != start) {
2097 ret = -ENOENT;
2098 goto out;
2099 }
David Sterba47dc1962016-02-11 13:24:13 +01002100 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002101out:
Chris Masoncad321a2008-12-17 14:51:42 -05002102 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002103 return ret;
2104}
2105
Josef Bacikb3f167a2019-09-23 10:05:21 -04002106int get_state_failrec(struct extent_io_tree *tree, u64 start,
2107 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05002108{
2109 struct rb_node *node;
2110 struct extent_state *state;
2111 int ret = 0;
2112
Chris Masoncad321a2008-12-17 14:51:42 -05002113 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002114 /*
2115 * this search will find all the extents that end after
2116 * our range starts.
2117 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002118 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04002119 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05002120 ret = -ENOENT;
2121 goto out;
2122 }
2123 state = rb_entry(node, struct extent_state, rb_node);
2124 if (state->start != start) {
2125 ret = -ENOENT;
2126 goto out;
2127 }
David Sterba47dc1962016-02-11 13:24:13 +01002128 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002129out:
Chris Masoncad321a2008-12-17 14:51:42 -05002130 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002131 return ret;
2132}
2133
2134/*
2135 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05002136 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05002137 * has the bits set. Otherwise, 1 is returned if any bit in the
2138 * range is found set.
2139 */
2140int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01002141 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05002142{
2143 struct extent_state *state = NULL;
2144 struct rb_node *node;
2145 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002146
Chris Masoncad321a2008-12-17 14:51:42 -05002147 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002148 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002149 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002150 node = &cached->rb_node;
2151 else
2152 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002153 while (node && start <= end) {
2154 state = rb_entry(node, struct extent_state, rb_node);
2155
2156 if (filled && state->start > start) {
2157 bitset = 0;
2158 break;
2159 }
2160
2161 if (state->start > end)
2162 break;
2163
2164 if (state->state & bits) {
2165 bitset = 1;
2166 if (!filled)
2167 break;
2168 } else if (filled) {
2169 bitset = 0;
2170 break;
2171 }
Chris Mason46562ce2009-09-23 20:23:16 -04002172
2173 if (state->end == (u64)-1)
2174 break;
2175
Chris Masond1310b22008-01-24 16:13:08 -05002176 start = state->end + 1;
2177 if (start > end)
2178 break;
2179 node = rb_next(node);
2180 if (!node) {
2181 if (filled)
2182 bitset = 0;
2183 break;
2184 }
2185 }
Chris Masoncad321a2008-12-17 14:51:42 -05002186 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002187 return bitset;
2188}
Chris Masond1310b22008-01-24 16:13:08 -05002189
2190/*
2191 * helper function to set a given page up to date if all the
2192 * extents in the tree for that page are up to date
2193 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002194static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002195{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002196 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002197 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002198 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002199 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002200}
2201
Josef Bacik7870d082017-05-05 11:57:15 -04002202int free_io_failure(struct extent_io_tree *failure_tree,
2203 struct extent_io_tree *io_tree,
2204 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002205{
2206 int ret;
2207 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002208
David Sterba47dc1962016-02-11 13:24:13 +01002209 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002210 ret = clear_extent_bits(failure_tree, rec->start,
2211 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002212 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002213 if (ret)
2214 err = ret;
2215
Josef Bacik7870d082017-05-05 11:57:15 -04002216 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05002217 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002218 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05002219 if (ret && !err)
2220 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002221
2222 kfree(rec);
2223 return err;
2224}
2225
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002226/*
2227 * this bypasses the standard btrfs submit functions deliberately, as
2228 * the standard behavior is to write all copies in a raid setup. here we only
2229 * want to write the one bad copy. so we do the mapping for ourselves and issue
2230 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002231 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002232 * actually prevents the read that triggered the error from finishing.
2233 * currently, there can be no more than two copies of every data bit. thus,
2234 * exactly one rewrite is required.
2235 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04002236int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
2237 u64 length, u64 logical, struct page *page,
2238 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002239{
2240 struct bio *bio;
2241 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002242 u64 map_length = 0;
2243 u64 sector;
2244 struct btrfs_bio *bbio = NULL;
2245 int ret;
2246
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002247 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002248 BUG_ON(!mirror_num);
2249
David Sterbac5e4c3d2017-06-12 17:29:41 +02002250 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002251 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002252 map_length = length;
2253
Filipe Mananab5de8d02016-05-27 22:21:27 +01002254 /*
2255 * Avoid races with device replace and make sure our bbio has devices
2256 * associated to its stripes that don't go away while we are doing the
2257 * read repair operation.
2258 */
2259 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002260 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002261 /*
2262 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2263 * to update all raid stripes, but here we just want to correct
2264 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2265 * stripe's dev and sector.
2266 */
2267 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2268 &map_length, &bbio, 0);
2269 if (ret) {
2270 btrfs_bio_counter_dec(fs_info);
2271 bio_put(bio);
2272 return -EIO;
2273 }
2274 ASSERT(bbio->mirror_num == 1);
2275 } else {
2276 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2277 &map_length, &bbio, mirror_num);
2278 if (ret) {
2279 btrfs_bio_counter_dec(fs_info);
2280 bio_put(bio);
2281 return -EIO;
2282 }
2283 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002284 }
Liu Boc7253282017-03-29 10:53:58 -07002285
2286 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002287 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002288 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002289 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002290 if (!dev || !dev->bdev ||
2291 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002292 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002293 bio_put(bio);
2294 return -EIO;
2295 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002296 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002297 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002298 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002299
Mike Christie4e49ea42016-06-05 14:31:41 -05002300 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002301 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002302 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002303 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002304 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002305 return -EIO;
2306 }
2307
David Sterbab14af3b2015-10-08 10:43:10 +02002308 btrfs_info_rl_in_rcu(fs_info,
2309 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002310 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002311 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002312 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002313 bio_put(bio);
2314 return 0;
2315}
2316
David Sterba20a1fbf92019-03-20 11:23:44 +01002317int btrfs_repair_eb_io_failure(struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002318{
David Sterba20a1fbf92019-03-20 11:23:44 +01002319 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacikea466792012-03-26 21:57:36 -04002320 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002321 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002322 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002323
David Howellsbc98a422017-07-17 08:45:34 +01002324 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002325 return -EROFS;
2326
Josef Bacikea466792012-03-26 21:57:36 -04002327 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002328 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002329
Josef Bacik6ec656b2017-05-05 11:57:14 -04002330 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002331 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002332 if (ret)
2333 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002334 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002335 }
2336
2337 return ret;
2338}
2339
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002340/*
2341 * each time an IO finishes, we do a fast check in the IO failure tree
2342 * to see if we need to process or clean up an io_failure_record
2343 */
Josef Bacik7870d082017-05-05 11:57:15 -04002344int clean_io_failure(struct btrfs_fs_info *fs_info,
2345 struct extent_io_tree *failure_tree,
2346 struct extent_io_tree *io_tree, u64 start,
2347 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002348{
2349 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002350 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002351 struct extent_state *state;
2352 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002353 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002354
2355 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002356 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2357 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002358 if (!ret)
2359 return 0;
2360
Josef Bacik7870d082017-05-05 11:57:15 -04002361 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002362 if (ret)
2363 return 0;
2364
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002365 BUG_ON(!failrec->this_mirror);
2366
2367 if (failrec->in_validation) {
2368 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002369 btrfs_debug(fs_info,
2370 "clean_io_failure: freeing dummy error at %llu",
2371 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002372 goto out;
2373 }
David Howellsbc98a422017-07-17 08:45:34 +01002374 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002375 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002376
Josef Bacik7870d082017-05-05 11:57:15 -04002377 spin_lock(&io_tree->lock);
2378 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002379 failrec->start,
2380 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002381 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002382
Miao Xie883d0de2013-07-25 19:22:35 +08002383 if (state && state->start <= failrec->start &&
2384 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002385 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2386 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002387 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002388 repair_io_failure(fs_info, ino, start, failrec->len,
2389 failrec->logical, page, pg_offset,
2390 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002391 }
2392 }
2393
2394out:
Josef Bacik7870d082017-05-05 11:57:15 -04002395 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002396
Miao Xie454ff3d2014-09-12 18:43:58 +08002397 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002398}
2399
Miao Xief6124962014-09-12 18:44:04 +08002400/*
2401 * Can be called when
2402 * - hold extent lock
2403 * - under ordered extent
2404 * - the inode is freeing
2405 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002406void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002407{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002408 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002409 struct io_failure_record *failrec;
2410 struct extent_state *state, *next;
2411
2412 if (RB_EMPTY_ROOT(&failure_tree->state))
2413 return;
2414
2415 spin_lock(&failure_tree->lock);
2416 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2417 while (state) {
2418 if (state->start > end)
2419 break;
2420
2421 ASSERT(state->end <= end);
2422
2423 next = next_state(state);
2424
David Sterba47dc1962016-02-11 13:24:13 +01002425 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002426 free_extent_state(state);
2427 kfree(failrec);
2428
2429 state = next;
2430 }
2431 spin_unlock(&failure_tree->lock);
2432}
2433
Miao Xie2fe63032014-09-12 18:43:59 +08002434int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002435 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002436{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002437 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002438 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002439 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002440 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2441 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2442 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002443 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002444 u64 logical;
2445
David Sterba47dc1962016-02-11 13:24:13 +01002446 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002447 if (ret) {
2448 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2449 if (!failrec)
2450 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002451
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002452 failrec->start = start;
2453 failrec->len = end - start + 1;
2454 failrec->this_mirror = 0;
2455 failrec->bio_flags = 0;
2456 failrec->in_validation = 0;
2457
2458 read_lock(&em_tree->lock);
2459 em = lookup_extent_mapping(em_tree, start, failrec->len);
2460 if (!em) {
2461 read_unlock(&em_tree->lock);
2462 kfree(failrec);
2463 return -EIO;
2464 }
2465
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002466 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002467 free_extent_map(em);
2468 em = NULL;
2469 }
2470 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002471 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002472 kfree(failrec);
2473 return -EIO;
2474 }
Miao Xie2fe63032014-09-12 18:43:59 +08002475
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002476 logical = start - em->start;
2477 logical = em->block_start + logical;
2478 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2479 logical = em->block_start;
2480 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2481 extent_set_compress_type(&failrec->bio_flags,
2482 em->compress_type);
2483 }
Miao Xie2fe63032014-09-12 18:43:59 +08002484
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002485 btrfs_debug(fs_info,
2486 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2487 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002488
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002489 failrec->logical = logical;
2490 free_extent_map(em);
2491
2492 /* set the bits in the private failure tree */
2493 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002494 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002495 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002496 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002497 /* set the bits in the inode's tree */
2498 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002499 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002500 if (ret < 0) {
2501 kfree(failrec);
2502 return ret;
2503 }
2504 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002505 btrfs_debug(fs_info,
2506 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2507 failrec->logical, failrec->start, failrec->len,
2508 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002509 /*
2510 * when data can be on disk more than twice, add to failrec here
2511 * (e.g. with a list for failed_mirror) to make
2512 * clean_io_failure() clean all those errors at once.
2513 */
2514 }
Miao Xie2fe63032014-09-12 18:43:59 +08002515
2516 *failrec_ret = failrec;
2517
2518 return 0;
2519}
2520
Ming Leia0b60d72017-12-18 20:22:11 +08002521bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002522 struct io_failure_record *failrec, int failed_mirror)
2523{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002524 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002525 int num_copies;
2526
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002527 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002528 if (num_copies == 1) {
2529 /*
2530 * we only have a single copy of the data, so don't bother with
2531 * all the retry and error correction code that follows. no
2532 * matter what the error is, it is very likely to persist.
2533 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002534 btrfs_debug(fs_info,
2535 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2536 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002537 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002538 }
2539
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002540 /*
2541 * there are two premises:
2542 * a) deliver good data to the caller
2543 * b) correct the bad sectors on disk
2544 */
Ming Leia0b60d72017-12-18 20:22:11 +08002545 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002546 /*
2547 * to fulfill b), we need to know the exact failing sectors, as
2548 * we don't want to rewrite any more than the failed ones. thus,
2549 * we need separate read requests for the failed bio
2550 *
2551 * if the following BUG_ON triggers, our validation request got
2552 * merged. we need separate requests for our algorithm to work.
2553 */
2554 BUG_ON(failrec->in_validation);
2555 failrec->in_validation = 1;
2556 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002557 } else {
2558 /*
2559 * we're ready to fulfill a) and b) alongside. get a good copy
2560 * of the failed sector and if we succeed, we have setup
2561 * everything for repair_io_failure to do the rest for us.
2562 */
2563 if (failrec->in_validation) {
2564 BUG_ON(failrec->this_mirror != failed_mirror);
2565 failrec->in_validation = 0;
2566 failrec->this_mirror = 0;
2567 }
2568 failrec->failed_mirror = failed_mirror;
2569 failrec->this_mirror++;
2570 if (failrec->this_mirror == failed_mirror)
2571 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002572 }
2573
Miao Xiefacc8a222013-07-25 19:22:34 +08002574 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002575 btrfs_debug(fs_info,
2576 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2577 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002578 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002579 }
2580
Liu Boc3cfb652017-07-13 15:00:50 -07002581 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002582}
2583
2584
2585struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2586 struct io_failure_record *failrec,
2587 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002588 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002589{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002590 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002591 struct bio *bio;
2592 struct btrfs_io_bio *btrfs_failed_bio;
2593 struct btrfs_io_bio *btrfs_bio;
2594
David Sterbac5e4c3d2017-06-12 17:29:41 +02002595 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002596 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002597 bio->bi_iter.bi_sector = failrec->logical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002598 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002599 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002600
Miao Xiefacc8a222013-07-25 19:22:34 +08002601 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2602 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002603 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2604
2605 btrfs_bio = btrfs_io_bio(bio);
2606 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002607 icsum *= csum_size;
2608 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002609 csum_size);
2610 }
2611
Miao Xie2fe63032014-09-12 18:43:59 +08002612 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002613
Miao Xie2fe63032014-09-12 18:43:59 +08002614 return bio;
2615}
2616
2617/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002618 * This is a generic handler for readpage errors. If other copies exist, read
2619 * those and write back good data to the failed position. Does not investigate
2620 * in remapping the failed extent elsewhere, hoping the device will be smart
2621 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002622 */
Miao Xie2fe63032014-09-12 18:43:59 +08002623static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2624 struct page *page, u64 start, u64 end,
2625 int failed_mirror)
2626{
2627 struct io_failure_record *failrec;
2628 struct inode *inode = page->mapping->host;
2629 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002630 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002631 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002632 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002633 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002634 int ret;
Christoph Hellwig8a2ee442019-02-15 19:13:07 +08002635 unsigned failed_bio_pages = failed_bio->bi_iter.bi_size >> PAGE_SHIFT;
Miao Xie2fe63032014-09-12 18:43:59 +08002636
Mike Christie1f7ad752016-06-05 14:31:51 -05002637 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002638
2639 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2640 if (ret)
2641 return ret;
2642
Ming Leia0b60d72017-12-18 20:22:11 +08002643 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002644 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002645 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002646 return -EIO;
2647 }
2648
Ming Leia0b60d72017-12-18 20:22:11 +08002649 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002650 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002651
2652 phy_offset >>= inode->i_sb->s_blocksize_bits;
2653 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2654 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002655 (int)phy_offset, failed_bio->bi_end_io,
2656 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002657 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002658
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002659 btrfs_debug(btrfs_sb(inode->i_sb),
2660 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2661 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002662
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002663 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Nikolay Borisov50489a52019-04-10 19:46:04 +03002664 failrec->bio_flags);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002665 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002666 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002667 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002668 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002669 }
2670
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002671 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002672}
2673
Chris Masond1310b22008-01-24 16:13:08 -05002674/* lots and lots of room for performance fixes in the end_bio funcs */
2675
David Sterbab5227c02015-12-03 13:08:59 +01002676void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002677{
2678 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002679 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002680
Nikolay Borisovc6297322018-11-08 10:18:08 +02002681 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002682
Jeff Mahoney87826df2012-02-15 16:23:57 +01002683 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002684 ClearPageUptodate(page);
2685 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002686 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002687 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002688 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002689}
2690
Chris Masond1310b22008-01-24 16:13:08 -05002691/*
2692 * after a writepage IO is done, we need to:
2693 * clear the uptodate bits on error
2694 * clear the writeback bits in the extent tree for this IO
2695 * end_page_writeback if the page has no more pending IO
2696 *
2697 * Scheduling is not allowed, so the extent state tree is expected
2698 * to have one and only one object corresponding to this IO.
2699 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002700static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002701{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002702 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002703 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002704 u64 start;
2705 u64 end;
Ming Lei6dc4f102019-02-15 19:13:19 +08002706 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002707
David Sterbac09abff2017-07-13 18:10:07 +02002708 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002709 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002710 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002711 struct inode *inode = page->mapping->host;
2712 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002713
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002714 /* We always issue full-page reads, but if some block
2715 * in a page fails to read, blk_update_request() will
2716 * advance bv_offset and adjust bv_len to compensate.
2717 * Print a warning for nonzero offsets, and an error
2718 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002719 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2720 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002721 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002722 "partial page write in btrfs with offset %u and length %u",
2723 bvec->bv_offset, bvec->bv_len);
2724 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002725 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002726 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002727 bvec->bv_offset, bvec->bv_len);
2728 }
Chris Masond1310b22008-01-24 16:13:08 -05002729
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002730 start = page_offset(page);
2731 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002732
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002733 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002734 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002735 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002736
Chris Masond1310b22008-01-24 16:13:08 -05002737 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002738}
2739
Miao Xie883d0de2013-07-25 19:22:35 +08002740static void
2741endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2742 int uptodate)
2743{
2744 struct extent_state *cached = NULL;
2745 u64 end = start + len - 1;
2746
2747 if (uptodate && tree->track_uptodate)
2748 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002749 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002750}
2751
Chris Masond1310b22008-01-24 16:13:08 -05002752/*
2753 * after a readpage IO is done, we need to:
2754 * clear the uptodate bits on error
2755 * set the uptodate bits if things worked
2756 * set the page up to date if all extents in the tree are uptodate
2757 * clear the lock bit in the extent tree
2758 * unlock the page if there are no other extents locked for it
2759 *
2760 * Scheduling is not allowed, so the extent state tree is expected
2761 * to have one and only one object corresponding to this IO.
2762 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002763static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002764{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002765 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002766 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002767 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002768 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002769 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002770 u64 start;
2771 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002772 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002773 u64 extent_start = 0;
2774 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002775 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002776 int ret;
Ming Lei6dc4f102019-02-15 19:13:19 +08002777 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002778
David Sterbac09abff2017-07-13 18:10:07 +02002779 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002780 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002781 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002782 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002783 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002784 bool data_inode = btrfs_ino(BTRFS_I(inode))
2785 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002786
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002787 btrfs_debug(fs_info,
2788 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002789 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002790 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002791 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002792 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002793
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002794 /* We always issue full-page reads, but if some block
2795 * in a page fails to read, blk_update_request() will
2796 * advance bv_offset and adjust bv_len to compensate.
2797 * Print a warning for nonzero offsets, and an error
2798 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002799 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2800 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002801 btrfs_err(fs_info,
2802 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002803 bvec->bv_offset, bvec->bv_len);
2804 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002805 btrfs_info(fs_info,
2806 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002807 bvec->bv_offset, bvec->bv_len);
2808 }
Chris Masond1310b22008-01-24 16:13:08 -05002809
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002810 start = page_offset(page);
2811 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002812 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002813
Chris Mason9be33952013-05-17 18:30:14 -04002814 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002815 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002816 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2817 page, start, end,
2818 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002819 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002820 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002821 else
Josef Bacik7870d082017-05-05 11:57:15 -04002822 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2823 failure_tree, tree, start,
2824 page,
2825 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002826 }
Josef Bacikea466792012-03-26 21:57:36 -04002827
Miao Xief2a09da2013-07-25 19:22:33 +08002828 if (likely(uptodate))
2829 goto readpage_ok;
2830
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002831 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002832
2833 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002834 * The generic bio_readpage_error handles errors the
2835 * following way: If possible, new read requests are
2836 * created and submitted and will end up in
2837 * end_bio_extent_readpage as well (if we're lucky,
2838 * not in the !uptodate case). In that case it returns
2839 * 0 and we just go on with the next page in our bio.
2840 * If it can't handle the error it will return -EIO and
2841 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002842 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002843 ret = bio_readpage_error(bio, offset, page, start, end,
2844 mirror);
2845 if (ret == 0) {
2846 uptodate = !bio->bi_status;
2847 offset += len;
2848 continue;
2849 }
2850 } else {
2851 struct extent_buffer *eb;
2852
2853 eb = (struct extent_buffer *)page->private;
2854 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2855 eb->read_mirror = mirror;
2856 atomic_dec(&eb->io_pages);
2857 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2858 &eb->bflags))
2859 btree_readahead_hook(eb, -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002860 }
Miao Xief2a09da2013-07-25 19:22:33 +08002861readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002862 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002863 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002864 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002865 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002866
2867 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002868 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002869 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002870 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002871 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002872 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002873 ClearPageUptodate(page);
2874 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002875 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002876 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002877 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002878
2879 if (unlikely(!uptodate)) {
2880 if (extent_len) {
2881 endio_readpage_release_extent(tree,
2882 extent_start,
2883 extent_len, 1);
2884 extent_start = 0;
2885 extent_len = 0;
2886 }
2887 endio_readpage_release_extent(tree, start,
2888 end - start + 1, 0);
2889 } else if (!extent_len) {
2890 extent_start = start;
2891 extent_len = end + 1 - start;
2892 } else if (extent_start + extent_len == start) {
2893 extent_len += end + 1 - start;
2894 } else {
2895 endio_readpage_release_extent(tree, extent_start,
2896 extent_len, uptodate);
2897 extent_start = start;
2898 extent_len = end + 1 - start;
2899 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002900 }
Chris Masond1310b22008-01-24 16:13:08 -05002901
Miao Xie883d0de2013-07-25 19:22:35 +08002902 if (extent_len)
2903 endio_readpage_release_extent(tree, extent_start, extent_len,
2904 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002905 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002906 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002907}
2908
Chris Mason9be33952013-05-17 18:30:14 -04002909/*
David Sterba184f9992017-06-12 17:29:39 +02002910 * Initialize the members up to but not including 'bio'. Use after allocating a
2911 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2912 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002913 */
David Sterba184f9992017-06-12 17:29:39 +02002914static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002915{
David Sterba184f9992017-06-12 17:29:39 +02002916 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2917}
2918
2919/*
David Sterba6e707bc2017-06-02 17:26:26 +02002920 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2921 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2922 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002923 */
David Sterbae749af442019-06-18 20:00:16 +02002924struct bio *btrfs_bio_alloc(u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002925{
2926 struct bio *bio;
2927
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002928 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
David Sterbac821e7f32017-06-02 18:35:36 +02002929 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002930 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002931 return bio;
2932}
2933
David Sterba8b6c1d52017-06-02 17:48:13 +02002934struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002935{
Miao Xie23ea8e52014-09-12 18:43:54 +08002936 struct btrfs_io_bio *btrfs_bio;
2937 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002938
David Sterba6e707bc2017-06-02 17:26:26 +02002939 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002940 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002941 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002942 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002943 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002944 return new;
2945}
Chris Mason9be33952013-05-17 18:30:14 -04002946
David Sterbac5e4c3d2017-06-12 17:29:41 +02002947struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002948{
Miao Xiefacc8a222013-07-25 19:22:34 +08002949 struct bio *bio;
2950
David Sterba6e707bc2017-06-02 17:26:26 +02002951 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002952 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002953 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002954 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002955}
2956
Liu Boe4770942017-05-16 10:57:14 -07002957struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002958{
2959 struct bio *bio;
2960 struct btrfs_io_bio *btrfs_bio;
2961
2962 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002963 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002964 ASSERT(bio);
2965
2966 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002967 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002968
2969 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002970 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002971 return bio;
2972}
Chris Mason9be33952013-05-17 18:30:14 -04002973
David Sterba4b81ba42017-06-06 19:14:26 +02002974/*
2975 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002976 * @tree: tree so we can call our merge_bio hook
2977 * @wbc: optional writeback control for io accounting
2978 * @page: page to add to the bio
2979 * @pg_offset: offset of the new bio or to check whether we are adding
2980 * a contiguous page to the previous one
2981 * @size: portion of page that we want to write
2982 * @offset: starting offset in the page
David Sterba5c2b1fd2017-06-06 19:22:55 +02002983 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002984 * @end_io_func: end_io callback for new bio
2985 * @mirror_num: desired mirror to read/write
2986 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2987 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002988 */
2989static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002990 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002991 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002992 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002993 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002994 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002995 int mirror_num,
2996 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002997 unsigned long bio_flags,
2998 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002999{
3000 int ret = 0;
3001 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003002 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02003003 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05003004
David Sterba5c2b1fd2017-06-06 19:22:55 +02003005 ASSERT(bio_ret);
David Sterba45b08402020-02-05 19:09:26 +01003006 ASSERT(tree == &BTRFS_I(page->mapping->host)->io_tree);
David Sterba5c2b1fd2017-06-06 19:22:55 +02003007
3008 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02003009 bool contig;
3010 bool can_merge = true;
3011
Chris Masond1310b22008-01-24 16:13:08 -05003012 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02003013 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07003014 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04003015 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07003016 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04003017
Nikolay Borisovda12fe52018-11-27 20:57:58 +02003018 ASSERT(tree->ops);
3019 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02003020 can_merge = false;
3021
3022 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01003023 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02003024 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05003025 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09003026 if (ret < 0) {
3027 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003028 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09003029 }
Chris Masond1310b22008-01-24 16:13:08 -05003030 bio = NULL;
3031 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07003032 if (wbc)
Tejun Heo34e51a52019-06-27 13:39:49 -07003033 wbc_account_cgroup_owner(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05003034 return 0;
3035 }
3036 }
Chris Masonc8b97812008-10-29 14:49:59 -04003037
David Sterbae749af442019-06-18 20:00:16 +02003038 bio = btrfs_bio_alloc(offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02003039 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05003040 bio->bi_end_io = end_io_func;
3041 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06003042 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02003043 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07003044 if (wbc) {
David Sterba429aebc2019-11-18 23:27:55 +01003045 struct block_device *bdev;
3046
3047 bdev = BTRFS_I(page->mapping->host)->root->fs_info->fs_devices->latest_bdev;
3048 bio_set_dev(bio, bdev);
Chris Masonda2f0f72015-07-02 13:57:22 -07003049 wbc_init_bio(wbc, bio);
Tejun Heo34e51a52019-06-27 13:39:49 -07003050 wbc_account_cgroup_owner(wbc, page, page_size);
Chris Masonda2f0f72015-07-02 13:57:22 -07003051 }
Chris Mason70dec802008-01-29 09:59:12 -05003052
David Sterba5c2b1fd2017-06-06 19:22:55 +02003053 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05003054
3055 return ret;
3056}
3057
Eric Sandeen48a3b632013-04-25 20:41:01 +00003058static void attach_extent_buffer_page(struct extent_buffer *eb,
3059 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05003060{
3061 if (!PagePrivate(page)) {
3062 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003063 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05003064 set_page_private(page, (unsigned long)eb);
3065 } else {
3066 WARN_ON(page->private != (unsigned long)eb);
3067 }
3068}
3069
Chris Masond1310b22008-01-24 16:13:08 -05003070void set_page_extent_mapped(struct page *page)
3071{
3072 if (!PagePrivate(page)) {
3073 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003074 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04003075 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05003076 }
3077}
3078
Miao Xie125bac012013-07-25 19:22:37 +08003079static struct extent_map *
3080__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
3081 u64 start, u64 len, get_extent_t *get_extent,
3082 struct extent_map **em_cached)
3083{
3084 struct extent_map *em;
3085
3086 if (em_cached && *em_cached) {
3087 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00003088 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08003089 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02003090 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08003091 return em;
3092 }
3093
3094 free_extent_map(em);
3095 *em_cached = NULL;
3096 }
3097
Omar Sandoval39b07b52019-12-02 17:34:23 -08003098 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len);
Miao Xie125bac012013-07-25 19:22:37 +08003099 if (em_cached && !IS_ERR_OR_NULL(em)) {
3100 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02003101 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08003102 *em_cached = em;
3103 }
3104 return em;
3105}
Chris Masond1310b22008-01-24 16:13:08 -05003106/*
3107 * basic readpage implementation. Locked extent state structs are inserted
3108 * into the tree that are removed when the IO is done (by the end_io
3109 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003110 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07003111 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05003112 */
Miao Xie99740902013-07-25 19:22:36 +08003113static int __do_readpage(struct extent_io_tree *tree,
3114 struct page *page,
3115 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003116 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003117 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003118 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003119 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05003120{
3121 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003122 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02003123 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003124 u64 cur = start;
3125 u64 extent_offset;
3126 u64 last_byte = i_size_read(inode);
3127 u64 block_start;
3128 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05003129 struct extent_map *em;
Liu Bobaf863b2016-07-11 10:39:07 -07003130 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003131 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02003132 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003133 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04003134 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05003135 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00003136 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003137
3138 set_page_extent_mapped(page);
3139
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003140 if (!PageUptodate(page)) {
3141 if (cleancache_get_page(page) == 0) {
3142 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003143 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003144 goto out;
3145 }
3146 }
3147
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003148 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04003149 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01003150 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04003151
3152 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003153 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003154 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003155 memset(userpage + zero_offset, 0, iosize);
3156 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003157 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003158 }
3159 }
Chris Masond1310b22008-01-24 16:13:08 -05003160 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01003161 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02003162 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003163
Chris Masond1310b22008-01-24 16:13:08 -05003164 if (cur >= last_byte) {
3165 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003166 struct extent_state *cached = NULL;
3167
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003168 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003169 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003170 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003171 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003172 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003173 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003174 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003175 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003176 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003177 break;
3178 }
Miao Xie125bac012013-07-25 19:22:37 +08003179 em = __get_extent_map(inode, page, pg_offset, cur,
3180 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003181 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003182 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003183 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003184 break;
3185 }
Chris Masond1310b22008-01-24 16:13:08 -05003186 extent_offset = cur - em->start;
3187 BUG_ON(extent_map_end(em) <= cur);
3188 BUG_ON(end < cur);
3189
Li Zefan261507a02010-12-17 14:21:50 +08003190 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003191 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003192 extent_set_compress_type(&this_bio_flag,
3193 em->compress_type);
3194 }
Chris Masonc8b97812008-10-29 14:49:59 -04003195
Chris Masond1310b22008-01-24 16:13:08 -05003196 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3197 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003198 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003199 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3200 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02003201 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003202 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02003203 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003204 disk_io_size = iosize;
3205 }
Chris Masond1310b22008-01-24 16:13:08 -05003206 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003207 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3208 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003209
3210 /*
3211 * If we have a file range that points to a compressed extent
3212 * and it's followed by a consecutive file range that points to
3213 * to the same compressed extent (possibly with a different
3214 * offset and/or length, so it either points to the whole extent
3215 * or only part of it), we must make sure we do not submit a
3216 * single bio to populate the pages for the 2 ranges because
3217 * this makes the compressed extent read zero out the pages
3218 * belonging to the 2nd range. Imagine the following scenario:
3219 *
3220 * File layout
3221 * [0 - 8K] [8K - 24K]
3222 * | |
3223 * | |
3224 * points to extent X, points to extent X,
3225 * offset 4K, length of 8K offset 0, length 16K
3226 *
3227 * [extent X, compressed length = 4K uncompressed length = 16K]
3228 *
3229 * If the bio to read the compressed extent covers both ranges,
3230 * it will decompress extent X into the pages belonging to the
3231 * first range and then it will stop, zeroing out the remaining
3232 * pages that belong to the other range that points to extent X.
3233 * So here we make sure we submit 2 bios, one for the first
3234 * range and another one for the third range. Both will target
3235 * the same physical extent from disk, but we can't currently
3236 * make the compressed bio endio callback populate the pages
3237 * for both ranges because each compressed bio is tightly
3238 * coupled with a single extent map, and each range can have
3239 * an extent map with a different offset value relative to the
3240 * uncompressed data of our extent and different lengths. This
3241 * is a corner case so we prioritize correctness over
3242 * non-optimal behavior (submitting 2 bios for the same extent).
3243 */
3244 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3245 prev_em_start && *prev_em_start != (u64)-1 &&
Filipe Manana8e928212019-02-14 15:17:20 +00003246 *prev_em_start != em->start)
Filipe Manana005efed2015-09-14 09:09:31 +01003247 force_bio_submit = true;
3248
3249 if (prev_em_start)
Filipe Manana8e928212019-02-14 15:17:20 +00003250 *prev_em_start = em->start;
Filipe Manana005efed2015-09-14 09:09:31 +01003251
Chris Masond1310b22008-01-24 16:13:08 -05003252 free_extent_map(em);
3253 em = NULL;
3254
3255 /* we've found a hole, just zero and go on */
3256 if (block_start == EXTENT_MAP_HOLE) {
3257 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003258 struct extent_state *cached = NULL;
3259
Cong Wang7ac687d2011-11-25 23:14:28 +08003260 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003261 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003262 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003263 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003264
3265 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003266 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003267 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003268 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003269 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003270 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003271 continue;
3272 }
3273 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003274 if (test_range_bit(tree, cur, cur_end,
3275 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003276 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003277 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003278 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003279 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003280 continue;
3281 }
Chris Mason70dec802008-01-29 09:59:12 -05003282 /* we have an inline extent but it didn't get marked up
3283 * to date. Error out
3284 */
3285 if (block_start == EXTENT_MAP_INLINE) {
3286 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003287 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003288 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003289 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003290 continue;
3291 }
Chris Masond1310b22008-01-24 16:13:08 -05003292
David Sterba4b81ba42017-06-06 19:14:26 +02003293 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003294 page, offset, disk_io_size,
David Sterbafa17ed02019-10-03 17:29:05 +02003295 pg_offset, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003296 end_bio_extent_readpage, mirror_num,
3297 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003298 this_bio_flag,
3299 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003300 if (!ret) {
3301 nr++;
3302 *bio_flags = this_bio_flag;
3303 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003304 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003305 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003306 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003307 }
Chris Masond1310b22008-01-24 16:13:08 -05003308 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003309 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003310 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003311out:
Chris Masond1310b22008-01-24 16:13:08 -05003312 if (!nr) {
3313 if (!PageError(page))
3314 SetPageUptodate(page);
3315 unlock_page(page);
3316 }
Liu Bobaf863b2016-07-11 10:39:07 -07003317 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003318}
3319
Nikolay Borisove65ef212019-03-11 09:55:38 +02003320static inline void contiguous_readpages(struct extent_io_tree *tree,
Miao Xie99740902013-07-25 19:22:36 +08003321 struct page *pages[], int nr_pages,
3322 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003323 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003324 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003325 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003326 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003327{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003328 struct btrfs_inode *inode = BTRFS_I(pages[0]->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003329 int index;
3330
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003331 btrfs_lock_and_flush_ordered_range(tree, inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003332
3333 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003334 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003335 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003336 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003337 }
3338}
3339
Miao Xie99740902013-07-25 19:22:36 +08003340static int __extent_read_full_page(struct extent_io_tree *tree,
3341 struct page *page,
3342 get_extent_t *get_extent,
3343 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003344 unsigned long *bio_flags,
3345 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003346{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003347 struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003348 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003349 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003350 int ret;
3351
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003352 btrfs_lock_and_flush_ordered_range(tree, inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003353
Miao Xie125bac012013-07-25 19:22:37 +08003354 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003355 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003356 return ret;
3357}
3358
Chris Masond1310b22008-01-24 16:13:08 -05003359int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003360 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003361{
3362 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003363 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003364 int ret;
3365
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003366 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003367 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003368 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003369 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003370 return ret;
3371}
Chris Masond1310b22008-01-24 16:13:08 -05003372
David Sterba3d4b9492017-02-10 19:33:41 +01003373static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003374 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003375{
3376 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003377}
3378
Chris Masond1310b22008-01-24 16:13:08 -05003379/*
Chris Mason40f76582014-05-21 13:35:51 -07003380 * helper for __extent_writepage, doing all of the delayed allocation setup.
3381 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003382 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003383 * to write the page (copy into inline extent). In this case the IO has
3384 * been started and the page is already unlocked.
3385 *
3386 * This returns 0 if all went well (page still locked)
3387 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003388 */
Chris Mason40f76582014-05-21 13:35:51 -07003389static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003390 struct page *page, struct writeback_control *wbc,
3391 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003392{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003393 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003394 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003395 u64 delalloc_to_write = 0;
3396 u64 delalloc_end = 0;
3397 int ret;
3398 int page_started = 0;
3399
Chris Mason40f76582014-05-21 13:35:51 -07003400
3401 while (delalloc_end < page_end) {
Goldwyn Rodrigues99780592019-06-21 10:02:54 -05003402 found = find_lock_delalloc_range(inode, page,
Chris Mason40f76582014-05-21 13:35:51 -07003403 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003404 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003405 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003406 delalloc_start = delalloc_end + 1;
3407 continue;
3408 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003409 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3410 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003411 if (ret) {
3412 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003413 /*
3414 * btrfs_run_delalloc_range should return < 0 for error
3415 * but just in case, we use > 0 here meaning the IO is
3416 * started, so we don't want to return > 0 unless
3417 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003418 */
3419 ret = ret < 0 ? ret : -EIO;
3420 goto done;
3421 }
3422 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003423 * delalloc_end is already one less than the total length, so
3424 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003425 */
3426 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003427 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003428 delalloc_start = delalloc_end + 1;
3429 }
3430 if (wbc->nr_to_write < delalloc_to_write) {
3431 int thresh = 8192;
3432
3433 if (delalloc_to_write < thresh * 2)
3434 thresh = delalloc_to_write;
3435 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3436 thresh);
3437 }
3438
3439 /* did the fill delalloc function already unlock and start
3440 * the IO?
3441 */
3442 if (page_started) {
3443 /*
3444 * we've unlocked the page, so we can't update
3445 * the mapping's writeback index, just update
3446 * nr_to_write.
3447 */
3448 wbc->nr_to_write -= *nr_written;
3449 return 1;
3450 }
3451
3452 ret = 0;
3453
3454done:
3455 return ret;
3456}
3457
3458/*
3459 * helper for __extent_writepage. This calls the writepage start hooks,
3460 * and does the loop to map the page into extents and bios.
3461 *
3462 * We return 1 if the IO is started and the page is unlocked,
3463 * 0 if all went well (page still locked)
3464 * < 0 if there were errors (page still locked)
3465 */
3466static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3467 struct page *page,
3468 struct writeback_control *wbc,
3469 struct extent_page_data *epd,
3470 loff_t i_size,
3471 unsigned long nr_written,
David Sterba57e5ffe2019-10-29 18:28:55 +01003472 int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003473{
David Sterba45b08402020-02-05 19:09:26 +01003474 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003475 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003476 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003477 u64 end;
3478 u64 cur = start;
3479 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003480 u64 block_start;
3481 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003482 struct extent_map *em;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003483 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003484 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003485 int ret = 0;
3486 int nr = 0;
David Sterba57e5ffe2019-10-29 18:28:55 +01003487 const unsigned int write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003488 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003489
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003490 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3491 if (ret) {
3492 /* Fixup worker will requeue */
Josef Bacik5ab58052020-01-21 11:51:43 -05003493 redirty_page_for_writepage(wbc, page);
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003494 update_nr_written(wbc, nr_written);
3495 unlock_page(page);
3496 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003497 }
3498
Chris Mason11c83492009-04-20 15:50:09 -04003499 /*
3500 * we don't want to touch the inode after unlocking the page,
3501 * so we update the mapping writeback index now
3502 */
David Sterba3d4b9492017-02-10 19:33:41 +01003503 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003504
Chris Masond1310b22008-01-24 16:13:08 -05003505 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003506 blocksize = inode->i_sb->s_blocksize;
3507
3508 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003509 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003510 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003511
Chris Mason40f76582014-05-21 13:35:51 -07003512 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003513 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003514 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003515 break;
3516 }
Omar Sandoval39b07b52019-12-02 17:34:23 -08003517 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur,
3518 end - cur + 1);
David Sterbac7040052011-04-19 18:00:01 +02003519 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003520 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003521 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003522 break;
3523 }
3524
3525 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003526 em_end = extent_map_end(em);
3527 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003528 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003529 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003530 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003531 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003532 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003533 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003534 free_extent_map(em);
3535 em = NULL;
3536
Chris Masonc8b97812008-10-29 14:49:59 -04003537 /*
3538 * compressed and inline extents are written through other
3539 * paths in the FS
3540 */
3541 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003542 block_start == EXTENT_MAP_INLINE) {
Omar Sandovalc8b04032019-12-02 17:34:24 -08003543 if (compressed)
Chris Masonc8b97812008-10-29 14:49:59 -04003544 nr++;
Omar Sandovalc8b04032019-12-02 17:34:24 -08003545 else
3546 btrfs_writepage_endio_finish_ordered(page, cur,
3547 cur + iosize - 1, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003548 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003549 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003550 continue;
3551 }
Chris Masonc8b97812008-10-29 14:49:59 -04003552
David Sterba5cdc84b2018-07-18 20:32:52 +02003553 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003554 if (!PageWriteback(page)) {
3555 btrfs_err(BTRFS_I(inode)->root->fs_info,
3556 "page %lu not writeback, cur %llu end %llu",
3557 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003558 }
David Sterba58409ed2016-05-04 11:46:10 +02003559
David Sterba4b81ba42017-06-06 19:14:26 +02003560 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003561 page, offset, iosize, pg_offset,
David Sterbafa17ed02019-10-03 17:29:05 +02003562 &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003563 end_bio_extent_writepage,
3564 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003565 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003566 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003567 if (PageWriteback(page))
3568 end_page_writeback(page);
3569 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003570
Chris Masond1310b22008-01-24 16:13:08 -05003571 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003572 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003573 nr++;
3574 }
Chris Mason40f76582014-05-21 13:35:51 -07003575 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003576 return ret;
3577}
3578
3579/*
3580 * the writepage semantics are similar to regular writepage. extent
3581 * records are inserted to lock ranges in the tree, and as dirty areas
3582 * are found, they are marked writeback. Then the lock bits are removed
3583 * and the end_io handler clears the writeback ranges
Qu Wenruo30659762019-03-20 14:27:42 +08003584 *
3585 * Return 0 if everything goes well.
3586 * Return <0 for error.
Chris Mason40f76582014-05-21 13:35:51 -07003587 */
3588static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003589 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003590{
3591 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003592 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003593 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003594 int ret;
3595 int nr = 0;
Omar Sandovaleb70d222019-12-02 17:34:20 -08003596 size_t pg_offset;
Chris Mason40f76582014-05-21 13:35:51 -07003597 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003598 unsigned long end_index = i_size >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003599 unsigned long nr_written = 0;
3600
Chris Mason40f76582014-05-21 13:35:51 -07003601 trace___extent_writepage(page, inode, wbc);
3602
3603 WARN_ON(!PageLocked(page));
3604
3605 ClearPageError(page);
3606
Johannes Thumshirn70730172018-12-05 15:23:03 +01003607 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003608 if (page->index > end_index ||
3609 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003610 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003611 unlock_page(page);
3612 return 0;
3613 }
3614
3615 if (page->index == end_index) {
3616 char *userpage;
3617
3618 userpage = kmap_atomic(page);
3619 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003620 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003621 kunmap_atomic(userpage);
3622 flush_dcache_page(page);
3623 }
3624
Chris Mason40f76582014-05-21 13:35:51 -07003625 set_page_extent_mapped(page);
3626
Nikolay Borisov7789a552018-11-08 10:18:06 +02003627 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003628 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003629 if (ret == 1)
Omar Sandoval169d2c82019-12-02 17:34:21 -08003630 return 0;
Nikolay Borisov7789a552018-11-08 10:18:06 +02003631 if (ret)
3632 goto done;
3633 }
Chris Mason40f76582014-05-21 13:35:51 -07003634
3635 ret = __extent_writepage_io(inode, page, wbc, epd,
David Sterba57e5ffe2019-10-29 18:28:55 +01003636 i_size, nr_written, &nr);
Chris Mason40f76582014-05-21 13:35:51 -07003637 if (ret == 1)
Omar Sandoval169d2c82019-12-02 17:34:21 -08003638 return 0;
Chris Mason40f76582014-05-21 13:35:51 -07003639
3640done:
Chris Masond1310b22008-01-24 16:13:08 -05003641 if (nr == 0) {
3642 /* make sure the mapping tag for page dirty gets cleared */
3643 set_page_writeback(page);
3644 end_page_writeback(page);
3645 }
Filipe Manana61391d52014-05-09 17:17:40 +01003646 if (PageError(page)) {
3647 ret = ret < 0 ? ret : -EIO;
3648 end_extent_writepage(page, ret, start, page_end);
3649 }
Chris Masond1310b22008-01-24 16:13:08 -05003650 unlock_page(page);
Qu Wenruo30659762019-03-20 14:27:42 +08003651 ASSERT(ret <= 0);
Chris Mason40f76582014-05-21 13:35:51 -07003652 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003653}
3654
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003655void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003656{
NeilBrown74316202014-07-07 15:16:04 +10003657 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3658 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003659}
3660
Filipe Manana18dfa712019-09-11 17:42:00 +01003661static void end_extent_buffer_writeback(struct extent_buffer *eb)
3662{
3663 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3664 smp_mb__after_atomic();
3665 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3666}
3667
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003668/*
3669 * Lock eb pages and flush the bio if we can't the locks
3670 *
3671 * Return 0 if nothing went wrong
3672 * Return >0 is same as 0, except bio is not submitted
3673 * Return <0 if something went wrong, no page is locked
3674 */
David Sterba9df76fb2019-03-20 11:21:41 +01003675static noinline_for_stack int lock_extent_buffer_for_io(struct extent_buffer *eb,
Chris Mason0e378df2014-05-19 20:55:27 -07003676 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003677{
David Sterba9df76fb2019-03-20 11:21:41 +01003678 struct btrfs_fs_info *fs_info = eb->fs_info;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003679 int i, num_pages, failed_page_nr;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003680 int flush = 0;
3681 int ret = 0;
3682
3683 if (!btrfs_try_tree_write_lock(eb)) {
Qu Wenruof4340622019-03-20 14:27:41 +08003684 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003685 if (ret < 0)
3686 return ret;
3687 flush = 1;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003688 btrfs_tree_lock(eb);
3689 }
3690
3691 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3692 btrfs_tree_unlock(eb);
3693 if (!epd->sync_io)
3694 return 0;
3695 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003696 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003697 if (ret < 0)
3698 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003699 flush = 1;
3700 }
Chris Masona098d8e82012-03-21 12:09:56 -04003701 while (1) {
3702 wait_on_extent_buffer_writeback(eb);
3703 btrfs_tree_lock(eb);
3704 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3705 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003706 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003707 }
3708 }
3709
Josef Bacik51561ff2012-07-20 16:25:24 -04003710 /*
3711 * We need to do this to prevent races in people who check if the eb is
3712 * under IO since we can end up having no IO bits set for a short period
3713 * of time.
3714 */
3715 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003716 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3717 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003718 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003719 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003720 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3721 -eb->len,
3722 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003723 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003724 } else {
3725 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003726 }
3727
3728 btrfs_tree_unlock(eb);
3729
3730 if (!ret)
3731 return ret;
3732
David Sterba65ad0102018-06-29 10:56:49 +02003733 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003734 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003735 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003736
3737 if (!trylock_page(p)) {
3738 if (!flush) {
Filipe Manana18dfa712019-09-11 17:42:00 +01003739 int err;
3740
3741 err = flush_write_bio(epd);
3742 if (err < 0) {
3743 ret = err;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003744 failed_page_nr = i;
3745 goto err_unlock;
3746 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003747 flush = 1;
3748 }
3749 lock_page(p);
3750 }
3751 }
3752
3753 return ret;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003754err_unlock:
3755 /* Unlock already locked pages */
3756 for (i = 0; i < failed_page_nr; i++)
3757 unlock_page(eb->pages[i]);
Filipe Manana18dfa712019-09-11 17:42:00 +01003758 /*
3759 * Clear EXTENT_BUFFER_WRITEBACK and wake up anyone waiting on it.
3760 * Also set back EXTENT_BUFFER_DIRTY so future attempts to this eb can
3761 * be made and undo everything done before.
3762 */
3763 btrfs_tree_lock(eb);
3764 spin_lock(&eb->refs_lock);
3765 set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
3766 end_extent_buffer_writeback(eb);
3767 spin_unlock(&eb->refs_lock);
3768 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes, eb->len,
3769 fs_info->dirty_metadata_batch);
3770 btrfs_clear_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
3771 btrfs_tree_unlock(eb);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003772 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003773}
3774
Filipe Manana656f30d2014-09-26 12:25:56 +01003775static void set_btree_ioerr(struct page *page)
3776{
3777 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Dennis Zhoueb5b64f2019-09-13 14:54:07 +01003778 struct btrfs_fs_info *fs_info;
Filipe Manana656f30d2014-09-26 12:25:56 +01003779
3780 SetPageError(page);
3781 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3782 return;
3783
3784 /*
Dennis Zhoueb5b64f2019-09-13 14:54:07 +01003785 * If we error out, we should add back the dirty_metadata_bytes
3786 * to make it consistent.
3787 */
3788 fs_info = eb->fs_info;
3789 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3790 eb->len, fs_info->dirty_metadata_batch);
3791
3792 /*
Filipe Manana656f30d2014-09-26 12:25:56 +01003793 * If writeback for a btree extent that doesn't belong to a log tree
3794 * failed, increment the counter transaction->eb_write_errors.
3795 * We do this because while the transaction is running and before it's
3796 * committing (when we call filemap_fdata[write|wait]_range against
3797 * the btree inode), we might have
3798 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3799 * returns an error or an error happens during writeback, when we're
3800 * committing the transaction we wouldn't know about it, since the pages
3801 * can be no longer dirty nor marked anymore for writeback (if a
3802 * subsequent modification to the extent buffer didn't happen before the
3803 * transaction commit), which makes filemap_fdata[write|wait]_range not
3804 * able to find the pages tagged with SetPageError at transaction
3805 * commit time. So if this happens we must abort the transaction,
3806 * otherwise we commit a super block with btree roots that point to
3807 * btree nodes/leafs whose content on disk is invalid - either garbage
3808 * or the content of some node/leaf from a past generation that got
3809 * cowed or deleted and is no longer valid.
3810 *
3811 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3812 * not be enough - we need to distinguish between log tree extents vs
3813 * non-log tree extents, and the next filemap_fdatawait_range() call
3814 * will catch and clear such errors in the mapping - and that call might
3815 * be from a log sync and not from a transaction commit. Also, checking
3816 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3817 * not done and would not be reliable - the eb might have been released
3818 * from memory and reading it back again means that flag would not be
3819 * set (since it's a runtime flag, not persisted on disk).
3820 *
3821 * Using the flags below in the btree inode also makes us achieve the
3822 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3823 * writeback for all dirty pages and before filemap_fdatawait_range()
3824 * is called, the writeback for all dirty pages had already finished
3825 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3826 * filemap_fdatawait_range() would return success, as it could not know
3827 * that writeback errors happened (the pages were no longer tagged for
3828 * writeback).
3829 */
3830 switch (eb->log_index) {
3831 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003832 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003833 break;
3834 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003835 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003836 break;
3837 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003838 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003839 break;
3840 default:
3841 BUG(); /* unexpected, logic error */
3842 }
3843}
3844
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003845static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003846{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003847 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003848 struct extent_buffer *eb;
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003849 int done;
Ming Lei6dc4f102019-02-15 19:13:19 +08003850 struct bvec_iter_all iter_all;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003851
David Sterbac09abff2017-07-13 18:10:07 +02003852 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003853 bio_for_each_segment_all(bvec, bio, iter_all) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003854 struct page *page = bvec->bv_page;
3855
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003856 eb = (struct extent_buffer *)page->private;
3857 BUG_ON(!eb);
3858 done = atomic_dec_and_test(&eb->io_pages);
3859
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003860 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003861 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003862 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003863 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003864 }
3865
3866 end_page_writeback(page);
3867
3868 if (!done)
3869 continue;
3870
3871 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003872 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003873
3874 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003875}
3876
Chris Mason0e378df2014-05-19 20:55:27 -07003877static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003878 struct writeback_control *wbc,
3879 struct extent_page_data *epd)
3880{
David Sterba0ab02062019-03-20 11:27:57 +01003881 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacikf28491e2013-12-16 13:24:27 -05003882 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003883 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003884 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003885 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003886 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003887 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003888 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003889
Filipe Manana656f30d2014-09-26 12:25:56 +01003890 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003891 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003892 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003893
Liu Bo851cd172016-09-23 13:44:44 -07003894 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3895 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003896 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003897 end = btrfs_node_key_ptr_offset(nritems);
3898
David Sterbab159fa22016-11-08 18:09:03 +01003899 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003900 } else {
3901 /*
3902 * leaf:
3903 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3904 */
3905 start = btrfs_item_nr_offset(nritems);
David Sterba8f881e82019-03-20 11:33:10 +01003906 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(eb);
David Sterbab159fa22016-11-08 18:09:03 +01003907 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003908 }
3909
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003910 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003911 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003912
3913 clear_page_dirty_for_io(p);
3914 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003915 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterbafa17ed02019-10-03 17:29:05 +02003916 p, offset, PAGE_SIZE, 0,
David Sterbac2df8bb2017-02-10 19:29:38 +01003917 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003918 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003919 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003920 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003921 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003922 if (PageWriteback(p))
3923 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003924 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3925 end_extent_buffer_writeback(eb);
3926 ret = -EIO;
3927 break;
3928 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003929 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003930 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003931 unlock_page(p);
3932 }
3933
3934 if (unlikely(ret)) {
3935 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003936 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003937 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003938 unlock_page(p);
3939 }
3940 }
3941
3942 return ret;
3943}
3944
3945int btree_write_cache_pages(struct address_space *mapping,
3946 struct writeback_control *wbc)
3947{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003948 struct extent_buffer *eb, *prev_eb = NULL;
3949 struct extent_page_data epd = {
3950 .bio = NULL,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003951 .extent_locked = 0,
3952 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3953 };
3954 int ret = 0;
3955 int done = 0;
3956 int nr_to_write_done = 0;
3957 struct pagevec pvec;
3958 int nr_pages;
3959 pgoff_t index;
3960 pgoff_t end; /* Inclusive */
3961 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003962 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003963
Mel Gorman86679822017-11-15 17:37:52 -08003964 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003965 if (wbc->range_cyclic) {
3966 index = mapping->writeback_index; /* Start from prev offset */
3967 end = -1;
Josef Bacik556755a2020-01-03 10:38:44 -05003968 /*
3969 * Start from the beginning does not need to cycle over the
3970 * range, mark it as scanned.
3971 */
3972 scanned = (index == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003973 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003974 index = wbc->range_start >> PAGE_SHIFT;
3975 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003976 scanned = 1;
3977 }
3978 if (wbc->sync_mode == WB_SYNC_ALL)
3979 tag = PAGECACHE_TAG_TOWRITE;
3980 else
3981 tag = PAGECACHE_TAG_DIRTY;
3982retry:
3983 if (wbc->sync_mode == WB_SYNC_ALL)
3984 tag_pages_for_writeback(mapping, index, end);
3985 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003986 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003987 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003988 unsigned i;
3989
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003990 for (i = 0; i < nr_pages; i++) {
3991 struct page *page = pvec.pages[i];
3992
3993 if (!PagePrivate(page))
3994 continue;
3995
Josef Bacikb5bae262012-09-14 13:43:01 -04003996 spin_lock(&mapping->private_lock);
3997 if (!PagePrivate(page)) {
3998 spin_unlock(&mapping->private_lock);
3999 continue;
4000 }
4001
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004002 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04004003
4004 /*
4005 * Shouldn't happen and normally this would be a BUG_ON
4006 * but no sense in crashing the users box for something
4007 * we can survive anyway.
4008 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05304009 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04004010 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004011 continue;
4012 }
4013
Josef Bacikb5bae262012-09-14 13:43:01 -04004014 if (eb == prev_eb) {
4015 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004016 continue;
4017 }
4018
Josef Bacikb5bae262012-09-14 13:43:01 -04004019 ret = atomic_inc_not_zero(&eb->refs);
4020 spin_unlock(&mapping->private_lock);
4021 if (!ret)
4022 continue;
4023
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004024 prev_eb = eb;
David Sterba9df76fb2019-03-20 11:21:41 +01004025 ret = lock_extent_buffer_for_io(eb, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004026 if (!ret) {
4027 free_extent_buffer(eb);
4028 continue;
Filipe Manana0607eb1d2019-09-11 17:42:28 +01004029 } else if (ret < 0) {
4030 done = 1;
4031 free_extent_buffer(eb);
4032 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004033 }
4034
David Sterba0ab02062019-03-20 11:27:57 +01004035 ret = write_one_eb(eb, wbc, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004036 if (ret) {
4037 done = 1;
4038 free_extent_buffer(eb);
4039 break;
4040 }
4041 free_extent_buffer(eb);
4042
4043 /*
4044 * the filesystem may choose to bump up nr_to_write.
4045 * We have to make sure to honor the new nr_to_write
4046 * at any time
4047 */
4048 nr_to_write_done = wbc->nr_to_write <= 0;
4049 }
4050 pagevec_release(&pvec);
4051 cond_resched();
4052 }
4053 if (!scanned && !done) {
4054 /*
4055 * We hit the last page and there is more work to be done: wrap
4056 * back to the start of the file
4057 */
4058 scanned = 1;
4059 index = 0;
4060 goto retry;
4061 }
Qu Wenruo2b952ee2019-03-20 14:27:43 +08004062 ASSERT(ret <= 0);
4063 if (ret < 0) {
4064 end_write_bio(&epd, ret);
4065 return ret;
4066 }
4067 ret = flush_write_bio(&epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004068 return ret;
4069}
4070
Chris Masond1310b22008-01-24 16:13:08 -05004071/**
Chris Mason4bef0842008-09-08 11:18:08 -04004072 * 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 -05004073 * @mapping: address space structure to write
4074 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02004075 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05004076 *
4077 * If a page is already under I/O, write_cache_pages() skips it, even
4078 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
4079 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
4080 * and msync() need to guarantee that all the data which was dirty at the time
4081 * the call was made get new I/O started against them. If wbc->sync_mode is
4082 * WB_SYNC_ALL then we were called for data integrity and we must wait for
4083 * existing IO to complete.
4084 */
David Sterba4242b642017-02-10 19:38:24 +01004085static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04004086 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01004087 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05004088{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004089 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05004090 int ret = 0;
4091 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004092 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004093 struct pagevec pvec;
4094 int nr_pages;
4095 pgoff_t index;
4096 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08004097 pgoff_t done_index;
4098 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004099 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05004100 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05004101
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004102 /*
4103 * We have to hold onto the inode so that ordered extents can do their
4104 * work when the IO finishes. The alternative to this is failing to add
4105 * an ordered extent if the igrab() fails there and that is a huge pain
4106 * to deal with, so instead just hold onto the inode throughout the
4107 * writepages operation. If it fails here we are freeing up the inode
4108 * anyway and we'd rather not waste our time writing out stuff that is
4109 * going to be truncated anyway.
4110 */
4111 if (!igrab(inode))
4112 return 0;
4113
Mel Gorman86679822017-11-15 17:37:52 -08004114 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05004115 if (wbc->range_cyclic) {
4116 index = mapping->writeback_index; /* Start from prev offset */
4117 end = -1;
Josef Bacik556755a2020-01-03 10:38:44 -05004118 /*
4119 * Start from the beginning does not need to cycle over the
4120 * range, mark it as scanned.
4121 */
4122 scanned = (index == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004123 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004124 index = wbc->range_start >> PAGE_SHIFT;
4125 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08004126 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
4127 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004128 scanned = 1;
4129 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08004130
4131 /*
4132 * We do the tagged writepage as long as the snapshot flush bit is set
4133 * and we are the first one who do the filemap_flush() on this inode.
4134 *
4135 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
4136 * not race in and drop the bit.
4137 */
4138 if (range_whole && wbc->nr_to_write == LONG_MAX &&
4139 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
4140 &BTRFS_I(inode)->runtime_flags))
4141 wbc->tagged_writepages = 1;
4142
4143 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004144 tag = PAGECACHE_TAG_TOWRITE;
4145 else
4146 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004147retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08004148 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004149 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08004150 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004151 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08004152 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
4153 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05004154 unsigned i;
4155
Chris Masond1310b22008-01-24 16:13:08 -05004156 for (i = 0; i < nr_pages; i++) {
4157 struct page *page = pvec.pages[i];
4158
Tejun Heof7bddf12019-10-03 07:27:13 -07004159 done_index = page->index + 1;
Chris Masond1310b22008-01-24 16:13:08 -05004160 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07004161 * At this point we hold neither the i_pages lock nor
4162 * the page lock: the page may be truncated or
4163 * invalidated (changing page->mapping to NULL),
4164 * or even swizzled back from swapper_space to
4165 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05004166 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004167 if (!trylock_page(page)) {
Qu Wenruof4340622019-03-20 14:27:41 +08004168 ret = flush_write_bio(epd);
4169 BUG_ON(ret < 0);
Josef Bacikc8f2f242013-02-11 11:33:00 -05004170 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004171 }
Chris Masond1310b22008-01-24 16:13:08 -05004172
4173 if (unlikely(page->mapping != mapping)) {
4174 unlock_page(page);
4175 continue;
4176 }
4177
Chris Masond2c3f4f2008-11-19 12:44:22 -05004178 if (wbc->sync_mode != WB_SYNC_NONE) {
Qu Wenruof4340622019-03-20 14:27:41 +08004179 if (PageWriteback(page)) {
4180 ret = flush_write_bio(epd);
4181 BUG_ON(ret < 0);
4182 }
Chris Masond1310b22008-01-24 16:13:08 -05004183 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004184 }
Chris Masond1310b22008-01-24 16:13:08 -05004185
4186 if (PageWriteback(page) ||
4187 !clear_page_dirty_for_io(page)) {
4188 unlock_page(page);
4189 continue;
4190 }
4191
David Sterbaaab6e9e2017-11-30 18:00:02 +01004192 ret = __extent_writepage(page, wbc, epd);
Liu Boa91326672016-03-07 16:56:21 -08004193 if (ret < 0) {
Liu Boa91326672016-03-07 16:56:21 -08004194 done = 1;
4195 break;
4196 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004197
4198 /*
4199 * the filesystem may choose to bump up nr_to_write.
4200 * We have to make sure to honor the new nr_to_write
4201 * at any time
4202 */
4203 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004204 }
4205 pagevec_release(&pvec);
4206 cond_resched();
4207 }
Liu Bo894b36e2016-03-07 16:56:22 -08004208 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004209 /*
4210 * We hit the last page and there is more work to be done: wrap
4211 * back to the start of the file
4212 */
4213 scanned = 1;
4214 index = 0;
Josef Bacik42ffb0b2020-01-23 15:33:02 -05004215
4216 /*
4217 * If we're looping we could run into a page that is locked by a
4218 * writer and that writer could be waiting on writeback for a
4219 * page in our current bio, and thus deadlock, so flush the
4220 * write bio here.
4221 */
4222 ret = flush_write_bio(epd);
4223 if (!ret)
4224 goto retry;
Chris Masond1310b22008-01-24 16:13:08 -05004225 }
Liu Boa91326672016-03-07 16:56:21 -08004226
4227 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4228 mapping->writeback_index = done_index;
4229
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004230 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004231 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004232}
Chris Masond1310b22008-01-24 16:13:08 -05004233
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004234int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004235{
4236 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004237 struct extent_page_data epd = {
4238 .bio = NULL,
Chris Mason771ed682008-11-06 22:02:51 -05004239 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004240 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004241 };
Chris Masond1310b22008-01-24 16:13:08 -05004242
Chris Masond1310b22008-01-24 16:13:08 -05004243 ret = __extent_writepage(page, wbc, &epd);
Qu Wenruo30659762019-03-20 14:27:42 +08004244 ASSERT(ret <= 0);
4245 if (ret < 0) {
4246 end_write_bio(&epd, ret);
4247 return ret;
4248 }
Chris Masond1310b22008-01-24 16:13:08 -05004249
Qu Wenruo30659762019-03-20 14:27:42 +08004250 ret = flush_write_bio(&epd);
4251 ASSERT(ret <= 0);
Chris Masond1310b22008-01-24 16:13:08 -05004252 return ret;
4253}
Chris Masond1310b22008-01-24 16:13:08 -05004254
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004255int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004256 int mode)
4257{
4258 int ret = 0;
4259 struct address_space *mapping = inode->i_mapping;
4260 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004261 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4262 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004263
4264 struct extent_page_data epd = {
4265 .bio = NULL,
Chris Mason771ed682008-11-06 22:02:51 -05004266 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004267 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004268 };
4269 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004270 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004271 .nr_to_write = nr_pages * 2,
4272 .range_start = start,
4273 .range_end = end + 1,
Chris Masonec39f762019-07-10 12:28:17 -07004274 /* We're called from an async helper function */
4275 .punt_to_cgroup = 1,
4276 .no_cgroup_owner = 1,
Chris Mason771ed682008-11-06 22:02:51 -05004277 };
4278
Chris Masondbb70be2019-07-10 12:28:18 -07004279 wbc_attach_fdatawrite_inode(&wbc_writepages, inode);
Chris Masond3977122009-01-05 21:25:51 -05004280 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004281 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004282 if (clear_page_dirty_for_io(page))
4283 ret = __extent_writepage(page, &wbc_writepages, &epd);
4284 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004285 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004286 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004287 unlock_page(page);
4288 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004289 put_page(page);
4290 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004291 }
4292
Qu Wenruo02c6db42019-03-20 14:27:45 +08004293 ASSERT(ret <= 0);
Chris Masondbb70be2019-07-10 12:28:18 -07004294 if (ret == 0)
4295 ret = flush_write_bio(&epd);
4296 else
Qu Wenruo02c6db42019-03-20 14:27:45 +08004297 end_write_bio(&epd, ret);
Chris Masondbb70be2019-07-10 12:28:18 -07004298
4299 wbc_detach_inode(&wbc_writepages);
Chris Mason771ed682008-11-06 22:02:51 -05004300 return ret;
4301}
Chris Masond1310b22008-01-24 16:13:08 -05004302
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004303int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004304 struct writeback_control *wbc)
4305{
4306 int ret = 0;
4307 struct extent_page_data epd = {
4308 .bio = NULL,
Chris Mason771ed682008-11-06 22:02:51 -05004309 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004310 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004311 };
4312
David Sterba935db852017-06-23 04:30:28 +02004313 ret = extent_write_cache_pages(mapping, wbc, &epd);
Qu Wenruoa2a72fb2019-03-20 14:27:48 +08004314 ASSERT(ret <= 0);
4315 if (ret < 0) {
4316 end_write_bio(&epd, ret);
4317 return ret;
4318 }
4319 ret = flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004320 return ret;
4321}
Chris Masond1310b22008-01-24 16:13:08 -05004322
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004323int extent_readpages(struct address_space *mapping, struct list_head *pages,
4324 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004325{
4326 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004327 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004328 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004329 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004330 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004331 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004332 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004333
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004334 while (!list_empty(pages)) {
Nikolay Borisove65ef212019-03-11 09:55:38 +02004335 u64 contig_end = 0;
4336
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004337 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004338 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004339
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004340 prefetchw(&page->flags);
4341 list_del(&page->lru);
4342 if (add_to_page_cache_lru(page, mapping, page->index,
4343 readahead_gfp_mask(mapping))) {
4344 put_page(page);
Nikolay Borisove65ef212019-03-11 09:55:38 +02004345 break;
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004346 }
4347
4348 pagepool[nr++] = page;
Nikolay Borisove65ef212019-03-11 09:55:38 +02004349 contig_end = page_offset(page) + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004350 }
Liu Bo67c96842012-07-20 21:43:09 -06004351
Nikolay Borisove65ef212019-03-11 09:55:38 +02004352 if (nr) {
4353 u64 contig_start = page_offset(pagepool[0]);
4354
4355 ASSERT(contig_start + nr * PAGE_SIZE - 1 == contig_end);
4356
4357 contiguous_readpages(tree, pagepool, nr, contig_start,
4358 contig_end, &em_cached, &bio, &bio_flags,
4359 &prev_em_start);
4360 }
Chris Masond1310b22008-01-24 16:13:08 -05004361 }
Liu Bo67c96842012-07-20 21:43:09 -06004362
Miao Xie125bac012013-07-25 19:22:37 +08004363 if (em_cached)
4364 free_extent_map(em_cached);
4365
Chris Masond1310b22008-01-24 16:13:08 -05004366 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004367 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004368 return 0;
4369}
Chris Masond1310b22008-01-24 16:13:08 -05004370
4371/*
4372 * basic invalidatepage code, this waits on any locked or writeback
4373 * ranges corresponding to the page, and then deletes any extent state
4374 * records from the tree
4375 */
4376int extent_invalidatepage(struct extent_io_tree *tree,
4377 struct page *page, unsigned long offset)
4378{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004379 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004380 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004381 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004382 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4383
Qu Wenruofda28322013-02-26 08:10:22 +00004384 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004385 if (start > end)
4386 return 0;
4387
David Sterbaff13db42015-12-03 14:30:40 +01004388 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004389 wait_on_page_writeback(page);
Omar Sandovale1821632019-08-15 14:04:04 -07004390 clear_extent_bit(tree, start, end, EXTENT_LOCKED | EXTENT_DELALLOC |
4391 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004392 return 0;
4393}
Chris Masond1310b22008-01-24 16:13:08 -05004394
4395/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004396 * a helper for releasepage, this tests for areas of the page that
4397 * are locked or under IO and drops the related state bits if it is safe
4398 * to drop the page.
4399 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004400static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004401 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004402{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004403 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004404 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004405 int ret = 1;
4406
Nikolay Borisov88826792019-03-14 15:28:31 +02004407 if (test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL)) {
Chris Mason7b13b7b2008-04-18 10:29:50 -04004408 ret = 0;
Nikolay Borisov88826792019-03-14 15:28:31 +02004409 } else {
Chris Mason11ef1602009-09-23 20:28:46 -04004410 /*
4411 * at this point we can safely clear everything except the
4412 * locked bit and the nodatasum bit
4413 */
David Sterba66b0c882017-10-31 16:30:47 +01004414 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004415 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004416 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004417
4418 /* if clear_extent_bit failed for enomem reasons,
4419 * we can't allow the release to continue.
4420 */
4421 if (ret < 0)
4422 ret = 0;
4423 else
4424 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004425 }
4426 return ret;
4427}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004428
4429/*
Chris Masond1310b22008-01-24 16:13:08 -05004430 * a helper for releasepage. As long as there are no locked extents
4431 * in the range corresponding to the page, both state records and extent
4432 * map records are removed
4433 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004434int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004435{
4436 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004437 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004438 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004439 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4440 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4441 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004442
Mel Gormand0164ad2015-11-06 16:28:21 -08004443 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004444 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004445 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004446 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004447 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004448 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004449 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004450 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004451 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004452 break;
4453 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004454 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4455 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004456 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004457 free_extent_map(em);
4458 break;
4459 }
4460 if (!test_range_bit(tree, em->start,
4461 extent_map_end(em) - 1,
Nikolay Borisov4e586ca2019-03-14 15:28:30 +02004462 EXTENT_LOCKED, 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004463 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4464 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004465 remove_extent_mapping(map, em);
4466 /* once for the rb tree */
4467 free_extent_map(em);
4468 }
4469 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004470 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004471
4472 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004473 free_extent_map(em);
4474 }
Chris Masond1310b22008-01-24 16:13:08 -05004475 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004476 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004477}
Chris Masond1310b22008-01-24 16:13:08 -05004478
Chris Masonec29ed52011-02-23 16:23:20 -05004479/*
4480 * helper function for fiemap, which doesn't want to see any holes.
4481 * This maps until we find something past 'last'
4482 */
4483static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004484 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004485{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004486 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004487 struct extent_map *em;
4488 u64 len;
4489
4490 if (offset >= last)
4491 return NULL;
4492
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304493 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004494 len = last - offset;
4495 if (len == 0)
4496 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004497 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004498 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004499 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004500 return em;
4501
4502 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004503 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004504 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004505
4506 /* this is a hole, advance to the next extent */
4507 offset = extent_map_end(em);
4508 free_extent_map(em);
4509 if (offset >= last)
4510 break;
4511 }
4512 return NULL;
4513}
4514
Qu Wenruo47518322017-04-07 10:43:15 +08004515/*
4516 * To cache previous fiemap extent
4517 *
4518 * Will be used for merging fiemap extent
4519 */
4520struct fiemap_cache {
4521 u64 offset;
4522 u64 phys;
4523 u64 len;
4524 u32 flags;
4525 bool cached;
4526};
4527
4528/*
4529 * Helper to submit fiemap extent.
4530 *
4531 * Will try to merge current fiemap extent specified by @offset, @phys,
4532 * @len and @flags with cached one.
4533 * And only when we fails to merge, cached one will be submitted as
4534 * fiemap extent.
4535 *
4536 * Return value is the same as fiemap_fill_next_extent().
4537 */
4538static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4539 struct fiemap_cache *cache,
4540 u64 offset, u64 phys, u64 len, u32 flags)
4541{
4542 int ret = 0;
4543
4544 if (!cache->cached)
4545 goto assign;
4546
4547 /*
4548 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004549 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004550 * Not recoverable.
4551 *
4552 * NOTE: Physical address can overlap, due to compression
4553 */
4554 if (cache->offset + cache->len > offset) {
4555 WARN_ON(1);
4556 return -EINVAL;
4557 }
4558
4559 /*
4560 * Only merges fiemap extents if
4561 * 1) Their logical addresses are continuous
4562 *
4563 * 2) Their physical addresses are continuous
4564 * So truly compressed (physical size smaller than logical size)
4565 * extents won't get merged with each other
4566 *
4567 * 3) Share same flags except FIEMAP_EXTENT_LAST
4568 * So regular extent won't get merged with prealloc extent
4569 */
4570 if (cache->offset + cache->len == offset &&
4571 cache->phys + cache->len == phys &&
4572 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4573 (flags & ~FIEMAP_EXTENT_LAST)) {
4574 cache->len += len;
4575 cache->flags |= flags;
4576 goto try_submit_last;
4577 }
4578
4579 /* Not mergeable, need to submit cached one */
4580 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4581 cache->len, cache->flags);
4582 cache->cached = false;
4583 if (ret)
4584 return ret;
4585assign:
4586 cache->cached = true;
4587 cache->offset = offset;
4588 cache->phys = phys;
4589 cache->len = len;
4590 cache->flags = flags;
4591try_submit_last:
4592 if (cache->flags & FIEMAP_EXTENT_LAST) {
4593 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4594 cache->phys, cache->len, cache->flags);
4595 cache->cached = false;
4596 }
4597 return ret;
4598}
4599
4600/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004601 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004602 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004603 * The last fiemap cache may still be cached in the following case:
4604 * 0 4k 8k
4605 * |<- Fiemap range ->|
4606 * |<------------ First extent ----------->|
4607 *
4608 * In this case, the first extent range will be cached but not emitted.
4609 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004610 */
David Sterba5c5aff92019-03-20 11:29:46 +01004611static int emit_last_fiemap_cache(struct fiemap_extent_info *fieinfo,
Qu Wenruo848c23b2017-06-22 10:01:21 +08004612 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004613{
4614 int ret;
4615
4616 if (!cache->cached)
4617 return 0;
4618
Qu Wenruo47518322017-04-07 10:43:15 +08004619 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4620 cache->len, cache->flags);
4621 cache->cached = false;
4622 if (ret > 0)
4623 ret = 0;
4624 return ret;
4625}
4626
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004627int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004628 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004629{
Josef Bacik975f84f2010-11-23 19:36:57 +00004630 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004631 u64 off = start;
4632 u64 max = start + len;
4633 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004634 u32 found_type;
4635 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004636 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004637 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004638 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004639 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004640 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004641 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004642 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004643 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004644 struct fiemap_cache cache = { 0 };
David Sterba5911c8f2019-05-15 15:31:04 +02004645 struct ulist *roots;
4646 struct ulist *tmp_ulist;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004647 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004648 u64 em_start = 0;
4649 u64 em_len = 0;
4650 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004651
4652 if (len == 0)
4653 return -EINVAL;
4654
Josef Bacik975f84f2010-11-23 19:36:57 +00004655 path = btrfs_alloc_path();
4656 if (!path)
4657 return -ENOMEM;
4658 path->leave_spinning = 1;
4659
David Sterba5911c8f2019-05-15 15:31:04 +02004660 roots = ulist_alloc(GFP_KERNEL);
4661 tmp_ulist = ulist_alloc(GFP_KERNEL);
4662 if (!roots || !tmp_ulist) {
4663 ret = -ENOMEM;
4664 goto out_free_ulist;
4665 }
4666
Jeff Mahoneyda170662016-06-15 09:22:56 -04004667 start = round_down(start, btrfs_inode_sectorsize(inode));
4668 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004669
Chris Masonec29ed52011-02-23 16:23:20 -05004670 /*
4671 * lookup the last file extent. We're not using i_size here
4672 * because there might be preallocation past i_size
4673 */
David Sterbaf85b7372017-01-20 14:54:07 +01004674 ret = btrfs_lookup_file_extent(NULL, root, path,
4675 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004676 if (ret < 0) {
David Sterba5911c8f2019-05-15 15:31:04 +02004677 goto out_free_ulist;
Liu Bo2d324f52016-05-17 17:21:48 -07004678 } else {
4679 WARN_ON(!ret);
4680 if (ret == 1)
4681 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004682 }
Liu Bo2d324f52016-05-17 17:21:48 -07004683
Josef Bacik975f84f2010-11-23 19:36:57 +00004684 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004685 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004686 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004687
Chris Masonec29ed52011-02-23 16:23:20 -05004688 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004689 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004690 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004691 /* have to trust i_size as the end */
4692 last = (u64)-1;
4693 last_for_get_extent = isize;
4694 } else {
4695 /*
4696 * remember the start of the last extent. There are a
4697 * bunch of different factors that go into the length of the
4698 * extent, so its much less complex to remember where it started
4699 */
4700 last = found_key.offset;
4701 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004702 }
Liu Bofe09e162013-09-22 12:54:23 +08004703 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004704
Chris Masonec29ed52011-02-23 16:23:20 -05004705 /*
4706 * we might have some extents allocated but more delalloc past those
4707 * extents. so, we trust isize unless the start of the last extent is
4708 * beyond isize
4709 */
4710 if (last < isize) {
4711 last = (u64)-1;
4712 last_for_get_extent = isize;
4713 }
4714
David Sterbaff13db42015-12-03 14:30:40 +01004715 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004716 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004717
David Sterbae3350e12017-06-23 04:09:57 +02004718 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004719 if (!em)
4720 goto out;
4721 if (IS_ERR(em)) {
4722 ret = PTR_ERR(em);
4723 goto out;
4724 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004725
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004726 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004727 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004728
Chris Masonea8efc72011-03-08 11:54:40 -05004729 /* break if the extent we found is outside the range */
4730 if (em->start >= max || extent_map_end(em) < off)
4731 break;
4732
4733 /*
4734 * get_extent may return an extent that starts before our
4735 * requested range. We have to make sure the ranges
4736 * we return to fiemap always move forward and don't
4737 * overlap, so adjust the offsets here
4738 */
4739 em_start = max(em->start, off);
4740
4741 /*
4742 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004743 * for adjusting the disk offset below. Only do this if the
4744 * extent isn't compressed since our in ram offset may be past
4745 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004746 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004747 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4748 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004749 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004750 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004751 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004752 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4753 disko = em->block_start + offset_in_extent;
4754 else
4755 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004756
Chris Masonea8efc72011-03-08 11:54:40 -05004757 /*
4758 * bump off for our next call to get_extent
4759 */
4760 off = extent_map_end(em);
4761 if (off >= max)
4762 end = 1;
4763
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004764 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004765 end = 1;
4766 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004767 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004768 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4769 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004770 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004771 flags |= (FIEMAP_EXTENT_DELALLOC |
4772 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004773 } else if (fieinfo->fi_extents_max) {
4774 u64 bytenr = em->block_start -
4775 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004776
Liu Bofe09e162013-09-22 12:54:23 +08004777 /*
4778 * As btrfs supports shared space, this information
4779 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004780 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4781 * then we're just getting a count and we can skip the
4782 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004783 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004784 ret = btrfs_check_shared(root,
4785 btrfs_ino(BTRFS_I(inode)),
David Sterba5911c8f2019-05-15 15:31:04 +02004786 bytenr, roots, tmp_ulist);
Josef Bacikdc046b12014-09-10 16:20:45 -04004787 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004788 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004789 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004790 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004791 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004792 }
4793 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4794 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004795 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4796 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004797
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004798 free_extent_map(em);
4799 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004800 if ((em_start >= last) || em_len == (u64)-1 ||
4801 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004802 flags |= FIEMAP_EXTENT_LAST;
4803 end = 1;
4804 }
4805
Chris Masonec29ed52011-02-23 16:23:20 -05004806 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004807 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004808 if (IS_ERR(em)) {
4809 ret = PTR_ERR(em);
4810 goto out;
4811 }
4812 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004813 flags |= FIEMAP_EXTENT_LAST;
4814 end = 1;
4815 }
Qu Wenruo47518322017-04-07 10:43:15 +08004816 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4817 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004818 if (ret) {
4819 if (ret == 1)
4820 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004821 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004822 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004823 }
4824out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004825 if (!ret)
David Sterba5c5aff92019-03-20 11:29:46 +01004826 ret = emit_last_fiemap_cache(fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004827 free_extent_map(em);
4828out:
Liu Boa52f4cd2013-05-01 16:23:41 +00004829 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004830 &cached_state);
David Sterba5911c8f2019-05-15 15:31:04 +02004831
4832out_free_ulist:
Colin Ian Kinge02d48e2019-07-05 08:26:24 +01004833 btrfs_free_path(path);
David Sterba5911c8f2019-05-15 15:31:04 +02004834 ulist_free(roots);
4835 ulist_free(tmp_ulist);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004836 return ret;
4837}
4838
Chris Mason727011e2010-08-06 13:21:20 -04004839static void __free_extent_buffer(struct extent_buffer *eb)
4840{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004841 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004842 kmem_cache_free(extent_buffer_cache, eb);
4843}
4844
Josef Bacika26e8c92014-03-28 17:07:27 -04004845int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004846{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004847 return (atomic_read(&eb->io_pages) ||
4848 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4849 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004850}
4851
Miao Xie897ca6e92010-10-26 20:57:29 -04004852/*
David Sterba55ac0132018-07-19 17:24:32 +02004853 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004854 */
David Sterba55ac0132018-07-19 17:24:32 +02004855static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004856{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004857 int i;
4858 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004859 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004860
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004861 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004862
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004863 num_pages = num_extent_pages(eb);
4864 for (i = 0; i < num_pages; i++) {
4865 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004866
Forrest Liu5d2361d2015-02-09 17:31:45 +08004867 if (!page)
4868 continue;
4869 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004870 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004871 /*
4872 * We do this since we'll remove the pages after we've
4873 * removed the eb from the radix tree, so we could race
4874 * and have this page now attached to the new eb. So
4875 * only clear page_private if it's still connected to
4876 * this eb.
4877 */
4878 if (PagePrivate(page) &&
4879 page->private == (unsigned long)eb) {
4880 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4881 BUG_ON(PageDirty(page));
4882 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004883 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004884 * We need to make sure we haven't be attached
4885 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004886 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004887 ClearPagePrivate(page);
4888 set_page_private(page, 0);
4889 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004890 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004891 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004892
4893 if (mapped)
4894 spin_unlock(&page->mapping->private_lock);
4895
Nicholas D Steeves01327612016-05-19 21:18:45 -04004896 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004897 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004898 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004899}
4900
4901/*
4902 * Helper for releasing the extent buffer.
4903 */
4904static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4905{
David Sterba55ac0132018-07-19 17:24:32 +02004906 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004907 __free_extent_buffer(eb);
4908}
4909
Josef Bacikf28491e2013-12-16 13:24:27 -05004910static struct extent_buffer *
4911__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004912 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004913{
4914 struct extent_buffer *eb = NULL;
4915
Michal Hockod1b5c562015-08-19 14:17:40 +02004916 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004917 eb->start = start;
4918 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004919 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004920 eb->bflags = 0;
4921 rwlock_init(&eb->lock);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004922 atomic_set(&eb->blocking_readers, 0);
David Sterba06297d82019-05-02 16:47:23 +02004923 eb->blocking_writers = 0;
David Sterbaed1b4ed2018-08-24 16:31:17 +02004924 eb->lock_nested = false;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004925 init_waitqueue_head(&eb->write_lock_wq);
4926 init_waitqueue_head(&eb->read_lock_wq);
4927
4928 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4929
4930 spin_lock_init(&eb->refs_lock);
4931 atomic_set(&eb->refs, 1);
4932 atomic_set(&eb->io_pages, 0);
4933
4934 /*
4935 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4936 */
4937 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4938 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4939 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4940
David Sterba843ccf92018-08-24 14:56:28 +02004941#ifdef CONFIG_BTRFS_DEBUG
David Sterbaf3dc24c2019-05-02 16:51:53 +02004942 eb->spinning_writers = 0;
David Sterbaafd495a2018-08-24 15:57:38 +02004943 atomic_set(&eb->spinning_readers, 0);
David Sterba5c9c7992018-08-24 16:15:51 +02004944 atomic_set(&eb->read_locks, 0);
David Sterba00801ae2019-05-02 16:53:47 +02004945 eb->write_locks = 0;
David Sterba843ccf92018-08-24 14:56:28 +02004946#endif
4947
Josef Bacikdb7f3432013-08-07 14:54:37 -04004948 return eb;
4949}
4950
4951struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4952{
David Sterbacc5e31a2018-03-01 18:20:27 +01004953 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004954 struct page *p;
4955 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004956 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004957
David Sterba3f556f72014-06-15 03:20:26 +02004958 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004959 if (new == NULL)
4960 return NULL;
4961
4962 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004963 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004964 if (!p) {
4965 btrfs_release_extent_buffer(new);
4966 return NULL;
4967 }
4968 attach_extent_buffer_page(new, p);
4969 WARN_ON(PageDirty(p));
4970 SetPageUptodate(p);
4971 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004972 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004973 }
4974
Josef Bacikdb7f3432013-08-07 14:54:37 -04004975 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004976 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004977
4978 return new;
4979}
4980
Omar Sandoval0f331222015-09-29 20:50:31 -07004981struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4982 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004983{
4984 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004985 int num_pages;
4986 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004987
David Sterba3f556f72014-06-15 03:20:26 +02004988 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004989 if (!eb)
4990 return NULL;
4991
David Sterba65ad0102018-06-29 10:56:49 +02004992 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004993 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004994 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004995 if (!eb->pages[i])
4996 goto err;
4997 }
4998 set_extent_buffer_uptodate(eb);
4999 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005000 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04005001
5002 return eb;
5003err:
5004 for (; i > 0; i--)
5005 __free_page(eb->pages[i - 1]);
5006 __free_extent_buffer(eb);
5007 return NULL;
5008}
5009
Omar Sandoval0f331222015-09-29 20:50:31 -07005010struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005011 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07005012{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005013 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07005014}
5015
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005016static void check_buffer_tree_ref(struct extent_buffer *eb)
5017{
Chris Mason242e18c2013-01-29 17:49:37 -05005018 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005019 /* the ref bit is tricky. We have to make sure it is set
5020 * if we have the buffer dirty. Otherwise the
5021 * code to free a buffer can end up dropping a dirty
5022 * page
5023 *
5024 * Once the ref bit is set, it won't go away while the
5025 * buffer is dirty or in writeback, and it also won't
5026 * go away while we have the reference count on the
5027 * eb bumped.
5028 *
5029 * We can't just set the ref bit without bumping the
5030 * ref on the eb because free_extent_buffer might
5031 * see the ref bit and try to clear it. If this happens
5032 * free_extent_buffer might end up dropping our original
5033 * ref by mistake and freeing the page before we are able
5034 * to add one more ref.
5035 *
5036 * So bump the ref count first, then set the bit. If someone
5037 * beat us to it, drop the ref we added.
5038 */
Chris Mason242e18c2013-01-29 17:49:37 -05005039 refs = atomic_read(&eb->refs);
5040 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5041 return;
5042
Josef Bacik594831c2012-07-20 16:11:08 -04005043 spin_lock(&eb->refs_lock);
5044 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005045 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04005046 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005047}
5048
Mel Gorman2457aec2014-06-04 16:10:31 -07005049static void mark_extent_buffer_accessed(struct extent_buffer *eb,
5050 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04005051{
David Sterbacc5e31a2018-03-01 18:20:27 +01005052 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04005053
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005054 check_buffer_tree_ref(eb);
5055
David Sterba65ad0102018-06-29 10:56:49 +02005056 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04005057 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005058 struct page *p = eb->pages[i];
5059
Mel Gorman2457aec2014-06-04 16:10:31 -07005060 if (p != accessed)
5061 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04005062 }
5063}
5064
Josef Bacikf28491e2013-12-16 13:24:27 -05005065struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
5066 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005067{
5068 struct extent_buffer *eb;
5069
5070 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05005071 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005072 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005073 if (eb && atomic_inc_not_zero(&eb->refs)) {
5074 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01005075 /*
5076 * Lock our eb's refs_lock to avoid races with
5077 * free_extent_buffer. When we get our eb it might be flagged
5078 * with EXTENT_BUFFER_STALE and another task running
5079 * free_extent_buffer might have seen that flag set,
5080 * eb->refs == 2, that the buffer isn't under IO (dirty and
5081 * writeback flags not set) and it's still in the tree (flag
5082 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
5083 * of decrementing the extent buffer's reference count twice.
5084 * So here we could race and increment the eb's reference count,
5085 * clear its stale flag, mark it as dirty and drop our reference
5086 * before the other task finishes executing free_extent_buffer,
5087 * which would later result in an attempt to free an extent
5088 * buffer that is dirty.
5089 */
5090 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
5091 spin_lock(&eb->refs_lock);
5092 spin_unlock(&eb->refs_lock);
5093 }
Mel Gorman2457aec2014-06-04 16:10:31 -07005094 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005095 return eb;
5096 }
5097 rcu_read_unlock();
5098
5099 return NULL;
5100}
5101
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005102#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5103struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005104 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005105{
5106 struct extent_buffer *eb, *exists = NULL;
5107 int ret;
5108
5109 eb = find_extent_buffer(fs_info, start);
5110 if (eb)
5111 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04005112 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005113 if (!eb)
Dan Carpenterb6293c82019-12-03 14:24:58 +03005114 return ERR_PTR(-ENOMEM);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005115 eb->fs_info = fs_info;
5116again:
David Sterbae1860a72016-05-09 14:11:38 +02005117 ret = radix_tree_preload(GFP_NOFS);
Dan Carpenterb6293c82019-12-03 14:24:58 +03005118 if (ret) {
5119 exists = ERR_PTR(ret);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005120 goto free_eb;
Dan Carpenterb6293c82019-12-03 14:24:58 +03005121 }
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005122 spin_lock(&fs_info->buffer_lock);
5123 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005124 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005125 spin_unlock(&fs_info->buffer_lock);
5126 radix_tree_preload_end();
5127 if (ret == -EEXIST) {
5128 exists = find_extent_buffer(fs_info, start);
5129 if (exists)
5130 goto free_eb;
5131 else
5132 goto again;
5133 }
5134 check_buffer_tree_ref(eb);
5135 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
5136
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005137 return eb;
5138free_eb:
5139 btrfs_release_extent_buffer(eb);
5140 return exists;
5141}
5142#endif
5143
Josef Bacikf28491e2013-12-16 13:24:27 -05005144struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02005145 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05005146{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005147 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01005148 int num_pages;
5149 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005150 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005151 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005152 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05005153 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05005154 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05005155 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005156 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05005157
Jeff Mahoneyda170662016-06-15 09:22:56 -04005158 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07005159 btrfs_err(fs_info, "bad tree block start %llu", start);
5160 return ERR_PTR(-EINVAL);
5161 }
5162
Josef Bacikf28491e2013-12-16 13:24:27 -05005163 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005164 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04005165 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005166
David Sterba23d79d82014-06-15 02:55:29 +02005167 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04005168 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07005169 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05005170
David Sterba65ad0102018-06-29 10:56:49 +02005171 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04005172 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02005173 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07005174 if (!p) {
5175 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04005176 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005177 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005178
5179 spin_lock(&mapping->private_lock);
5180 if (PagePrivate(p)) {
5181 /*
5182 * We could have already allocated an eb for this page
5183 * and attached one so lets see if we can get a ref on
5184 * the existing eb, and if we can we know it's good and
5185 * we can just return that one, else we know we can just
5186 * overwrite page->private.
5187 */
5188 exists = (struct extent_buffer *)p->private;
5189 if (atomic_inc_not_zero(&exists->refs)) {
5190 spin_unlock(&mapping->private_lock);
5191 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005192 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005193 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005194 goto free_eb;
5195 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005196 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005197
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005198 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005199 * Do this so attach doesn't complain and we need to
5200 * drop the ref the old guy had.
5201 */
5202 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005203 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005204 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005205 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005206 attach_extent_buffer_page(eb, p);
5207 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005208 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005209 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005210 if (!PageUptodate(p))
5211 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005212
5213 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005214 * We can't unlock the pages just yet since the extent buffer
5215 * hasn't been properly inserted in the radix tree, this
5216 * opens a race with btree_releasepage which can free a page
5217 * while we are still filling in all pages for the buffer and
5218 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05005219 */
Chris Masond1310b22008-01-24 16:13:08 -05005220 }
5221 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005222 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005223again:
David Sterbae1860a72016-05-09 14:11:38 +02005224 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005225 if (ret) {
5226 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005227 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005228 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005229
Josef Bacikf28491e2013-12-16 13:24:27 -05005230 spin_lock(&fs_info->buffer_lock);
5231 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005232 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005233 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005234 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005235 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005236 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005237 if (exists)
5238 goto free_eb;
5239 else
Josef Bacik115391d2012-03-09 09:51:43 -05005240 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005241 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005242 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005243 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005244 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005245
5246 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005247 * Now it's safe to unlock the pages because any calls to
5248 * btree_releasepage will correctly detect that a page belongs to a
5249 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005250 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005251 for (i = 0; i < num_pages; i++)
5252 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005253 return eb;
5254
Chris Mason6af118ce2008-07-22 11:18:07 -04005255free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005256 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005257 for (i = 0; i < num_pages; i++) {
5258 if (eb->pages[i])
5259 unlock_page(eb->pages[i]);
5260 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005261
Miao Xie897ca6e92010-10-26 20:57:29 -04005262 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005263 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005264}
Chris Masond1310b22008-01-24 16:13:08 -05005265
Josef Bacik3083ee22012-03-09 16:01:49 -05005266static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5267{
5268 struct extent_buffer *eb =
5269 container_of(head, struct extent_buffer, rcu_head);
5270
5271 __free_extent_buffer(eb);
5272}
5273
David Sterbaf7a52a42013-04-26 14:56:29 +00005274static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005275{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005276 lockdep_assert_held(&eb->refs_lock);
5277
Josef Bacik3083ee22012-03-09 16:01:49 -05005278 WARN_ON(atomic_read(&eb->refs) == 0);
5279 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005280 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005281 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005282
Jan Schmidt815a51c2012-05-16 17:00:02 +02005283 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005284
Josef Bacikf28491e2013-12-16 13:24:27 -05005285 spin_lock(&fs_info->buffer_lock);
5286 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005287 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005288 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005289 } else {
5290 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005291 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005292
5293 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005294 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005295#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005296 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005297 __free_extent_buffer(eb);
5298 return 1;
5299 }
5300#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005301 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005302 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005303 }
5304 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005305
5306 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005307}
5308
Chris Masond1310b22008-01-24 16:13:08 -05005309void free_extent_buffer(struct extent_buffer *eb)
5310{
Chris Mason242e18c2013-01-29 17:49:37 -05005311 int refs;
5312 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005313 if (!eb)
5314 return;
5315
Chris Mason242e18c2013-01-29 17:49:37 -05005316 while (1) {
5317 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005318 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5319 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5320 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005321 break;
5322 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5323 if (old == refs)
5324 return;
5325 }
5326
Josef Bacik3083ee22012-03-09 16:01:49 -05005327 spin_lock(&eb->refs_lock);
5328 if (atomic_read(&eb->refs) == 2 &&
5329 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005330 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005331 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5332 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005333
Josef Bacik3083ee22012-03-09 16:01:49 -05005334 /*
5335 * I know this is terrible, but it's temporary until we stop tracking
5336 * the uptodate bits and such for the extent buffers.
5337 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005338 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005339}
Chris Masond1310b22008-01-24 16:13:08 -05005340
Josef Bacik3083ee22012-03-09 16:01:49 -05005341void free_extent_buffer_stale(struct extent_buffer *eb)
5342{
5343 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005344 return;
5345
Josef Bacik3083ee22012-03-09 16:01:49 -05005346 spin_lock(&eb->refs_lock);
5347 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5348
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005349 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005350 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5351 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005352 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005353}
5354
Chris Mason1d4284b2012-03-28 20:31:37 -04005355void clear_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;
Chris Masond1310b22008-01-24 16:13:08 -05005359 struct page *page;
5360
David Sterba65ad0102018-06-29 10:56:49 +02005361 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005362
5363 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005364 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005365 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005366 continue;
5367
Chris Masona61e6f22008-07-22 11:18:08 -04005368 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005369 WARN_ON(!PagePrivate(page));
5370
Chris Masond1310b22008-01-24 16:13:08 -05005371 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005372 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005373 if (!PageDirty(page))
5374 __xa_clear_mark(&page->mapping->i_pages,
5375 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005376 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005377 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005378 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005379 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005380 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005381}
Chris Masond1310b22008-01-24 16:13:08 -05005382
Liu Boabb57ef2018-09-14 01:44:42 +08005383bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005384{
David Sterbacc5e31a2018-03-01 18:20:27 +01005385 int i;
5386 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005387 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005388
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005389 check_buffer_tree_ref(eb);
5390
Chris Masonb9473432009-03-13 11:00:37 -04005391 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005392
David Sterba65ad0102018-06-29 10:56:49 +02005393 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005394 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005395 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5396
Liu Boabb57ef2018-09-14 01:44:42 +08005397 if (!was_dirty)
5398 for (i = 0; i < num_pages; i++)
5399 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005400
5401#ifdef CONFIG_BTRFS_DEBUG
5402 for (i = 0; i < num_pages; i++)
5403 ASSERT(PageDirty(eb->pages[i]));
5404#endif
5405
Chris Masonb9473432009-03-13 11:00:37 -04005406 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005407}
Chris Masond1310b22008-01-24 16:13:08 -05005408
David Sterba69ba3922015-12-03 13:08:59 +01005409void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005410{
David Sterbacc5e31a2018-03-01 18:20:27 +01005411 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005412 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005413 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005414
Chris Masonb4ce94d2009-02-04 09:25:08 -05005415 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005416 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005417 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005418 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005419 if (page)
5420 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005421 }
Chris Mason1259ab72008-05-12 13:39:03 -04005422}
5423
David Sterba09c25a82015-12-03 13:08:59 +01005424void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005425{
David Sterbacc5e31a2018-03-01 18:20:27 +01005426 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005427 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005428 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005429
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005430 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005431 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005432 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005433 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005434 SetPageUptodate(page);
5435 }
Chris Masond1310b22008-01-24 16:13:08 -05005436}
Chris Masond1310b22008-01-24 16:13:08 -05005437
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005438int read_extent_buffer_pages(struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005439{
David Sterbacc5e31a2018-03-01 18:20:27 +01005440 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005441 struct page *page;
5442 int err;
5443 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005444 int locked_pages = 0;
5445 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005446 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005447 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005448 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005449 unsigned long bio_flags = 0;
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005450 struct extent_io_tree *tree = &BTRFS_I(eb->fs_info->btree_inode)->io_tree;
Chris Masona86c12c2008-02-07 10:50:54 -05005451
Chris Masonb4ce94d2009-02-04 09:25:08 -05005452 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005453 return 0;
5454
David Sterba65ad0102018-06-29 10:56:49 +02005455 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005456 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005457 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005458 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005459 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005460 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005461 } else {
5462 lock_page(page);
5463 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005464 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005465 }
5466 /*
5467 * We need to firstly lock all pages to make sure that
5468 * the uptodate bit of our pages won't be affected by
5469 * clear_extent_buffer_uptodate().
5470 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005471 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005472 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005473 if (!PageUptodate(page)) {
5474 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005475 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005476 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005477 }
Liu Bo2571e732016-08-03 12:33:01 -07005478
Chris Masonce9adaa2008-04-09 16:28:12 -04005479 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005480 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005481 goto unlock_exit;
5482 }
5483
Filipe Manana656f30d2014-09-26 12:25:56 +01005484 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005485 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005486 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005487 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005488 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005489
Chris Masonce9adaa2008-04-09 16:28:12 -04005490 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005491 if (ret) {
5492 atomic_dec(&eb->io_pages);
5493 unlock_page(page);
5494 continue;
5495 }
5496
Chris Masonf1885912008-04-09 16:28:12 -04005497 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005498 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005499 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005500 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005501 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005502 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005503 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005504 /*
5505 * We use &bio in above __extent_read_full_page,
5506 * so we ensure that if it returns error, the
5507 * current page fails to add itself to bio and
5508 * it's been unlocked.
5509 *
5510 * We must dec io_pages by ourselves.
5511 */
5512 atomic_dec(&eb->io_pages);
5513 }
Chris Masond1310b22008-01-24 16:13:08 -05005514 } else {
5515 unlock_page(page);
5516 }
5517 }
5518
Jeff Mahoney355808c2011-10-03 23:23:14 -04005519 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005520 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005521 if (err)
5522 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005523 }
Chris Masona86c12c2008-02-07 10:50:54 -05005524
Arne Jansenbb82ab82011-06-10 14:06:53 +02005525 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005526 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005527
Josef Bacik8436ea912016-09-02 15:40:03 -04005528 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005529 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005530 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005531 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005532 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005533 }
Chris Masond3977122009-01-05 21:25:51 -05005534
Chris Masond1310b22008-01-24 16:13:08 -05005535 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005536
5537unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005538 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005539 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005540 page = eb->pages[locked_pages];
5541 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005542 }
5543 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005544}
Chris Masond1310b22008-01-24 16:13:08 -05005545
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005546void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5547 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005548{
5549 size_t cur;
5550 size_t offset;
5551 struct page *page;
5552 char *kaddr;
5553 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005554 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005555 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005556
Liu Bof716abd2017-08-09 11:10:16 -06005557 if (start + len > eb->len) {
5558 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5559 eb->start, eb->len, start, len);
5560 memset(dst, 0, len);
5561 return;
5562 }
Chris Masond1310b22008-01-24 16:13:08 -05005563
Johannes Thumshirn70730172018-12-05 15:23:03 +01005564 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005565
Chris Masond3977122009-01-05 21:25:51 -05005566 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005567 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005568
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005569 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005570 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005571 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005572
5573 dst += cur;
5574 len -= cur;
5575 offset = 0;
5576 i++;
5577 }
5578}
Chris Masond1310b22008-01-24 16:13:08 -05005579
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005580int read_extent_buffer_to_user(const struct extent_buffer *eb,
5581 void __user *dstv,
5582 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005583{
5584 size_t cur;
5585 size_t offset;
5586 struct page *page;
5587 char *kaddr;
5588 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005589 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005590 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005591 int ret = 0;
5592
5593 WARN_ON(start > eb->len);
5594 WARN_ON(start + len > eb->start + eb->len);
5595
Johannes Thumshirn70730172018-12-05 15:23:03 +01005596 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005597
5598 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005599 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005600
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005601 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005602 kaddr = page_address(page);
5603 if (copy_to_user(dst, kaddr + offset, cur)) {
5604 ret = -EFAULT;
5605 break;
5606 }
5607
5608 dst += cur;
5609 len -= cur;
5610 offset = 0;
5611 i++;
5612 }
5613
5614 return ret;
5615}
5616
Liu Bo415b35a2016-06-17 19:16:21 -07005617/*
5618 * return 0 if the item is found within a page.
5619 * return 1 if the item spans two pages.
5620 * return -EINVAL otherwise.
5621 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005622int map_private_extent_buffer(const struct extent_buffer *eb,
5623 unsigned long start, unsigned long min_len,
5624 char **map, unsigned long *map_start,
5625 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005626{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005627 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005628 char *kaddr;
5629 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005630 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005631 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005632 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005633 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005634
Liu Bof716abd2017-08-09 11:10:16 -06005635 if (start + min_len > eb->len) {
5636 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5637 eb->start, eb->len, start, min_len);
5638 return -EINVAL;
5639 }
5640
Chris Masond1310b22008-01-24 16:13:08 -05005641 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005642 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005643
5644 if (i == 0) {
5645 offset = start_offset;
5646 *map_start = 0;
5647 } else {
5648 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005649 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005650 }
Chris Masond3977122009-01-05 21:25:51 -05005651
David Sterbafb85fc92014-07-31 01:03:53 +02005652 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005653 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005654 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005655 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005656 return 0;
5657}
Chris Masond1310b22008-01-24 16:13:08 -05005658
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005659int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5660 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005661{
5662 size_t cur;
5663 size_t offset;
5664 struct page *page;
5665 char *kaddr;
5666 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005667 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005668 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005669 int ret = 0;
5670
5671 WARN_ON(start > eb->len);
5672 WARN_ON(start + len > eb->start + eb->len);
5673
Johannes Thumshirn70730172018-12-05 15:23:03 +01005674 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005675
Chris Masond3977122009-01-05 21:25:51 -05005676 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005677 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005678
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005679 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005680
Chris Masona6591712011-07-19 12:04:14 -04005681 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005682 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005683 if (ret)
5684 break;
5685
5686 ptr += cur;
5687 len -= cur;
5688 offset = 0;
5689 i++;
5690 }
5691 return ret;
5692}
Chris Masond1310b22008-01-24 16:13:08 -05005693
David Sterbaf157bf72016-11-09 17:43:38 +01005694void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5695 const void *srcv)
5696{
5697 char *kaddr;
5698
5699 WARN_ON(!PageUptodate(eb->pages[0]));
5700 kaddr = page_address(eb->pages[0]);
5701 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5702 BTRFS_FSID_SIZE);
5703}
5704
5705void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5706{
5707 char *kaddr;
5708
5709 WARN_ON(!PageUptodate(eb->pages[0]));
5710 kaddr = page_address(eb->pages[0]);
5711 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5712 BTRFS_FSID_SIZE);
5713}
5714
Chris Masond1310b22008-01-24 16:13:08 -05005715void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5716 unsigned long start, unsigned long len)
5717{
5718 size_t cur;
5719 size_t offset;
5720 struct page *page;
5721 char *kaddr;
5722 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005723 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005724 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005725
5726 WARN_ON(start > eb->len);
5727 WARN_ON(start + len > eb->start + eb->len);
5728
Johannes Thumshirn70730172018-12-05 15:23:03 +01005729 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005730
Chris Masond3977122009-01-05 21:25:51 -05005731 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005732 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005733 WARN_ON(!PageUptodate(page));
5734
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005735 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005736 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005737 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005738
5739 src += cur;
5740 len -= cur;
5741 offset = 0;
5742 i++;
5743 }
5744}
Chris Masond1310b22008-01-24 16:13:08 -05005745
David Sterbab159fa22016-11-08 18:09:03 +01005746void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5747 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005748{
5749 size_t cur;
5750 size_t offset;
5751 struct page *page;
5752 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005753 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005754 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005755
5756 WARN_ON(start > eb->len);
5757 WARN_ON(start + len > eb->start + eb->len);
5758
Johannes Thumshirn70730172018-12-05 15:23:03 +01005759 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005760
Chris Masond3977122009-01-05 21:25:51 -05005761 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005762 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005763 WARN_ON(!PageUptodate(page));
5764
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005765 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005766 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005767 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005768
5769 len -= cur;
5770 offset = 0;
5771 i++;
5772 }
5773}
Chris Masond1310b22008-01-24 16:13:08 -05005774
David Sterba58e80122016-11-08 18:30:31 +01005775void copy_extent_buffer_full(struct extent_buffer *dst,
5776 struct extent_buffer *src)
5777{
5778 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005779 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005780
5781 ASSERT(dst->len == src->len);
5782
David Sterba65ad0102018-06-29 10:56:49 +02005783 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005784 for (i = 0; i < num_pages; i++)
5785 copy_page(page_address(dst->pages[i]),
5786 page_address(src->pages[i]));
5787}
5788
Chris Masond1310b22008-01-24 16:13:08 -05005789void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5790 unsigned long dst_offset, unsigned long src_offset,
5791 unsigned long len)
5792{
5793 u64 dst_len = dst->len;
5794 size_t cur;
5795 size_t offset;
5796 struct page *page;
5797 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005798 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005799 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005800
5801 WARN_ON(src->len != dst_len);
5802
Johannes Thumshirn70730172018-12-05 15:23:03 +01005803 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005804
Chris Masond3977122009-01-05 21:25:51 -05005805 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005806 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005807 WARN_ON(!PageUptodate(page));
5808
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005809 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005810
Chris Masona6591712011-07-19 12:04:14 -04005811 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005812 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005813
5814 src_offset += cur;
5815 len -= cur;
5816 offset = 0;
5817 i++;
5818 }
5819}
Chris Masond1310b22008-01-24 16:13:08 -05005820
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005821/*
5822 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5823 * given bit number
5824 * @eb: the extent buffer
5825 * @start: offset of the bitmap item in the extent buffer
5826 * @nr: bit number
5827 * @page_index: return index of the page in the extent buffer that contains the
5828 * given bit number
5829 * @page_offset: return offset into the page given by page_index
5830 *
5831 * This helper hides the ugliness of finding the byte in an extent buffer which
5832 * contains a given bit.
5833 */
5834static inline void eb_bitmap_offset(struct extent_buffer *eb,
5835 unsigned long start, unsigned long nr,
5836 unsigned long *page_index,
5837 size_t *page_offset)
5838{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005839 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005840 size_t byte_offset = BIT_BYTE(nr);
5841 size_t offset;
5842
5843 /*
5844 * The byte we want is the offset of the extent buffer + the offset of
5845 * the bitmap item in the extent buffer + the offset of the byte in the
5846 * bitmap item.
5847 */
5848 offset = start_offset + start + byte_offset;
5849
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005850 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005851 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005852}
5853
5854/**
5855 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5856 * @eb: the extent buffer
5857 * @start: offset of the bitmap item in the extent buffer
5858 * @nr: bit number to test
5859 */
5860int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5861 unsigned long nr)
5862{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005863 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005864 struct page *page;
5865 unsigned long i;
5866 size_t offset;
5867
5868 eb_bitmap_offset(eb, start, nr, &i, &offset);
5869 page = eb->pages[i];
5870 WARN_ON(!PageUptodate(page));
5871 kaddr = page_address(page);
5872 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5873}
5874
5875/**
5876 * extent_buffer_bitmap_set - set an area of a bitmap
5877 * @eb: the extent buffer
5878 * @start: offset of the bitmap item in the extent buffer
5879 * @pos: bit number of the first bit
5880 * @len: number of bits to set
5881 */
5882void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5883 unsigned long pos, unsigned long len)
5884{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005885 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005886 struct page *page;
5887 unsigned long i;
5888 size_t offset;
5889 const unsigned int size = pos + len;
5890 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005891 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005892
5893 eb_bitmap_offset(eb, start, pos, &i, &offset);
5894 page = eb->pages[i];
5895 WARN_ON(!PageUptodate(page));
5896 kaddr = page_address(page);
5897
5898 while (len >= bits_to_set) {
5899 kaddr[offset] |= mask_to_set;
5900 len -= bits_to_set;
5901 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005902 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005903 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005904 offset = 0;
5905 page = eb->pages[++i];
5906 WARN_ON(!PageUptodate(page));
5907 kaddr = page_address(page);
5908 }
5909 }
5910 if (len) {
5911 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5912 kaddr[offset] |= mask_to_set;
5913 }
5914}
5915
5916
5917/**
5918 * extent_buffer_bitmap_clear - clear an area of a bitmap
5919 * @eb: the extent buffer
5920 * @start: offset of the bitmap item in the extent buffer
5921 * @pos: bit number of the first bit
5922 * @len: number of bits to clear
5923 */
5924void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5925 unsigned long pos, unsigned long len)
5926{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005927 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005928 struct page *page;
5929 unsigned long i;
5930 size_t offset;
5931 const unsigned int size = pos + len;
5932 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005933 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005934
5935 eb_bitmap_offset(eb, start, pos, &i, &offset);
5936 page = eb->pages[i];
5937 WARN_ON(!PageUptodate(page));
5938 kaddr = page_address(page);
5939
5940 while (len >= bits_to_clear) {
5941 kaddr[offset] &= ~mask_to_clear;
5942 len -= bits_to_clear;
5943 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005944 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005945 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005946 offset = 0;
5947 page = eb->pages[++i];
5948 WARN_ON(!PageUptodate(page));
5949 kaddr = page_address(page);
5950 }
5951 }
5952 if (len) {
5953 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5954 kaddr[offset] &= ~mask_to_clear;
5955 }
5956}
5957
Sergei Trofimovich33872062011-04-11 21:52:52 +00005958static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5959{
5960 unsigned long distance = (src > dst) ? src - dst : dst - src;
5961 return distance < len;
5962}
5963
Chris Masond1310b22008-01-24 16:13:08 -05005964static void copy_pages(struct page *dst_page, struct page *src_page,
5965 unsigned long dst_off, unsigned long src_off,
5966 unsigned long len)
5967{
Chris Masona6591712011-07-19 12:04:14 -04005968 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005969 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005970 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005971
Sergei Trofimovich33872062011-04-11 21:52:52 +00005972 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005973 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005974 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005975 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005976 if (areas_overlap(src_off, dst_off, len))
5977 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005978 }
Chris Masond1310b22008-01-24 16:13:08 -05005979
Chris Mason727011e2010-08-06 13:21:20 -04005980 if (must_memmove)
5981 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5982 else
5983 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005984}
5985
5986void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5987 unsigned long src_offset, unsigned long len)
5988{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005989 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005990 size_t cur;
5991 size_t dst_off_in_page;
5992 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005993 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005994 unsigned long dst_i;
5995 unsigned long src_i;
5996
5997 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005998 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005999 "memmove bogus src_offset %lu move len %lu dst len %lu",
6000 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006001 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006002 }
6003 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006004 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006005 "memmove bogus dst_offset %lu move len %lu dst len %lu",
6006 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006007 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006008 }
6009
Chris Masond3977122009-01-05 21:25:51 -05006010 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01006011 dst_off_in_page = offset_in_page(start_offset + dst_offset);
6012 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05006013
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006014 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
6015 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05006016
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006017 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05006018 src_off_in_page));
6019 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006020 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05006021
David Sterbafb85fc92014-07-31 01:03:53 +02006022 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05006023 dst_off_in_page, src_off_in_page, cur);
6024
6025 src_offset += cur;
6026 dst_offset += cur;
6027 len -= cur;
6028 }
6029}
Chris Masond1310b22008-01-24 16:13:08 -05006030
6031void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
6032 unsigned long src_offset, unsigned long len)
6033{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006034 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05006035 size_t cur;
6036 size_t dst_off_in_page;
6037 size_t src_off_in_page;
6038 unsigned long dst_end = dst_offset + len - 1;
6039 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01006040 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05006041 unsigned long dst_i;
6042 unsigned long src_i;
6043
6044 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006045 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006046 "memmove bogus src_offset %lu move len %lu len %lu",
6047 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006048 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006049 }
6050 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006051 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006052 "memmove bogus dst_offset %lu move len %lu len %lu",
6053 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006054 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006055 }
Chris Mason727011e2010-08-06 13:21:20 -04006056 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05006057 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
6058 return;
6059 }
Chris Masond3977122009-01-05 21:25:51 -05006060 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006061 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
6062 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05006063
Johannes Thumshirn70730172018-12-05 15:23:03 +01006064 dst_off_in_page = offset_in_page(start_offset + dst_end);
6065 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05006066
6067 cur = min_t(unsigned long, len, src_off_in_page + 1);
6068 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02006069 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05006070 dst_off_in_page - cur + 1,
6071 src_off_in_page - cur + 1, cur);
6072
6073 dst_end -= cur;
6074 src_end -= cur;
6075 len -= cur;
6076 }
6077}
Chris Mason6af118ce2008-07-22 11:18:07 -04006078
David Sterbaf7a52a42013-04-26 14:56:29 +00006079int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04006080{
Chris Mason6af118ce2008-07-22 11:18:07 -04006081 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04006082
Miao Xie19fe0a82010-10-26 20:57:29 -04006083 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006084 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05006085 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04006086 */
Josef Bacik3083ee22012-03-09 16:01:49 -05006087 spin_lock(&page->mapping->private_lock);
6088 if (!PagePrivate(page)) {
6089 spin_unlock(&page->mapping->private_lock);
6090 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04006091 }
6092
Josef Bacik3083ee22012-03-09 16:01:49 -05006093 eb = (struct extent_buffer *)page->private;
6094 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04006095
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006096 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05006097 * This is a little awful but should be ok, we need to make sure that
6098 * the eb doesn't disappear out from under us while we're looking at
6099 * this page.
6100 */
6101 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006102 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05006103 spin_unlock(&eb->refs_lock);
6104 spin_unlock(&page->mapping->private_lock);
6105 return 0;
6106 }
6107 spin_unlock(&page->mapping->private_lock);
6108
Josef Bacik3083ee22012-03-09 16:01:49 -05006109 /*
6110 * If tree ref isn't set then we know the ref on this eb is a real ref,
6111 * so just return, this page will likely be freed soon anyway.
6112 */
6113 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
6114 spin_unlock(&eb->refs_lock);
6115 return 0;
6116 }
Josef Bacik3083ee22012-03-09 16:01:49 -05006117
David Sterbaf7a52a42013-04-26 14:56:29 +00006118 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04006119}