blob: 36af71040974568c342e273ac4925949ed52ea8a [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(states);
Chris Masond3977122009-01-05 21:25:51 -050039static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000040
Josef Bacik3fd63722020-02-14 16:11:40 -050041static inline void btrfs_leak_debug_add(spinlock_t *lock,
42 struct list_head *new,
43 struct list_head *head)
Eric Sandeen6d49ba12013-04-22 16:12:31 +000044{
45 unsigned long flags;
46
Josef Bacik3fd63722020-02-14 16:11:40 -050047 spin_lock_irqsave(lock, flags);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000048 list_add(new, head);
Josef Bacik3fd63722020-02-14 16:11:40 -050049 spin_unlock_irqrestore(lock, flags);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000050}
51
Josef Bacik3fd63722020-02-14 16:11:40 -050052static inline void btrfs_leak_debug_del(spinlock_t *lock,
53 struct list_head *entry)
Eric Sandeen6d49ba12013-04-22 16:12:31 +000054{
55 unsigned long flags;
56
Josef Bacik3fd63722020-02-14 16:11:40 -050057 spin_lock_irqsave(lock, flags);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000058 list_del(entry);
Josef Bacik3fd63722020-02-14 16:11:40 -050059 spin_unlock_irqrestore(lock, flags);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000060}
61
Josef Bacik3fd63722020-02-14 16:11:40 -050062void btrfs_extent_buffer_leak_debug_check(struct btrfs_fs_info *fs_info)
Josef Bacik33ca8322019-09-23 10:05:17 -040063{
64 struct extent_buffer *eb;
Josef Bacik3fd63722020-02-14 16:11:40 -050065 unsigned long flags;
Josef Bacik33ca8322019-09-23 10:05:17 -040066
Josef Bacik3fd63722020-02-14 16:11:40 -050067 spin_lock_irqsave(&fs_info->eb_leak_lock, flags);
68 while (!list_empty(&fs_info->allocated_ebs)) {
69 eb = list_first_entry(&fs_info->allocated_ebs,
70 struct extent_buffer, leak_list);
Josef Bacik33ca8322019-09-23 10:05:17 -040071 pr_err("BTRFS: buffer leak start %llu len %lu refs %d bflags %lu\n",
72 eb->start, eb->len, atomic_read(&eb->refs), eb->bflags);
73 list_del(&eb->leak_list);
74 kmem_cache_free(extent_buffer_cache, eb);
75 }
Josef Bacik3fd63722020-02-14 16:11:40 -050076 spin_unlock_irqrestore(&fs_info->eb_leak_lock, flags);
Josef Bacik33ca8322019-09-23 10:05:17 -040077}
78
79static inline void btrfs_extent_state_leak_debug_check(void)
Eric Sandeen6d49ba12013-04-22 16:12:31 +000080{
81 struct extent_state *state;
Eric Sandeen6d49ba12013-04-22 16:12:31 +000082
83 while (!list_empty(&states)) {
84 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010085 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010086 state->start, state->end, state->state,
87 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020088 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000089 list_del(&state->leak_list);
90 kmem_cache_free(extent_state_cache, state);
91 }
Eric Sandeen6d49ba12013-04-22 16:12:31 +000092}
David Sterba8d599ae2013-04-30 15:22:23 +000093
Josef Bacika5dee372013-12-13 10:02:44 -050094#define btrfs_debug_check_extent_io_range(tree, start, end) \
95 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000096static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050097 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000098{
Nikolay Borisov65a680f2018-11-01 14:09:49 +020099 struct inode *inode = tree->private_data;
100 u64 isize;
101
102 if (!inode || !is_data_inode(inode))
103 return;
104
105 isize = i_size_read(inode);
106 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
107 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
108 "%s: ino %llu isize %llu odd range [%llu,%llu]",
109 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
110 }
David Sterba8d599ae2013-04-30 15:22:23 +0000111}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000112#else
Josef Bacik3fd63722020-02-14 16:11:40 -0500113#define btrfs_leak_debug_add(lock, new, head) do {} while (0)
114#define btrfs_leak_debug_del(lock, entry) do {} while (0)
Josef Bacik33ca8322019-09-23 10:05:17 -0400115#define btrfs_extent_state_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000116#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400117#endif
Chris Masond1310b22008-01-24 16:13:08 -0500118
Chris Masond1310b22008-01-24 16:13:08 -0500119struct tree_entry {
120 u64 start;
121 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500122 struct rb_node rb_node;
123};
124
125struct extent_page_data {
126 struct bio *bio;
Chris Mason771ed682008-11-06 22:02:51 -0500127 /* tells writepage not to lock the state bits for this range
128 * it still does the unlocking
129 */
Chris Masonffbd5172009-04-20 15:50:09 -0400130 unsigned int extent_locked:1;
131
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600132 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400133 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500134};
135
David Sterba57599c72018-03-01 17:56:34 +0100136static int add_extent_changeset(struct extent_state *state, unsigned bits,
Qu Wenruod38ed272015-10-12 14:53:37 +0800137 struct extent_changeset *changeset,
138 int set)
139{
140 int ret;
141
142 if (!changeset)
David Sterba57599c72018-03-01 17:56:34 +0100143 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800144 if (set && (state->state & bits) == bits)
David Sterba57599c72018-03-01 17:56:34 +0100145 return 0;
Qu Wenruofefdc552015-10-12 15:35:38 +0800146 if (!set && (state->state & bits) == 0)
David Sterba57599c72018-03-01 17:56:34 +0100147 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800148 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100149 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800150 GFP_ATOMIC);
David Sterba57599c72018-03-01 17:56:34 +0100151 return ret;
Qu Wenruod38ed272015-10-12 14:53:37 +0800152}
153
Qu Wenruobb58eb92019-01-25 13:09:15 +0800154static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
155 unsigned long bio_flags)
156{
157 blk_status_t ret = 0;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800158 struct extent_io_tree *tree = bio->bi_private;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800159
160 bio->bi_private = NULL;
161
162 if (tree->ops)
163 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Nikolay Borisov50489a52019-04-10 19:46:04 +0300164 mirror_num, bio_flags);
Qu Wenruobb58eb92019-01-25 13:09:15 +0800165 else
166 btrfsic_submit_bio(bio);
167
168 return blk_status_to_errno(ret);
169}
170
Qu Wenruo30659762019-03-20 14:27:42 +0800171/* Cleanup unsubmitted bios */
172static void end_write_bio(struct extent_page_data *epd, int ret)
173{
174 if (epd->bio) {
175 epd->bio->bi_status = errno_to_blk_status(ret);
176 bio_endio(epd->bio);
177 epd->bio = NULL;
178 }
179}
180
Qu Wenruof4340622019-03-20 14:27:41 +0800181/*
182 * Submit bio from extent page data via submit_one_bio
183 *
184 * Return 0 if everything is OK.
185 * Return <0 for error.
186 */
187static int __must_check flush_write_bio(struct extent_page_data *epd)
Qu Wenruobb58eb92019-01-25 13:09:15 +0800188{
Qu Wenruof4340622019-03-20 14:27:41 +0800189 int ret = 0;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800190
Qu Wenruof4340622019-03-20 14:27:41 +0800191 if (epd->bio) {
Qu Wenruobb58eb92019-01-25 13:09:15 +0800192 ret = submit_one_bio(epd->bio, 0, 0);
Qu Wenruof4340622019-03-20 14:27:41 +0800193 /*
194 * Clean up of epd->bio is handled by its endio function.
195 * And endio is either triggered by successful bio execution
196 * or the error handler of submit bio hook.
197 * So at this point, no matter what happened, we don't need
198 * to clean up epd->bio.
199 */
Qu Wenruobb58eb92019-01-25 13:09:15 +0800200 epd->bio = NULL;
201 }
Qu Wenruof4340622019-03-20 14:27:41 +0800202 return ret;
Qu Wenruobb58eb92019-01-25 13:09:15 +0800203}
David Sterbae2932ee2017-06-23 04:16:17 +0200204
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400205int __init extent_state_cache_init(void)
Chris Masond1310b22008-01-24 16:13:08 -0500206{
David Sterba837e1972012-09-07 03:00:48 -0600207 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200208 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300209 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500210 if (!extent_state_cache)
211 return -ENOMEM;
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400212 return 0;
213}
Chris Masond1310b22008-01-24 16:13:08 -0500214
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400215int __init extent_io_init(void)
216{
David Sterba837e1972012-09-07 03:00:48 -0600217 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200218 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300219 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500220 if (!extent_buffer_cache)
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400221 return -ENOMEM;
Chris Mason9be33952013-05-17 18:30:14 -0400222
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400223 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
224 offsetof(struct btrfs_io_bio, bio),
225 BIOSET_NEED_BVECS))
Chris Mason9be33952013-05-17 18:30:14 -0400226 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700227
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400228 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700229 goto free_bioset;
230
Chris Masond1310b22008-01-24 16:13:08 -0500231 return 0;
232
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700233free_bioset:
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400234 bioset_exit(&btrfs_bioset);
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700235
Chris Mason9be33952013-05-17 18:30:14 -0400236free_buffer_cache:
237 kmem_cache_destroy(extent_buffer_cache);
238 extent_buffer_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500239 return -ENOMEM;
240}
241
Josef Bacik6f0d04f2019-09-23 10:05:18 -0400242void __cold extent_state_cache_exit(void)
243{
244 btrfs_extent_state_leak_debug_check();
245 kmem_cache_destroy(extent_state_cache);
246}
247
David Sterbae67c7182018-02-19 17:24:18 +0100248void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500249{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000250 /*
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);
Josef Bacik3fd63722020-02-14 16:11:40 -0500327 btrfs_leak_debug_add(&leak_lock, &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));
Josef Bacik3fd63722020-02-14 16:11:40 -0500340 btrfs_leak_debug_del(&leak_lock, &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
Filipe Manana55ffaab2020-02-13 10:20:02 +00001066 /*
1067 * If this extent already has all the bits we want set, then
1068 * skip it, not necessary to split it or do anything with it.
1069 */
1070 if ((state->state & bits) == bits) {
1071 start = state->end + 1;
1072 cache_state(state, cached_state);
1073 goto search_again;
1074 }
1075
Xiao Guangrong82337672011-04-20 06:44:57 +00001076 prealloc = alloc_extent_state_atomic(prealloc);
1077 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001078 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001079 if (err)
1080 extent_io_tree_panic(tree, err);
1081
Chris Masond1310b22008-01-24 16:13:08 -05001082 prealloc = NULL;
1083 if (err)
1084 goto out;
1085 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001086 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001087 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001088 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -04001089 if (last_end == (u64)-1)
1090 goto out;
1091 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001092 state = next_state(state);
1093 if (start < end && state && state->start == start &&
1094 !need_resched())
1095 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -05001096 }
1097 goto search_again;
1098 }
1099 /*
1100 * | ---- desired range ---- |
1101 * | state | or | state |
1102 *
1103 * There's a hole, we need to insert something in it and
1104 * ignore the extent we found.
1105 */
1106 if (state->start > start) {
1107 u64 this_end;
1108 if (end < last_start)
1109 this_end = end;
1110 else
Chris Masond3977122009-01-05 21:25:51 -05001111 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +00001112
1113 prealloc = alloc_extent_state_atomic(prealloc);
1114 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001115
1116 /*
1117 * Avoid to free 'prealloc' if it can be merged with
1118 * the later extent.
1119 */
Chris Masond1310b22008-01-24 16:13:08 -05001120 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001121 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001122 if (err)
1123 extent_io_tree_panic(tree, err);
1124
Chris Mason2c64c532009-09-02 15:04:12 -04001125 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001126 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001127 start = this_end + 1;
1128 goto search_again;
1129 }
1130 /*
1131 * | ---- desired range ---- |
1132 * | state |
1133 * We need to split the extent, and set the bit
1134 * on the first half
1135 */
1136 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001137 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001138 *failed_start = start;
1139 err = -EEXIST;
1140 goto out;
1141 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001142
1143 prealloc = alloc_extent_state_atomic(prealloc);
1144 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001145 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001146 if (err)
1147 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001148
Qu Wenruod38ed272015-10-12 14:53:37 +08001149 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001150 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001151 merge_state(tree, prealloc);
1152 prealloc = NULL;
1153 goto out;
1154 }
1155
David Sterbab5a4ba142016-04-27 01:02:15 +02001156search_again:
1157 if (start > end)
1158 goto out;
1159 spin_unlock(&tree->lock);
1160 if (gfpflags_allow_blocking(mask))
1161 cond_resched();
1162 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001163
1164out:
Chris Masoncad321a2008-12-17 14:51:42 -05001165 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001166 if (prealloc)
1167 free_extent_state(prealloc);
1168
1169 return err;
1170
Chris Masond1310b22008-01-24 16:13:08 -05001171}
Chris Masond1310b22008-01-24 16:13:08 -05001172
David Sterba41074882013-04-29 13:38:46 +00001173int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001174 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001175 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001176{
1177 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001178 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001179}
1180
1181
Josef Bacik462d6fa2011-09-26 13:56:12 -04001182/**
Liu Bo10983f22012-07-11 15:26:19 +08001183 * convert_extent_bit - convert all bits in a given range from one bit to
1184 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001185 * @tree: the io tree to search
1186 * @start: the start offset in bytes
1187 * @end: the end offset in bytes (inclusive)
1188 * @bits: the bits to set in this range
1189 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001190 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001191 *
1192 * This will go through and set bits for the given range. If any states exist
1193 * already in this range they are set with the given bit and cleared of the
1194 * clear_bits. This is only meant to be used by things that are mergeable, ie
1195 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1196 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001197 *
1198 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001199 */
1200int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001201 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001202 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001203{
1204 struct extent_state *state;
1205 struct extent_state *prealloc = NULL;
1206 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001207 struct rb_node **p;
1208 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001209 int err = 0;
1210 u64 last_start;
1211 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001212 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001213
Josef Bacika5dee372013-12-13 10:02:44 -05001214 btrfs_debug_check_extent_io_range(tree, start, end);
Qu Wenruoa1d19842019-03-01 10:48:00 +08001215 trace_btrfs_convert_extent_bit(tree, start, end - start + 1, bits,
1216 clear_bits);
David Sterba8d599ae2013-04-30 15:22:23 +00001217
Josef Bacik462d6fa2011-09-26 13:56:12 -04001218again:
David Sterba210aa272016-04-26 23:54:39 +02001219 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001220 /*
1221 * Best effort, don't worry if extent state allocation fails
1222 * here for the first iteration. We might have a cached state
1223 * that matches exactly the target range, in which case no
1224 * extent state allocations are needed. We'll only know this
1225 * after locking the tree.
1226 */
David Sterba210aa272016-04-26 23:54:39 +02001227 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001228 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001229 return -ENOMEM;
1230 }
1231
1232 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001233 if (cached_state && *cached_state) {
1234 state = *cached_state;
1235 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001236 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001237 node = &state->rb_node;
1238 goto hit_next;
1239 }
1240 }
1241
Josef Bacik462d6fa2011-09-26 13:56:12 -04001242 /*
1243 * this search will find all the extents that end after
1244 * our range starts.
1245 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001246 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001247 if (!node) {
1248 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001249 if (!prealloc) {
1250 err = -ENOMEM;
1251 goto out;
1252 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001253 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001254 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001255 if (err)
1256 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001257 cache_state(prealloc, cached_state);
1258 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001259 goto out;
1260 }
1261 state = rb_entry(node, struct extent_state, rb_node);
1262hit_next:
1263 last_start = state->start;
1264 last_end = state->end;
1265
1266 /*
1267 * | ---- desired range ---- |
1268 * | state |
1269 *
1270 * Just lock what we found and keep going
1271 */
1272 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001273 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001274 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001275 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001276 if (last_end == (u64)-1)
1277 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001278 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001279 if (start < end && state && state->start == start &&
1280 !need_resched())
1281 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001282 goto search_again;
1283 }
1284
1285 /*
1286 * | ---- desired range ---- |
1287 * | state |
1288 * or
1289 * | ------------- state -------------- |
1290 *
1291 * We need to split the extent we found, and may flip bits on
1292 * second half.
1293 *
1294 * If the extent we found extends past our
1295 * range, we just split and search again. It'll get split
1296 * again the next time though.
1297 *
1298 * If the extent we found is inside our range, we set the
1299 * desired bit on it.
1300 */
1301 if (state->start < start) {
1302 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001303 if (!prealloc) {
1304 err = -ENOMEM;
1305 goto out;
1306 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001307 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001308 if (err)
1309 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001310 prealloc = NULL;
1311 if (err)
1312 goto out;
1313 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001314 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001315 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001316 state = clear_state_bit(tree, state, &clear_bits, 0,
1317 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001318 if (last_end == (u64)-1)
1319 goto out;
1320 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001321 if (start < end && state && state->start == start &&
1322 !need_resched())
1323 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001324 }
1325 goto search_again;
1326 }
1327 /*
1328 * | ---- desired range ---- |
1329 * | state | or | state |
1330 *
1331 * There's a hole, we need to insert something in it and
1332 * ignore the extent we found.
1333 */
1334 if (state->start > start) {
1335 u64 this_end;
1336 if (end < last_start)
1337 this_end = end;
1338 else
1339 this_end = last_start - 1;
1340
1341 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001342 if (!prealloc) {
1343 err = -ENOMEM;
1344 goto out;
1345 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001346
1347 /*
1348 * Avoid to free 'prealloc' if it can be merged with
1349 * the later extent.
1350 */
1351 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001352 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001353 if (err)
1354 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001355 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001356 prealloc = NULL;
1357 start = this_end + 1;
1358 goto search_again;
1359 }
1360 /*
1361 * | ---- desired range ---- |
1362 * | state |
1363 * We need to split the extent, and set the bit
1364 * on the first half
1365 */
1366 if (state->start <= end && state->end > end) {
1367 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001368 if (!prealloc) {
1369 err = -ENOMEM;
1370 goto out;
1371 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001372
1373 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001374 if (err)
1375 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001376
Qu Wenruod38ed272015-10-12 14:53:37 +08001377 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001378 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001379 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001380 prealloc = NULL;
1381 goto out;
1382 }
1383
Josef Bacik462d6fa2011-09-26 13:56:12 -04001384search_again:
1385 if (start > end)
1386 goto out;
1387 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001388 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001389 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001390 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001391
1392out:
1393 spin_unlock(&tree->lock);
1394 if (prealloc)
1395 free_extent_state(prealloc);
1396
1397 return err;
1398}
1399
Chris Masond1310b22008-01-24 16:13:08 -05001400/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001401int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001402 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001403{
1404 /*
1405 * We don't support EXTENT_LOCKED yet, as current changeset will
1406 * record any bits changed, so for EXTENT_LOCKED case, it will
1407 * either fail with -EEXIST or changeset will record the whole
1408 * range.
1409 */
1410 BUG_ON(bits & EXTENT_LOCKED);
1411
David Sterba2c53b912016-04-26 23:54:39 +02001412 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001413 changeset);
1414}
1415
Nikolay Borisov4ca73652019-03-27 14:24:10 +02001416int set_extent_bits_nowait(struct extent_io_tree *tree, u64 start, u64 end,
1417 unsigned bits)
1418{
1419 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL,
1420 GFP_NOWAIT, NULL);
1421}
1422
Qu Wenruofefdc552015-10-12 15:35:38 +08001423int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1424 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001425 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001426{
1427 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001428 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001429}
1430
Qu Wenruofefdc552015-10-12 15:35:38 +08001431int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001432 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001433{
1434 /*
1435 * Don't support EXTENT_LOCKED case, same reason as
1436 * set_record_extent_bits().
1437 */
1438 BUG_ON(bits & EXTENT_LOCKED);
1439
David Sterbaf734c442016-04-26 23:54:39 +02001440 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001441 changeset);
1442}
1443
Chris Masond352ac62008-09-29 15:18:18 -04001444/*
1445 * either insert or lock state struct between start and end use mask to tell
1446 * us if waiting is desired.
1447 */
Chris Mason1edbb732009-09-02 13:24:36 -04001448int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001449 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001450{
1451 int err;
1452 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001453
Chris Masond1310b22008-01-24 16:13:08 -05001454 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001455 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001456 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001457 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001458 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001459 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1460 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001461 } else
Chris Masond1310b22008-01-24 16:13:08 -05001462 break;
Chris Masond1310b22008-01-24 16:13:08 -05001463 WARN_ON(start > end);
1464 }
1465 return err;
1466}
Chris Masond1310b22008-01-24 16:13:08 -05001467
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001468int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001469{
1470 int err;
1471 u64 failed_start;
1472
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001473 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001474 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001475 if (err == -EEXIST) {
1476 if (failed_start > start)
1477 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001478 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001479 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001480 }
Josef Bacik25179202008-10-29 14:49:05 -04001481 return 1;
1482}
Josef Bacik25179202008-10-29 14:49:05 -04001483
David Sterbabd1fa4f2015-12-03 13:08:59 +01001484void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001485{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001486 unsigned long index = start >> PAGE_SHIFT;
1487 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001488 struct page *page;
1489
1490 while (index <= end_index) {
1491 page = find_get_page(inode->i_mapping, index);
1492 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1493 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001494 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001495 index++;
1496 }
Chris Mason4adaa612013-03-26 13:07:00 -04001497}
1498
David Sterbaf6311572015-12-03 13:08:59 +01001499void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001500{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001501 unsigned long index = start >> PAGE_SHIFT;
1502 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001503 struct page *page;
1504
1505 while (index <= end_index) {
1506 page = find_get_page(inode->i_mapping, index);
1507 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001508 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001509 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001510 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001511 index++;
1512 }
Chris Mason4adaa612013-03-26 13:07:00 -04001513}
1514
Chris Masond352ac62008-09-29 15:18:18 -04001515/* find the first state struct with 'bits' set after 'start', and
1516 * return it. tree->lock must be held. NULL will returned if
1517 * nothing was found after 'start'
1518 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001519static struct extent_state *
1520find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001521 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001522{
1523 struct rb_node *node;
1524 struct extent_state *state;
1525
1526 /*
1527 * this search will find all the extents that end after
1528 * our range starts.
1529 */
1530 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001531 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001532 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001533
Chris Masond3977122009-01-05 21:25:51 -05001534 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001535 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001536 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001537 return state;
Chris Masond3977122009-01-05 21:25:51 -05001538
Chris Masond7fc6402008-02-18 12:12:38 -05001539 node = rb_next(node);
1540 if (!node)
1541 break;
1542 }
1543out:
1544 return NULL;
1545}
Chris Masond7fc6402008-02-18 12:12:38 -05001546
Chris Masond352ac62008-09-29 15:18:18 -04001547/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001548 * find the first offset in the io tree with 'bits' set. zero is
1549 * returned if we find something, and *start_ret and *end_ret are
1550 * set to reflect the state struct that was found.
1551 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001552 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001553 */
1554int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001555 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001556 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001557{
1558 struct extent_state *state;
1559 int ret = 1;
1560
1561 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001562 if (cached_state && *cached_state) {
1563 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001564 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001565 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001566 if (state->state & bits)
1567 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001568 }
1569 free_extent_state(*cached_state);
1570 *cached_state = NULL;
1571 goto out;
1572 }
1573 free_extent_state(*cached_state);
1574 *cached_state = NULL;
1575 }
1576
Xiao Guangrong69261c42011-07-14 03:19:45 +00001577 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001578got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001579 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001580 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001581 *start_ret = state->start;
1582 *end_ret = state->end;
1583 ret = 0;
1584 }
Josef Bacike6138872012-09-27 17:07:30 -04001585out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001586 spin_unlock(&tree->lock);
1587 return ret;
1588}
1589
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001590/**
Josef Bacik41a2ee72020-01-17 09:02:21 -05001591 * find_contiguous_extent_bit: find a contiguous area of bits
1592 * @tree - io tree to check
1593 * @start - offset to start the search from
1594 * @start_ret - the first offset we found with the bits set
1595 * @end_ret - the final contiguous range of the bits that were set
1596 * @bits - bits to look for
1597 *
1598 * set_extent_bit and clear_extent_bit can temporarily split contiguous ranges
1599 * to set bits appropriately, and then merge them again. During this time it
1600 * will drop the tree->lock, so use this helper if you want to find the actual
1601 * contiguous area for given bits. We will search to the first bit we find, and
1602 * then walk down the tree until we find a non-contiguous area. The area
1603 * returned will be the full contiguous area with the bits set.
1604 */
1605int find_contiguous_extent_bit(struct extent_io_tree *tree, u64 start,
1606 u64 *start_ret, u64 *end_ret, unsigned bits)
1607{
1608 struct extent_state *state;
1609 int ret = 1;
1610
1611 spin_lock(&tree->lock);
1612 state = find_first_extent_bit_state(tree, start, bits);
1613 if (state) {
1614 *start_ret = state->start;
1615 *end_ret = state->end;
1616 while ((state = next_state(state)) != NULL) {
1617 if (state->start > (*end_ret + 1))
1618 break;
1619 *end_ret = state->end;
1620 }
1621 ret = 0;
1622 }
1623 spin_unlock(&tree->lock);
1624 return ret;
1625}
1626
1627/**
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001628 * find_first_clear_extent_bit - find the first range that has @bits not set.
1629 * This range could start before @start.
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001630 *
1631 * @tree - the tree to search
1632 * @start - the offset at/after which the found extent should start
1633 * @start_ret - records the beginning of the range
1634 * @end_ret - records the end of the range (inclusive)
1635 * @bits - the set of bits which must be unset
1636 *
1637 * Since unallocated range is also considered one which doesn't have the bits
1638 * set it's possible that @end_ret contains -1, this happens in case the range
1639 * spans (last_range_end, end of device]. In this case it's up to the caller to
1640 * trim @end_ret to the appropriate size.
1641 */
1642void find_first_clear_extent_bit(struct extent_io_tree *tree, u64 start,
1643 u64 *start_ret, u64 *end_ret, unsigned bits)
1644{
1645 struct extent_state *state;
1646 struct rb_node *node, *prev = NULL, *next;
1647
1648 spin_lock(&tree->lock);
1649
1650 /* Find first extent with bits cleared */
1651 while (1) {
1652 node = __etree_search(tree, start, &next, &prev, NULL, NULL);
Nikolay Borisov5750c372020-01-27 11:59:26 +02001653 if (!node && !next && !prev) {
1654 /*
1655 * Tree is completely empty, send full range and let
1656 * caller deal with it
1657 */
1658 *start_ret = 0;
1659 *end_ret = -1;
1660 goto out;
1661 } else if (!node && !next) {
1662 /*
1663 * We are past the last allocated chunk, set start at
1664 * the end of the last extent.
1665 */
1666 state = rb_entry(prev, struct extent_state, rb_node);
1667 *start_ret = state->end + 1;
1668 *end_ret = -1;
1669 goto out;
1670 } else if (!node) {
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001671 node = next;
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001672 }
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001673 /*
1674 * At this point 'node' either contains 'start' or start is
1675 * before 'node'
1676 */
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001677 state = rb_entry(node, struct extent_state, rb_node);
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001678
1679 if (in_range(start, state->start, state->end - state->start + 1)) {
1680 if (state->state & bits) {
1681 /*
1682 * |--range with bits sets--|
1683 * |
1684 * start
1685 */
1686 start = state->end + 1;
1687 } else {
1688 /*
1689 * 'start' falls within a range that doesn't
1690 * have the bits set, so take its start as
1691 * the beginning of the desired range
1692 *
1693 * |--range with bits cleared----|
1694 * |
1695 * start
1696 */
1697 *start_ret = state->start;
1698 break;
1699 }
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001700 } else {
Nikolay Borisov1eaebb32019-06-03 13:06:02 +03001701 /*
1702 * |---prev range---|---hole/unset---|---node range---|
1703 * |
1704 * start
1705 *
1706 * or
1707 *
1708 * |---hole/unset--||--first node--|
1709 * 0 |
1710 * start
1711 */
1712 if (prev) {
1713 state = rb_entry(prev, struct extent_state,
1714 rb_node);
1715 *start_ret = state->end + 1;
1716 } else {
1717 *start_ret = 0;
1718 }
Nikolay Borisov45bfcfc2019-03-27 14:24:17 +02001719 break;
1720 }
1721 }
1722
1723 /*
1724 * Find the longest stretch from start until an entry which has the
1725 * bits set
1726 */
1727 while (1) {
1728 state = rb_entry(node, struct extent_state, rb_node);
1729 if (state->end >= start && !(state->state & bits)) {
1730 *end_ret = state->end;
1731 } else {
1732 *end_ret = state->start - 1;
1733 break;
1734 }
1735
1736 node = rb_next(node);
1737 if (!node)
1738 break;
1739 }
1740out:
1741 spin_unlock(&tree->lock);
1742}
1743
Xiao Guangrong69261c42011-07-14 03:19:45 +00001744/*
Chris Masond352ac62008-09-29 15:18:18 -04001745 * find a contiguous range of bytes in the file marked as delalloc, not
1746 * more than 'max_bytes'. start and end are used to return the range,
1747 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001748 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001749 */
Josef Bacik083e75e2019-09-23 10:05:20 -04001750bool btrfs_find_delalloc_range(struct extent_io_tree *tree, u64 *start,
1751 u64 *end, u64 max_bytes,
1752 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001753{
1754 struct rb_node *node;
1755 struct extent_state *state;
1756 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001757 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001758 u64 total_bytes = 0;
1759
Chris Masoncad321a2008-12-17 14:51:42 -05001760 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001761
Chris Masond1310b22008-01-24 16:13:08 -05001762 /*
1763 * this search will find all the extents that end after
1764 * our range starts.
1765 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001766 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001767 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001768 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001769 goto out;
1770 }
1771
Chris Masond3977122009-01-05 21:25:51 -05001772 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001773 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001774 if (found && (state->start != cur_start ||
1775 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001776 goto out;
1777 }
1778 if (!(state->state & EXTENT_DELALLOC)) {
1779 if (!found)
1780 *end = state->end;
1781 goto out;
1782 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001783 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001784 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001785 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001786 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001787 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001788 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001789 *end = state->end;
1790 cur_start = state->end + 1;
1791 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001792 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001793 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001794 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001795 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001796 break;
1797 }
1798out:
Chris Masoncad321a2008-12-17 14:51:42 -05001799 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001800 return found;
1801}
1802
Liu Boda2c7002017-02-10 16:41:05 +01001803static int __process_pages_contig(struct address_space *mapping,
1804 struct page *locked_page,
1805 pgoff_t start_index, pgoff_t end_index,
1806 unsigned long page_ops, pgoff_t *index_ret);
1807
Jeff Mahoney143bede2012-03-01 14:56:26 +01001808static noinline void __unlock_for_delalloc(struct inode *inode,
1809 struct page *locked_page,
1810 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001811{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001812 unsigned long index = start >> PAGE_SHIFT;
1813 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001814
Liu Bo76c00212017-02-10 16:42:14 +01001815 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001816 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001817 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001818
Liu Bo76c00212017-02-10 16:42:14 +01001819 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1820 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001821}
1822
1823static noinline int lock_delalloc_pages(struct inode *inode,
1824 struct page *locked_page,
1825 u64 delalloc_start,
1826 u64 delalloc_end)
1827{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001828 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001829 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001830 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001831 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001832
Liu Bo76c00212017-02-10 16:42:14 +01001833 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001834 if (index == locked_page->index && index == end_index)
1835 return 0;
1836
Liu Bo76c00212017-02-10 16:42:14 +01001837 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1838 end_index, PAGE_LOCK, &index_ret);
1839 if (ret == -EAGAIN)
1840 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1841 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001842 return ret;
1843}
1844
1845/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001846 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1847 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001848 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001849 * Return: true if we find something
1850 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001851 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001852EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001853noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001854 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001855 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001856{
Goldwyn Rodrigues99780592019-06-21 10:02:54 -05001857 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Nikolay Borisov917aace2018-10-26 14:43:20 +03001858 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001859 u64 delalloc_start;
1860 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001861 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001862 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001863 int ret;
1864 int loops = 0;
1865
1866again:
1867 /* step one, find a bunch of delalloc bytes starting at start */
1868 delalloc_start = *start;
1869 delalloc_end = 0;
Josef Bacik083e75e2019-09-23 10:05:20 -04001870 found = btrfs_find_delalloc_range(tree, &delalloc_start, &delalloc_end,
1871 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001872 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001873 *start = delalloc_start;
1874 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001875 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001876 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001877 }
1878
1879 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001880 * start comes from the offset of locked_page. We have to lock
1881 * pages in order, so we can't process delalloc bytes before
1882 * locked_page
1883 */
Chris Masond3977122009-01-05 21:25:51 -05001884 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001885 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001886
1887 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001888 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001889 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001890 if (delalloc_end + 1 - delalloc_start > max_bytes)
1891 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001892
Chris Masonc8b97812008-10-29 14:49:59 -04001893 /* step two, lock all the pages after the page that has start */
1894 ret = lock_delalloc_pages(inode, locked_page,
1895 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001896 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001897 if (ret == -EAGAIN) {
1898 /* some of the pages are gone, lets avoid looping by
1899 * shortening the size of the delalloc range we're searching
1900 */
Chris Mason9655d292009-09-02 15:22:30 -04001901 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001902 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001903 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001904 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001905 loops = 1;
1906 goto again;
1907 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001908 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001909 goto out_failed;
1910 }
1911 }
Chris Masonc8b97812008-10-29 14:49:59 -04001912
1913 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001914 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001915
1916 /* then test to make sure it is all still delalloc */
1917 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001918 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001919 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001920 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001921 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001922 __unlock_for_delalloc(inode, locked_page,
1923 delalloc_start, delalloc_end);
1924 cond_resched();
1925 goto again;
1926 }
Chris Mason9655d292009-09-02 15:22:30 -04001927 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001928 *start = delalloc_start;
1929 *end = delalloc_end;
1930out_failed:
1931 return found;
1932}
1933
Liu Boda2c7002017-02-10 16:41:05 +01001934static int __process_pages_contig(struct address_space *mapping,
1935 struct page *locked_page,
1936 pgoff_t start_index, pgoff_t end_index,
1937 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001938{
Liu Bo873695b2017-02-02 17:49:22 -08001939 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001940 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001941 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001942 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001943 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001944 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001945 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001946
Liu Boda2c7002017-02-10 16:41:05 +01001947 if (page_ops & PAGE_LOCK) {
1948 ASSERT(page_ops == PAGE_LOCK);
1949 ASSERT(index_ret && *index_ret == start_index);
1950 }
1951
Filipe Manana704de492014-10-06 22:14:22 +01001952 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001953 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001954
Chris Masond3977122009-01-05 21:25:51 -05001955 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001956 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001957 min_t(unsigned long,
1958 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001959 if (ret == 0) {
1960 /*
1961 * Only if we're going to lock these pages,
1962 * can we find nothing at @index.
1963 */
1964 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001965 err = -EAGAIN;
1966 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001967 }
Chris Mason8b62b722009-09-02 16:53:46 -04001968
Liu Boda2c7002017-02-10 16:41:05 +01001969 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001970 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001971 SetPagePrivate2(pages[i]);
1972
Chris Mason1d53c9e2019-07-10 12:28:16 -07001973 if (locked_page && pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001974 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001975 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001976 continue;
1977 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001978 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001979 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001980 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001981 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001982 if (page_ops & PAGE_SET_ERROR)
1983 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001984 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001985 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001986 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001987 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001988 if (page_ops & PAGE_LOCK) {
1989 lock_page(pages[i]);
1990 if (!PageDirty(pages[i]) ||
1991 pages[i]->mapping != mapping) {
1992 unlock_page(pages[i]);
1993 put_page(pages[i]);
1994 err = -EAGAIN;
1995 goto out;
1996 }
1997 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001998 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001999 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04002000 }
2001 nr_pages -= ret;
2002 index += ret;
2003 cond_resched();
2004 }
Liu Boda2c7002017-02-10 16:41:05 +01002005out:
2006 if (err && index_ret)
2007 *index_ret = start_index + pages_locked - 1;
2008 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04002009}
Chris Masonc8b97812008-10-29 14:49:59 -04002010
Liu Bo873695b2017-02-02 17:49:22 -08002011void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
Nikolay Borisov74e91942019-07-17 16:18:16 +03002012 struct page *locked_page,
2013 unsigned clear_bits,
2014 unsigned long page_ops)
Liu Bo873695b2017-02-02 17:49:22 -08002015{
2016 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01002017 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08002018
2019 __process_pages_contig(inode->i_mapping, locked_page,
2020 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01002021 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08002022}
2023
Chris Masond352ac62008-09-29 15:18:18 -04002024/*
2025 * count the number of bytes in the tree that have a given bit(s)
2026 * set. This can be fairly slow, except for EXTENT_DIRTY which is
2027 * cached. The total number found is returned.
2028 */
Chris Masond1310b22008-01-24 16:13:08 -05002029u64 count_range_bits(struct extent_io_tree *tree,
2030 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01002031 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05002032{
2033 struct rb_node *node;
2034 struct extent_state *state;
2035 u64 cur_start = *start;
2036 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05002037 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002038 int found = 0;
2039
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302040 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05002041 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05002042
Chris Masoncad321a2008-12-17 14:51:42 -05002043 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002044 if (cur_start == 0 && bits == EXTENT_DIRTY) {
2045 total_bytes = tree->dirty_bytes;
2046 goto out;
2047 }
2048 /*
2049 * this search will find all the extents that end after
2050 * our range starts.
2051 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002052 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05002053 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05002054 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05002055
Chris Masond3977122009-01-05 21:25:51 -05002056 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05002057 state = rb_entry(node, struct extent_state, rb_node);
2058 if (state->start > search_end)
2059 break;
Chris Masonec29ed52011-02-23 16:23:20 -05002060 if (contig && found && state->start > last + 1)
2061 break;
2062 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05002063 total_bytes += min(search_end, state->end) + 1 -
2064 max(cur_start, state->start);
2065 if (total_bytes >= max_bytes)
2066 break;
2067 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04002068 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05002069 found = 1;
2070 }
Chris Masonec29ed52011-02-23 16:23:20 -05002071 last = state->end;
2072 } else if (contig && found) {
2073 break;
Chris Masond1310b22008-01-24 16:13:08 -05002074 }
2075 node = rb_next(node);
2076 if (!node)
2077 break;
2078 }
2079out:
Chris Masoncad321a2008-12-17 14:51:42 -05002080 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002081 return total_bytes;
2082}
Christoph Hellwigb2950862008-12-02 09:54:17 -05002083
Chris Masond352ac62008-09-29 15:18:18 -04002084/*
2085 * set the private field for a given byte offset in the tree. If there isn't
2086 * an extent_state there already, this does nothing.
2087 */
Josef Bacikb3f167a2019-09-23 10:05:21 -04002088int set_state_failrec(struct extent_io_tree *tree, u64 start,
2089 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05002090{
2091 struct rb_node *node;
2092 struct extent_state *state;
2093 int ret = 0;
2094
Chris Masoncad321a2008-12-17 14:51:42 -05002095 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002096 /*
2097 * this search will find all the extents that end after
2098 * our range starts.
2099 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002100 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04002101 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05002102 ret = -ENOENT;
2103 goto out;
2104 }
2105 state = rb_entry(node, struct extent_state, rb_node);
2106 if (state->start != start) {
2107 ret = -ENOENT;
2108 goto out;
2109 }
David Sterba47dc1962016-02-11 13:24:13 +01002110 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002111out:
Chris Masoncad321a2008-12-17 14:51:42 -05002112 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002113 return ret;
2114}
2115
Josef Bacikb3f167a2019-09-23 10:05:21 -04002116int get_state_failrec(struct extent_io_tree *tree, u64 start,
2117 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05002118{
2119 struct rb_node *node;
2120 struct extent_state *state;
2121 int ret = 0;
2122
Chris Masoncad321a2008-12-17 14:51:42 -05002123 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002124 /*
2125 * this search will find all the extents that end after
2126 * our range starts.
2127 */
Chris Mason80ea96b2008-02-01 14:51:59 -05002128 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04002129 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05002130 ret = -ENOENT;
2131 goto out;
2132 }
2133 state = rb_entry(node, struct extent_state, rb_node);
2134 if (state->start != start) {
2135 ret = -ENOENT;
2136 goto out;
2137 }
David Sterba47dc1962016-02-11 13:24:13 +01002138 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05002139out:
Chris Masoncad321a2008-12-17 14:51:42 -05002140 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002141 return ret;
2142}
2143
2144/*
2145 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05002146 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05002147 * has the bits set. Otherwise, 1 is returned if any bit in the
2148 * range is found set.
2149 */
2150int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01002151 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05002152{
2153 struct extent_state *state = NULL;
2154 struct rb_node *node;
2155 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002156
Chris Masoncad321a2008-12-17 14:51:42 -05002157 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002158 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002159 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002160 node = &cached->rb_node;
2161 else
2162 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002163 while (node && start <= end) {
2164 state = rb_entry(node, struct extent_state, rb_node);
2165
2166 if (filled && state->start > start) {
2167 bitset = 0;
2168 break;
2169 }
2170
2171 if (state->start > end)
2172 break;
2173
2174 if (state->state & bits) {
2175 bitset = 1;
2176 if (!filled)
2177 break;
2178 } else if (filled) {
2179 bitset = 0;
2180 break;
2181 }
Chris Mason46562ce2009-09-23 20:23:16 -04002182
2183 if (state->end == (u64)-1)
2184 break;
2185
Chris Masond1310b22008-01-24 16:13:08 -05002186 start = state->end + 1;
2187 if (start > end)
2188 break;
2189 node = rb_next(node);
2190 if (!node) {
2191 if (filled)
2192 bitset = 0;
2193 break;
2194 }
2195 }
Chris Masoncad321a2008-12-17 14:51:42 -05002196 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002197 return bitset;
2198}
Chris Masond1310b22008-01-24 16:13:08 -05002199
2200/*
2201 * helper function to set a given page up to date if all the
2202 * extents in the tree for that page are up to date
2203 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002204static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002205{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002206 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002207 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002208 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002209 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002210}
2211
Josef Bacik7870d082017-05-05 11:57:15 -04002212int free_io_failure(struct extent_io_tree *failure_tree,
2213 struct extent_io_tree *io_tree,
2214 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002215{
2216 int ret;
2217 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002218
David Sterba47dc1962016-02-11 13:24:13 +01002219 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002220 ret = clear_extent_bits(failure_tree, rec->start,
2221 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002222 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002223 if (ret)
2224 err = ret;
2225
Josef Bacik7870d082017-05-05 11:57:15 -04002226 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05002227 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002228 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05002229 if (ret && !err)
2230 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002231
2232 kfree(rec);
2233 return err;
2234}
2235
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002236/*
2237 * this bypasses the standard btrfs submit functions deliberately, as
2238 * the standard behavior is to write all copies in a raid setup. here we only
2239 * want to write the one bad copy. so we do the mapping for ourselves and issue
2240 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002241 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002242 * actually prevents the read that triggered the error from finishing.
2243 * currently, there can be no more than two copies of every data bit. thus,
2244 * exactly one rewrite is required.
2245 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04002246int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
2247 u64 length, u64 logical, struct page *page,
2248 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002249{
2250 struct bio *bio;
2251 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002252 u64 map_length = 0;
2253 u64 sector;
2254 struct btrfs_bio *bbio = NULL;
2255 int ret;
2256
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002257 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002258 BUG_ON(!mirror_num);
2259
David Sterbac5e4c3d2017-06-12 17:29:41 +02002260 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002261 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002262 map_length = length;
2263
Filipe Mananab5de8d02016-05-27 22:21:27 +01002264 /*
2265 * Avoid races with device replace and make sure our bbio has devices
2266 * associated to its stripes that don't go away while we are doing the
2267 * read repair operation.
2268 */
2269 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03002270 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002271 /*
2272 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2273 * to update all raid stripes, but here we just want to correct
2274 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2275 * stripe's dev and sector.
2276 */
2277 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2278 &map_length, &bbio, 0);
2279 if (ret) {
2280 btrfs_bio_counter_dec(fs_info);
2281 bio_put(bio);
2282 return -EIO;
2283 }
2284 ASSERT(bbio->mirror_num == 1);
2285 } else {
2286 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2287 &map_length, &bbio, mirror_num);
2288 if (ret) {
2289 btrfs_bio_counter_dec(fs_info);
2290 bio_put(bio);
2291 return -EIO;
2292 }
2293 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002294 }
Liu Boc7253282017-03-29 10:53:58 -07002295
2296 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002297 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002298 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002299 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002300 if (!dev || !dev->bdev ||
2301 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
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);
2304 return -EIO;
2305 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002306 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002307 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002308 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002309
Mike Christie4e49ea42016-06-05 14:31:41 -05002310 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002311 /* try to remap that extent elsewhere? */
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);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002314 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002315 return -EIO;
2316 }
2317
David Sterbab14af3b2015-10-08 10:43:10 +02002318 btrfs_info_rl_in_rcu(fs_info,
2319 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002320 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002321 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002322 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002323 bio_put(bio);
2324 return 0;
2325}
2326
David Sterba20a1fbf92019-03-20 11:23:44 +01002327int btrfs_repair_eb_io_failure(struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002328{
David Sterba20a1fbf92019-03-20 11:23:44 +01002329 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacikea466792012-03-26 21:57:36 -04002330 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002331 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002332 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002333
David Howellsbc98a422017-07-17 08:45:34 +01002334 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002335 return -EROFS;
2336
Josef Bacikea466792012-03-26 21:57:36 -04002337 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002338 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002339
Josef Bacik6ec656b2017-05-05 11:57:14 -04002340 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002341 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002342 if (ret)
2343 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002344 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002345 }
2346
2347 return ret;
2348}
2349
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002350/*
2351 * each time an IO finishes, we do a fast check in the IO failure tree
2352 * to see if we need to process or clean up an io_failure_record
2353 */
Josef Bacik7870d082017-05-05 11:57:15 -04002354int clean_io_failure(struct btrfs_fs_info *fs_info,
2355 struct extent_io_tree *failure_tree,
2356 struct extent_io_tree *io_tree, u64 start,
2357 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002358{
2359 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002360 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002361 struct extent_state *state;
2362 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002363 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002364
2365 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002366 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2367 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002368 if (!ret)
2369 return 0;
2370
Josef Bacik7870d082017-05-05 11:57:15 -04002371 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002372 if (ret)
2373 return 0;
2374
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002375 BUG_ON(!failrec->this_mirror);
2376
2377 if (failrec->in_validation) {
2378 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002379 btrfs_debug(fs_info,
2380 "clean_io_failure: freeing dummy error at %llu",
2381 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002382 goto out;
2383 }
David Howellsbc98a422017-07-17 08:45:34 +01002384 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002385 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002386
Josef Bacik7870d082017-05-05 11:57:15 -04002387 spin_lock(&io_tree->lock);
2388 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002389 failrec->start,
2390 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002391 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002392
Miao Xie883d0de2013-07-25 19:22:35 +08002393 if (state && state->start <= failrec->start &&
2394 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002395 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2396 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002397 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002398 repair_io_failure(fs_info, ino, start, failrec->len,
2399 failrec->logical, page, pg_offset,
2400 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002401 }
2402 }
2403
2404out:
Josef Bacik7870d082017-05-05 11:57:15 -04002405 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002406
Miao Xie454ff3d2014-09-12 18:43:58 +08002407 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002408}
2409
Miao Xief6124962014-09-12 18:44:04 +08002410/*
2411 * Can be called when
2412 * - hold extent lock
2413 * - under ordered extent
2414 * - the inode is freeing
2415 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002416void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002417{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002418 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002419 struct io_failure_record *failrec;
2420 struct extent_state *state, *next;
2421
2422 if (RB_EMPTY_ROOT(&failure_tree->state))
2423 return;
2424
2425 spin_lock(&failure_tree->lock);
2426 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2427 while (state) {
2428 if (state->start > end)
2429 break;
2430
2431 ASSERT(state->end <= end);
2432
2433 next = next_state(state);
2434
David Sterba47dc1962016-02-11 13:24:13 +01002435 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002436 free_extent_state(state);
2437 kfree(failrec);
2438
2439 state = next;
2440 }
2441 spin_unlock(&failure_tree->lock);
2442}
2443
Miao Xie2fe63032014-09-12 18:43:59 +08002444int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002445 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002446{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002447 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002448 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002449 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002450 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2451 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2452 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002453 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002454 u64 logical;
2455
David Sterba47dc1962016-02-11 13:24:13 +01002456 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002457 if (ret) {
2458 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2459 if (!failrec)
2460 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002461
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002462 failrec->start = start;
2463 failrec->len = end - start + 1;
2464 failrec->this_mirror = 0;
2465 failrec->bio_flags = 0;
2466 failrec->in_validation = 0;
2467
2468 read_lock(&em_tree->lock);
2469 em = lookup_extent_mapping(em_tree, start, failrec->len);
2470 if (!em) {
2471 read_unlock(&em_tree->lock);
2472 kfree(failrec);
2473 return -EIO;
2474 }
2475
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002476 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002477 free_extent_map(em);
2478 em = NULL;
2479 }
2480 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002481 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002482 kfree(failrec);
2483 return -EIO;
2484 }
Miao Xie2fe63032014-09-12 18:43:59 +08002485
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002486 logical = start - em->start;
2487 logical = em->block_start + logical;
2488 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2489 logical = em->block_start;
2490 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2491 extent_set_compress_type(&failrec->bio_flags,
2492 em->compress_type);
2493 }
Miao Xie2fe63032014-09-12 18:43:59 +08002494
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002495 btrfs_debug(fs_info,
2496 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2497 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002498
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002499 failrec->logical = logical;
2500 free_extent_map(em);
2501
2502 /* set the bits in the private failure tree */
2503 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002504 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002505 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002506 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002507 /* set the bits in the inode's tree */
2508 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002509 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002510 if (ret < 0) {
2511 kfree(failrec);
2512 return ret;
2513 }
2514 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002515 btrfs_debug(fs_info,
2516 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2517 failrec->logical, failrec->start, failrec->len,
2518 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002519 /*
2520 * when data can be on disk more than twice, add to failrec here
2521 * (e.g. with a list for failed_mirror) to make
2522 * clean_io_failure() clean all those errors at once.
2523 */
2524 }
Miao Xie2fe63032014-09-12 18:43:59 +08002525
2526 *failrec_ret = failrec;
2527
2528 return 0;
2529}
2530
Ming Leia0b60d72017-12-18 20:22:11 +08002531bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002532 struct io_failure_record *failrec, int failed_mirror)
2533{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002534 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002535 int num_copies;
2536
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002537 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002538 if (num_copies == 1) {
2539 /*
2540 * we only have a single copy of the data, so don't bother with
2541 * all the retry and error correction code that follows. no
2542 * matter what the error is, it is very likely to persist.
2543 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002544 btrfs_debug(fs_info,
2545 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2546 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002547 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002548 }
2549
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002550 /*
2551 * there are two premises:
2552 * a) deliver good data to the caller
2553 * b) correct the bad sectors on disk
2554 */
Ming Leia0b60d72017-12-18 20:22:11 +08002555 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002556 /*
2557 * to fulfill b), we need to know the exact failing sectors, as
2558 * we don't want to rewrite any more than the failed ones. thus,
2559 * we need separate read requests for the failed bio
2560 *
2561 * if the following BUG_ON triggers, our validation request got
2562 * merged. we need separate requests for our algorithm to work.
2563 */
2564 BUG_ON(failrec->in_validation);
2565 failrec->in_validation = 1;
2566 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002567 } else {
2568 /*
2569 * we're ready to fulfill a) and b) alongside. get a good copy
2570 * of the failed sector and if we succeed, we have setup
2571 * everything for repair_io_failure to do the rest for us.
2572 */
2573 if (failrec->in_validation) {
2574 BUG_ON(failrec->this_mirror != failed_mirror);
2575 failrec->in_validation = 0;
2576 failrec->this_mirror = 0;
2577 }
2578 failrec->failed_mirror = failed_mirror;
2579 failrec->this_mirror++;
2580 if (failrec->this_mirror == failed_mirror)
2581 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002582 }
2583
Miao Xiefacc8a222013-07-25 19:22:34 +08002584 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002585 btrfs_debug(fs_info,
2586 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2587 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002588 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002589 }
2590
Liu Boc3cfb652017-07-13 15:00:50 -07002591 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002592}
2593
2594
2595struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2596 struct io_failure_record *failrec,
2597 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002598 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002599{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002600 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002601 struct bio *bio;
2602 struct btrfs_io_bio *btrfs_failed_bio;
2603 struct btrfs_io_bio *btrfs_bio;
2604
David Sterbac5e4c3d2017-06-12 17:29:41 +02002605 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002606 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002607 bio->bi_iter.bi_sector = failrec->logical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002608 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002609 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002610
Miao Xiefacc8a222013-07-25 19:22:34 +08002611 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2612 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002613 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2614
2615 btrfs_bio = btrfs_io_bio(bio);
2616 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002617 icsum *= csum_size;
2618 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002619 csum_size);
2620 }
2621
Miao Xie2fe63032014-09-12 18:43:59 +08002622 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002623
Miao Xie2fe63032014-09-12 18:43:59 +08002624 return bio;
2625}
2626
2627/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002628 * This is a generic handler for readpage errors. If other copies exist, read
2629 * those and write back good data to the failed position. Does not investigate
2630 * in remapping the failed extent elsewhere, hoping the device will be smart
2631 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002632 */
Miao Xie2fe63032014-09-12 18:43:59 +08002633static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2634 struct page *page, u64 start, u64 end,
2635 int failed_mirror)
2636{
2637 struct io_failure_record *failrec;
2638 struct inode *inode = page->mapping->host;
2639 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002640 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002641 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002642 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002643 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002644 int ret;
Christoph Hellwig8a2ee442019-02-15 19:13:07 +08002645 unsigned failed_bio_pages = failed_bio->bi_iter.bi_size >> PAGE_SHIFT;
Miao Xie2fe63032014-09-12 18:43:59 +08002646
Mike Christie1f7ad752016-06-05 14:31:51 -05002647 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002648
2649 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2650 if (ret)
2651 return ret;
2652
Ming Leia0b60d72017-12-18 20:22:11 +08002653 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002654 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002655 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002656 return -EIO;
2657 }
2658
Ming Leia0b60d72017-12-18 20:22:11 +08002659 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002660 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002661
2662 phy_offset >>= inode->i_sb->s_blocksize_bits;
2663 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2664 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002665 (int)phy_offset, failed_bio->bi_end_io,
2666 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002667 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002668
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002669 btrfs_debug(btrfs_sb(inode->i_sb),
2670 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2671 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002672
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002673 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Nikolay Borisov50489a52019-04-10 19:46:04 +03002674 failrec->bio_flags);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002675 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002676 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002677 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002678 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002679 }
2680
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002681 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002682}
2683
Chris Masond1310b22008-01-24 16:13:08 -05002684/* lots and lots of room for performance fixes in the end_bio funcs */
2685
David Sterbab5227c02015-12-03 13:08:59 +01002686void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002687{
2688 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002689 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002690
Nikolay Borisovc6297322018-11-08 10:18:08 +02002691 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002692
Jeff Mahoney87826df2012-02-15 16:23:57 +01002693 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002694 ClearPageUptodate(page);
2695 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002696 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002697 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002698 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002699}
2700
Chris Masond1310b22008-01-24 16:13:08 -05002701/*
2702 * after a writepage IO is done, we need to:
2703 * clear the uptodate bits on error
2704 * clear the writeback bits in the extent tree for this IO
2705 * end_page_writeback if the page has no more pending IO
2706 *
2707 * Scheduling is not allowed, so the extent state tree is expected
2708 * to have one and only one object corresponding to this IO.
2709 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002710static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002711{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002712 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002713 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002714 u64 start;
2715 u64 end;
Ming Lei6dc4f102019-02-15 19:13:19 +08002716 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002717
David Sterbac09abff2017-07-13 18:10:07 +02002718 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002719 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002720 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002721 struct inode *inode = page->mapping->host;
2722 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002723
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002724 /* We always issue full-page reads, but if some block
2725 * in a page fails to read, blk_update_request() will
2726 * advance bv_offset and adjust bv_len to compensate.
2727 * Print a warning for nonzero offsets, and an error
2728 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002729 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2730 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002731 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002732 "partial page write in btrfs with offset %u and length %u",
2733 bvec->bv_offset, bvec->bv_len);
2734 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002735 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002736 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002737 bvec->bv_offset, bvec->bv_len);
2738 }
Chris Masond1310b22008-01-24 16:13:08 -05002739
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002740 start = page_offset(page);
2741 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002742
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002743 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002744 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002745 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002746
Chris Masond1310b22008-01-24 16:13:08 -05002747 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002748}
2749
Miao Xie883d0de2013-07-25 19:22:35 +08002750static void
2751endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2752 int uptodate)
2753{
2754 struct extent_state *cached = NULL;
2755 u64 end = start + len - 1;
2756
2757 if (uptodate && tree->track_uptodate)
2758 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002759 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002760}
2761
Chris Masond1310b22008-01-24 16:13:08 -05002762/*
2763 * after a readpage IO is done, we need to:
2764 * clear the uptodate bits on error
2765 * set the uptodate bits if things worked
2766 * set the page up to date if all extents in the tree are uptodate
2767 * clear the lock bit in the extent tree
2768 * unlock the page if there are no other extents locked for it
2769 *
2770 * Scheduling is not allowed, so the extent state tree is expected
2771 * to have one and only one object corresponding to this IO.
2772 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002773static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002774{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002775 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002776 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002777 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002778 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002779 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002780 u64 start;
2781 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002782 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002783 u64 extent_start = 0;
2784 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002785 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002786 int ret;
Ming Lei6dc4f102019-02-15 19:13:19 +08002787 struct bvec_iter_all iter_all;
Chris Masond1310b22008-01-24 16:13:08 -05002788
David Sterbac09abff2017-07-13 18:10:07 +02002789 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02002790 bio_for_each_segment_all(bvec, bio, iter_all) {
Chris Masond1310b22008-01-24 16:13:08 -05002791 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002792 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002793 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002794 bool data_inode = btrfs_ino(BTRFS_I(inode))
2795 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002796
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002797 btrfs_debug(fs_info,
2798 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002799 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002800 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002801 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002802 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002803
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002804 /* We always issue full-page reads, but if some block
2805 * in a page fails to read, blk_update_request() will
2806 * advance bv_offset and adjust bv_len to compensate.
2807 * Print a warning for nonzero offsets, and an error
2808 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002809 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2810 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002811 btrfs_err(fs_info,
2812 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002813 bvec->bv_offset, bvec->bv_len);
2814 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002815 btrfs_info(fs_info,
2816 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002817 bvec->bv_offset, bvec->bv_len);
2818 }
Chris Masond1310b22008-01-24 16:13:08 -05002819
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002820 start = page_offset(page);
2821 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002822 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002823
Chris Mason9be33952013-05-17 18:30:14 -04002824 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002825 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002826 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2827 page, start, end,
2828 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002829 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002830 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002831 else
Josef Bacik7870d082017-05-05 11:57:15 -04002832 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2833 failure_tree, tree, start,
2834 page,
2835 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002836 }
Josef Bacikea466792012-03-26 21:57:36 -04002837
Miao Xief2a09da2013-07-25 19:22:33 +08002838 if (likely(uptodate))
2839 goto readpage_ok;
2840
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002841 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002842
2843 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002844 * The generic bio_readpage_error handles errors the
2845 * following way: If possible, new read requests are
2846 * created and submitted and will end up in
2847 * end_bio_extent_readpage as well (if we're lucky,
2848 * not in the !uptodate case). In that case it returns
2849 * 0 and we just go on with the next page in our bio.
2850 * If it can't handle the error it will return -EIO and
2851 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002852 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002853 ret = bio_readpage_error(bio, offset, page, start, end,
2854 mirror);
2855 if (ret == 0) {
2856 uptodate = !bio->bi_status;
2857 offset += len;
2858 continue;
2859 }
2860 } else {
2861 struct extent_buffer *eb;
2862
2863 eb = (struct extent_buffer *)page->private;
2864 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2865 eb->read_mirror = mirror;
2866 atomic_dec(&eb->io_pages);
2867 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2868 &eb->bflags))
2869 btree_readahead_hook(eb, -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002870 }
Miao Xief2a09da2013-07-25 19:22:33 +08002871readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002872 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002873 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002874 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002875 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002876
2877 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002878 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002879 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002880 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002881 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002882 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002883 ClearPageUptodate(page);
2884 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002885 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002886 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002887 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002888
2889 if (unlikely(!uptodate)) {
2890 if (extent_len) {
2891 endio_readpage_release_extent(tree,
2892 extent_start,
2893 extent_len, 1);
2894 extent_start = 0;
2895 extent_len = 0;
2896 }
2897 endio_readpage_release_extent(tree, start,
2898 end - start + 1, 0);
2899 } else if (!extent_len) {
2900 extent_start = start;
2901 extent_len = end + 1 - start;
2902 } else if (extent_start + extent_len == start) {
2903 extent_len += end + 1 - start;
2904 } else {
2905 endio_readpage_release_extent(tree, extent_start,
2906 extent_len, uptodate);
2907 extent_start = start;
2908 extent_len = end + 1 - start;
2909 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002910 }
Chris Masond1310b22008-01-24 16:13:08 -05002911
Miao Xie883d0de2013-07-25 19:22:35 +08002912 if (extent_len)
2913 endio_readpage_release_extent(tree, extent_start, extent_len,
2914 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002915 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002916 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002917}
2918
Chris Mason9be33952013-05-17 18:30:14 -04002919/*
David Sterba184f9992017-06-12 17:29:39 +02002920 * Initialize the members up to but not including 'bio'. Use after allocating a
2921 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2922 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002923 */
David Sterba184f9992017-06-12 17:29:39 +02002924static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002925{
David Sterba184f9992017-06-12 17:29:39 +02002926 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2927}
2928
2929/*
David Sterba6e707bc2017-06-02 17:26:26 +02002930 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2931 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2932 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002933 */
David Sterbae749af442019-06-18 20:00:16 +02002934struct bio *btrfs_bio_alloc(u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002935{
2936 struct bio *bio;
2937
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002938 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
David Sterbac821e7f32017-06-02 18:35:36 +02002939 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002940 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002941 return bio;
2942}
2943
David Sterba8b6c1d52017-06-02 17:48:13 +02002944struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002945{
Miao Xie23ea8e52014-09-12 18:43:54 +08002946 struct btrfs_io_bio *btrfs_bio;
2947 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002948
David Sterba6e707bc2017-06-02 17:26:26 +02002949 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002950 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002951 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002952 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002953 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002954 return new;
2955}
Chris Mason9be33952013-05-17 18:30:14 -04002956
David Sterbac5e4c3d2017-06-12 17:29:41 +02002957struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002958{
Miao Xiefacc8a222013-07-25 19:22:34 +08002959 struct bio *bio;
2960
David Sterba6e707bc2017-06-02 17:26:26 +02002961 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002962 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002963 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002964 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002965}
2966
Liu Boe4770942017-05-16 10:57:14 -07002967struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002968{
2969 struct bio *bio;
2970 struct btrfs_io_bio *btrfs_bio;
2971
2972 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002973 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002974 ASSERT(bio);
2975
2976 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002977 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002978
2979 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002980 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002981 return bio;
2982}
Chris Mason9be33952013-05-17 18:30:14 -04002983
David Sterba4b81ba42017-06-06 19:14:26 +02002984/*
2985 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002986 * @wbc: optional writeback control for io accounting
2987 * @page: page to add to the bio
2988 * @pg_offset: offset of the new bio or to check whether we are adding
2989 * a contiguous page to the previous one
2990 * @size: portion of page that we want to write
2991 * @offset: starting offset in the page
David Sterba5c2b1fd2017-06-06 19:22:55 +02002992 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002993 * @end_io_func: end_io callback for new bio
2994 * @mirror_num: desired mirror to read/write
2995 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2996 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002997 */
David Sterba0ceb34b2020-02-05 19:09:28 +01002998static int submit_extent_page(unsigned int opf,
Chris Masonda2f0f72015-07-02 13:57:22 -07002999 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003000 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02003001 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05003002 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04003003 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04003004 int mirror_num,
3005 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003006 unsigned long bio_flags,
3007 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05003008{
3009 int ret = 0;
3010 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003011 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02003012 sector_t sector = offset >> 9;
David Sterba0ceb34b2020-02-05 19:09:28 +01003013 struct extent_io_tree *tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masond1310b22008-01-24 16:13:08 -05003014
David Sterba5c2b1fd2017-06-06 19:22:55 +02003015 ASSERT(bio_ret);
3016
3017 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02003018 bool contig;
3019 bool can_merge = true;
3020
Chris Masond1310b22008-01-24 16:13:08 -05003021 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02003022 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07003023 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04003024 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07003025 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04003026
Nikolay Borisovda12fe52018-11-27 20:57:58 +02003027 ASSERT(tree->ops);
3028 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02003029 can_merge = false;
3030
3031 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01003032 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02003033 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05003034 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09003035 if (ret < 0) {
3036 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003037 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09003038 }
Chris Masond1310b22008-01-24 16:13:08 -05003039 bio = NULL;
3040 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07003041 if (wbc)
Tejun Heo34e51a52019-06-27 13:39:49 -07003042 wbc_account_cgroup_owner(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05003043 return 0;
3044 }
3045 }
Chris Masonc8b97812008-10-29 14:49:59 -04003046
David Sterbae749af442019-06-18 20:00:16 +02003047 bio = btrfs_bio_alloc(offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02003048 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05003049 bio->bi_end_io = end_io_func;
3050 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06003051 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02003052 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07003053 if (wbc) {
David Sterba429aebc2019-11-18 23:27:55 +01003054 struct block_device *bdev;
3055
3056 bdev = BTRFS_I(page->mapping->host)->root->fs_info->fs_devices->latest_bdev;
3057 bio_set_dev(bio, bdev);
Chris Masonda2f0f72015-07-02 13:57:22 -07003058 wbc_init_bio(wbc, bio);
Tejun Heo34e51a52019-06-27 13:39:49 -07003059 wbc_account_cgroup_owner(wbc, page, page_size);
Chris Masonda2f0f72015-07-02 13:57:22 -07003060 }
Chris Mason70dec802008-01-29 09:59:12 -05003061
David Sterba5c2b1fd2017-06-06 19:22:55 +02003062 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05003063
3064 return ret;
3065}
3066
Eric Sandeen48a3b632013-04-25 20:41:01 +00003067static void attach_extent_buffer_page(struct extent_buffer *eb,
3068 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05003069{
3070 if (!PagePrivate(page)) {
3071 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003072 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05003073 set_page_private(page, (unsigned long)eb);
3074 } else {
3075 WARN_ON(page->private != (unsigned long)eb);
3076 }
3077}
3078
Chris Masond1310b22008-01-24 16:13:08 -05003079void set_page_extent_mapped(struct page *page)
3080{
3081 if (!PagePrivate(page)) {
3082 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003083 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04003084 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05003085 }
3086}
3087
Miao Xie125bac012013-07-25 19:22:37 +08003088static struct extent_map *
3089__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
3090 u64 start, u64 len, get_extent_t *get_extent,
3091 struct extent_map **em_cached)
3092{
3093 struct extent_map *em;
3094
3095 if (em_cached && *em_cached) {
3096 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00003097 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08003098 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02003099 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08003100 return em;
3101 }
3102
3103 free_extent_map(em);
3104 *em_cached = NULL;
3105 }
3106
Omar Sandoval39b07b52019-12-02 17:34:23 -08003107 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len);
Miao Xie125bac012013-07-25 19:22:37 +08003108 if (em_cached && !IS_ERR_OR_NULL(em)) {
3109 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02003110 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08003111 *em_cached = em;
3112 }
3113 return em;
3114}
Chris Masond1310b22008-01-24 16:13:08 -05003115/*
3116 * basic readpage implementation. Locked extent state structs are inserted
3117 * into the tree that are removed when the IO is done (by the end_io
3118 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003119 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07003120 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05003121 */
David Sterbaf657a312020-02-05 19:09:42 +01003122static int __do_readpage(struct page *page,
Miao Xie99740902013-07-25 19:22:36 +08003123 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003124 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003125 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003126 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003127 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05003128{
3129 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003130 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02003131 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003132 u64 cur = start;
3133 u64 extent_offset;
3134 u64 last_byte = i_size_read(inode);
3135 u64 block_start;
3136 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05003137 struct extent_map *em;
Liu Bobaf863b2016-07-11 10:39:07 -07003138 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003139 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02003140 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003141 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04003142 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05003143 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00003144 unsigned long this_bio_flag = 0;
David Sterbaf657a312020-02-05 19:09:42 +01003145 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
David Sterbaae6957e2020-02-05 19:09:30 +01003146
Chris Masond1310b22008-01-24 16:13:08 -05003147 set_page_extent_mapped(page);
3148
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003149 if (!PageUptodate(page)) {
3150 if (cleancache_get_page(page) == 0) {
3151 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003152 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003153 goto out;
3154 }
3155 }
3156
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003157 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04003158 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01003159 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04003160
3161 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003162 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003163 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003164 memset(userpage + zero_offset, 0, iosize);
3165 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003166 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003167 }
3168 }
Chris Masond1310b22008-01-24 16:13:08 -05003169 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01003170 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02003171 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003172
Chris Masond1310b22008-01-24 16:13:08 -05003173 if (cur >= last_byte) {
3174 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003175 struct extent_state *cached = NULL;
3176
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003177 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003178 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003179 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003180 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003181 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003182 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003183 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003184 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003185 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003186 break;
3187 }
Miao Xie125bac012013-07-25 19:22:37 +08003188 em = __get_extent_map(inode, page, pg_offset, cur,
3189 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003190 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003191 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003192 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003193 break;
3194 }
Chris Masond1310b22008-01-24 16:13:08 -05003195 extent_offset = cur - em->start;
3196 BUG_ON(extent_map_end(em) <= cur);
3197 BUG_ON(end < cur);
3198
Li Zefan261507a02010-12-17 14:21:50 +08003199 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003200 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003201 extent_set_compress_type(&this_bio_flag,
3202 em->compress_type);
3203 }
Chris Masonc8b97812008-10-29 14:49:59 -04003204
Chris Masond1310b22008-01-24 16:13:08 -05003205 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3206 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003207 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003208 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3209 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02003210 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003211 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02003212 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003213 disk_io_size = iosize;
3214 }
Chris Masond1310b22008-01-24 16:13:08 -05003215 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003216 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3217 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003218
3219 /*
3220 * If we have a file range that points to a compressed extent
3221 * and it's followed by a consecutive file range that points to
3222 * to the same compressed extent (possibly with a different
3223 * offset and/or length, so it either points to the whole extent
3224 * or only part of it), we must make sure we do not submit a
3225 * single bio to populate the pages for the 2 ranges because
3226 * this makes the compressed extent read zero out the pages
3227 * belonging to the 2nd range. Imagine the following scenario:
3228 *
3229 * File layout
3230 * [0 - 8K] [8K - 24K]
3231 * | |
3232 * | |
3233 * points to extent X, points to extent X,
3234 * offset 4K, length of 8K offset 0, length 16K
3235 *
3236 * [extent X, compressed length = 4K uncompressed length = 16K]
3237 *
3238 * If the bio to read the compressed extent covers both ranges,
3239 * it will decompress extent X into the pages belonging to the
3240 * first range and then it will stop, zeroing out the remaining
3241 * pages that belong to the other range that points to extent X.
3242 * So here we make sure we submit 2 bios, one for the first
3243 * range and another one for the third range. Both will target
3244 * the same physical extent from disk, but we can't currently
3245 * make the compressed bio endio callback populate the pages
3246 * for both ranges because each compressed bio is tightly
3247 * coupled with a single extent map, and each range can have
3248 * an extent map with a different offset value relative to the
3249 * uncompressed data of our extent and different lengths. This
3250 * is a corner case so we prioritize correctness over
3251 * non-optimal behavior (submitting 2 bios for the same extent).
3252 */
3253 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3254 prev_em_start && *prev_em_start != (u64)-1 &&
Filipe Manana8e928212019-02-14 15:17:20 +00003255 *prev_em_start != em->start)
Filipe Manana005efed2015-09-14 09:09:31 +01003256 force_bio_submit = true;
3257
3258 if (prev_em_start)
Filipe Manana8e928212019-02-14 15:17:20 +00003259 *prev_em_start = em->start;
Filipe Manana005efed2015-09-14 09:09:31 +01003260
Chris Masond1310b22008-01-24 16:13:08 -05003261 free_extent_map(em);
3262 em = NULL;
3263
3264 /* we've found a hole, just zero and go on */
3265 if (block_start == EXTENT_MAP_HOLE) {
3266 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003267 struct extent_state *cached = NULL;
3268
Cong Wang7ac687d2011-11-25 23:14:28 +08003269 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003270 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003271 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003272 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003273
3274 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003275 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003276 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003277 cur + iosize - 1, &cached);
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 }
3282 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003283 if (test_range_bit(tree, cur, cur_end,
3284 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003285 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003286 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003287 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003288 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003289 continue;
3290 }
Chris Mason70dec802008-01-29 09:59:12 -05003291 /* we have an inline extent but it didn't get marked up
3292 * to date. Error out
3293 */
3294 if (block_start == EXTENT_MAP_INLINE) {
3295 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003296 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003297 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003298 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003299 continue;
3300 }
Chris Masond1310b22008-01-24 16:13:08 -05003301
David Sterba0ceb34b2020-02-05 19:09:28 +01003302 ret = submit_extent_page(REQ_OP_READ | read_flags, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003303 page, offset, disk_io_size,
David Sterbafa17ed02019-10-03 17:29:05 +02003304 pg_offset, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003305 end_bio_extent_readpage, mirror_num,
3306 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003307 this_bio_flag,
3308 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003309 if (!ret) {
3310 nr++;
3311 *bio_flags = this_bio_flag;
3312 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003313 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003314 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003315 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003316 }
Chris Masond1310b22008-01-24 16:13:08 -05003317 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003318 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003319 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003320out:
Chris Masond1310b22008-01-24 16:13:08 -05003321 if (!nr) {
3322 if (!PageError(page))
3323 SetPageUptodate(page);
3324 unlock_page(page);
3325 }
Liu Bobaf863b2016-07-11 10:39:07 -07003326 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003327}
3328
David Sterbab6660e82020-02-05 19:09:40 +01003329static inline void contiguous_readpages(struct page *pages[], int nr_pages,
Miao Xie99740902013-07-25 19:22:36 +08003330 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003331 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003332 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003333 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003334 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003335{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003336 struct btrfs_inode *inode = BTRFS_I(pages[0]->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003337 int index;
3338
David Sterbab272ae22020-02-05 19:09:33 +01003339 btrfs_lock_and_flush_ordered_range(inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003340
3341 for (index = 0; index < nr_pages; index++) {
David Sterbaf657a312020-02-05 19:09:42 +01003342 __do_readpage(pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003343 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003344 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003345 }
3346}
3347
David Sterba0d44fea2020-02-05 19:09:37 +01003348static int __extent_read_full_page(struct page *page,
Miao Xie99740902013-07-25 19:22:36 +08003349 get_extent_t *get_extent,
3350 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003351 unsigned long *bio_flags,
3352 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003353{
Nikolay Borisov23d31bd2019-05-07 10:19:23 +03003354 struct btrfs_inode *inode = BTRFS_I(page->mapping->host);
Miao Xie99740902013-07-25 19:22:36 +08003355 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003356 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003357 int ret;
3358
David Sterbab272ae22020-02-05 19:09:33 +01003359 btrfs_lock_and_flush_ordered_range(inode, start, end, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003360
David Sterbaf657a312020-02-05 19:09:42 +01003361 ret = __do_readpage(page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003362 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003363 return ret;
3364}
3365
David Sterba71ad38b2020-02-05 19:09:35 +01003366int extent_read_full_page(struct page *page, get_extent_t *get_extent,
3367 int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003368{
3369 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003370 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003371 int ret;
3372
David Sterba0d44fea2020-02-05 19:09:37 +01003373 ret = __extent_read_full_page(page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003374 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003375 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003376 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003377 return ret;
3378}
Chris Masond1310b22008-01-24 16:13:08 -05003379
David Sterba3d4b9492017-02-10 19:33:41 +01003380static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003381 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003382{
3383 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003384}
3385
Chris Masond1310b22008-01-24 16:13:08 -05003386/*
Chris Mason40f76582014-05-21 13:35:51 -07003387 * helper for __extent_writepage, doing all of the delayed allocation setup.
3388 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003389 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003390 * to write the page (copy into inline extent). In this case the IO has
3391 * been started and the page is already unlocked.
3392 *
3393 * This returns 0 if all went well (page still locked)
3394 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003395 */
Chris Mason40f76582014-05-21 13:35:51 -07003396static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003397 struct page *page, struct writeback_control *wbc,
3398 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003399{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003400 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003401 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003402 u64 delalloc_to_write = 0;
3403 u64 delalloc_end = 0;
3404 int ret;
3405 int page_started = 0;
3406
Chris Mason40f76582014-05-21 13:35:51 -07003407
3408 while (delalloc_end < page_end) {
Goldwyn Rodrigues99780592019-06-21 10:02:54 -05003409 found = find_lock_delalloc_range(inode, page,
Chris Mason40f76582014-05-21 13:35:51 -07003410 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003411 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003412 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003413 delalloc_start = delalloc_end + 1;
3414 continue;
3415 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003416 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3417 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003418 if (ret) {
3419 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003420 /*
3421 * btrfs_run_delalloc_range should return < 0 for error
3422 * but just in case, we use > 0 here meaning the IO is
3423 * started, so we don't want to return > 0 unless
3424 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003425 */
3426 ret = ret < 0 ? ret : -EIO;
3427 goto done;
3428 }
3429 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003430 * delalloc_end is already one less than the total length, so
3431 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003432 */
3433 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003434 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003435 delalloc_start = delalloc_end + 1;
3436 }
3437 if (wbc->nr_to_write < delalloc_to_write) {
3438 int thresh = 8192;
3439
3440 if (delalloc_to_write < thresh * 2)
3441 thresh = delalloc_to_write;
3442 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3443 thresh);
3444 }
3445
3446 /* did the fill delalloc function already unlock and start
3447 * the IO?
3448 */
3449 if (page_started) {
3450 /*
3451 * we've unlocked the page, so we can't update
3452 * the mapping's writeback index, just update
3453 * nr_to_write.
3454 */
3455 wbc->nr_to_write -= *nr_written;
3456 return 1;
3457 }
3458
3459 ret = 0;
3460
3461done:
3462 return ret;
3463}
3464
3465/*
3466 * helper for __extent_writepage. This calls the writepage start hooks,
3467 * and does the loop to map the page into extents and bios.
3468 *
3469 * We return 1 if the IO is started and the page is unlocked,
3470 * 0 if all went well (page still locked)
3471 * < 0 if there were errors (page still locked)
3472 */
3473static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3474 struct page *page,
3475 struct writeback_control *wbc,
3476 struct extent_page_data *epd,
3477 loff_t i_size,
3478 unsigned long nr_written,
David Sterba57e5ffe2019-10-29 18:28:55 +01003479 int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003480{
David Sterba45b08402020-02-05 19:09:26 +01003481 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003482 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003483 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003484 u64 end;
3485 u64 cur = start;
3486 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003487 u64 block_start;
3488 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003489 struct extent_map *em;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003490 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003491 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003492 int ret = 0;
3493 int nr = 0;
David Sterba57e5ffe2019-10-29 18:28:55 +01003494 const unsigned int write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003495 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003496
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003497 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3498 if (ret) {
3499 /* Fixup worker will requeue */
Josef Bacik5ab58052020-01-21 11:51:43 -05003500 redirty_page_for_writepage(wbc, page);
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003501 update_nr_written(wbc, nr_written);
3502 unlock_page(page);
3503 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003504 }
3505
Chris Mason11c83492009-04-20 15:50:09 -04003506 /*
3507 * we don't want to touch the inode after unlocking the page,
3508 * so we update the mapping writeback index now
3509 */
David Sterba3d4b9492017-02-10 19:33:41 +01003510 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003511
Chris Masond1310b22008-01-24 16:13:08 -05003512 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003513 blocksize = inode->i_sb->s_blocksize;
3514
3515 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003516 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003517 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003518
Chris Mason40f76582014-05-21 13:35:51 -07003519 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003520 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003521 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003522 break;
3523 }
Omar Sandoval39b07b52019-12-02 17:34:23 -08003524 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur,
3525 end - cur + 1);
David Sterbac7040052011-04-19 18:00:01 +02003526 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003527 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003528 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003529 break;
3530 }
3531
3532 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003533 em_end = extent_map_end(em);
3534 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003535 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003536 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003537 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003538 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003539 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003540 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003541 free_extent_map(em);
3542 em = NULL;
3543
Chris Masonc8b97812008-10-29 14:49:59 -04003544 /*
3545 * compressed and inline extents are written through other
3546 * paths in the FS
3547 */
3548 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003549 block_start == EXTENT_MAP_INLINE) {
Omar Sandovalc8b04032019-12-02 17:34:24 -08003550 if (compressed)
Chris Masonc8b97812008-10-29 14:49:59 -04003551 nr++;
Omar Sandovalc8b04032019-12-02 17:34:24 -08003552 else
3553 btrfs_writepage_endio_finish_ordered(page, cur,
3554 cur + iosize - 1, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003555 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003556 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003557 continue;
3558 }
Chris Masonc8b97812008-10-29 14:49:59 -04003559
David Sterba5cdc84b2018-07-18 20:32:52 +02003560 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003561 if (!PageWriteback(page)) {
3562 btrfs_err(BTRFS_I(inode)->root->fs_info,
3563 "page %lu not writeback, cur %llu end %llu",
3564 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003565 }
David Sterba58409ed2016-05-04 11:46:10 +02003566
David Sterba0ceb34b2020-02-05 19:09:28 +01003567 ret = submit_extent_page(REQ_OP_WRITE | write_flags, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003568 page, offset, iosize, pg_offset,
David Sterbafa17ed02019-10-03 17:29:05 +02003569 &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003570 end_bio_extent_writepage,
3571 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003572 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003573 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003574 if (PageWriteback(page))
3575 end_page_writeback(page);
3576 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003577
Chris Masond1310b22008-01-24 16:13:08 -05003578 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003579 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003580 nr++;
3581 }
Chris Mason40f76582014-05-21 13:35:51 -07003582 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003583 return ret;
3584}
3585
3586/*
3587 * the writepage semantics are similar to regular writepage. extent
3588 * records are inserted to lock ranges in the tree, and as dirty areas
3589 * are found, they are marked writeback. Then the lock bits are removed
3590 * and the end_io handler clears the writeback ranges
Qu Wenruo30659762019-03-20 14:27:42 +08003591 *
3592 * Return 0 if everything goes well.
3593 * Return <0 for error.
Chris Mason40f76582014-05-21 13:35:51 -07003594 */
3595static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003596 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003597{
3598 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003599 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003600 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003601 int ret;
3602 int nr = 0;
Omar Sandovaleb70d222019-12-02 17:34:20 -08003603 size_t pg_offset;
Chris Mason40f76582014-05-21 13:35:51 -07003604 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003605 unsigned long end_index = i_size >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003606 unsigned long nr_written = 0;
3607
Chris Mason40f76582014-05-21 13:35:51 -07003608 trace___extent_writepage(page, inode, wbc);
3609
3610 WARN_ON(!PageLocked(page));
3611
3612 ClearPageError(page);
3613
Johannes Thumshirn70730172018-12-05 15:23:03 +01003614 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003615 if (page->index > end_index ||
3616 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003617 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003618 unlock_page(page);
3619 return 0;
3620 }
3621
3622 if (page->index == end_index) {
3623 char *userpage;
3624
3625 userpage = kmap_atomic(page);
3626 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003627 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003628 kunmap_atomic(userpage);
3629 flush_dcache_page(page);
3630 }
3631
Chris Mason40f76582014-05-21 13:35:51 -07003632 set_page_extent_mapped(page);
3633
Nikolay Borisov7789a552018-11-08 10:18:06 +02003634 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003635 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003636 if (ret == 1)
Omar Sandoval169d2c82019-12-02 17:34:21 -08003637 return 0;
Nikolay Borisov7789a552018-11-08 10:18:06 +02003638 if (ret)
3639 goto done;
3640 }
Chris Mason40f76582014-05-21 13:35:51 -07003641
3642 ret = __extent_writepage_io(inode, page, wbc, epd,
David Sterba57e5ffe2019-10-29 18:28:55 +01003643 i_size, nr_written, &nr);
Chris Mason40f76582014-05-21 13:35:51 -07003644 if (ret == 1)
Omar Sandoval169d2c82019-12-02 17:34:21 -08003645 return 0;
Chris Mason40f76582014-05-21 13:35:51 -07003646
3647done:
Chris Masond1310b22008-01-24 16:13:08 -05003648 if (nr == 0) {
3649 /* make sure the mapping tag for page dirty gets cleared */
3650 set_page_writeback(page);
3651 end_page_writeback(page);
3652 }
Filipe Manana61391d52014-05-09 17:17:40 +01003653 if (PageError(page)) {
3654 ret = ret < 0 ? ret : -EIO;
3655 end_extent_writepage(page, ret, start, page_end);
3656 }
Chris Masond1310b22008-01-24 16:13:08 -05003657 unlock_page(page);
Qu Wenruo30659762019-03-20 14:27:42 +08003658 ASSERT(ret <= 0);
Chris Mason40f76582014-05-21 13:35:51 -07003659 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003660}
3661
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003662void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003663{
NeilBrown74316202014-07-07 15:16:04 +10003664 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3665 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003666}
3667
Filipe Manana18dfa712019-09-11 17:42:00 +01003668static void end_extent_buffer_writeback(struct extent_buffer *eb)
3669{
3670 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3671 smp_mb__after_atomic();
3672 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3673}
3674
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003675/*
3676 * Lock eb pages and flush the bio if we can't the locks
3677 *
3678 * Return 0 if nothing went wrong
3679 * Return >0 is same as 0, except bio is not submitted
3680 * Return <0 if something went wrong, no page is locked
3681 */
David Sterba9df76fb2019-03-20 11:21:41 +01003682static noinline_for_stack int lock_extent_buffer_for_io(struct extent_buffer *eb,
Chris Mason0e378df2014-05-19 20:55:27 -07003683 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003684{
David Sterba9df76fb2019-03-20 11:21:41 +01003685 struct btrfs_fs_info *fs_info = eb->fs_info;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003686 int i, num_pages, failed_page_nr;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003687 int flush = 0;
3688 int ret = 0;
3689
3690 if (!btrfs_try_tree_write_lock(eb)) {
Qu Wenruof4340622019-03-20 14:27:41 +08003691 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003692 if (ret < 0)
3693 return ret;
3694 flush = 1;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003695 btrfs_tree_lock(eb);
3696 }
3697
3698 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3699 btrfs_tree_unlock(eb);
3700 if (!epd->sync_io)
3701 return 0;
3702 if (!flush) {
Qu Wenruof4340622019-03-20 14:27:41 +08003703 ret = flush_write_bio(epd);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003704 if (ret < 0)
3705 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003706 flush = 1;
3707 }
Chris Masona098d8e82012-03-21 12:09:56 -04003708 while (1) {
3709 wait_on_extent_buffer_writeback(eb);
3710 btrfs_tree_lock(eb);
3711 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3712 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003713 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003714 }
3715 }
3716
Josef Bacik51561ff2012-07-20 16:25:24 -04003717 /*
3718 * We need to do this to prevent races in people who check if the eb is
3719 * under IO since we can end up having no IO bits set for a short period
3720 * of time.
3721 */
3722 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003723 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3724 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003725 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003726 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003727 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3728 -eb->len,
3729 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003730 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003731 } else {
3732 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003733 }
3734
3735 btrfs_tree_unlock(eb);
3736
3737 if (!ret)
3738 return ret;
3739
David Sterba65ad0102018-06-29 10:56:49 +02003740 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003741 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003742 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003743
3744 if (!trylock_page(p)) {
3745 if (!flush) {
Filipe Manana18dfa712019-09-11 17:42:00 +01003746 int err;
3747
3748 err = flush_write_bio(epd);
3749 if (err < 0) {
3750 ret = err;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003751 failed_page_nr = i;
3752 goto err_unlock;
3753 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003754 flush = 1;
3755 }
3756 lock_page(p);
3757 }
3758 }
3759
3760 return ret;
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003761err_unlock:
3762 /* Unlock already locked pages */
3763 for (i = 0; i < failed_page_nr; i++)
3764 unlock_page(eb->pages[i]);
Filipe Manana18dfa712019-09-11 17:42:00 +01003765 /*
3766 * Clear EXTENT_BUFFER_WRITEBACK and wake up anyone waiting on it.
3767 * Also set back EXTENT_BUFFER_DIRTY so future attempts to this eb can
3768 * be made and undo everything done before.
3769 */
3770 btrfs_tree_lock(eb);
3771 spin_lock(&eb->refs_lock);
3772 set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
3773 end_extent_buffer_writeback(eb);
3774 spin_unlock(&eb->refs_lock);
3775 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes, eb->len,
3776 fs_info->dirty_metadata_batch);
3777 btrfs_clear_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
3778 btrfs_tree_unlock(eb);
Qu Wenruo2e3c2512019-03-20 14:27:46 +08003779 return ret;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003780}
3781
Filipe Manana656f30d2014-09-26 12:25:56 +01003782static void set_btree_ioerr(struct page *page)
3783{
3784 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Dennis Zhoueb5b64f2019-09-13 14:54:07 +01003785 struct btrfs_fs_info *fs_info;
Filipe Manana656f30d2014-09-26 12:25:56 +01003786
3787 SetPageError(page);
3788 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3789 return;
3790
3791 /*
Dennis Zhoueb5b64f2019-09-13 14:54:07 +01003792 * If we error out, we should add back the dirty_metadata_bytes
3793 * to make it consistent.
3794 */
3795 fs_info = eb->fs_info;
3796 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3797 eb->len, fs_info->dirty_metadata_batch);
3798
3799 /*
Filipe Manana656f30d2014-09-26 12:25:56 +01003800 * If writeback for a btree extent that doesn't belong to a log tree
3801 * failed, increment the counter transaction->eb_write_errors.
3802 * We do this because while the transaction is running and before it's
3803 * committing (when we call filemap_fdata[write|wait]_range against
3804 * the btree inode), we might have
3805 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3806 * returns an error or an error happens during writeback, when we're
3807 * committing the transaction we wouldn't know about it, since the pages
3808 * can be no longer dirty nor marked anymore for writeback (if a
3809 * subsequent modification to the extent buffer didn't happen before the
3810 * transaction commit), which makes filemap_fdata[write|wait]_range not
3811 * able to find the pages tagged with SetPageError at transaction
3812 * commit time. So if this happens we must abort the transaction,
3813 * otherwise we commit a super block with btree roots that point to
3814 * btree nodes/leafs whose content on disk is invalid - either garbage
3815 * or the content of some node/leaf from a past generation that got
3816 * cowed or deleted and is no longer valid.
3817 *
3818 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3819 * not be enough - we need to distinguish between log tree extents vs
3820 * non-log tree extents, and the next filemap_fdatawait_range() call
3821 * will catch and clear such errors in the mapping - and that call might
3822 * be from a log sync and not from a transaction commit. Also, checking
3823 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3824 * not done and would not be reliable - the eb might have been released
3825 * from memory and reading it back again means that flag would not be
3826 * set (since it's a runtime flag, not persisted on disk).
3827 *
3828 * Using the flags below in the btree inode also makes us achieve the
3829 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3830 * writeback for all dirty pages and before filemap_fdatawait_range()
3831 * is called, the writeback for all dirty pages had already finished
3832 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3833 * filemap_fdatawait_range() would return success, as it could not know
3834 * that writeback errors happened (the pages were no longer tagged for
3835 * writeback).
3836 */
3837 switch (eb->log_index) {
3838 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003839 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003840 break;
3841 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003842 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003843 break;
3844 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003845 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003846 break;
3847 default:
3848 BUG(); /* unexpected, logic error */
3849 }
3850}
3851
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003852static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003853{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003854 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003855 struct extent_buffer *eb;
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003856 int done;
Ming Lei6dc4f102019-02-15 19:13:19 +08003857 struct bvec_iter_all iter_all;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003858
David Sterbac09abff2017-07-13 18:10:07 +02003859 ASSERT(!bio_flagged(bio, BIO_CLONED));
Christoph Hellwig2b070cf2019-04-25 09:03:00 +02003860 bio_for_each_segment_all(bvec, bio, iter_all) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003861 struct page *page = bvec->bv_page;
3862
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003863 eb = (struct extent_buffer *)page->private;
3864 BUG_ON(!eb);
3865 done = atomic_dec_and_test(&eb->io_pages);
3866
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003867 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003868 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003869 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003870 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003871 }
3872
3873 end_page_writeback(page);
3874
3875 if (!done)
3876 continue;
3877
3878 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003879 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003880
3881 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003882}
3883
Chris Mason0e378df2014-05-19 20:55:27 -07003884static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003885 struct writeback_control *wbc,
3886 struct extent_page_data *epd)
3887{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003888 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003889 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003890 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003891 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003892 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003893 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003894
Filipe Manana656f30d2014-09-26 12:25:56 +01003895 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003896 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003897 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003898
Liu Bo851cd172016-09-23 13:44:44 -07003899 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3900 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003901 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003902 end = btrfs_node_key_ptr_offset(nritems);
3903
David Sterbab159fa22016-11-08 18:09:03 +01003904 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003905 } else {
3906 /*
3907 * leaf:
3908 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3909 */
3910 start = btrfs_item_nr_offset(nritems);
David Sterba8f881e82019-03-20 11:33:10 +01003911 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(eb);
David Sterbab159fa22016-11-08 18:09:03 +01003912 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003913 }
3914
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003915 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003916 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003917
3918 clear_page_dirty_for_io(p);
3919 set_page_writeback(p);
David Sterba0ceb34b2020-02-05 19:09:28 +01003920 ret = submit_extent_page(REQ_OP_WRITE | write_flags, wbc,
David Sterbafa17ed02019-10-03 17:29:05 +02003921 p, offset, PAGE_SIZE, 0,
David Sterbac2df8bb2017-02-10 19:29:38 +01003922 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003923 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003924 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003925 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003926 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003927 if (PageWriteback(p))
3928 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003929 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3930 end_extent_buffer_writeback(eb);
3931 ret = -EIO;
3932 break;
3933 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003934 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003935 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003936 unlock_page(p);
3937 }
3938
3939 if (unlikely(ret)) {
3940 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003941 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003942 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003943 unlock_page(p);
3944 }
3945 }
3946
3947 return ret;
3948}
3949
3950int btree_write_cache_pages(struct address_space *mapping,
3951 struct writeback_control *wbc)
3952{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003953 struct extent_buffer *eb, *prev_eb = NULL;
3954 struct extent_page_data epd = {
3955 .bio = NULL,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003956 .extent_locked = 0,
3957 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3958 };
Qu Wenruob3ff8f12020-02-12 14:12:44 +08003959 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003960 int ret = 0;
3961 int done = 0;
3962 int nr_to_write_done = 0;
3963 struct pagevec pvec;
3964 int nr_pages;
3965 pgoff_t index;
3966 pgoff_t end; /* Inclusive */
3967 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003968 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003969
Mel Gorman86679822017-11-15 17:37:52 -08003970 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003971 if (wbc->range_cyclic) {
3972 index = mapping->writeback_index; /* Start from prev offset */
3973 end = -1;
Josef Bacik556755a2020-01-03 10:38:44 -05003974 /*
3975 * Start from the beginning does not need to cycle over the
3976 * range, mark it as scanned.
3977 */
3978 scanned = (index == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003979 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003980 index = wbc->range_start >> PAGE_SHIFT;
3981 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003982 scanned = 1;
3983 }
3984 if (wbc->sync_mode == WB_SYNC_ALL)
3985 tag = PAGECACHE_TAG_TOWRITE;
3986 else
3987 tag = PAGECACHE_TAG_DIRTY;
3988retry:
3989 if (wbc->sync_mode == WB_SYNC_ALL)
3990 tag_pages_for_writeback(mapping, index, end);
3991 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003992 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003993 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003994 unsigned i;
3995
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003996 for (i = 0; i < nr_pages; i++) {
3997 struct page *page = pvec.pages[i];
3998
3999 if (!PagePrivate(page))
4000 continue;
4001
Josef Bacikb5bae262012-09-14 13:43:01 -04004002 spin_lock(&mapping->private_lock);
4003 if (!PagePrivate(page)) {
4004 spin_unlock(&mapping->private_lock);
4005 continue;
4006 }
4007
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004008 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04004009
4010 /*
4011 * Shouldn't happen and normally this would be a BUG_ON
4012 * but no sense in crashing the users box for something
4013 * we can survive anyway.
4014 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05304015 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04004016 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004017 continue;
4018 }
4019
Josef Bacikb5bae262012-09-14 13:43:01 -04004020 if (eb == prev_eb) {
4021 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004022 continue;
4023 }
4024
Josef Bacikb5bae262012-09-14 13:43:01 -04004025 ret = atomic_inc_not_zero(&eb->refs);
4026 spin_unlock(&mapping->private_lock);
4027 if (!ret)
4028 continue;
4029
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004030 prev_eb = eb;
David Sterba9df76fb2019-03-20 11:21:41 +01004031 ret = lock_extent_buffer_for_io(eb, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004032 if (!ret) {
4033 free_extent_buffer(eb);
4034 continue;
Filipe Manana0607eb1d2019-09-11 17:42:28 +01004035 } else if (ret < 0) {
4036 done = 1;
4037 free_extent_buffer(eb);
4038 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004039 }
4040
David Sterba0ab02062019-03-20 11:27:57 +01004041 ret = write_one_eb(eb, wbc, &epd);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004042 if (ret) {
4043 done = 1;
4044 free_extent_buffer(eb);
4045 break;
4046 }
4047 free_extent_buffer(eb);
4048
4049 /*
4050 * the filesystem may choose to bump up nr_to_write.
4051 * We have to make sure to honor the new nr_to_write
4052 * at any time
4053 */
4054 nr_to_write_done = wbc->nr_to_write <= 0;
4055 }
4056 pagevec_release(&pvec);
4057 cond_resched();
4058 }
4059 if (!scanned && !done) {
4060 /*
4061 * We hit the last page and there is more work to be done: wrap
4062 * back to the start of the file
4063 */
4064 scanned = 1;
4065 index = 0;
4066 goto retry;
4067 }
Qu Wenruo2b952ee2019-03-20 14:27:43 +08004068 ASSERT(ret <= 0);
4069 if (ret < 0) {
4070 end_write_bio(&epd, ret);
4071 return ret;
4072 }
Qu Wenruob3ff8f12020-02-12 14:12:44 +08004073 /*
4074 * If something went wrong, don't allow any metadata write bio to be
4075 * submitted.
4076 *
4077 * This would prevent use-after-free if we had dirty pages not
4078 * cleaned up, which can still happen by fuzzed images.
4079 *
4080 * - Bad extent tree
4081 * Allowing existing tree block to be allocated for other trees.
4082 *
4083 * - Log tree operations
4084 * Exiting tree blocks get allocated to log tree, bumps its
4085 * generation, then get cleaned in tree re-balance.
4086 * Such tree block will not be written back, since it's clean,
4087 * thus no WRITTEN flag set.
4088 * And after log writes back, this tree block is not traced by
4089 * any dirty extent_io_tree.
4090 *
4091 * - Offending tree block gets re-dirtied from its original owner
4092 * Since it has bumped generation, no WRITTEN flag, it can be
4093 * reused without COWing. This tree block will not be traced
4094 * by btrfs_transaction::dirty_pages.
4095 *
4096 * Now such dirty tree block will not be cleaned by any dirty
4097 * extent io tree. Thus we don't want to submit such wild eb
4098 * if the fs already has error.
4099 */
4100 if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
4101 ret = flush_write_bio(&epd);
4102 } else {
4103 ret = -EUCLEAN;
4104 end_write_bio(&epd, ret);
4105 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004106 return ret;
4107}
4108
Chris Masond1310b22008-01-24 16:13:08 -05004109/**
Chris Mason4bef0842008-09-08 11:18:08 -04004110 * 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 -05004111 * @mapping: address space structure to write
4112 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02004113 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05004114 *
4115 * If a page is already under I/O, write_cache_pages() skips it, even
4116 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
4117 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
4118 * and msync() need to guarantee that all the data which was dirty at the time
4119 * the call was made get new I/O started against them. If wbc->sync_mode is
4120 * WB_SYNC_ALL then we were called for data integrity and we must wait for
4121 * existing IO to complete.
4122 */
David Sterba4242b642017-02-10 19:38:24 +01004123static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04004124 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01004125 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05004126{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004127 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05004128 int ret = 0;
4129 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004130 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004131 struct pagevec pvec;
4132 int nr_pages;
4133 pgoff_t index;
4134 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08004135 pgoff_t done_index;
4136 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004137 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05004138 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05004139
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004140 /*
4141 * We have to hold onto the inode so that ordered extents can do their
4142 * work when the IO finishes. The alternative to this is failing to add
4143 * an ordered extent if the igrab() fails there and that is a huge pain
4144 * to deal with, so instead just hold onto the inode throughout the
4145 * writepages operation. If it fails here we are freeing up the inode
4146 * anyway and we'd rather not waste our time writing out stuff that is
4147 * going to be truncated anyway.
4148 */
4149 if (!igrab(inode))
4150 return 0;
4151
Mel Gorman86679822017-11-15 17:37:52 -08004152 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05004153 if (wbc->range_cyclic) {
4154 index = mapping->writeback_index; /* Start from prev offset */
4155 end = -1;
Josef Bacik556755a2020-01-03 10:38:44 -05004156 /*
4157 * Start from the beginning does not need to cycle over the
4158 * range, mark it as scanned.
4159 */
4160 scanned = (index == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004161 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004162 index = wbc->range_start >> PAGE_SHIFT;
4163 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08004164 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
4165 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004166 scanned = 1;
4167 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08004168
4169 /*
4170 * We do the tagged writepage as long as the snapshot flush bit is set
4171 * and we are the first one who do the filemap_flush() on this inode.
4172 *
4173 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
4174 * not race in and drop the bit.
4175 */
4176 if (range_whole && wbc->nr_to_write == LONG_MAX &&
4177 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
4178 &BTRFS_I(inode)->runtime_flags))
4179 wbc->tagged_writepages = 1;
4180
4181 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004182 tag = PAGECACHE_TAG_TOWRITE;
4183 else
4184 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004185retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08004186 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00004187 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08004188 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004189 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08004190 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
4191 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05004192 unsigned i;
4193
Chris Masond1310b22008-01-24 16:13:08 -05004194 for (i = 0; i < nr_pages; i++) {
4195 struct page *page = pvec.pages[i];
4196
Tejun Heof7bddf12019-10-03 07:27:13 -07004197 done_index = page->index + 1;
Chris Masond1310b22008-01-24 16:13:08 -05004198 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07004199 * At this point we hold neither the i_pages lock nor
4200 * the page lock: the page may be truncated or
4201 * invalidated (changing page->mapping to NULL),
4202 * or even swizzled back from swapper_space to
4203 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05004204 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004205 if (!trylock_page(page)) {
Qu Wenruof4340622019-03-20 14:27:41 +08004206 ret = flush_write_bio(epd);
4207 BUG_ON(ret < 0);
Josef Bacikc8f2f242013-02-11 11:33:00 -05004208 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004209 }
Chris Masond1310b22008-01-24 16:13:08 -05004210
4211 if (unlikely(page->mapping != mapping)) {
4212 unlock_page(page);
4213 continue;
4214 }
4215
Chris Masond2c3f4f2008-11-19 12:44:22 -05004216 if (wbc->sync_mode != WB_SYNC_NONE) {
Qu Wenruof4340622019-03-20 14:27:41 +08004217 if (PageWriteback(page)) {
4218 ret = flush_write_bio(epd);
4219 BUG_ON(ret < 0);
4220 }
Chris Masond1310b22008-01-24 16:13:08 -05004221 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004222 }
Chris Masond1310b22008-01-24 16:13:08 -05004223
4224 if (PageWriteback(page) ||
4225 !clear_page_dirty_for_io(page)) {
4226 unlock_page(page);
4227 continue;
4228 }
4229
David Sterbaaab6e9e2017-11-30 18:00:02 +01004230 ret = __extent_writepage(page, wbc, epd);
Liu Boa91326672016-03-07 16:56:21 -08004231 if (ret < 0) {
Liu Boa91326672016-03-07 16:56:21 -08004232 done = 1;
4233 break;
4234 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004235
4236 /*
4237 * the filesystem may choose to bump up nr_to_write.
4238 * We have to make sure to honor the new nr_to_write
4239 * at any time
4240 */
4241 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004242 }
4243 pagevec_release(&pvec);
4244 cond_resched();
4245 }
Liu Bo894b36e2016-03-07 16:56:22 -08004246 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004247 /*
4248 * We hit the last page and there is more work to be done: wrap
4249 * back to the start of the file
4250 */
4251 scanned = 1;
4252 index = 0;
Josef Bacik42ffb0b2020-01-23 15:33:02 -05004253
4254 /*
4255 * If we're looping we could run into a page that is locked by a
4256 * writer and that writer could be waiting on writeback for a
4257 * page in our current bio, and thus deadlock, so flush the
4258 * write bio here.
4259 */
4260 ret = flush_write_bio(epd);
4261 if (!ret)
4262 goto retry;
Chris Masond1310b22008-01-24 16:13:08 -05004263 }
Liu Boa91326672016-03-07 16:56:21 -08004264
4265 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4266 mapping->writeback_index = done_index;
4267
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004268 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004269 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004270}
Chris Masond1310b22008-01-24 16:13:08 -05004271
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004272int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004273{
4274 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004275 struct extent_page_data epd = {
4276 .bio = NULL,
Chris Mason771ed682008-11-06 22:02:51 -05004277 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004278 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004279 };
Chris Masond1310b22008-01-24 16:13:08 -05004280
Chris Masond1310b22008-01-24 16:13:08 -05004281 ret = __extent_writepage(page, wbc, &epd);
Qu Wenruo30659762019-03-20 14:27:42 +08004282 ASSERT(ret <= 0);
4283 if (ret < 0) {
4284 end_write_bio(&epd, ret);
4285 return ret;
4286 }
Chris Masond1310b22008-01-24 16:13:08 -05004287
Qu Wenruo30659762019-03-20 14:27:42 +08004288 ret = flush_write_bio(&epd);
4289 ASSERT(ret <= 0);
Chris Masond1310b22008-01-24 16:13:08 -05004290 return ret;
4291}
Chris Masond1310b22008-01-24 16:13:08 -05004292
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004293int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004294 int mode)
4295{
4296 int ret = 0;
4297 struct address_space *mapping = inode->i_mapping;
4298 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004299 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4300 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004301
4302 struct extent_page_data epd = {
4303 .bio = NULL,
Chris Mason771ed682008-11-06 22:02:51 -05004304 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004305 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004306 };
4307 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004308 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004309 .nr_to_write = nr_pages * 2,
4310 .range_start = start,
4311 .range_end = end + 1,
Chris Masonec39f762019-07-10 12:28:17 -07004312 /* We're called from an async helper function */
4313 .punt_to_cgroup = 1,
4314 .no_cgroup_owner = 1,
Chris Mason771ed682008-11-06 22:02:51 -05004315 };
4316
Chris Masondbb70be2019-07-10 12:28:18 -07004317 wbc_attach_fdatawrite_inode(&wbc_writepages, inode);
Chris Masond3977122009-01-05 21:25:51 -05004318 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004319 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004320 if (clear_page_dirty_for_io(page))
4321 ret = __extent_writepage(page, &wbc_writepages, &epd);
4322 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004323 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004324 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004325 unlock_page(page);
4326 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004327 put_page(page);
4328 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004329 }
4330
Qu Wenruo02c6db42019-03-20 14:27:45 +08004331 ASSERT(ret <= 0);
Chris Masondbb70be2019-07-10 12:28:18 -07004332 if (ret == 0)
4333 ret = flush_write_bio(&epd);
4334 else
Qu Wenruo02c6db42019-03-20 14:27:45 +08004335 end_write_bio(&epd, ret);
Chris Masondbb70be2019-07-10 12:28:18 -07004336
4337 wbc_detach_inode(&wbc_writepages);
Chris Mason771ed682008-11-06 22:02:51 -05004338 return ret;
4339}
Chris Masond1310b22008-01-24 16:13:08 -05004340
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004341int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004342 struct writeback_control *wbc)
4343{
4344 int ret = 0;
4345 struct extent_page_data epd = {
4346 .bio = NULL,
Chris Mason771ed682008-11-06 22:02:51 -05004347 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004348 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004349 };
4350
David Sterba935db852017-06-23 04:30:28 +02004351 ret = extent_write_cache_pages(mapping, wbc, &epd);
Qu Wenruoa2a72fb2019-03-20 14:27:48 +08004352 ASSERT(ret <= 0);
4353 if (ret < 0) {
4354 end_write_bio(&epd, ret);
4355 return ret;
4356 }
4357 ret = flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004358 return ret;
4359}
Chris Masond1310b22008-01-24 16:13:08 -05004360
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004361int extent_readpages(struct address_space *mapping, struct list_head *pages,
4362 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004363{
4364 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004365 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004366 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004367 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004368 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004369 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004370
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004371 while (!list_empty(pages)) {
Nikolay Borisove65ef212019-03-11 09:55:38 +02004372 u64 contig_end = 0;
4373
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004374 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004375 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004376
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004377 prefetchw(&page->flags);
4378 list_del(&page->lru);
4379 if (add_to_page_cache_lru(page, mapping, page->index,
4380 readahead_gfp_mask(mapping))) {
4381 put_page(page);
Nikolay Borisove65ef212019-03-11 09:55:38 +02004382 break;
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004383 }
4384
4385 pagepool[nr++] = page;
Nikolay Borisove65ef212019-03-11 09:55:38 +02004386 contig_end = page_offset(page) + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004387 }
Liu Bo67c96842012-07-20 21:43:09 -06004388
Nikolay Borisove65ef212019-03-11 09:55:38 +02004389 if (nr) {
4390 u64 contig_start = page_offset(pagepool[0]);
4391
4392 ASSERT(contig_start + nr * PAGE_SIZE - 1 == contig_end);
4393
David Sterbab6660e82020-02-05 19:09:40 +01004394 contiguous_readpages(pagepool, nr, contig_start,
Nikolay Borisove65ef212019-03-11 09:55:38 +02004395 contig_end, &em_cached, &bio, &bio_flags,
4396 &prev_em_start);
4397 }
Chris Masond1310b22008-01-24 16:13:08 -05004398 }
Liu Bo67c96842012-07-20 21:43:09 -06004399
Miao Xie125bac012013-07-25 19:22:37 +08004400 if (em_cached)
4401 free_extent_map(em_cached);
4402
Chris Masond1310b22008-01-24 16:13:08 -05004403 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004404 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004405 return 0;
4406}
Chris Masond1310b22008-01-24 16:13:08 -05004407
4408/*
4409 * basic invalidatepage code, this waits on any locked or writeback
4410 * ranges corresponding to the page, and then deletes any extent state
4411 * records from the tree
4412 */
4413int extent_invalidatepage(struct extent_io_tree *tree,
4414 struct page *page, unsigned long offset)
4415{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004416 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004417 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004418 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004419 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4420
Qu Wenruofda28322013-02-26 08:10:22 +00004421 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004422 if (start > end)
4423 return 0;
4424
David Sterbaff13db42015-12-03 14:30:40 +01004425 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004426 wait_on_page_writeback(page);
Omar Sandovale1821632019-08-15 14:04:04 -07004427 clear_extent_bit(tree, start, end, EXTENT_LOCKED | EXTENT_DELALLOC |
4428 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004429 return 0;
4430}
Chris Masond1310b22008-01-24 16:13:08 -05004431
4432/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004433 * a helper for releasepage, this tests for areas of the page that
4434 * are locked or under IO and drops the related state bits if it is safe
4435 * to drop the page.
4436 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004437static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004438 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004439{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004440 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004441 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004442 int ret = 1;
4443
Nikolay Borisov88826792019-03-14 15:28:31 +02004444 if (test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL)) {
Chris Mason7b13b7b2008-04-18 10:29:50 -04004445 ret = 0;
Nikolay Borisov88826792019-03-14 15:28:31 +02004446 } else {
Chris Mason11ef1602009-09-23 20:28:46 -04004447 /*
4448 * at this point we can safely clear everything except the
4449 * locked bit and the nodatasum bit
4450 */
David Sterba66b0c882017-10-31 16:30:47 +01004451 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004452 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004453 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004454
4455 /* if clear_extent_bit failed for enomem reasons,
4456 * we can't allow the release to continue.
4457 */
4458 if (ret < 0)
4459 ret = 0;
4460 else
4461 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004462 }
4463 return ret;
4464}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004465
4466/*
Chris Masond1310b22008-01-24 16:13:08 -05004467 * a helper for releasepage. As long as there are no locked extents
4468 * in the range corresponding to the page, both state records and extent
4469 * map records are removed
4470 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004471int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004472{
4473 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004474 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004475 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004476 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4477 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4478 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004479
Mel Gormand0164ad2015-11-06 16:28:21 -08004480 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004481 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004482 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004483 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004484 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004485 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004486 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004487 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004488 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004489 break;
4490 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004491 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4492 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004493 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004494 free_extent_map(em);
4495 break;
4496 }
4497 if (!test_range_bit(tree, em->start,
4498 extent_map_end(em) - 1,
Nikolay Borisov4e586ca2019-03-14 15:28:30 +02004499 EXTENT_LOCKED, 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004500 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4501 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004502 remove_extent_mapping(map, em);
4503 /* once for the rb tree */
4504 free_extent_map(em);
4505 }
4506 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004507 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004508
4509 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004510 free_extent_map(em);
4511 }
Chris Masond1310b22008-01-24 16:13:08 -05004512 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004513 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004514}
Chris Masond1310b22008-01-24 16:13:08 -05004515
Chris Masonec29ed52011-02-23 16:23:20 -05004516/*
4517 * helper function for fiemap, which doesn't want to see any holes.
4518 * This maps until we find something past 'last'
4519 */
4520static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004521 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004522{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004523 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004524 struct extent_map *em;
4525 u64 len;
4526
4527 if (offset >= last)
4528 return NULL;
4529
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304530 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004531 len = last - offset;
4532 if (len == 0)
4533 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004534 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004535 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004536 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004537 return em;
4538
4539 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004540 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004541 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004542
4543 /* this is a hole, advance to the next extent */
4544 offset = extent_map_end(em);
4545 free_extent_map(em);
4546 if (offset >= last)
4547 break;
4548 }
4549 return NULL;
4550}
4551
Qu Wenruo47518322017-04-07 10:43:15 +08004552/*
4553 * To cache previous fiemap extent
4554 *
4555 * Will be used for merging fiemap extent
4556 */
4557struct fiemap_cache {
4558 u64 offset;
4559 u64 phys;
4560 u64 len;
4561 u32 flags;
4562 bool cached;
4563};
4564
4565/*
4566 * Helper to submit fiemap extent.
4567 *
4568 * Will try to merge current fiemap extent specified by @offset, @phys,
4569 * @len and @flags with cached one.
4570 * And only when we fails to merge, cached one will be submitted as
4571 * fiemap extent.
4572 *
4573 * Return value is the same as fiemap_fill_next_extent().
4574 */
4575static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4576 struct fiemap_cache *cache,
4577 u64 offset, u64 phys, u64 len, u32 flags)
4578{
4579 int ret = 0;
4580
4581 if (!cache->cached)
4582 goto assign;
4583
4584 /*
4585 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004586 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004587 * Not recoverable.
4588 *
4589 * NOTE: Physical address can overlap, due to compression
4590 */
4591 if (cache->offset + cache->len > offset) {
4592 WARN_ON(1);
4593 return -EINVAL;
4594 }
4595
4596 /*
4597 * Only merges fiemap extents if
4598 * 1) Their logical addresses are continuous
4599 *
4600 * 2) Their physical addresses are continuous
4601 * So truly compressed (physical size smaller than logical size)
4602 * extents won't get merged with each other
4603 *
4604 * 3) Share same flags except FIEMAP_EXTENT_LAST
4605 * So regular extent won't get merged with prealloc extent
4606 */
4607 if (cache->offset + cache->len == offset &&
4608 cache->phys + cache->len == phys &&
4609 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4610 (flags & ~FIEMAP_EXTENT_LAST)) {
4611 cache->len += len;
4612 cache->flags |= flags;
4613 goto try_submit_last;
4614 }
4615
4616 /* Not mergeable, need to submit cached one */
4617 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4618 cache->len, cache->flags);
4619 cache->cached = false;
4620 if (ret)
4621 return ret;
4622assign:
4623 cache->cached = true;
4624 cache->offset = offset;
4625 cache->phys = phys;
4626 cache->len = len;
4627 cache->flags = flags;
4628try_submit_last:
4629 if (cache->flags & FIEMAP_EXTENT_LAST) {
4630 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4631 cache->phys, cache->len, cache->flags);
4632 cache->cached = false;
4633 }
4634 return ret;
4635}
4636
4637/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004638 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004639 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004640 * The last fiemap cache may still be cached in the following case:
4641 * 0 4k 8k
4642 * |<- Fiemap range ->|
4643 * |<------------ First extent ----------->|
4644 *
4645 * In this case, the first extent range will be cached but not emitted.
4646 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004647 */
David Sterba5c5aff92019-03-20 11:29:46 +01004648static int emit_last_fiemap_cache(struct fiemap_extent_info *fieinfo,
Qu Wenruo848c23b2017-06-22 10:01:21 +08004649 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004650{
4651 int ret;
4652
4653 if (!cache->cached)
4654 return 0;
4655
Qu Wenruo47518322017-04-07 10:43:15 +08004656 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4657 cache->len, cache->flags);
4658 cache->cached = false;
4659 if (ret > 0)
4660 ret = 0;
4661 return ret;
4662}
4663
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004664int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004665 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004666{
Josef Bacik975f84f2010-11-23 19:36:57 +00004667 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004668 u64 off = start;
4669 u64 max = start + len;
4670 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004671 u32 found_type;
4672 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004673 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004674 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004675 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004676 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004677 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004678 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004679 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004680 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004681 struct fiemap_cache cache = { 0 };
David Sterba5911c8f2019-05-15 15:31:04 +02004682 struct ulist *roots;
4683 struct ulist *tmp_ulist;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004684 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004685 u64 em_start = 0;
4686 u64 em_len = 0;
4687 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004688
4689 if (len == 0)
4690 return -EINVAL;
4691
Josef Bacik975f84f2010-11-23 19:36:57 +00004692 path = btrfs_alloc_path();
4693 if (!path)
4694 return -ENOMEM;
4695 path->leave_spinning = 1;
4696
David Sterba5911c8f2019-05-15 15:31:04 +02004697 roots = ulist_alloc(GFP_KERNEL);
4698 tmp_ulist = ulist_alloc(GFP_KERNEL);
4699 if (!roots || !tmp_ulist) {
4700 ret = -ENOMEM;
4701 goto out_free_ulist;
4702 }
4703
Jeff Mahoneyda170662016-06-15 09:22:56 -04004704 start = round_down(start, btrfs_inode_sectorsize(inode));
4705 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004706
Chris Masonec29ed52011-02-23 16:23:20 -05004707 /*
4708 * lookup the last file extent. We're not using i_size here
4709 * because there might be preallocation past i_size
4710 */
David Sterbaf85b7372017-01-20 14:54:07 +01004711 ret = btrfs_lookup_file_extent(NULL, root, path,
4712 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004713 if (ret < 0) {
David Sterba5911c8f2019-05-15 15:31:04 +02004714 goto out_free_ulist;
Liu Bo2d324f52016-05-17 17:21:48 -07004715 } else {
4716 WARN_ON(!ret);
4717 if (ret == 1)
4718 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004719 }
Liu Bo2d324f52016-05-17 17:21:48 -07004720
Josef Bacik975f84f2010-11-23 19:36:57 +00004721 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004722 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004723 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004724
Chris Masonec29ed52011-02-23 16:23:20 -05004725 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004726 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004727 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004728 /* have to trust i_size as the end */
4729 last = (u64)-1;
4730 last_for_get_extent = isize;
4731 } else {
4732 /*
4733 * remember the start of the last extent. There are a
4734 * bunch of different factors that go into the length of the
4735 * extent, so its much less complex to remember where it started
4736 */
4737 last = found_key.offset;
4738 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004739 }
Liu Bofe09e162013-09-22 12:54:23 +08004740 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004741
Chris Masonec29ed52011-02-23 16:23:20 -05004742 /*
4743 * we might have some extents allocated but more delalloc past those
4744 * extents. so, we trust isize unless the start of the last extent is
4745 * beyond isize
4746 */
4747 if (last < isize) {
4748 last = (u64)-1;
4749 last_for_get_extent = isize;
4750 }
4751
David Sterbaff13db42015-12-03 14:30:40 +01004752 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004753 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004754
David Sterbae3350e12017-06-23 04:09:57 +02004755 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004756 if (!em)
4757 goto out;
4758 if (IS_ERR(em)) {
4759 ret = PTR_ERR(em);
4760 goto out;
4761 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004762
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004763 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004764 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004765
Chris Masonea8efc72011-03-08 11:54:40 -05004766 /* break if the extent we found is outside the range */
4767 if (em->start >= max || extent_map_end(em) < off)
4768 break;
4769
4770 /*
4771 * get_extent may return an extent that starts before our
4772 * requested range. We have to make sure the ranges
4773 * we return to fiemap always move forward and don't
4774 * overlap, so adjust the offsets here
4775 */
4776 em_start = max(em->start, off);
4777
4778 /*
4779 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004780 * for adjusting the disk offset below. Only do this if the
4781 * extent isn't compressed since our in ram offset may be past
4782 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004783 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004784 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4785 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004786 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004787 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004788 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004789 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4790 disko = em->block_start + offset_in_extent;
4791 else
4792 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004793
Chris Masonea8efc72011-03-08 11:54:40 -05004794 /*
4795 * bump off for our next call to get_extent
4796 */
4797 off = extent_map_end(em);
4798 if (off >= max)
4799 end = 1;
4800
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004801 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004802 end = 1;
4803 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004804 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004805 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4806 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004807 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004808 flags |= (FIEMAP_EXTENT_DELALLOC |
4809 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004810 } else if (fieinfo->fi_extents_max) {
4811 u64 bytenr = em->block_start -
4812 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004813
Liu Bofe09e162013-09-22 12:54:23 +08004814 /*
4815 * As btrfs supports shared space, this information
4816 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004817 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4818 * then we're just getting a count and we can skip the
4819 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004820 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004821 ret = btrfs_check_shared(root,
4822 btrfs_ino(BTRFS_I(inode)),
David Sterba5911c8f2019-05-15 15:31:04 +02004823 bytenr, roots, tmp_ulist);
Josef Bacikdc046b12014-09-10 16:20:45 -04004824 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004825 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004826 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004827 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004828 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004829 }
4830 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4831 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004832 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4833 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004834
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004835 free_extent_map(em);
4836 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004837 if ((em_start >= last) || em_len == (u64)-1 ||
4838 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004839 flags |= FIEMAP_EXTENT_LAST;
4840 end = 1;
4841 }
4842
Chris Masonec29ed52011-02-23 16:23:20 -05004843 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004844 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004845 if (IS_ERR(em)) {
4846 ret = PTR_ERR(em);
4847 goto out;
4848 }
4849 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004850 flags |= FIEMAP_EXTENT_LAST;
4851 end = 1;
4852 }
Qu Wenruo47518322017-04-07 10:43:15 +08004853 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4854 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004855 if (ret) {
4856 if (ret == 1)
4857 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004858 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004859 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004860 }
4861out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004862 if (!ret)
David Sterba5c5aff92019-03-20 11:29:46 +01004863 ret = emit_last_fiemap_cache(fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004864 free_extent_map(em);
4865out:
Liu Boa52f4cd2013-05-01 16:23:41 +00004866 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004867 &cached_state);
David Sterba5911c8f2019-05-15 15:31:04 +02004868
4869out_free_ulist:
Colin Ian Kinge02d48e2019-07-05 08:26:24 +01004870 btrfs_free_path(path);
David Sterba5911c8f2019-05-15 15:31:04 +02004871 ulist_free(roots);
4872 ulist_free(tmp_ulist);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004873 return ret;
4874}
4875
Chris Mason727011e2010-08-06 13:21:20 -04004876static void __free_extent_buffer(struct extent_buffer *eb)
4877{
Josef Bacik3fd63722020-02-14 16:11:40 -05004878 btrfs_leak_debug_del(&eb->fs_info->eb_leak_lock, &eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004879 kmem_cache_free(extent_buffer_cache, eb);
4880}
4881
Josef Bacika26e8c92014-03-28 17:07:27 -04004882int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004883{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004884 return (atomic_read(&eb->io_pages) ||
4885 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4886 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004887}
4888
Miao Xie897ca6e92010-10-26 20:57:29 -04004889/*
David Sterba55ac0132018-07-19 17:24:32 +02004890 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004891 */
David Sterba55ac0132018-07-19 17:24:32 +02004892static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004893{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004894 int i;
4895 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004896 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004897
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004898 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004899
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004900 num_pages = num_extent_pages(eb);
4901 for (i = 0; i < num_pages; i++) {
4902 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004903
Forrest Liu5d2361d2015-02-09 17:31:45 +08004904 if (!page)
4905 continue;
4906 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004907 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004908 /*
4909 * We do this since we'll remove the pages after we've
4910 * removed the eb from the radix tree, so we could race
4911 * and have this page now attached to the new eb. So
4912 * only clear page_private if it's still connected to
4913 * this eb.
4914 */
4915 if (PagePrivate(page) &&
4916 page->private == (unsigned long)eb) {
4917 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4918 BUG_ON(PageDirty(page));
4919 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004920 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004921 * We need to make sure we haven't be attached
4922 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004923 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004924 ClearPagePrivate(page);
4925 set_page_private(page, 0);
4926 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004927 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004928 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004929
4930 if (mapped)
4931 spin_unlock(&page->mapping->private_lock);
4932
Nicholas D Steeves01327612016-05-19 21:18:45 -04004933 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004934 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004935 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004936}
4937
4938/*
4939 * Helper for releasing the extent buffer.
4940 */
4941static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4942{
David Sterba55ac0132018-07-19 17:24:32 +02004943 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004944 __free_extent_buffer(eb);
4945}
4946
Josef Bacikf28491e2013-12-16 13:24:27 -05004947static struct extent_buffer *
4948__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004949 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004950{
4951 struct extent_buffer *eb = NULL;
4952
Michal Hockod1b5c562015-08-19 14:17:40 +02004953 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004954 eb->start = start;
4955 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004956 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004957 eb->bflags = 0;
4958 rwlock_init(&eb->lock);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004959 atomic_set(&eb->blocking_readers, 0);
David Sterba06297d82019-05-02 16:47:23 +02004960 eb->blocking_writers = 0;
David Sterbaed1b4ed2018-08-24 16:31:17 +02004961 eb->lock_nested = false;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004962 init_waitqueue_head(&eb->write_lock_wq);
4963 init_waitqueue_head(&eb->read_lock_wq);
4964
Josef Bacik3fd63722020-02-14 16:11:40 -05004965 btrfs_leak_debug_add(&fs_info->eb_leak_lock, &eb->leak_list,
4966 &fs_info->allocated_ebs);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004967
4968 spin_lock_init(&eb->refs_lock);
4969 atomic_set(&eb->refs, 1);
4970 atomic_set(&eb->io_pages, 0);
4971
4972 /*
4973 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4974 */
4975 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4976 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4977 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4978
David Sterba843ccf92018-08-24 14:56:28 +02004979#ifdef CONFIG_BTRFS_DEBUG
David Sterbaf3dc24c2019-05-02 16:51:53 +02004980 eb->spinning_writers = 0;
David Sterbaafd495a2018-08-24 15:57:38 +02004981 atomic_set(&eb->spinning_readers, 0);
David Sterba5c9c7992018-08-24 16:15:51 +02004982 atomic_set(&eb->read_locks, 0);
David Sterba00801ae2019-05-02 16:53:47 +02004983 eb->write_locks = 0;
David Sterba843ccf92018-08-24 14:56:28 +02004984#endif
4985
Josef Bacikdb7f3432013-08-07 14:54:37 -04004986 return eb;
4987}
4988
4989struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4990{
David Sterbacc5e31a2018-03-01 18:20:27 +01004991 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004992 struct page *p;
4993 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004994 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004995
David Sterba3f556f72014-06-15 03:20:26 +02004996 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004997 if (new == NULL)
4998 return NULL;
4999
5000 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04005001 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04005002 if (!p) {
5003 btrfs_release_extent_buffer(new);
5004 return NULL;
5005 }
5006 attach_extent_buffer_page(new, p);
5007 WARN_ON(PageDirty(p));
5008 SetPageUptodate(p);
5009 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01005010 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04005011 }
5012
Josef Bacikdb7f3432013-08-07 14:54:37 -04005013 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005014 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04005015
5016 return new;
5017}
5018
Omar Sandoval0f331222015-09-29 20:50:31 -07005019struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
5020 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04005021{
5022 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01005023 int num_pages;
5024 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04005025
David Sterba3f556f72014-06-15 03:20:26 +02005026 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04005027 if (!eb)
5028 return NULL;
5029
David Sterba65ad0102018-06-29 10:56:49 +02005030 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04005031 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04005032 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04005033 if (!eb->pages[i])
5034 goto err;
5035 }
5036 set_extent_buffer_uptodate(eb);
5037 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005038 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04005039
5040 return eb;
5041err:
5042 for (; i > 0; i--)
5043 __free_page(eb->pages[i - 1]);
5044 __free_extent_buffer(eb);
5045 return NULL;
5046}
5047
Omar Sandoval0f331222015-09-29 20:50:31 -07005048struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005049 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07005050{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005051 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07005052}
5053
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005054static void check_buffer_tree_ref(struct extent_buffer *eb)
5055{
Chris Mason242e18c2013-01-29 17:49:37 -05005056 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005057 /* the ref bit is tricky. We have to make sure it is set
5058 * if we have the buffer dirty. Otherwise the
5059 * code to free a buffer can end up dropping a dirty
5060 * page
5061 *
5062 * Once the ref bit is set, it won't go away while the
5063 * buffer is dirty or in writeback, and it also won't
5064 * go away while we have the reference count on the
5065 * eb bumped.
5066 *
5067 * We can't just set the ref bit without bumping the
5068 * ref on the eb because free_extent_buffer might
5069 * see the ref bit and try to clear it. If this happens
5070 * free_extent_buffer might end up dropping our original
5071 * ref by mistake and freeing the page before we are able
5072 * to add one more ref.
5073 *
5074 * So bump the ref count first, then set the bit. If someone
5075 * beat us to it, drop the ref we added.
5076 */
Chris Mason242e18c2013-01-29 17:49:37 -05005077 refs = atomic_read(&eb->refs);
5078 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5079 return;
5080
Josef Bacik594831c2012-07-20 16:11:08 -04005081 spin_lock(&eb->refs_lock);
5082 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005083 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04005084 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005085}
5086
Mel Gorman2457aec2014-06-04 16:10:31 -07005087static void mark_extent_buffer_accessed(struct extent_buffer *eb,
5088 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04005089{
David Sterbacc5e31a2018-03-01 18:20:27 +01005090 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04005091
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005092 check_buffer_tree_ref(eb);
5093
David Sterba65ad0102018-06-29 10:56:49 +02005094 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04005095 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005096 struct page *p = eb->pages[i];
5097
Mel Gorman2457aec2014-06-04 16:10:31 -07005098 if (p != accessed)
5099 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04005100 }
5101}
5102
Josef Bacikf28491e2013-12-16 13:24:27 -05005103struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
5104 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005105{
5106 struct extent_buffer *eb;
5107
5108 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05005109 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005110 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005111 if (eb && atomic_inc_not_zero(&eb->refs)) {
5112 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01005113 /*
5114 * Lock our eb's refs_lock to avoid races with
5115 * free_extent_buffer. When we get our eb it might be flagged
5116 * with EXTENT_BUFFER_STALE and another task running
5117 * free_extent_buffer might have seen that flag set,
5118 * eb->refs == 2, that the buffer isn't under IO (dirty and
5119 * writeback flags not set) and it's still in the tree (flag
5120 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
5121 * of decrementing the extent buffer's reference count twice.
5122 * So here we could race and increment the eb's reference count,
5123 * clear its stale flag, mark it as dirty and drop our reference
5124 * before the other task finishes executing free_extent_buffer,
5125 * which would later result in an attempt to free an extent
5126 * buffer that is dirty.
5127 */
5128 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
5129 spin_lock(&eb->refs_lock);
5130 spin_unlock(&eb->refs_lock);
5131 }
Mel Gorman2457aec2014-06-04 16:10:31 -07005132 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005133 return eb;
5134 }
5135 rcu_read_unlock();
5136
5137 return NULL;
5138}
5139
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005140#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5141struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04005142 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005143{
5144 struct extent_buffer *eb, *exists = NULL;
5145 int ret;
5146
5147 eb = find_extent_buffer(fs_info, start);
5148 if (eb)
5149 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04005150 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005151 if (!eb)
Dan Carpenterb6293c82019-12-03 14:24:58 +03005152 return ERR_PTR(-ENOMEM);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005153 eb->fs_info = fs_info;
5154again:
David Sterbae1860a72016-05-09 14:11:38 +02005155 ret = radix_tree_preload(GFP_NOFS);
Dan Carpenterb6293c82019-12-03 14:24:58 +03005156 if (ret) {
5157 exists = ERR_PTR(ret);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005158 goto free_eb;
Dan Carpenterb6293c82019-12-03 14:24:58 +03005159 }
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005160 spin_lock(&fs_info->buffer_lock);
5161 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005162 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005163 spin_unlock(&fs_info->buffer_lock);
5164 radix_tree_preload_end();
5165 if (ret == -EEXIST) {
5166 exists = find_extent_buffer(fs_info, start);
5167 if (exists)
5168 goto free_eb;
5169 else
5170 goto again;
5171 }
5172 check_buffer_tree_ref(eb);
5173 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
5174
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04005175 return eb;
5176free_eb:
5177 btrfs_release_extent_buffer(eb);
5178 return exists;
5179}
5180#endif
5181
Josef Bacikf28491e2013-12-16 13:24:27 -05005182struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02005183 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05005184{
Jeff Mahoneyda170662016-06-15 09:22:56 -04005185 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01005186 int num_pages;
5187 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005188 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005189 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005190 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05005191 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05005192 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05005193 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005194 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05005195
Jeff Mahoneyda170662016-06-15 09:22:56 -04005196 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07005197 btrfs_err(fs_info, "bad tree block start %llu", start);
5198 return ERR_PTR(-EINVAL);
5199 }
5200
Josef Bacikf28491e2013-12-16 13:24:27 -05005201 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005202 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04005203 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04005204
David Sterba23d79d82014-06-15 02:55:29 +02005205 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04005206 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07005207 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05005208
David Sterba65ad0102018-06-29 10:56:49 +02005209 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04005210 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02005211 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07005212 if (!p) {
5213 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04005214 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005215 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005216
5217 spin_lock(&mapping->private_lock);
5218 if (PagePrivate(p)) {
5219 /*
5220 * We could have already allocated an eb for this page
5221 * and attached one so lets see if we can get a ref on
5222 * the existing eb, and if we can we know it's good and
5223 * we can just return that one, else we know we can just
5224 * overwrite page->private.
5225 */
5226 exists = (struct extent_buffer *)p->private;
5227 if (atomic_inc_not_zero(&exists->refs)) {
5228 spin_unlock(&mapping->private_lock);
5229 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005230 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005231 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005232 goto free_eb;
5233 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005234 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005235
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005236 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005237 * Do this so attach doesn't complain and we need to
5238 * drop the ref the old guy had.
5239 */
5240 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005241 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005242 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005243 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005244 attach_extent_buffer_page(eb, p);
5245 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005246 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005247 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005248 if (!PageUptodate(p))
5249 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005250
5251 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005252 * We can't unlock the pages just yet since the extent buffer
5253 * hasn't been properly inserted in the radix tree, this
5254 * opens a race with btree_releasepage which can free a page
5255 * while we are still filling in all pages for the buffer and
5256 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05005257 */
Chris Masond1310b22008-01-24 16:13:08 -05005258 }
5259 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005260 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005261again:
David Sterbae1860a72016-05-09 14:11:38 +02005262 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005263 if (ret) {
5264 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005265 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005266 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005267
Josef Bacikf28491e2013-12-16 13:24:27 -05005268 spin_lock(&fs_info->buffer_lock);
5269 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005270 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005271 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005272 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005273 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005274 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005275 if (exists)
5276 goto free_eb;
5277 else
Josef Bacik115391d2012-03-09 09:51:43 -05005278 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005279 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005280 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005281 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005282 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005283
5284 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03005285 * Now it's safe to unlock the pages because any calls to
5286 * btree_releasepage will correctly detect that a page belongs to a
5287 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005288 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005289 for (i = 0; i < num_pages; i++)
5290 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005291 return eb;
5292
Chris Mason6af118ce2008-07-22 11:18:07 -04005293free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005294 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005295 for (i = 0; i < num_pages; i++) {
5296 if (eb->pages[i])
5297 unlock_page(eb->pages[i]);
5298 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005299
Miao Xie897ca6e92010-10-26 20:57:29 -04005300 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005301 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005302}
Chris Masond1310b22008-01-24 16:13:08 -05005303
Josef Bacik3083ee22012-03-09 16:01:49 -05005304static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5305{
5306 struct extent_buffer *eb =
5307 container_of(head, struct extent_buffer, rcu_head);
5308
5309 __free_extent_buffer(eb);
5310}
5311
David Sterbaf7a52a42013-04-26 14:56:29 +00005312static int release_extent_buffer(struct extent_buffer *eb)
Jules Irenge5ce48d02020-02-23 23:16:42 +00005313 __releases(&eb->refs_lock)
Josef Bacik3083ee22012-03-09 16:01:49 -05005314{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005315 lockdep_assert_held(&eb->refs_lock);
5316
Josef Bacik3083ee22012-03-09 16:01:49 -05005317 WARN_ON(atomic_read(&eb->refs) == 0);
5318 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005319 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005320 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005321
Jan Schmidt815a51c2012-05-16 17:00:02 +02005322 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005323
Josef Bacikf28491e2013-12-16 13:24:27 -05005324 spin_lock(&fs_info->buffer_lock);
5325 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005326 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005327 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005328 } else {
5329 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005330 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005331
5332 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005333 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005334#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005335 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005336 __free_extent_buffer(eb);
5337 return 1;
5338 }
5339#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005340 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005341 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005342 }
5343 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005344
5345 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005346}
5347
Chris Masond1310b22008-01-24 16:13:08 -05005348void free_extent_buffer(struct extent_buffer *eb)
5349{
Chris Mason242e18c2013-01-29 17:49:37 -05005350 int refs;
5351 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005352 if (!eb)
5353 return;
5354
Chris Mason242e18c2013-01-29 17:49:37 -05005355 while (1) {
5356 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005357 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5358 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5359 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005360 break;
5361 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5362 if (old == refs)
5363 return;
5364 }
5365
Josef Bacik3083ee22012-03-09 16:01:49 -05005366 spin_lock(&eb->refs_lock);
5367 if (atomic_read(&eb->refs) == 2 &&
5368 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005369 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005370 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5371 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005372
Josef Bacik3083ee22012-03-09 16:01:49 -05005373 /*
5374 * I know this is terrible, but it's temporary until we stop tracking
5375 * the uptodate bits and such for the extent buffers.
5376 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005377 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005378}
Chris Masond1310b22008-01-24 16:13:08 -05005379
Josef Bacik3083ee22012-03-09 16:01:49 -05005380void free_extent_buffer_stale(struct extent_buffer *eb)
5381{
5382 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005383 return;
5384
Josef Bacik3083ee22012-03-09 16:01:49 -05005385 spin_lock(&eb->refs_lock);
5386 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5387
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005388 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005389 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5390 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005391 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005392}
5393
Chris Mason1d4284b2012-03-28 20:31:37 -04005394void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005395{
David Sterbacc5e31a2018-03-01 18:20:27 +01005396 int i;
5397 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005398 struct page *page;
5399
David Sterba65ad0102018-06-29 10:56:49 +02005400 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005401
5402 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005403 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005404 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005405 continue;
5406
Chris Masona61e6f22008-07-22 11:18:08 -04005407 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005408 WARN_ON(!PagePrivate(page));
5409
Chris Masond1310b22008-01-24 16:13:08 -05005410 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005411 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005412 if (!PageDirty(page))
5413 __xa_clear_mark(&page->mapping->i_pages,
5414 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005415 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005416 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005417 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005418 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005419 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005420}
Chris Masond1310b22008-01-24 16:13:08 -05005421
Liu Boabb57ef2018-09-14 01:44:42 +08005422bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005423{
David Sterbacc5e31a2018-03-01 18:20:27 +01005424 int i;
5425 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005426 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005427
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005428 check_buffer_tree_ref(eb);
5429
Chris Masonb9473432009-03-13 11:00:37 -04005430 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005431
David Sterba65ad0102018-06-29 10:56:49 +02005432 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005433 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005434 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5435
Liu Boabb57ef2018-09-14 01:44:42 +08005436 if (!was_dirty)
5437 for (i = 0; i < num_pages; i++)
5438 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005439
5440#ifdef CONFIG_BTRFS_DEBUG
5441 for (i = 0; i < num_pages; i++)
5442 ASSERT(PageDirty(eb->pages[i]));
5443#endif
5444
Chris Masonb9473432009-03-13 11:00:37 -04005445 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005446}
Chris Masond1310b22008-01-24 16:13:08 -05005447
David Sterba69ba3922015-12-03 13:08:59 +01005448void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005449{
David Sterbacc5e31a2018-03-01 18:20:27 +01005450 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005451 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005452 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005453
Chris Masonb4ce94d2009-02-04 09:25:08 -05005454 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005455 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005456 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005457 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005458 if (page)
5459 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005460 }
Chris Mason1259ab72008-05-12 13:39:03 -04005461}
5462
David Sterba09c25a82015-12-03 13:08:59 +01005463void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005464{
David Sterbacc5e31a2018-03-01 18:20:27 +01005465 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005466 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005467 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005468
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005469 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005470 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005471 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005472 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005473 SetPageUptodate(page);
5474 }
Chris Masond1310b22008-01-24 16:13:08 -05005475}
Chris Masond1310b22008-01-24 16:13:08 -05005476
Nikolay Borisovc2ccfbc2019-04-10 17:24:40 +03005477int read_extent_buffer_pages(struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005478{
David Sterbacc5e31a2018-03-01 18:20:27 +01005479 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005480 struct page *page;
5481 int err;
5482 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005483 int locked_pages = 0;
5484 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005485 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005486 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005487 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005488 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005489
Chris Masonb4ce94d2009-02-04 09:25:08 -05005490 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005491 return 0;
5492
David Sterba65ad0102018-06-29 10:56:49 +02005493 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005494 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005495 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005496 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005497 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005498 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005499 } else {
5500 lock_page(page);
5501 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005502 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005503 }
5504 /*
5505 * We need to firstly lock all pages to make sure that
5506 * the uptodate bit of our pages won't be affected by
5507 * clear_extent_buffer_uptodate().
5508 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005509 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005510 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005511 if (!PageUptodate(page)) {
5512 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005513 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005514 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005515 }
Liu Bo2571e732016-08-03 12:33:01 -07005516
Chris Masonce9adaa2008-04-09 16:28:12 -04005517 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005518 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005519 goto unlock_exit;
5520 }
5521
Filipe Manana656f30d2014-09-26 12:25:56 +01005522 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005523 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005524 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005525 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005526 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005527
Chris Masonce9adaa2008-04-09 16:28:12 -04005528 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005529 if (ret) {
5530 atomic_dec(&eb->io_pages);
5531 unlock_page(page);
5532 continue;
5533 }
5534
Chris Masonf1885912008-04-09 16:28:12 -04005535 ClearPageError(page);
David Sterba0d44fea2020-02-05 19:09:37 +01005536 err = __extent_read_full_page(page,
David Sterba6af49db2017-06-23 04:09:57 +02005537 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005538 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005539 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005540 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005541 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005542 /*
5543 * We use &bio in above __extent_read_full_page,
5544 * so we ensure that if it returns error, the
5545 * current page fails to add itself to bio and
5546 * it's been unlocked.
5547 *
5548 * We must dec io_pages by ourselves.
5549 */
5550 atomic_dec(&eb->io_pages);
5551 }
Chris Masond1310b22008-01-24 16:13:08 -05005552 } else {
5553 unlock_page(page);
5554 }
5555 }
5556
Jeff Mahoney355808c2011-10-03 23:23:14 -04005557 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005558 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005559 if (err)
5560 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005561 }
Chris Masona86c12c2008-02-07 10:50:54 -05005562
Arne Jansenbb82ab82011-06-10 14:06:53 +02005563 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005564 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005565
Josef Bacik8436ea912016-09-02 15:40:03 -04005566 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005567 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005568 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005569 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005570 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005571 }
Chris Masond3977122009-01-05 21:25:51 -05005572
Chris Masond1310b22008-01-24 16:13:08 -05005573 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005574
5575unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005576 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005577 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005578 page = eb->pages[locked_pages];
5579 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005580 }
5581 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005582}
Chris Masond1310b22008-01-24 16:13:08 -05005583
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005584void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5585 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005586{
5587 size_t cur;
5588 size_t offset;
5589 struct page *page;
5590 char *kaddr;
5591 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005592 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005593 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005594
Liu Bof716abd2017-08-09 11:10:16 -06005595 if (start + len > eb->len) {
5596 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5597 eb->start, eb->len, start, len);
5598 memset(dst, 0, len);
5599 return;
5600 }
Chris Masond1310b22008-01-24 16:13:08 -05005601
Johannes Thumshirn70730172018-12-05 15:23:03 +01005602 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005603
Chris Masond3977122009-01-05 21:25:51 -05005604 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005605 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005606
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005607 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005608 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005609 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005610
5611 dst += cur;
5612 len -= cur;
5613 offset = 0;
5614 i++;
5615 }
5616}
Chris Masond1310b22008-01-24 16:13:08 -05005617
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005618int read_extent_buffer_to_user(const struct extent_buffer *eb,
5619 void __user *dstv,
5620 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005621{
5622 size_t cur;
5623 size_t offset;
5624 struct page *page;
5625 char *kaddr;
5626 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005627 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005628 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005629 int ret = 0;
5630
5631 WARN_ON(start > eb->len);
5632 WARN_ON(start + len > eb->start + eb->len);
5633
Johannes Thumshirn70730172018-12-05 15:23:03 +01005634 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005635
5636 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005637 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005638
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005639 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005640 kaddr = page_address(page);
5641 if (copy_to_user(dst, kaddr + offset, cur)) {
5642 ret = -EFAULT;
5643 break;
5644 }
5645
5646 dst += cur;
5647 len -= cur;
5648 offset = 0;
5649 i++;
5650 }
5651
5652 return ret;
5653}
5654
Liu Bo415b35a2016-06-17 19:16:21 -07005655/*
5656 * return 0 if the item is found within a page.
5657 * return 1 if the item spans two pages.
5658 * return -EINVAL otherwise.
5659 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005660int map_private_extent_buffer(const struct extent_buffer *eb,
5661 unsigned long start, unsigned long min_len,
5662 char **map, unsigned long *map_start,
5663 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005664{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005665 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005666 char *kaddr;
5667 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005668 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005669 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005670 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005671 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005672
Liu Bof716abd2017-08-09 11:10:16 -06005673 if (start + min_len > eb->len) {
5674 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5675 eb->start, eb->len, start, min_len);
5676 return -EINVAL;
5677 }
5678
Chris Masond1310b22008-01-24 16:13:08 -05005679 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005680 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005681
5682 if (i == 0) {
5683 offset = start_offset;
5684 *map_start = 0;
5685 } else {
5686 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005687 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005688 }
Chris Masond3977122009-01-05 21:25:51 -05005689
David Sterbafb85fc92014-07-31 01:03:53 +02005690 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005691 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005692 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005693 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005694 return 0;
5695}
Chris Masond1310b22008-01-24 16:13:08 -05005696
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005697int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5698 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005699{
5700 size_t cur;
5701 size_t offset;
5702 struct page *page;
5703 char *kaddr;
5704 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005705 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005706 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005707 int ret = 0;
5708
5709 WARN_ON(start > eb->len);
5710 WARN_ON(start + len > eb->start + eb->len);
5711
Johannes Thumshirn70730172018-12-05 15:23:03 +01005712 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005713
Chris Masond3977122009-01-05 21:25:51 -05005714 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005715 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005716
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005717 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005718
Chris Masona6591712011-07-19 12:04:14 -04005719 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005720 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005721 if (ret)
5722 break;
5723
5724 ptr += cur;
5725 len -= cur;
5726 offset = 0;
5727 i++;
5728 }
5729 return ret;
5730}
Chris Masond1310b22008-01-24 16:13:08 -05005731
David Sterbaf157bf72016-11-09 17:43:38 +01005732void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5733 const void *srcv)
5734{
5735 char *kaddr;
5736
5737 WARN_ON(!PageUptodate(eb->pages[0]));
5738 kaddr = page_address(eb->pages[0]);
5739 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5740 BTRFS_FSID_SIZE);
5741}
5742
5743void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5744{
5745 char *kaddr;
5746
5747 WARN_ON(!PageUptodate(eb->pages[0]));
5748 kaddr = page_address(eb->pages[0]);
5749 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5750 BTRFS_FSID_SIZE);
5751}
5752
Chris Masond1310b22008-01-24 16:13:08 -05005753void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5754 unsigned long start, unsigned long len)
5755{
5756 size_t cur;
5757 size_t offset;
5758 struct page *page;
5759 char *kaddr;
5760 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005761 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005762 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005763
5764 WARN_ON(start > eb->len);
5765 WARN_ON(start + len > eb->start + eb->len);
5766
Johannes Thumshirn70730172018-12-05 15:23:03 +01005767 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005768
Chris Masond3977122009-01-05 21:25:51 -05005769 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005770 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005771 WARN_ON(!PageUptodate(page));
5772
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005773 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005774 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005775 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005776
5777 src += cur;
5778 len -= cur;
5779 offset = 0;
5780 i++;
5781 }
5782}
Chris Masond1310b22008-01-24 16:13:08 -05005783
David Sterbab159fa22016-11-08 18:09:03 +01005784void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5785 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005786{
5787 size_t cur;
5788 size_t offset;
5789 struct page *page;
5790 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005791 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005792 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005793
5794 WARN_ON(start > eb->len);
5795 WARN_ON(start + len > eb->start + eb->len);
5796
Johannes Thumshirn70730172018-12-05 15:23:03 +01005797 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005798
Chris Masond3977122009-01-05 21:25:51 -05005799 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005800 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005801 WARN_ON(!PageUptodate(page));
5802
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005803 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005804 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005805 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005806
5807 len -= cur;
5808 offset = 0;
5809 i++;
5810 }
5811}
Chris Masond1310b22008-01-24 16:13:08 -05005812
David Sterba58e80122016-11-08 18:30:31 +01005813void copy_extent_buffer_full(struct extent_buffer *dst,
5814 struct extent_buffer *src)
5815{
5816 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005817 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005818
5819 ASSERT(dst->len == src->len);
5820
David Sterba65ad0102018-06-29 10:56:49 +02005821 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005822 for (i = 0; i < num_pages; i++)
5823 copy_page(page_address(dst->pages[i]),
5824 page_address(src->pages[i]));
5825}
5826
Chris Masond1310b22008-01-24 16:13:08 -05005827void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5828 unsigned long dst_offset, unsigned long src_offset,
5829 unsigned long len)
5830{
5831 u64 dst_len = dst->len;
5832 size_t cur;
5833 size_t offset;
5834 struct page *page;
5835 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005836 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005837 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005838
5839 WARN_ON(src->len != dst_len);
5840
Johannes Thumshirn70730172018-12-05 15:23:03 +01005841 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005842
Chris Masond3977122009-01-05 21:25:51 -05005843 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005844 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005845 WARN_ON(!PageUptodate(page));
5846
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005847 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005848
Chris Masona6591712011-07-19 12:04:14 -04005849 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005850 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005851
5852 src_offset += cur;
5853 len -= cur;
5854 offset = 0;
5855 i++;
5856 }
5857}
Chris Masond1310b22008-01-24 16:13:08 -05005858
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005859/*
5860 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5861 * given bit number
5862 * @eb: the extent buffer
5863 * @start: offset of the bitmap item in the extent buffer
5864 * @nr: bit number
5865 * @page_index: return index of the page in the extent buffer that contains the
5866 * given bit number
5867 * @page_offset: return offset into the page given by page_index
5868 *
5869 * This helper hides the ugliness of finding the byte in an extent buffer which
5870 * contains a given bit.
5871 */
5872static inline void eb_bitmap_offset(struct extent_buffer *eb,
5873 unsigned long start, unsigned long nr,
5874 unsigned long *page_index,
5875 size_t *page_offset)
5876{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005877 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005878 size_t byte_offset = BIT_BYTE(nr);
5879 size_t offset;
5880
5881 /*
5882 * The byte we want is the offset of the extent buffer + the offset of
5883 * the bitmap item in the extent buffer + the offset of the byte in the
5884 * bitmap item.
5885 */
5886 offset = start_offset + start + byte_offset;
5887
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005888 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005889 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005890}
5891
5892/**
5893 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5894 * @eb: the extent buffer
5895 * @start: offset of the bitmap item in the extent buffer
5896 * @nr: bit number to test
5897 */
5898int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5899 unsigned long nr)
5900{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005901 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005902 struct page *page;
5903 unsigned long i;
5904 size_t offset;
5905
5906 eb_bitmap_offset(eb, start, nr, &i, &offset);
5907 page = eb->pages[i];
5908 WARN_ON(!PageUptodate(page));
5909 kaddr = page_address(page);
5910 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5911}
5912
5913/**
5914 * extent_buffer_bitmap_set - set an area of a bitmap
5915 * @eb: the extent buffer
5916 * @start: offset of the bitmap item in the extent buffer
5917 * @pos: bit number of the first bit
5918 * @len: number of bits to set
5919 */
5920void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5921 unsigned long pos, unsigned long len)
5922{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005923 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005924 struct page *page;
5925 unsigned long i;
5926 size_t offset;
5927 const unsigned int size = pos + len;
5928 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005929 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005930
5931 eb_bitmap_offset(eb, start, pos, &i, &offset);
5932 page = eb->pages[i];
5933 WARN_ON(!PageUptodate(page));
5934 kaddr = page_address(page);
5935
5936 while (len >= bits_to_set) {
5937 kaddr[offset] |= mask_to_set;
5938 len -= bits_to_set;
5939 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005940 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005941 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005942 offset = 0;
5943 page = eb->pages[++i];
5944 WARN_ON(!PageUptodate(page));
5945 kaddr = page_address(page);
5946 }
5947 }
5948 if (len) {
5949 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5950 kaddr[offset] |= mask_to_set;
5951 }
5952}
5953
5954
5955/**
5956 * extent_buffer_bitmap_clear - clear an area of a bitmap
5957 * @eb: the extent buffer
5958 * @start: offset of the bitmap item in the extent buffer
5959 * @pos: bit number of the first bit
5960 * @len: number of bits to clear
5961 */
5962void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5963 unsigned long pos, unsigned long len)
5964{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005965 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005966 struct page *page;
5967 unsigned long i;
5968 size_t offset;
5969 const unsigned int size = pos + len;
5970 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005971 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005972
5973 eb_bitmap_offset(eb, start, pos, &i, &offset);
5974 page = eb->pages[i];
5975 WARN_ON(!PageUptodate(page));
5976 kaddr = page_address(page);
5977
5978 while (len >= bits_to_clear) {
5979 kaddr[offset] &= ~mask_to_clear;
5980 len -= bits_to_clear;
5981 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005982 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005983 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005984 offset = 0;
5985 page = eb->pages[++i];
5986 WARN_ON(!PageUptodate(page));
5987 kaddr = page_address(page);
5988 }
5989 }
5990 if (len) {
5991 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5992 kaddr[offset] &= ~mask_to_clear;
5993 }
5994}
5995
Sergei Trofimovich33872062011-04-11 21:52:52 +00005996static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5997{
5998 unsigned long distance = (src > dst) ? src - dst : dst - src;
5999 return distance < len;
6000}
6001
Chris Masond1310b22008-01-24 16:13:08 -05006002static void copy_pages(struct page *dst_page, struct page *src_page,
6003 unsigned long dst_off, unsigned long src_off,
6004 unsigned long len)
6005{
Chris Masona6591712011-07-19 12:04:14 -04006006 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05006007 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04006008 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05006009
Sergei Trofimovich33872062011-04-11 21:52:52 +00006010 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04006011 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00006012 } else {
Chris Masond1310b22008-01-24 16:13:08 -05006013 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04006014 if (areas_overlap(src_off, dst_off, len))
6015 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00006016 }
Chris Masond1310b22008-01-24 16:13:08 -05006017
Chris Mason727011e2010-08-06 13:21:20 -04006018 if (must_memmove)
6019 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
6020 else
6021 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05006022}
6023
6024void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
6025 unsigned long src_offset, unsigned long len)
6026{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006027 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05006028 size_t cur;
6029 size_t dst_off_in_page;
6030 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01006031 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05006032 unsigned long dst_i;
6033 unsigned long src_i;
6034
6035 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006036 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006037 "memmove bogus src_offset %lu move len %lu dst len %lu",
6038 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006039 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006040 }
6041 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006042 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006043 "memmove bogus dst_offset %lu move len %lu dst len %lu",
6044 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006045 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006046 }
6047
Chris Masond3977122009-01-05 21:25:51 -05006048 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01006049 dst_off_in_page = offset_in_page(start_offset + dst_offset);
6050 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05006051
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006052 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
6053 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05006054
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006055 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05006056 src_off_in_page));
6057 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006058 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05006059
David Sterbafb85fc92014-07-31 01:03:53 +02006060 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05006061 dst_off_in_page, src_off_in_page, cur);
6062
6063 src_offset += cur;
6064 dst_offset += cur;
6065 len -= cur;
6066 }
6067}
Chris Masond1310b22008-01-24 16:13:08 -05006068
6069void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
6070 unsigned long src_offset, unsigned long len)
6071{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006072 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05006073 size_t cur;
6074 size_t dst_off_in_page;
6075 size_t src_off_in_page;
6076 unsigned long dst_end = dst_offset + len - 1;
6077 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01006078 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05006079 unsigned long dst_i;
6080 unsigned long src_i;
6081
6082 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006083 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006084 "memmove bogus src_offset %lu move len %lu len %lu",
6085 src_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006086 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006087 }
6088 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006089 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006090 "memmove bogus dst_offset %lu move len %lu len %lu",
6091 dst_offset, len, dst->len);
Arnd Bergmann290342f2019-03-25 14:02:25 +01006092 BUG();
Chris Masond1310b22008-01-24 16:13:08 -05006093 }
Chris Mason727011e2010-08-06 13:21:20 -04006094 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05006095 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
6096 return;
6097 }
Chris Masond3977122009-01-05 21:25:51 -05006098 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006099 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
6100 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05006101
Johannes Thumshirn70730172018-12-05 15:23:03 +01006102 dst_off_in_page = offset_in_page(start_offset + dst_end);
6103 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05006104
6105 cur = min_t(unsigned long, len, src_off_in_page + 1);
6106 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02006107 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05006108 dst_off_in_page - cur + 1,
6109 src_off_in_page - cur + 1, cur);
6110
6111 dst_end -= cur;
6112 src_end -= cur;
6113 len -= cur;
6114 }
6115}
Chris Mason6af118ce2008-07-22 11:18:07 -04006116
David Sterbaf7a52a42013-04-26 14:56:29 +00006117int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04006118{
Chris Mason6af118ce2008-07-22 11:18:07 -04006119 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04006120
Miao Xie19fe0a82010-10-26 20:57:29 -04006121 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04006122 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05006123 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04006124 */
Josef Bacik3083ee22012-03-09 16:01:49 -05006125 spin_lock(&page->mapping->private_lock);
6126 if (!PagePrivate(page)) {
6127 spin_unlock(&page->mapping->private_lock);
6128 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04006129 }
6130
Josef Bacik3083ee22012-03-09 16:01:49 -05006131 eb = (struct extent_buffer *)page->private;
6132 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04006133
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006134 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05006135 * This is a little awful but should be ok, we need to make sure that
6136 * the eb doesn't disappear out from under us while we're looking at
6137 * this page.
6138 */
6139 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006140 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05006141 spin_unlock(&eb->refs_lock);
6142 spin_unlock(&page->mapping->private_lock);
6143 return 0;
6144 }
6145 spin_unlock(&page->mapping->private_lock);
6146
Josef Bacik3083ee22012-03-09 16:01:49 -05006147 /*
6148 * If tree ref isn't set then we know the ref on this eb is a real ref,
6149 * so just return, this page will likely be freed soon anyway.
6150 */
6151 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
6152 spin_unlock(&eb->refs_lock);
6153 return 0;
6154 }
Josef Bacik3083ee22012-03-09 16:01:49 -05006155
David Sterbaf7a52a42013-04-26 14:56:29 +00006156 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04006157}