blob: 90ecce8572631472fc3846d7d61b4b474ee007cd [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
David Sterbac1d7c512018-04-03 19:23:33 +02002
Chris Masond1310b22008-01-24 16:13:08 -05003#include <linux/bitops.h>
4#include <linux/slab.h>
5#include <linux/bio.h>
6#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/pagemap.h>
8#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05009#include <linux/spinlock.h>
10#include <linux/blkdev.h>
11#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050012#include <linux/writeback.h>
13#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070014#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060015#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050016#include "extent_io.h"
17#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040018#include "ctree.h"
19#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020020#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010021#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040022#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040023#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080024#include "backref.h"
David Sterba6af49db2017-06-23 04:09:57 +020025#include "disk-io.h"
Chris Masond1310b22008-01-24 16:13:08 -050026
Chris Masond1310b22008-01-24 16:13:08 -050027static struct kmem_cache *extent_state_cache;
28static struct kmem_cache *extent_buffer_cache;
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -040029static struct bio_set btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050030
Filipe Manana27a35072014-07-06 20:09:59 +010031static inline bool extent_state_in_tree(const struct extent_state *state)
32{
33 return !RB_EMPTY_NODE(&state->rb_node);
34}
35
Eric Sandeen6d49ba12013-04-22 16:12:31 +000036#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050037static LIST_HEAD(buffers);
38static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040039
Chris Masond3977122009-01-05 21:25:51 -050040static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000041
42static inline
43void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
44{
45 unsigned long flags;
46
47 spin_lock_irqsave(&leak_lock, flags);
48 list_add(new, head);
49 spin_unlock_irqrestore(&leak_lock, flags);
50}
51
52static inline
53void btrfs_leak_debug_del(struct list_head *entry)
54{
55 unsigned long flags;
56
57 spin_lock_irqsave(&leak_lock, flags);
58 list_del(entry);
59 spin_unlock_irqrestore(&leak_lock, flags);
60}
61
62static inline
63void btrfs_leak_debug_check(void)
64{
65 struct extent_state *state;
66 struct extent_buffer *eb;
67
68 while (!list_empty(&states)) {
69 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010070 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010071 state->start, state->end, state->state,
72 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020073 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000074 list_del(&state->leak_list);
75 kmem_cache_free(extent_state_cache, state);
76 }
77
78 while (!list_empty(&buffers)) {
79 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Liu Boaf2679e2018-01-25 11:02:48 -070080 pr_err("BTRFS: buffer leak start %llu len %lu refs %d bflags %lu\n",
81 eb->start, eb->len, atomic_read(&eb->refs), eb->bflags);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000082 list_del(&eb->leak_list);
83 kmem_cache_free(extent_buffer_cache, eb);
84 }
85}
David Sterba8d599ae2013-04-30 15:22:23 +000086
Josef Bacika5dee372013-12-13 10:02:44 -050087#define btrfs_debug_check_extent_io_range(tree, start, end) \
88 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000089static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050090 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000091{
Nikolay Borisov65a680f2018-11-01 14:09:49 +020092 struct inode *inode = tree->private_data;
93 u64 isize;
94
95 if (!inode || !is_data_inode(inode))
96 return;
97
98 isize = i_size_read(inode);
99 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
100 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
101 "%s: ino %llu isize %llu odd range [%llu,%llu]",
102 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
103 }
David Sterba8d599ae2013-04-30 15:22:23 +0000104}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000105#else
106#define btrfs_leak_debug_add(new, head) do {} while (0)
107#define btrfs_leak_debug_del(entry) do {} while (0)
108#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000109#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400110#endif
Chris Masond1310b22008-01-24 16:13:08 -0500111
Chris Masond1310b22008-01-24 16:13:08 -0500112#define BUFFER_LRU_MAX 64
113
114struct tree_entry {
115 u64 start;
116 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500117 struct rb_node rb_node;
118};
119
120struct extent_page_data {
121 struct bio *bio;
122 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -0500123 /* tells writepage not to lock the state bits for this range
124 * it still does the unlocking
125 */
Chris Masonffbd5172009-04-20 15:50:09 -0400126 unsigned int extent_locked:1;
127
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600128 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400129 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500130};
131
David Sterba57599c72018-03-01 17:56:34 +0100132static int add_extent_changeset(struct extent_state *state, unsigned bits,
Qu Wenruod38ed272015-10-12 14:53:37 +0800133 struct extent_changeset *changeset,
134 int set)
135{
136 int ret;
137
138 if (!changeset)
David Sterba57599c72018-03-01 17:56:34 +0100139 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800140 if (set && (state->state & bits) == bits)
David Sterba57599c72018-03-01 17:56:34 +0100141 return 0;
Qu Wenruofefdc552015-10-12 15:35:38 +0800142 if (!set && (state->state & bits) == 0)
David Sterba57599c72018-03-01 17:56:34 +0100143 return 0;
Qu Wenruod38ed272015-10-12 14:53:37 +0800144 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100145 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800146 GFP_ATOMIC);
David Sterba57599c72018-03-01 17:56:34 +0100147 return ret;
Qu Wenruod38ed272015-10-12 14:53:37 +0800148}
149
David Sterbaaab6e9e2017-11-30 18:00:02 +0100150static void flush_write_bio(struct extent_page_data *epd);
David Sterbae2932ee2017-06-23 04:16:17 +0200151
Chris Masond1310b22008-01-24 16:13:08 -0500152int __init extent_io_init(void)
153{
David Sterba837e1972012-09-07 03:00:48 -0600154 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200155 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300156 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500157 if (!extent_state_cache)
158 return -ENOMEM;
159
David Sterba837e1972012-09-07 03:00:48 -0600160 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200161 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300162 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500163 if (!extent_buffer_cache)
164 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400165
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400166 if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
167 offsetof(struct btrfs_io_bio, bio),
168 BIOSET_NEED_BVECS))
Chris Mason9be33952013-05-17 18:30:14 -0400169 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700170
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400171 if (bioset_integrity_create(&btrfs_bioset, BIO_POOL_SIZE))
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700172 goto free_bioset;
173
Chris Masond1310b22008-01-24 16:13:08 -0500174 return 0;
175
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700176free_bioset:
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400177 bioset_exit(&btrfs_bioset);
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700178
Chris Mason9be33952013-05-17 18:30:14 -0400179free_buffer_cache:
180 kmem_cache_destroy(extent_buffer_cache);
181 extent_buffer_cache = NULL;
182
Chris Masond1310b22008-01-24 16:13:08 -0500183free_state_cache:
184 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400185 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500186 return -ENOMEM;
187}
188
David Sterbae67c7182018-02-19 17:24:18 +0100189void __cold extent_io_exit(void)
Chris Masond1310b22008-01-24 16:13:08 -0500190{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000191 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000192
193 /*
194 * Make sure all delayed rcu free are flushed before we
195 * destroy caches.
196 */
197 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800198 kmem_cache_destroy(extent_state_cache);
199 kmem_cache_destroy(extent_buffer_cache);
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -0400200 bioset_exit(&btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500201}
202
203void extent_io_tree_init(struct extent_io_tree *tree,
Josef Bacikc6100a42017-05-05 11:57:13 -0400204 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500205{
Eric Paris6bef4d32010-02-23 19:43:04 +0000206 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500207 tree->ops = NULL;
208 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500209 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400210 tree->private_data = private_data;
Chris Masond1310b22008-01-24 16:13:08 -0500211}
Chris Masond1310b22008-01-24 16:13:08 -0500212
Christoph Hellwigb2950862008-12-02 09:54:17 -0500213static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500214{
215 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500216
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100217 /*
218 * The given mask might be not appropriate for the slab allocator,
219 * drop the unsupported bits
220 */
221 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500222 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400223 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500224 return state;
225 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100226 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100227 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000228 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200229 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500230 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100231 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500232 return state;
233}
Chris Masond1310b22008-01-24 16:13:08 -0500234
Chris Mason4845e442010-05-25 20:56:50 -0400235void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500236{
Chris Masond1310b22008-01-24 16:13:08 -0500237 if (!state)
238 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200239 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100240 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000241 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100242 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500243 kmem_cache_free(extent_state_cache, state);
244 }
245}
Chris Masond1310b22008-01-24 16:13:08 -0500246
Filipe Mananaf2071b22014-02-12 15:05:53 +0000247static struct rb_node *tree_insert(struct rb_root *root,
248 struct rb_node *search_start,
249 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000250 struct rb_node *node,
251 struct rb_node ***p_in,
252 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500253{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000254 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500255 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500256 struct tree_entry *entry;
257
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000258 if (p_in && parent_in) {
259 p = *p_in;
260 parent = *parent_in;
261 goto do_insert;
262 }
263
Filipe Mananaf2071b22014-02-12 15:05:53 +0000264 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500265 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500266 parent = *p;
267 entry = rb_entry(parent, struct tree_entry, rb_node);
268
269 if (offset < entry->start)
270 p = &(*p)->rb_left;
271 else if (offset > entry->end)
272 p = &(*p)->rb_right;
273 else
274 return parent;
275 }
276
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000277do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500278 rb_link_node(node, parent, p);
279 rb_insert_color(node, root);
280 return NULL;
281}
282
Chris Mason80ea96b2008-02-01 14:51:59 -0500283static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000284 struct rb_node **next_ret,
Nikolay Borisov352646c2019-01-30 16:51:00 +0200285 struct rb_node **prev_ret,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000286 struct rb_node ***p_ret,
287 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500288{
Chris Mason80ea96b2008-02-01 14:51:59 -0500289 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000290 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500291 struct rb_node *prev = NULL;
292 struct rb_node *orig_prev = NULL;
293 struct tree_entry *entry;
294 struct tree_entry *prev_entry = NULL;
295
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000296 while (*n) {
297 prev = *n;
298 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500299 prev_entry = entry;
300
301 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000302 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500303 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000304 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500305 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000306 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500307 }
308
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000309 if (p_ret)
310 *p_ret = n;
311 if (parent_ret)
312 *parent_ret = prev;
313
Nikolay Borisov352646c2019-01-30 16:51:00 +0200314 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500315 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500316 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500317 prev = rb_next(prev);
318 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
319 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200320 *next_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500321 prev = orig_prev;
322 }
323
Nikolay Borisov352646c2019-01-30 16:51:00 +0200324 if (prev_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500325 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500326 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500327 prev = rb_prev(prev);
328 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
329 }
Nikolay Borisov352646c2019-01-30 16:51:00 +0200330 *prev_ret = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500331 }
332 return NULL;
333}
334
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000335static inline struct rb_node *
336tree_search_for_insert(struct extent_io_tree *tree,
337 u64 offset,
338 struct rb_node ***p_ret,
339 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500340{
Nikolay Borisov352646c2019-01-30 16:51:00 +0200341 struct rb_node *next= NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500342 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500343
Nikolay Borisov352646c2019-01-30 16:51:00 +0200344 ret = __etree_search(tree, offset, &next, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500345 if (!ret)
Nikolay Borisov352646c2019-01-30 16:51:00 +0200346 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500347 return ret;
348}
349
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000350static inline struct rb_node *tree_search(struct extent_io_tree *tree,
351 u64 offset)
352{
353 return tree_search_for_insert(tree, offset, NULL, NULL);
354}
355
Chris Masond1310b22008-01-24 16:13:08 -0500356/*
357 * utility function to look for merge candidates inside a given range.
358 * Any extents with matching state are merged together into a single
359 * extent in the tree. Extents with EXTENT_IO in their state field
360 * are not merged because the end_io handlers need to be able to do
361 * operations on them without sleeping (or doing allocations/splits).
362 *
363 * This should be called with the tree lock held.
364 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000365static void merge_state(struct extent_io_tree *tree,
366 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500367{
368 struct extent_state *other;
369 struct rb_node *other_node;
370
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400371 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000372 return;
Chris Masond1310b22008-01-24 16:13:08 -0500373
374 other_node = rb_prev(&state->rb_node);
375 if (other_node) {
376 other = rb_entry(other_node, struct extent_state, rb_node);
377 if (other->end == state->start - 1 &&
378 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200379 if (tree->private_data &&
380 is_data_inode(tree->private_data))
381 btrfs_merge_delalloc_extent(tree->private_data,
382 state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500383 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500384 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100385 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500386 free_extent_state(other);
387 }
388 }
389 other_node = rb_next(&state->rb_node);
390 if (other_node) {
391 other = rb_entry(other_node, struct extent_state, rb_node);
392 if (other->start == state->end + 1 &&
393 other->state == state->state) {
Nikolay Borisov5c848192018-11-01 14:09:52 +0200394 if (tree->private_data &&
395 is_data_inode(tree->private_data))
396 btrfs_merge_delalloc_extent(tree->private_data,
397 state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400398 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400399 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100400 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400401 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500402 }
403 }
Chris Masond1310b22008-01-24 16:13:08 -0500404}
405
Xiao Guangrong3150b692011-07-14 03:19:08 +0000406static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800407 struct extent_state *state, unsigned *bits,
408 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000409
Chris Masond1310b22008-01-24 16:13:08 -0500410/*
411 * insert an extent_state struct into the tree. 'bits' are set on the
412 * struct before it is inserted.
413 *
414 * This may return -EEXIST if the extent is already there, in which case the
415 * state struct is freed.
416 *
417 * The tree lock is not taken internally. This is a utility function and
418 * probably isn't what you want to call (see set/clear_extent_bit).
419 */
420static int insert_state(struct extent_io_tree *tree,
421 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000422 struct rb_node ***p,
423 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800424 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500425{
426 struct rb_node *node;
427
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000428 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500429 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200430 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500431 state->start = start;
432 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400433
Qu Wenruod38ed272015-10-12 14:53:37 +0800434 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000435
Filipe Mananaf2071b22014-02-12 15:05:53 +0000436 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500437 if (node) {
438 struct extent_state *found;
439 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400440 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200441 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500442 return -EEXIST;
443 }
444 merge_state(tree, state);
445 return 0;
446}
447
448/*
449 * split a given extent state struct in two, inserting the preallocated
450 * struct 'prealloc' as the newly created second half. 'split' indicates an
451 * offset inside 'orig' where it should be split.
452 *
453 * Before calling,
454 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
455 * are two extent state structs in the tree:
456 * prealloc: [orig->start, split - 1]
457 * orig: [ split, orig->end ]
458 *
459 * The tree locks are not taken by this function. They need to be held
460 * by the caller.
461 */
462static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
463 struct extent_state *prealloc, u64 split)
464{
465 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400466
Nikolay Borisovabbb55f2018-11-01 14:09:53 +0200467 if (tree->private_data && is_data_inode(tree->private_data))
468 btrfs_split_delalloc_extent(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400469
Chris Masond1310b22008-01-24 16:13:08 -0500470 prealloc->start = orig->start;
471 prealloc->end = split - 1;
472 prealloc->state = orig->state;
473 orig->start = split;
474
Filipe Mananaf2071b22014-02-12 15:05:53 +0000475 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
476 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500477 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500478 free_extent_state(prealloc);
479 return -EEXIST;
480 }
481 return 0;
482}
483
Li Zefancdc6a392012-03-12 16:39:48 +0800484static struct extent_state *next_state(struct extent_state *state)
485{
486 struct rb_node *next = rb_next(&state->rb_node);
487 if (next)
488 return rb_entry(next, struct extent_state, rb_node);
489 else
490 return NULL;
491}
492
Chris Masond1310b22008-01-24 16:13:08 -0500493/*
494 * utility function to clear some bits in an extent state struct.
Andrea Gelmini52042d82018-11-28 12:05:13 +0100495 * it will optionally wake up anyone waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500496 *
497 * If no bits are set on the state struct after clearing things, the
498 * struct is freed and removed from the tree
499 */
Li Zefancdc6a392012-03-12 16:39:48 +0800500static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
501 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800502 unsigned *bits, int wake,
503 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500504{
Li Zefancdc6a392012-03-12 16:39:48 +0800505 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100506 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100507 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500508
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400509 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500510 u64 range = state->end - state->start + 1;
511 WARN_ON(range > tree->dirty_bytes);
512 tree->dirty_bytes -= range;
513 }
Nikolay Borisova36bb5f2018-11-01 14:09:51 +0200514
515 if (tree->private_data && is_data_inode(tree->private_data))
516 btrfs_clear_delalloc_extent(tree->private_data, state, bits);
517
David Sterba57599c72018-03-01 17:56:34 +0100518 ret = add_extent_changeset(state, bits_to_clear, changeset, 0);
519 BUG_ON(ret < 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400520 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500521 if (wake)
522 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400523 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800524 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100525 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500526 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100527 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500528 free_extent_state(state);
529 } else {
530 WARN_ON(1);
531 }
532 } else {
533 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800534 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500535 }
Li Zefancdc6a392012-03-12 16:39:48 +0800536 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500537}
538
Xiao Guangrong82337672011-04-20 06:44:57 +0000539static struct extent_state *
540alloc_extent_state_atomic(struct extent_state *prealloc)
541{
542 if (!prealloc)
543 prealloc = alloc_extent_state(GFP_ATOMIC);
544
545 return prealloc;
546}
547
Eric Sandeen48a3b632013-04-25 20:41:01 +0000548static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400549{
David Sterba05912a32018-07-18 19:23:45 +0200550 struct inode *inode = tree->private_data;
551
552 btrfs_panic(btrfs_sb(inode->i_sb), err,
553 "locking error: extent tree was modified by another thread while locked");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400554}
555
Chris Masond1310b22008-01-24 16:13:08 -0500556/*
557 * clear some bits on a range in the tree. This may require splitting
558 * or inserting elements in the tree, so the gfp mask is used to
559 * indicate which allocations or sleeping are allowed.
560 *
561 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
562 * the given range from the tree regardless of state (ie for truncate).
563 *
564 * the range [start, end] is inclusive.
565 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100566 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500567 */
David Sterba66b0c882017-10-31 16:30:47 +0100568int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800569 unsigned bits, int wake, int delete,
570 struct extent_state **cached_state,
571 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500572{
573 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400574 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500575 struct extent_state *prealloc = NULL;
576 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400577 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500578 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000579 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500580
Josef Bacika5dee372013-12-13 10:02:44 -0500581 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000582
Josef Bacik7ee9e442013-06-21 16:37:03 -0400583 if (bits & EXTENT_DELALLOC)
584 bits |= EXTENT_NORESERVE;
585
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400586 if (delete)
587 bits |= ~EXTENT_CTLBITS;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400588
Josef Bacik2ac55d42010-02-03 19:33:23 +0000589 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
590 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500591again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800592 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000593 /*
594 * Don't care for allocation failure here because we might end
595 * up not needing the pre-allocated extent state at all, which
596 * is the case if we only have in the tree extent states that
597 * cover our input range and don't cover too any other range.
598 * If we end up needing a new extent state we allocate it later.
599 */
Chris Masond1310b22008-01-24 16:13:08 -0500600 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500601 }
602
Chris Masoncad321a2008-12-17 14:51:42 -0500603 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400604 if (cached_state) {
605 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000606
607 if (clear) {
608 *cached_state = NULL;
609 cached_state = NULL;
610 }
611
Filipe Manana27a35072014-07-06 20:09:59 +0100612 if (cached && extent_state_in_tree(cached) &&
613 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000614 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200615 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400616 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400617 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400618 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000619 if (clear)
620 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400621 }
Chris Masond1310b22008-01-24 16:13:08 -0500622 /*
623 * this search will find the extents that end after
624 * our range starts
625 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500626 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500627 if (!node)
628 goto out;
629 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400630hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500631 if (state->start > end)
632 goto out;
633 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400634 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500635
Liu Bo04493142012-02-16 18:34:37 +0800636 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800637 if (!(state->state & bits)) {
638 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800639 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800640 }
Liu Bo04493142012-02-16 18:34:37 +0800641
Chris Masond1310b22008-01-24 16:13:08 -0500642 /*
643 * | ---- desired range ---- |
644 * | state | or
645 * | ------------- state -------------- |
646 *
647 * We need to split the extent we found, and may flip
648 * bits on second half.
649 *
650 * If the extent we found extends past our range, we
651 * just split and search again. It'll get split again
652 * the next time though.
653 *
654 * If the extent we found is inside our range, we clear
655 * the desired bit on it.
656 */
657
658 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000659 prealloc = alloc_extent_state_atomic(prealloc);
660 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500661 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400662 if (err)
663 extent_io_tree_panic(tree, err);
664
Chris Masond1310b22008-01-24 16:13:08 -0500665 prealloc = NULL;
666 if (err)
667 goto out;
668 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800669 state = clear_state_bit(tree, state, &bits, wake,
670 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800671 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500672 }
673 goto search_again;
674 }
675 /*
676 * | ---- desired range ---- |
677 * | state |
678 * We need to split the extent, and clear the bit
679 * on the first half
680 */
681 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000682 prealloc = alloc_extent_state_atomic(prealloc);
683 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500684 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400685 if (err)
686 extent_io_tree_panic(tree, err);
687
Chris Masond1310b22008-01-24 16:13:08 -0500688 if (wake)
689 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400690
Qu Wenruofefdc552015-10-12 15:35:38 +0800691 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400692
Chris Masond1310b22008-01-24 16:13:08 -0500693 prealloc = NULL;
694 goto out;
695 }
Chris Mason42daec22009-09-23 19:51:09 -0400696
Qu Wenruofefdc552015-10-12 15:35:38 +0800697 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800698next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400699 if (last_end == (u64)-1)
700 goto out;
701 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800702 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800703 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500704
705search_again:
706 if (start > end)
707 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500708 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800709 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500710 cond_resched();
711 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200712
713out:
714 spin_unlock(&tree->lock);
715 if (prealloc)
716 free_extent_state(prealloc);
717
718 return 0;
719
Chris Masond1310b22008-01-24 16:13:08 -0500720}
Chris Masond1310b22008-01-24 16:13:08 -0500721
Jeff Mahoney143bede2012-03-01 14:56:26 +0100722static void wait_on_state(struct extent_io_tree *tree,
723 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500724 __releases(tree->lock)
725 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500726{
727 DEFINE_WAIT(wait);
728 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500729 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500730 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500731 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500732 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500733}
734
735/*
736 * waits for one or more bits to clear on a range in the state tree.
737 * The range [start, end] is inclusive.
738 * The tree lock is taken by this function
739 */
David Sterba41074882013-04-29 13:38:46 +0000740static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
741 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500742{
743 struct extent_state *state;
744 struct rb_node *node;
745
Josef Bacika5dee372013-12-13 10:02:44 -0500746 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000747
Chris Masoncad321a2008-12-17 14:51:42 -0500748 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500749again:
750 while (1) {
751 /*
752 * this search will find all the extents that end after
753 * our range starts
754 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500755 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100756process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500757 if (!node)
758 break;
759
760 state = rb_entry(node, struct extent_state, rb_node);
761
762 if (state->start > end)
763 goto out;
764
765 if (state->state & bits) {
766 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200767 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500768 wait_on_state(tree, state);
769 free_extent_state(state);
770 goto again;
771 }
772 start = state->end + 1;
773
774 if (start > end)
775 break;
776
Filipe Mananac50d3e72014-03-31 14:53:25 +0100777 if (!cond_resched_lock(&tree->lock)) {
778 node = rb_next(node);
779 goto process_node;
780 }
Chris Masond1310b22008-01-24 16:13:08 -0500781 }
782out:
Chris Masoncad321a2008-12-17 14:51:42 -0500783 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500784}
Chris Masond1310b22008-01-24 16:13:08 -0500785
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000786static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500787 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800788 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500789{
David Sterba9ee49a042015-01-14 19:52:13 +0100790 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100791 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400792
Nikolay Borisove06a1fc2018-11-01 14:09:50 +0200793 if (tree->private_data && is_data_inode(tree->private_data))
794 btrfs_set_delalloc_extent(tree->private_data, state, bits);
795
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400796 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500797 u64 range = state->end - state->start + 1;
798 tree->dirty_bytes += range;
799 }
David Sterba57599c72018-03-01 17:56:34 +0100800 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
801 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400802 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500803}
804
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100805static void cache_state_if_flags(struct extent_state *state,
806 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100807 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400808{
809 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100810 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400811 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200812 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400813 }
814 }
815}
816
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100817static void cache_state(struct extent_state *state,
818 struct extent_state **cached_ptr)
819{
820 return cache_state_if_flags(state, cached_ptr,
821 EXTENT_IOBITS | EXTENT_BOUNDARY);
822}
823
Chris Masond1310b22008-01-24 16:13:08 -0500824/*
Chris Mason1edbb732009-09-02 13:24:36 -0400825 * set some bits on a range in the tree. This may require allocations or
826 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500827 *
Chris Mason1edbb732009-09-02 13:24:36 -0400828 * If any of the exclusive bits are set, this will fail with -EEXIST if some
829 * part of the range already has the desired bits set. The start of the
830 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500831 *
Chris Mason1edbb732009-09-02 13:24:36 -0400832 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500833 */
Chris Mason1edbb732009-09-02 13:24:36 -0400834
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100835static int __must_check
836__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100837 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000838 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800839 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500840{
841 struct extent_state *state;
842 struct extent_state *prealloc = NULL;
843 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000844 struct rb_node **p;
845 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500846 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500847 u64 last_start;
848 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400849
Josef Bacika5dee372013-12-13 10:02:44 -0500850 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000851
Chris Masond1310b22008-01-24 16:13:08 -0500852again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800853 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200854 /*
855 * Don't care for allocation failure here because we might end
856 * up not needing the pre-allocated extent state at all, which
857 * is the case if we only have in the tree extent states that
858 * cover our input range and don't cover too any other range.
859 * If we end up needing a new extent state we allocate it later.
860 */
Chris Masond1310b22008-01-24 16:13:08 -0500861 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500862 }
863
Chris Masoncad321a2008-12-17 14:51:42 -0500864 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400865 if (cached_state && *cached_state) {
866 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400867 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100868 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400869 node = &state->rb_node;
870 goto hit_next;
871 }
872 }
Chris Masond1310b22008-01-24 16:13:08 -0500873 /*
874 * this search will find all the extents that end after
875 * our range starts.
876 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000877 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500878 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000879 prealloc = alloc_extent_state_atomic(prealloc);
880 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000881 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800882 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400883 if (err)
884 extent_io_tree_panic(tree, err);
885
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000886 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500887 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500888 goto out;
889 }
Chris Masond1310b22008-01-24 16:13:08 -0500890 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400891hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500892 last_start = state->start;
893 last_end = state->end;
894
895 /*
896 * | ---- desired range ---- |
897 * | state |
898 *
899 * Just lock what we found and keep going
900 */
901 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400902 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500903 *failed_start = state->start;
904 err = -EEXIST;
905 goto out;
906 }
Chris Mason42daec22009-09-23 19:51:09 -0400907
Qu Wenruod38ed272015-10-12 14:53:37 +0800908 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400909 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500910 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400911 if (last_end == (u64)-1)
912 goto out;
913 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800914 state = next_state(state);
915 if (start < end && state && state->start == start &&
916 !need_resched())
917 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500918 goto search_again;
919 }
920
921 /*
922 * | ---- desired range ---- |
923 * | state |
924 * or
925 * | ------------- state -------------- |
926 *
927 * We need to split the extent we found, and may flip bits on
928 * second half.
929 *
930 * If the extent we found extends past our
931 * range, we just split and search again. It'll get split
932 * again the next time though.
933 *
934 * If the extent we found is inside our range, we set the
935 * desired bit on it.
936 */
937 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400938 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500939 *failed_start = start;
940 err = -EEXIST;
941 goto out;
942 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000943
944 prealloc = alloc_extent_state_atomic(prealloc);
945 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500946 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400947 if (err)
948 extent_io_tree_panic(tree, err);
949
Chris Masond1310b22008-01-24 16:13:08 -0500950 prealloc = NULL;
951 if (err)
952 goto out;
953 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800954 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400955 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500956 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400957 if (last_end == (u64)-1)
958 goto out;
959 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800960 state = next_state(state);
961 if (start < end && state && state->start == start &&
962 !need_resched())
963 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500964 }
965 goto search_again;
966 }
967 /*
968 * | ---- desired range ---- |
969 * | state | or | state |
970 *
971 * There's a hole, we need to insert something in it and
972 * ignore the extent we found.
973 */
974 if (state->start > start) {
975 u64 this_end;
976 if (end < last_start)
977 this_end = end;
978 else
Chris Masond3977122009-01-05 21:25:51 -0500979 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000980
981 prealloc = alloc_extent_state_atomic(prealloc);
982 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000983
984 /*
985 * Avoid to free 'prealloc' if it can be merged with
986 * the later extent.
987 */
Chris Masond1310b22008-01-24 16:13:08 -0500988 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800989 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400990 if (err)
991 extent_io_tree_panic(tree, err);
992
Chris Mason2c64c532009-09-02 15:04:12 -0400993 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500994 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500995 start = this_end + 1;
996 goto search_again;
997 }
998 /*
999 * | ---- desired range ---- |
1000 * | state |
1001 * We need to split the extent, and set the bit
1002 * on the first half
1003 */
1004 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001005 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001006 *failed_start = start;
1007 err = -EEXIST;
1008 goto out;
1009 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001010
1011 prealloc = alloc_extent_state_atomic(prealloc);
1012 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001013 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001014 if (err)
1015 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001016
Qu Wenruod38ed272015-10-12 14:53:37 +08001017 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001018 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001019 merge_state(tree, prealloc);
1020 prealloc = NULL;
1021 goto out;
1022 }
1023
David Sterbab5a4ba142016-04-27 01:02:15 +02001024search_again:
1025 if (start > end)
1026 goto out;
1027 spin_unlock(&tree->lock);
1028 if (gfpflags_allow_blocking(mask))
1029 cond_resched();
1030 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001031
1032out:
Chris Masoncad321a2008-12-17 14:51:42 -05001033 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001034 if (prealloc)
1035 free_extent_state(prealloc);
1036
1037 return err;
1038
Chris Masond1310b22008-01-24 16:13:08 -05001039}
Chris Masond1310b22008-01-24 16:13:08 -05001040
David Sterba41074882013-04-29 13:38:46 +00001041int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001042 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001043 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001044{
1045 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001046 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001047}
1048
1049
Josef Bacik462d6fa2011-09-26 13:56:12 -04001050/**
Liu Bo10983f22012-07-11 15:26:19 +08001051 * convert_extent_bit - convert all bits in a given range from one bit to
1052 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001053 * @tree: the io tree to search
1054 * @start: the start offset in bytes
1055 * @end: the end offset in bytes (inclusive)
1056 * @bits: the bits to set in this range
1057 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001058 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001059 *
1060 * This will go through and set bits for the given range. If any states exist
1061 * already in this range they are set with the given bit and cleared of the
1062 * clear_bits. This is only meant to be used by things that are mergeable, ie
1063 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1064 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001065 *
1066 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001067 */
1068int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001069 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001070 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001071{
1072 struct extent_state *state;
1073 struct extent_state *prealloc = NULL;
1074 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001075 struct rb_node **p;
1076 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001077 int err = 0;
1078 u64 last_start;
1079 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001080 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001081
Josef Bacika5dee372013-12-13 10:02:44 -05001082 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001083
Josef Bacik462d6fa2011-09-26 13:56:12 -04001084again:
David Sterba210aa272016-04-26 23:54:39 +02001085 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001086 /*
1087 * Best effort, don't worry if extent state allocation fails
1088 * here for the first iteration. We might have a cached state
1089 * that matches exactly the target range, in which case no
1090 * extent state allocations are needed. We'll only know this
1091 * after locking the tree.
1092 */
David Sterba210aa272016-04-26 23:54:39 +02001093 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001094 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001095 return -ENOMEM;
1096 }
1097
1098 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001099 if (cached_state && *cached_state) {
1100 state = *cached_state;
1101 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001102 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001103 node = &state->rb_node;
1104 goto hit_next;
1105 }
1106 }
1107
Josef Bacik462d6fa2011-09-26 13:56:12 -04001108 /*
1109 * this search will find all the extents that end after
1110 * our range starts.
1111 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001112 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001113 if (!node) {
1114 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001115 if (!prealloc) {
1116 err = -ENOMEM;
1117 goto out;
1118 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001119 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001120 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001121 if (err)
1122 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001123 cache_state(prealloc, cached_state);
1124 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001125 goto out;
1126 }
1127 state = rb_entry(node, struct extent_state, rb_node);
1128hit_next:
1129 last_start = state->start;
1130 last_end = state->end;
1131
1132 /*
1133 * | ---- desired range ---- |
1134 * | state |
1135 *
1136 * Just lock what we found and keep going
1137 */
1138 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001139 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001140 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001141 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001142 if (last_end == (u64)-1)
1143 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001144 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001145 if (start < end && state && state->start == start &&
1146 !need_resched())
1147 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001148 goto search_again;
1149 }
1150
1151 /*
1152 * | ---- desired range ---- |
1153 * | state |
1154 * or
1155 * | ------------- state -------------- |
1156 *
1157 * We need to split the extent we found, and may flip bits on
1158 * second half.
1159 *
1160 * If the extent we found extends past our
1161 * range, we just split and search again. It'll get split
1162 * again the next time though.
1163 *
1164 * If the extent we found is inside our range, we set the
1165 * desired bit on it.
1166 */
1167 if (state->start < start) {
1168 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001169 if (!prealloc) {
1170 err = -ENOMEM;
1171 goto out;
1172 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001173 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001174 if (err)
1175 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001176 prealloc = NULL;
1177 if (err)
1178 goto out;
1179 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001180 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001181 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001182 state = clear_state_bit(tree, state, &clear_bits, 0,
1183 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001184 if (last_end == (u64)-1)
1185 goto out;
1186 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001187 if (start < end && state && state->start == start &&
1188 !need_resched())
1189 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001190 }
1191 goto search_again;
1192 }
1193 /*
1194 * | ---- desired range ---- |
1195 * | state | or | state |
1196 *
1197 * There's a hole, we need to insert something in it and
1198 * ignore the extent we found.
1199 */
1200 if (state->start > start) {
1201 u64 this_end;
1202 if (end < last_start)
1203 this_end = end;
1204 else
1205 this_end = last_start - 1;
1206
1207 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001208 if (!prealloc) {
1209 err = -ENOMEM;
1210 goto out;
1211 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001212
1213 /*
1214 * Avoid to free 'prealloc' if it can be merged with
1215 * the later extent.
1216 */
1217 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001218 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001219 if (err)
1220 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001221 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001222 prealloc = NULL;
1223 start = this_end + 1;
1224 goto search_again;
1225 }
1226 /*
1227 * | ---- desired range ---- |
1228 * | state |
1229 * We need to split the extent, and set the bit
1230 * on the first half
1231 */
1232 if (state->start <= end && state->end > end) {
1233 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001234 if (!prealloc) {
1235 err = -ENOMEM;
1236 goto out;
1237 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001238
1239 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001240 if (err)
1241 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001242
Qu Wenruod38ed272015-10-12 14:53:37 +08001243 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001244 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001245 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001246 prealloc = NULL;
1247 goto out;
1248 }
1249
Josef Bacik462d6fa2011-09-26 13:56:12 -04001250search_again:
1251 if (start > end)
1252 goto out;
1253 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001254 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001255 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001256 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001257
1258out:
1259 spin_unlock(&tree->lock);
1260 if (prealloc)
1261 free_extent_state(prealloc);
1262
1263 return err;
1264}
1265
Chris Masond1310b22008-01-24 16:13:08 -05001266/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001267int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001268 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001269{
1270 /*
1271 * We don't support EXTENT_LOCKED yet, as current changeset will
1272 * record any bits changed, so for EXTENT_LOCKED case, it will
1273 * either fail with -EEXIST or changeset will record the whole
1274 * range.
1275 */
1276 BUG_ON(bits & EXTENT_LOCKED);
1277
David Sterba2c53b912016-04-26 23:54:39 +02001278 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001279 changeset);
1280}
1281
Qu Wenruofefdc552015-10-12 15:35:38 +08001282int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1283 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001284 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001285{
1286 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001287 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001288}
1289
Qu Wenruofefdc552015-10-12 15:35:38 +08001290int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001291 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001292{
1293 /*
1294 * Don't support EXTENT_LOCKED case, same reason as
1295 * set_record_extent_bits().
1296 */
1297 BUG_ON(bits & EXTENT_LOCKED);
1298
David Sterbaf734c442016-04-26 23:54:39 +02001299 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001300 changeset);
1301}
1302
Chris Masond352ac62008-09-29 15:18:18 -04001303/*
1304 * either insert or lock state struct between start and end use mask to tell
1305 * us if waiting is desired.
1306 */
Chris Mason1edbb732009-09-02 13:24:36 -04001307int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001308 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001309{
1310 int err;
1311 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001312
Chris Masond1310b22008-01-24 16:13:08 -05001313 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001314 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001315 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001316 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001317 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001318 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1319 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001320 } else
Chris Masond1310b22008-01-24 16:13:08 -05001321 break;
Chris Masond1310b22008-01-24 16:13:08 -05001322 WARN_ON(start > end);
1323 }
1324 return err;
1325}
Chris Masond1310b22008-01-24 16:13:08 -05001326
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001327int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001328{
1329 int err;
1330 u64 failed_start;
1331
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001332 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001333 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001334 if (err == -EEXIST) {
1335 if (failed_start > start)
1336 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001337 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001338 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001339 }
Josef Bacik25179202008-10-29 14:49:05 -04001340 return 1;
1341}
Josef Bacik25179202008-10-29 14:49:05 -04001342
David Sterbabd1fa4f2015-12-03 13:08:59 +01001343void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001344{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001345 unsigned long index = start >> PAGE_SHIFT;
1346 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001347 struct page *page;
1348
1349 while (index <= end_index) {
1350 page = find_get_page(inode->i_mapping, index);
1351 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1352 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001353 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001354 index++;
1355 }
Chris Mason4adaa612013-03-26 13:07:00 -04001356}
1357
David Sterbaf6311572015-12-03 13:08:59 +01001358void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001359{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001360 unsigned long index = start >> PAGE_SHIFT;
1361 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001362 struct page *page;
1363
1364 while (index <= end_index) {
1365 page = find_get_page(inode->i_mapping, index);
1366 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001367 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001368 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001369 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001370 index++;
1371 }
Chris Mason4adaa612013-03-26 13:07:00 -04001372}
1373
Chris Masond352ac62008-09-29 15:18:18 -04001374/* find the first state struct with 'bits' set after 'start', and
1375 * return it. tree->lock must be held. NULL will returned if
1376 * nothing was found after 'start'
1377 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001378static struct extent_state *
1379find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001380 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001381{
1382 struct rb_node *node;
1383 struct extent_state *state;
1384
1385 /*
1386 * this search will find all the extents that end after
1387 * our range starts.
1388 */
1389 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001390 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001391 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001392
Chris Masond3977122009-01-05 21:25:51 -05001393 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001394 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001395 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001396 return state;
Chris Masond3977122009-01-05 21:25:51 -05001397
Chris Masond7fc6402008-02-18 12:12:38 -05001398 node = rb_next(node);
1399 if (!node)
1400 break;
1401 }
1402out:
1403 return NULL;
1404}
Chris Masond7fc6402008-02-18 12:12:38 -05001405
Chris Masond352ac62008-09-29 15:18:18 -04001406/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001407 * find the first offset in the io tree with 'bits' set. zero is
1408 * returned if we find something, and *start_ret and *end_ret are
1409 * set to reflect the state struct that was found.
1410 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001411 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001412 */
1413int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001414 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001415 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001416{
1417 struct extent_state *state;
1418 int ret = 1;
1419
1420 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001421 if (cached_state && *cached_state) {
1422 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001423 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001424 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001425 if (state->state & bits)
1426 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001427 }
1428 free_extent_state(*cached_state);
1429 *cached_state = NULL;
1430 goto out;
1431 }
1432 free_extent_state(*cached_state);
1433 *cached_state = NULL;
1434 }
1435
Xiao Guangrong69261c42011-07-14 03:19:45 +00001436 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001437got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001438 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001439 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001440 *start_ret = state->start;
1441 *end_ret = state->end;
1442 ret = 0;
1443 }
Josef Bacike6138872012-09-27 17:07:30 -04001444out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001445 spin_unlock(&tree->lock);
1446 return ret;
1447}
1448
1449/*
Chris Masond352ac62008-09-29 15:18:18 -04001450 * find a contiguous range of bytes in the file marked as delalloc, not
1451 * more than 'max_bytes'. start and end are used to return the range,
1452 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001453 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001454 */
Lu Fengqi3522e902018-11-29 11:33:38 +08001455static noinline bool find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001456 u64 *start, u64 *end, u64 max_bytes,
1457 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001458{
1459 struct rb_node *node;
1460 struct extent_state *state;
1461 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001462 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001463 u64 total_bytes = 0;
1464
Chris Masoncad321a2008-12-17 14:51:42 -05001465 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001466
Chris Masond1310b22008-01-24 16:13:08 -05001467 /*
1468 * this search will find all the extents that end after
1469 * our range starts.
1470 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001471 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001472 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001473 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001474 goto out;
1475 }
1476
Chris Masond3977122009-01-05 21:25:51 -05001477 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001478 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001479 if (found && (state->start != cur_start ||
1480 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001481 goto out;
1482 }
1483 if (!(state->state & EXTENT_DELALLOC)) {
1484 if (!found)
1485 *end = state->end;
1486 goto out;
1487 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001488 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001489 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001490 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001491 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001492 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001493 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001494 *end = state->end;
1495 cur_start = state->end + 1;
1496 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001497 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001498 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001499 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001500 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001501 break;
1502 }
1503out:
Chris Masoncad321a2008-12-17 14:51:42 -05001504 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001505 return found;
1506}
1507
Liu Boda2c7002017-02-10 16:41:05 +01001508static int __process_pages_contig(struct address_space *mapping,
1509 struct page *locked_page,
1510 pgoff_t start_index, pgoff_t end_index,
1511 unsigned long page_ops, pgoff_t *index_ret);
1512
Jeff Mahoney143bede2012-03-01 14:56:26 +01001513static noinline void __unlock_for_delalloc(struct inode *inode,
1514 struct page *locked_page,
1515 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001516{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001517 unsigned long index = start >> PAGE_SHIFT;
1518 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001519
Liu Bo76c00212017-02-10 16:42:14 +01001520 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001521 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001522 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001523
Liu Bo76c00212017-02-10 16:42:14 +01001524 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1525 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001526}
1527
1528static noinline int lock_delalloc_pages(struct inode *inode,
1529 struct page *locked_page,
1530 u64 delalloc_start,
1531 u64 delalloc_end)
1532{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001533 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001534 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001535 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001536 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001537
Liu Bo76c00212017-02-10 16:42:14 +01001538 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001539 if (index == locked_page->index && index == end_index)
1540 return 0;
1541
Liu Bo76c00212017-02-10 16:42:14 +01001542 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1543 end_index, PAGE_LOCK, &index_ret);
1544 if (ret == -EAGAIN)
1545 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1546 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001547 return ret;
1548}
1549
1550/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001551 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1552 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001553 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001554 * Return: true if we find something
1555 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001556 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001557EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001558noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001559 struct extent_io_tree *tree,
1560 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001561 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001562{
Nikolay Borisov917aace2018-10-26 14:43:20 +03001563 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001564 u64 delalloc_start;
1565 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001566 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001567 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001568 int ret;
1569 int loops = 0;
1570
1571again:
1572 /* step one, find a bunch of delalloc bytes starting at start */
1573 delalloc_start = *start;
1574 delalloc_end = 0;
1575 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001576 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001577 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001578 *start = delalloc_start;
1579 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001580 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001581 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001582 }
1583
1584 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001585 * start comes from the offset of locked_page. We have to lock
1586 * pages in order, so we can't process delalloc bytes before
1587 * locked_page
1588 */
Chris Masond3977122009-01-05 21:25:51 -05001589 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001590 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001591
1592 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001593 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001594 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001595 if (delalloc_end + 1 - delalloc_start > max_bytes)
1596 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001597
Chris Masonc8b97812008-10-29 14:49:59 -04001598 /* step two, lock all the pages after the page that has start */
1599 ret = lock_delalloc_pages(inode, locked_page,
1600 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001601 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001602 if (ret == -EAGAIN) {
1603 /* some of the pages are gone, lets avoid looping by
1604 * shortening the size of the delalloc range we're searching
1605 */
Chris Mason9655d292009-09-02 15:22:30 -04001606 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001607 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001608 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001609 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001610 loops = 1;
1611 goto again;
1612 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001613 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001614 goto out_failed;
1615 }
1616 }
Chris Masonc8b97812008-10-29 14:49:59 -04001617
1618 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001619 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001620
1621 /* then test to make sure it is all still delalloc */
1622 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001623 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001624 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001625 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001626 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001627 __unlock_for_delalloc(inode, locked_page,
1628 delalloc_start, delalloc_end);
1629 cond_resched();
1630 goto again;
1631 }
Chris Mason9655d292009-09-02 15:22:30 -04001632 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001633 *start = delalloc_start;
1634 *end = delalloc_end;
1635out_failed:
1636 return found;
1637}
1638
Liu Boda2c7002017-02-10 16:41:05 +01001639static int __process_pages_contig(struct address_space *mapping,
1640 struct page *locked_page,
1641 pgoff_t start_index, pgoff_t end_index,
1642 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001643{
Liu Bo873695b2017-02-02 17:49:22 -08001644 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001645 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001646 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001647 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001648 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001649 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001650 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001651
Liu Boda2c7002017-02-10 16:41:05 +01001652 if (page_ops & PAGE_LOCK) {
1653 ASSERT(page_ops == PAGE_LOCK);
1654 ASSERT(index_ret && *index_ret == start_index);
1655 }
1656
Filipe Manana704de492014-10-06 22:14:22 +01001657 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001658 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001659
Chris Masond3977122009-01-05 21:25:51 -05001660 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001661 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001662 min_t(unsigned long,
1663 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001664 if (ret == 0) {
1665 /*
1666 * Only if we're going to lock these pages,
1667 * can we find nothing at @index.
1668 */
1669 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001670 err = -EAGAIN;
1671 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001672 }
Chris Mason8b62b722009-09-02 16:53:46 -04001673
Liu Boda2c7002017-02-10 16:41:05 +01001674 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001675 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001676 SetPagePrivate2(pages[i]);
1677
Chris Masonc8b97812008-10-29 14:49:59 -04001678 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001679 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001680 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001681 continue;
1682 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001683 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001684 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001685 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001686 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001687 if (page_ops & PAGE_SET_ERROR)
1688 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001689 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001690 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001691 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001692 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001693 if (page_ops & PAGE_LOCK) {
1694 lock_page(pages[i]);
1695 if (!PageDirty(pages[i]) ||
1696 pages[i]->mapping != mapping) {
1697 unlock_page(pages[i]);
1698 put_page(pages[i]);
1699 err = -EAGAIN;
1700 goto out;
1701 }
1702 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001703 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001704 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001705 }
1706 nr_pages -= ret;
1707 index += ret;
1708 cond_resched();
1709 }
Liu Boda2c7002017-02-10 16:41:05 +01001710out:
1711 if (err && index_ret)
1712 *index_ret = start_index + pages_locked - 1;
1713 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001714}
Chris Masonc8b97812008-10-29 14:49:59 -04001715
Liu Bo873695b2017-02-02 17:49:22 -08001716void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1717 u64 delalloc_end, struct page *locked_page,
1718 unsigned clear_bits,
1719 unsigned long page_ops)
1720{
1721 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001722 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001723
1724 __process_pages_contig(inode->i_mapping, locked_page,
1725 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001726 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001727}
1728
Chris Masond352ac62008-09-29 15:18:18 -04001729/*
1730 * count the number of bytes in the tree that have a given bit(s)
1731 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1732 * cached. The total number found is returned.
1733 */
Chris Masond1310b22008-01-24 16:13:08 -05001734u64 count_range_bits(struct extent_io_tree *tree,
1735 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001736 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001737{
1738 struct rb_node *node;
1739 struct extent_state *state;
1740 u64 cur_start = *start;
1741 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001742 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001743 int found = 0;
1744
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301745 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001746 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001747
Chris Masoncad321a2008-12-17 14:51:42 -05001748 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001749 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1750 total_bytes = tree->dirty_bytes;
1751 goto out;
1752 }
1753 /*
1754 * this search will find all the extents that end after
1755 * our range starts.
1756 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001757 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001758 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001759 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001760
Chris Masond3977122009-01-05 21:25:51 -05001761 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001762 state = rb_entry(node, struct extent_state, rb_node);
1763 if (state->start > search_end)
1764 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001765 if (contig && found && state->start > last + 1)
1766 break;
1767 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001768 total_bytes += min(search_end, state->end) + 1 -
1769 max(cur_start, state->start);
1770 if (total_bytes >= max_bytes)
1771 break;
1772 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001773 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001774 found = 1;
1775 }
Chris Masonec29ed52011-02-23 16:23:20 -05001776 last = state->end;
1777 } else if (contig && found) {
1778 break;
Chris Masond1310b22008-01-24 16:13:08 -05001779 }
1780 node = rb_next(node);
1781 if (!node)
1782 break;
1783 }
1784out:
Chris Masoncad321a2008-12-17 14:51:42 -05001785 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001786 return total_bytes;
1787}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001788
Chris Masond352ac62008-09-29 15:18:18 -04001789/*
1790 * set the private field for a given byte offset in the tree. If there isn't
1791 * an extent_state there already, this does nothing.
1792 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001793static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001794 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001795{
1796 struct rb_node *node;
1797 struct extent_state *state;
1798 int ret = 0;
1799
Chris Masoncad321a2008-12-17 14:51:42 -05001800 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001801 /*
1802 * this search will find all the extents that end after
1803 * our range starts.
1804 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001805 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001806 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001807 ret = -ENOENT;
1808 goto out;
1809 }
1810 state = rb_entry(node, struct extent_state, rb_node);
1811 if (state->start != start) {
1812 ret = -ENOENT;
1813 goto out;
1814 }
David Sterba47dc1962016-02-11 13:24:13 +01001815 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001816out:
Chris Masoncad321a2008-12-17 14:51:42 -05001817 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001818 return ret;
1819}
1820
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001821static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001822 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001823{
1824 struct rb_node *node;
1825 struct extent_state *state;
1826 int ret = 0;
1827
Chris Masoncad321a2008-12-17 14:51:42 -05001828 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001829 /*
1830 * this search will find all the extents that end after
1831 * our range starts.
1832 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001833 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001834 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001835 ret = -ENOENT;
1836 goto out;
1837 }
1838 state = rb_entry(node, struct extent_state, rb_node);
1839 if (state->start != start) {
1840 ret = -ENOENT;
1841 goto out;
1842 }
David Sterba47dc1962016-02-11 13:24:13 +01001843 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001844out:
Chris Masoncad321a2008-12-17 14:51:42 -05001845 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001846 return ret;
1847}
1848
1849/*
1850 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001851 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001852 * has the bits set. Otherwise, 1 is returned if any bit in the
1853 * range is found set.
1854 */
1855int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001856 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001857{
1858 struct extent_state *state = NULL;
1859 struct rb_node *node;
1860 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001861
Chris Masoncad321a2008-12-17 14:51:42 -05001862 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001863 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001864 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001865 node = &cached->rb_node;
1866 else
1867 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001868 while (node && start <= end) {
1869 state = rb_entry(node, struct extent_state, rb_node);
1870
1871 if (filled && state->start > start) {
1872 bitset = 0;
1873 break;
1874 }
1875
1876 if (state->start > end)
1877 break;
1878
1879 if (state->state & bits) {
1880 bitset = 1;
1881 if (!filled)
1882 break;
1883 } else if (filled) {
1884 bitset = 0;
1885 break;
1886 }
Chris Mason46562ce2009-09-23 20:23:16 -04001887
1888 if (state->end == (u64)-1)
1889 break;
1890
Chris Masond1310b22008-01-24 16:13:08 -05001891 start = state->end + 1;
1892 if (start > end)
1893 break;
1894 node = rb_next(node);
1895 if (!node) {
1896 if (filled)
1897 bitset = 0;
1898 break;
1899 }
1900 }
Chris Masoncad321a2008-12-17 14:51:42 -05001901 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001902 return bitset;
1903}
Chris Masond1310b22008-01-24 16:13:08 -05001904
1905/*
1906 * helper function to set a given page up to date if all the
1907 * extents in the tree for that page are up to date
1908 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001909static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001910{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001911 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001912 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001913 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001914 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001915}
1916
Josef Bacik7870d082017-05-05 11:57:15 -04001917int free_io_failure(struct extent_io_tree *failure_tree,
1918 struct extent_io_tree *io_tree,
1919 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001920{
1921 int ret;
1922 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001923
David Sterba47dc1962016-02-11 13:24:13 +01001924 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001925 ret = clear_extent_bits(failure_tree, rec->start,
1926 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001927 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001928 if (ret)
1929 err = ret;
1930
Josef Bacik7870d082017-05-05 11:57:15 -04001931 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001932 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001933 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001934 if (ret && !err)
1935 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001936
1937 kfree(rec);
1938 return err;
1939}
1940
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001941/*
1942 * this bypasses the standard btrfs submit functions deliberately, as
1943 * the standard behavior is to write all copies in a raid setup. here we only
1944 * want to write the one bad copy. so we do the mapping for ourselves and issue
1945 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001946 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001947 * actually prevents the read that triggered the error from finishing.
1948 * currently, there can be no more than two copies of every data bit. thus,
1949 * exactly one rewrite is required.
1950 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04001951int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1952 u64 length, u64 logical, struct page *page,
1953 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001954{
1955 struct bio *bio;
1956 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001957 u64 map_length = 0;
1958 u64 sector;
1959 struct btrfs_bio *bbio = NULL;
1960 int ret;
1961
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001962 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001963 BUG_ON(!mirror_num);
1964
David Sterbac5e4c3d2017-06-12 17:29:41 +02001965 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001966 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001967 map_length = length;
1968
Filipe Mananab5de8d02016-05-27 22:21:27 +01001969 /*
1970 * Avoid races with device replace and make sure our bbio has devices
1971 * associated to its stripes that don't go away while we are doing the
1972 * read repair operation.
1973 */
1974 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03001975 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07001976 /*
1977 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
1978 * to update all raid stripes, but here we just want to correct
1979 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
1980 * stripe's dev and sector.
1981 */
1982 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
1983 &map_length, &bbio, 0);
1984 if (ret) {
1985 btrfs_bio_counter_dec(fs_info);
1986 bio_put(bio);
1987 return -EIO;
1988 }
1989 ASSERT(bbio->mirror_num == 1);
1990 } else {
1991 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
1992 &map_length, &bbio, mirror_num);
1993 if (ret) {
1994 btrfs_bio_counter_dec(fs_info);
1995 bio_put(bio);
1996 return -EIO;
1997 }
1998 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001999 }
Liu Boc7253282017-03-29 10:53:58 -07002000
2001 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002002 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002003 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002004 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002005 if (!dev || !dev->bdev ||
2006 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002007 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002008 bio_put(bio);
2009 return -EIO;
2010 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002011 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002012 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002013 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002014
Mike Christie4e49ea42016-06-05 14:31:41 -05002015 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002016 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002017 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002018 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002019 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002020 return -EIO;
2021 }
2022
David Sterbab14af3b2015-10-08 10:43:10 +02002023 btrfs_info_rl_in_rcu(fs_info,
2024 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002025 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002026 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002027 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002028 bio_put(bio);
2029 return 0;
2030}
2031
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002032int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2033 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002034{
Josef Bacikea466792012-03-26 21:57:36 -04002035 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002036 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002037 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002038
David Howellsbc98a422017-07-17 08:45:34 +01002039 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002040 return -EROFS;
2041
Josef Bacikea466792012-03-26 21:57:36 -04002042 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002043 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002044
Josef Bacik6ec656b2017-05-05 11:57:14 -04002045 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002046 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002047 if (ret)
2048 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002049 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002050 }
2051
2052 return ret;
2053}
2054
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002055/*
2056 * each time an IO finishes, we do a fast check in the IO failure tree
2057 * to see if we need to process or clean up an io_failure_record
2058 */
Josef Bacik7870d082017-05-05 11:57:15 -04002059int clean_io_failure(struct btrfs_fs_info *fs_info,
2060 struct extent_io_tree *failure_tree,
2061 struct extent_io_tree *io_tree, u64 start,
2062 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002063{
2064 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002065 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002066 struct extent_state *state;
2067 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002068 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002069
2070 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002071 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2072 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002073 if (!ret)
2074 return 0;
2075
Josef Bacik7870d082017-05-05 11:57:15 -04002076 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002077 if (ret)
2078 return 0;
2079
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002080 BUG_ON(!failrec->this_mirror);
2081
2082 if (failrec->in_validation) {
2083 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002084 btrfs_debug(fs_info,
2085 "clean_io_failure: freeing dummy error at %llu",
2086 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002087 goto out;
2088 }
David Howellsbc98a422017-07-17 08:45:34 +01002089 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002090 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091
Josef Bacik7870d082017-05-05 11:57:15 -04002092 spin_lock(&io_tree->lock);
2093 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002094 failrec->start,
2095 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002096 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002097
Miao Xie883d0de2013-07-25 19:22:35 +08002098 if (state && state->start <= failrec->start &&
2099 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002100 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2101 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002102 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002103 repair_io_failure(fs_info, ino, start, failrec->len,
2104 failrec->logical, page, pg_offset,
2105 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002106 }
2107 }
2108
2109out:
Josef Bacik7870d082017-05-05 11:57:15 -04002110 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002111
Miao Xie454ff3d2014-09-12 18:43:58 +08002112 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002113}
2114
Miao Xief6124962014-09-12 18:44:04 +08002115/*
2116 * Can be called when
2117 * - hold extent lock
2118 * - under ordered extent
2119 * - the inode is freeing
2120 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002121void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002122{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002123 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002124 struct io_failure_record *failrec;
2125 struct extent_state *state, *next;
2126
2127 if (RB_EMPTY_ROOT(&failure_tree->state))
2128 return;
2129
2130 spin_lock(&failure_tree->lock);
2131 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2132 while (state) {
2133 if (state->start > end)
2134 break;
2135
2136 ASSERT(state->end <= end);
2137
2138 next = next_state(state);
2139
David Sterba47dc1962016-02-11 13:24:13 +01002140 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002141 free_extent_state(state);
2142 kfree(failrec);
2143
2144 state = next;
2145 }
2146 spin_unlock(&failure_tree->lock);
2147}
2148
Miao Xie2fe63032014-09-12 18:43:59 +08002149int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002150 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002151{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002152 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002153 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002154 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002155 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2156 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2157 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002158 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002159 u64 logical;
2160
David Sterba47dc1962016-02-11 13:24:13 +01002161 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002162 if (ret) {
2163 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2164 if (!failrec)
2165 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002166
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002167 failrec->start = start;
2168 failrec->len = end - start + 1;
2169 failrec->this_mirror = 0;
2170 failrec->bio_flags = 0;
2171 failrec->in_validation = 0;
2172
2173 read_lock(&em_tree->lock);
2174 em = lookup_extent_mapping(em_tree, start, failrec->len);
2175 if (!em) {
2176 read_unlock(&em_tree->lock);
2177 kfree(failrec);
2178 return -EIO;
2179 }
2180
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002181 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002182 free_extent_map(em);
2183 em = NULL;
2184 }
2185 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002186 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002187 kfree(failrec);
2188 return -EIO;
2189 }
Miao Xie2fe63032014-09-12 18:43:59 +08002190
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002191 logical = start - em->start;
2192 logical = em->block_start + logical;
2193 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2194 logical = em->block_start;
2195 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2196 extent_set_compress_type(&failrec->bio_flags,
2197 em->compress_type);
2198 }
Miao Xie2fe63032014-09-12 18:43:59 +08002199
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002200 btrfs_debug(fs_info,
2201 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2202 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002203
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002204 failrec->logical = logical;
2205 free_extent_map(em);
2206
2207 /* set the bits in the private failure tree */
2208 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002209 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002210 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002211 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002212 /* set the bits in the inode's tree */
2213 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002214 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002215 if (ret < 0) {
2216 kfree(failrec);
2217 return ret;
2218 }
2219 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002220 btrfs_debug(fs_info,
2221 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2222 failrec->logical, failrec->start, failrec->len,
2223 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002224 /*
2225 * when data can be on disk more than twice, add to failrec here
2226 * (e.g. with a list for failed_mirror) to make
2227 * clean_io_failure() clean all those errors at once.
2228 */
2229 }
Miao Xie2fe63032014-09-12 18:43:59 +08002230
2231 *failrec_ret = failrec;
2232
2233 return 0;
2234}
2235
Ming Leia0b60d72017-12-18 20:22:11 +08002236bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002237 struct io_failure_record *failrec, int failed_mirror)
2238{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002239 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002240 int num_copies;
2241
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002242 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002243 if (num_copies == 1) {
2244 /*
2245 * we only have a single copy of the data, so don't bother with
2246 * all the retry and error correction code that follows. no
2247 * matter what the error is, it is very likely to persist.
2248 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002249 btrfs_debug(fs_info,
2250 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2251 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002252 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002253 }
2254
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002255 /*
2256 * there are two premises:
2257 * a) deliver good data to the caller
2258 * b) correct the bad sectors on disk
2259 */
Ming Leia0b60d72017-12-18 20:22:11 +08002260 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002261 /*
2262 * to fulfill b), we need to know the exact failing sectors, as
2263 * we don't want to rewrite any more than the failed ones. thus,
2264 * we need separate read requests for the failed bio
2265 *
2266 * if the following BUG_ON triggers, our validation request got
2267 * merged. we need separate requests for our algorithm to work.
2268 */
2269 BUG_ON(failrec->in_validation);
2270 failrec->in_validation = 1;
2271 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002272 } else {
2273 /*
2274 * we're ready to fulfill a) and b) alongside. get a good copy
2275 * of the failed sector and if we succeed, we have setup
2276 * everything for repair_io_failure to do the rest for us.
2277 */
2278 if (failrec->in_validation) {
2279 BUG_ON(failrec->this_mirror != failed_mirror);
2280 failrec->in_validation = 0;
2281 failrec->this_mirror = 0;
2282 }
2283 failrec->failed_mirror = failed_mirror;
2284 failrec->this_mirror++;
2285 if (failrec->this_mirror == failed_mirror)
2286 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002287 }
2288
Miao Xiefacc8a222013-07-25 19:22:34 +08002289 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002290 btrfs_debug(fs_info,
2291 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2292 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002293 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002294 }
2295
Liu Boc3cfb652017-07-13 15:00:50 -07002296 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002297}
2298
2299
2300struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2301 struct io_failure_record *failrec,
2302 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002303 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002304{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002305 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002306 struct bio *bio;
2307 struct btrfs_io_bio *btrfs_failed_bio;
2308 struct btrfs_io_bio *btrfs_bio;
2309
David Sterbac5e4c3d2017-06-12 17:29:41 +02002310 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002311 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002312 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002313 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002314 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002315 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002316
Miao Xiefacc8a222013-07-25 19:22:34 +08002317 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2318 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002319 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2320
2321 btrfs_bio = btrfs_io_bio(bio);
2322 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002323 icsum *= csum_size;
2324 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002325 csum_size);
2326 }
2327
Miao Xie2fe63032014-09-12 18:43:59 +08002328 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002329
Miao Xie2fe63032014-09-12 18:43:59 +08002330 return bio;
2331}
2332
2333/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002334 * This is a generic handler for readpage errors. If other copies exist, read
2335 * those and write back good data to the failed position. Does not investigate
2336 * in remapping the failed extent elsewhere, hoping the device will be smart
2337 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002338 */
Miao Xie2fe63032014-09-12 18:43:59 +08002339static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2340 struct page *page, u64 start, u64 end,
2341 int failed_mirror)
2342{
2343 struct io_failure_record *failrec;
2344 struct inode *inode = page->mapping->host;
2345 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002346 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002347 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002348 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002349 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002350 int ret;
Ming Leia0b60d72017-12-18 20:22:11 +08002351 unsigned failed_bio_pages = bio_pages_all(failed_bio);
Miao Xie2fe63032014-09-12 18:43:59 +08002352
Mike Christie1f7ad752016-06-05 14:31:51 -05002353 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002354
2355 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2356 if (ret)
2357 return ret;
2358
Ming Leia0b60d72017-12-18 20:22:11 +08002359 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002360 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002361 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002362 return -EIO;
2363 }
2364
Ming Leia0b60d72017-12-18 20:22:11 +08002365 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002366 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002367
2368 phy_offset >>= inode->i_sb->s_blocksize_bits;
2369 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2370 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002371 (int)phy_offset, failed_bio->bi_end_io,
2372 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002373 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002374
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002375 btrfs_debug(btrfs_sb(inode->i_sb),
2376 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2377 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002378
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002379 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002380 failrec->bio_flags, 0);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002381 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002382 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002383 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002384 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002385 }
2386
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002387 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002388}
2389
Chris Masond1310b22008-01-24 16:13:08 -05002390/* lots and lots of room for performance fixes in the end_bio funcs */
2391
David Sterbab5227c02015-12-03 13:08:59 +01002392void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002393{
2394 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002395 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002396
Nikolay Borisovc6297322018-11-08 10:18:08 +02002397 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002398
Jeff Mahoney87826df2012-02-15 16:23:57 +01002399 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002400 ClearPageUptodate(page);
2401 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002402 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002403 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002404 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002405}
2406
Chris Masond1310b22008-01-24 16:13:08 -05002407/*
2408 * after a writepage IO is done, we need to:
2409 * clear the uptodate bits on error
2410 * clear the writeback bits in the extent tree for this IO
2411 * end_page_writeback if the page has no more pending IO
2412 *
2413 * Scheduling is not allowed, so the extent state tree is expected
2414 * to have one and only one object corresponding to this IO.
2415 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002416static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002417{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002418 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002419 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002420 u64 start;
2421 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002422 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002423
David Sterbac09abff2017-07-13 18:10:07 +02002424 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002425 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002426 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002427 struct inode *inode = page->mapping->host;
2428 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002429
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002430 /* We always issue full-page reads, but if some block
2431 * in a page fails to read, blk_update_request() will
2432 * advance bv_offset and adjust bv_len to compensate.
2433 * Print a warning for nonzero offsets, and an error
2434 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002435 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2436 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002437 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002438 "partial page write in btrfs with offset %u and length %u",
2439 bvec->bv_offset, bvec->bv_len);
2440 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002441 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002442 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002443 bvec->bv_offset, bvec->bv_len);
2444 }
Chris Masond1310b22008-01-24 16:13:08 -05002445
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002446 start = page_offset(page);
2447 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002448
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002449 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002450 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002451 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002452
Chris Masond1310b22008-01-24 16:13:08 -05002453 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002454}
2455
Miao Xie883d0de2013-07-25 19:22:35 +08002456static void
2457endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2458 int uptodate)
2459{
2460 struct extent_state *cached = NULL;
2461 u64 end = start + len - 1;
2462
2463 if (uptodate && tree->track_uptodate)
2464 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002465 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002466}
2467
Chris Masond1310b22008-01-24 16:13:08 -05002468/*
2469 * after a readpage IO is done, we need to:
2470 * clear the uptodate bits on error
2471 * set the uptodate bits if things worked
2472 * set the page up to date if all extents in the tree are uptodate
2473 * clear the lock bit in the extent tree
2474 * unlock the page if there are no other extents locked for it
2475 *
2476 * Scheduling is not allowed, so the extent state tree is expected
2477 * to have one and only one object corresponding to this IO.
2478 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002479static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002480{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002481 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002482 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002483 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002484 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002485 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002486 u64 start;
2487 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002488 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002489 u64 extent_start = 0;
2490 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002491 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002492 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002493 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002494
David Sterbac09abff2017-07-13 18:10:07 +02002495 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002496 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002497 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002498 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002499 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002500 bool data_inode = btrfs_ino(BTRFS_I(inode))
2501 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002502
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002503 btrfs_debug(fs_info,
2504 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002505 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002506 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002507 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002508 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002509
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002510 /* We always issue full-page reads, but if some block
2511 * in a page fails to read, blk_update_request() will
2512 * advance bv_offset and adjust bv_len to compensate.
2513 * Print a warning for nonzero offsets, and an error
2514 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002515 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2516 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002517 btrfs_err(fs_info,
2518 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002519 bvec->bv_offset, bvec->bv_len);
2520 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002521 btrfs_info(fs_info,
2522 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002523 bvec->bv_offset, bvec->bv_len);
2524 }
Chris Masond1310b22008-01-24 16:13:08 -05002525
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002526 start = page_offset(page);
2527 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002528 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002529
Chris Mason9be33952013-05-17 18:30:14 -04002530 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002531 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002532 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2533 page, start, end,
2534 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002535 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002536 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002537 else
Josef Bacik7870d082017-05-05 11:57:15 -04002538 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2539 failure_tree, tree, start,
2540 page,
2541 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002542 }
Josef Bacikea466792012-03-26 21:57:36 -04002543
Miao Xief2a09da2013-07-25 19:22:33 +08002544 if (likely(uptodate))
2545 goto readpage_ok;
2546
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002547 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002548
2549 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002550 * The generic bio_readpage_error handles errors the
2551 * following way: If possible, new read requests are
2552 * created and submitted and will end up in
2553 * end_bio_extent_readpage as well (if we're lucky,
2554 * not in the !uptodate case). In that case it returns
2555 * 0 and we just go on with the next page in our bio.
2556 * If it can't handle the error it will return -EIO and
2557 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002558 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002559 ret = bio_readpage_error(bio, offset, page, start, end,
2560 mirror);
2561 if (ret == 0) {
2562 uptodate = !bio->bi_status;
2563 offset += len;
2564 continue;
2565 }
2566 } else {
2567 struct extent_buffer *eb;
2568
2569 eb = (struct extent_buffer *)page->private;
2570 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2571 eb->read_mirror = mirror;
2572 atomic_dec(&eb->io_pages);
2573 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2574 &eb->bflags))
2575 btree_readahead_hook(eb, -EIO);
2576
2577 ret = -EIO;
Chris Mason7e383262008-04-09 16:28:12 -04002578 }
Miao Xief2a09da2013-07-25 19:22:33 +08002579readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002580 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002581 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002582 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002583 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002584
2585 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002586 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002587 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002588 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002589 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002590 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002591 ClearPageUptodate(page);
2592 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002593 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002594 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002595 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002596
2597 if (unlikely(!uptodate)) {
2598 if (extent_len) {
2599 endio_readpage_release_extent(tree,
2600 extent_start,
2601 extent_len, 1);
2602 extent_start = 0;
2603 extent_len = 0;
2604 }
2605 endio_readpage_release_extent(tree, start,
2606 end - start + 1, 0);
2607 } else if (!extent_len) {
2608 extent_start = start;
2609 extent_len = end + 1 - start;
2610 } else if (extent_start + extent_len == start) {
2611 extent_len += end + 1 - start;
2612 } else {
2613 endio_readpage_release_extent(tree, extent_start,
2614 extent_len, uptodate);
2615 extent_start = start;
2616 extent_len = end + 1 - start;
2617 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002618 }
Chris Masond1310b22008-01-24 16:13:08 -05002619
Miao Xie883d0de2013-07-25 19:22:35 +08002620 if (extent_len)
2621 endio_readpage_release_extent(tree, extent_start, extent_len,
2622 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002623 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002624 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002625}
2626
Chris Mason9be33952013-05-17 18:30:14 -04002627/*
David Sterba184f9992017-06-12 17:29:39 +02002628 * Initialize the members up to but not including 'bio'. Use after allocating a
2629 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2630 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002631 */
David Sterba184f9992017-06-12 17:29:39 +02002632static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002633{
David Sterba184f9992017-06-12 17:29:39 +02002634 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2635}
2636
2637/*
David Sterba6e707bc2017-06-02 17:26:26 +02002638 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2639 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2640 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002641 */
David Sterbac821e7f32017-06-02 18:35:36 +02002642struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002643{
2644 struct bio *bio;
2645
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002646 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002647 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002648 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002649 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002650 return bio;
2651}
2652
David Sterba8b6c1d52017-06-02 17:48:13 +02002653struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002654{
Miao Xie23ea8e52014-09-12 18:43:54 +08002655 struct btrfs_io_bio *btrfs_bio;
2656 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002657
David Sterba6e707bc2017-06-02 17:26:26 +02002658 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002659 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002660 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002661 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002662 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002663 return new;
2664}
Chris Mason9be33952013-05-17 18:30:14 -04002665
David Sterbac5e4c3d2017-06-12 17:29:41 +02002666struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002667{
Miao Xiefacc8a222013-07-25 19:22:34 +08002668 struct bio *bio;
2669
David Sterba6e707bc2017-06-02 17:26:26 +02002670 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002671 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002672 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002673 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002674}
2675
Liu Boe4770942017-05-16 10:57:14 -07002676struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002677{
2678 struct bio *bio;
2679 struct btrfs_io_bio *btrfs_bio;
2680
2681 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002682 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002683 ASSERT(bio);
2684
2685 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002686 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002687
2688 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002689 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002690 return bio;
2691}
Chris Mason9be33952013-05-17 18:30:14 -04002692
Mike Christie1f7ad752016-06-05 14:31:51 -05002693static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2694 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002695{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002696 blk_status_t ret = 0;
Ming Leic45a8f22017-12-18 20:22:05 +08002697 struct bio_vec *bvec = bio_last_bvec_all(bio);
Chris Mason70dec802008-01-29 09:59:12 -05002698 struct page *page = bvec->bv_page;
2699 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002700 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002701
Miao Xie4eee4fa2012-12-21 09:17:45 +00002702 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002703
David Woodhouse902b22f2008-08-20 08:51:49 -04002704 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002705
David Sterba20c98012017-02-17 15:59:35 +01002706 if (tree->ops)
Josef Bacikc6100a42017-05-05 11:57:13 -04002707 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002708 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002709 else
Mike Christie4e49ea42016-06-05 14:31:41 -05002710 btrfsic_submit_bio(bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002711
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002712 return blk_status_to_errno(ret);
Chris Masond1310b22008-01-24 16:13:08 -05002713}
2714
David Sterba4b81ba42017-06-06 19:14:26 +02002715/*
2716 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002717 * @tree: tree so we can call our merge_bio hook
2718 * @wbc: optional writeback control for io accounting
2719 * @page: page to add to the bio
2720 * @pg_offset: offset of the new bio or to check whether we are adding
2721 * a contiguous page to the previous one
2722 * @size: portion of page that we want to write
2723 * @offset: starting offset in the page
2724 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002725 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002726 * @end_io_func: end_io callback for new bio
2727 * @mirror_num: desired mirror to read/write
2728 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2729 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002730 */
2731static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002732 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002733 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002734 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002735 struct block_device *bdev,
2736 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002737 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002738 int mirror_num,
2739 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002740 unsigned long bio_flags,
2741 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002742{
2743 int ret = 0;
2744 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002745 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002746 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002747
David Sterba5c2b1fd2017-06-06 19:22:55 +02002748 ASSERT(bio_ret);
2749
2750 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002751 bool contig;
2752 bool can_merge = true;
2753
Chris Masond1310b22008-01-24 16:13:08 -05002754 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002755 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002756 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002757 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002758 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002759
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002760 ASSERT(tree->ops);
2761 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002762 can_merge = false;
2763
2764 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002765 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002766 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002767 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002768 if (ret < 0) {
2769 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002770 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002771 }
Chris Masond1310b22008-01-24 16:13:08 -05002772 bio = NULL;
2773 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002774 if (wbc)
2775 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002776 return 0;
2777 }
2778 }
Chris Masonc8b97812008-10-29 14:49:59 -04002779
David Sterba6273b7f2017-10-04 17:30:11 +02002780 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002781 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002782 bio->bi_end_io = end_io_func;
2783 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002784 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002785 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002786 if (wbc) {
2787 wbc_init_bio(wbc, bio);
2788 wbc_account_io(wbc, page, page_size);
2789 }
Chris Mason70dec802008-01-29 09:59:12 -05002790
David Sterba5c2b1fd2017-06-06 19:22:55 +02002791 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002792
2793 return ret;
2794}
2795
Eric Sandeen48a3b632013-04-25 20:41:01 +00002796static void attach_extent_buffer_page(struct extent_buffer *eb,
2797 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002798{
2799 if (!PagePrivate(page)) {
2800 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002801 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002802 set_page_private(page, (unsigned long)eb);
2803 } else {
2804 WARN_ON(page->private != (unsigned long)eb);
2805 }
2806}
2807
Chris Masond1310b22008-01-24 16:13:08 -05002808void set_page_extent_mapped(struct page *page)
2809{
2810 if (!PagePrivate(page)) {
2811 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002812 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002813 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002814 }
2815}
2816
Miao Xie125bac012013-07-25 19:22:37 +08002817static struct extent_map *
2818__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2819 u64 start, u64 len, get_extent_t *get_extent,
2820 struct extent_map **em_cached)
2821{
2822 struct extent_map *em;
2823
2824 if (em_cached && *em_cached) {
2825 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002826 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002827 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002828 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002829 return em;
2830 }
2831
2832 free_extent_map(em);
2833 *em_cached = NULL;
2834 }
2835
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002836 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002837 if (em_cached && !IS_ERR_OR_NULL(em)) {
2838 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002839 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002840 *em_cached = em;
2841 }
2842 return em;
2843}
Chris Masond1310b22008-01-24 16:13:08 -05002844/*
2845 * basic readpage implementation. Locked extent state structs are inserted
2846 * into the tree that are removed when the IO is done (by the end_io
2847 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002848 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002849 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002850 */
Miao Xie99740902013-07-25 19:22:36 +08002851static int __do_readpage(struct extent_io_tree *tree,
2852 struct page *page,
2853 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002854 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002855 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002856 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002857 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002858{
2859 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002860 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02002861 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002862 u64 cur = start;
2863 u64 extent_offset;
2864 u64 last_byte = i_size_read(inode);
2865 u64 block_start;
2866 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05002867 struct extent_map *em;
2868 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002869 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002870 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002871 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002872 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002873 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002874 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002875 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002876
2877 set_page_extent_mapped(page);
2878
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002879 if (!PageUptodate(page)) {
2880 if (cleancache_get_page(page) == 0) {
2881 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002882 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002883 goto out;
2884 }
2885 }
2886
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002887 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002888 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01002889 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04002890
2891 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002892 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002893 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002894 memset(userpage + zero_offset, 0, iosize);
2895 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002896 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002897 }
2898 }
Chris Masond1310b22008-01-24 16:13:08 -05002899 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002900 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02002901 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002902
Chris Masond1310b22008-01-24 16:13:08 -05002903 if (cur >= last_byte) {
2904 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002905 struct extent_state *cached = NULL;
2906
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002907 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002908 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002909 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002910 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002911 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002912 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002913 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002914 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01002915 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05002916 break;
2917 }
Miao Xie125bac012013-07-25 19:22:37 +08002918 em = __get_extent_map(inode, page, pg_offset, cur,
2919 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002920 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002921 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00002922 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002923 break;
2924 }
Chris Masond1310b22008-01-24 16:13:08 -05002925 extent_offset = cur - em->start;
2926 BUG_ON(extent_map_end(em) <= cur);
2927 BUG_ON(end < cur);
2928
Li Zefan261507a02010-12-17 14:21:50 +08002929 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002930 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002931 extent_set_compress_type(&this_bio_flag,
2932 em->compress_type);
2933 }
Chris Masonc8b97812008-10-29 14:49:59 -04002934
Chris Masond1310b22008-01-24 16:13:08 -05002935 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2936 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002937 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002938 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2939 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02002940 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002941 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02002942 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04002943 disk_io_size = iosize;
2944 }
Chris Masond1310b22008-01-24 16:13:08 -05002945 bdev = em->bdev;
2946 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002947 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2948 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002949
2950 /*
2951 * If we have a file range that points to a compressed extent
2952 * and it's followed by a consecutive file range that points to
2953 * to the same compressed extent (possibly with a different
2954 * offset and/or length, so it either points to the whole extent
2955 * or only part of it), we must make sure we do not submit a
2956 * single bio to populate the pages for the 2 ranges because
2957 * this makes the compressed extent read zero out the pages
2958 * belonging to the 2nd range. Imagine the following scenario:
2959 *
2960 * File layout
2961 * [0 - 8K] [8K - 24K]
2962 * | |
2963 * | |
2964 * points to extent X, points to extent X,
2965 * offset 4K, length of 8K offset 0, length 16K
2966 *
2967 * [extent X, compressed length = 4K uncompressed length = 16K]
2968 *
2969 * If the bio to read the compressed extent covers both ranges,
2970 * it will decompress extent X into the pages belonging to the
2971 * first range and then it will stop, zeroing out the remaining
2972 * pages that belong to the other range that points to extent X.
2973 * So here we make sure we submit 2 bios, one for the first
2974 * range and another one for the third range. Both will target
2975 * the same physical extent from disk, but we can't currently
2976 * make the compressed bio endio callback populate the pages
2977 * for both ranges because each compressed bio is tightly
2978 * coupled with a single extent map, and each range can have
2979 * an extent map with a different offset value relative to the
2980 * uncompressed data of our extent and different lengths. This
2981 * is a corner case so we prioritize correctness over
2982 * non-optimal behavior (submitting 2 bios for the same extent).
2983 */
2984 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
2985 prev_em_start && *prev_em_start != (u64)-1 &&
2986 *prev_em_start != em->orig_start)
2987 force_bio_submit = true;
2988
2989 if (prev_em_start)
2990 *prev_em_start = em->orig_start;
2991
Chris Masond1310b22008-01-24 16:13:08 -05002992 free_extent_map(em);
2993 em = NULL;
2994
2995 /* we've found a hole, just zero and go on */
2996 if (block_start == EXTENT_MAP_HOLE) {
2997 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002998 struct extent_state *cached = NULL;
2999
Cong Wang7ac687d2011-11-25 23:14:28 +08003000 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003001 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003002 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003003 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003004
3005 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003006 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003007 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003008 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003009 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003010 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003011 continue;
3012 }
3013 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003014 if (test_range_bit(tree, cur, cur_end,
3015 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003016 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003017 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003018 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003019 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003020 continue;
3021 }
Chris Mason70dec802008-01-29 09:59:12 -05003022 /* we have an inline extent but it didn't get marked up
3023 * to date. Error out
3024 */
3025 if (block_start == EXTENT_MAP_INLINE) {
3026 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003027 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003028 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003029 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003030 continue;
3031 }
Chris Masond1310b22008-01-24 16:13:08 -05003032
David Sterba4b81ba42017-06-06 19:14:26 +02003033 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003034 page, offset, disk_io_size,
3035 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003036 end_bio_extent_readpage, mirror_num,
3037 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003038 this_bio_flag,
3039 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003040 if (!ret) {
3041 nr++;
3042 *bio_flags = this_bio_flag;
3043 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003044 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003045 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003046 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003047 }
Chris Masond1310b22008-01-24 16:13:08 -05003048 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003049 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003050 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003051out:
Chris Masond1310b22008-01-24 16:13:08 -05003052 if (!nr) {
3053 if (!PageError(page))
3054 SetPageUptodate(page);
3055 unlock_page(page);
3056 }
Liu Bobaf863b2016-07-11 10:39:07 -07003057 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003058}
3059
Miao Xie99740902013-07-25 19:22:36 +08003060static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3061 struct page *pages[], int nr_pages,
3062 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003063 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003064 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003065 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003066 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003067{
3068 struct inode *inode;
3069 struct btrfs_ordered_extent *ordered;
3070 int index;
3071
3072 inode = pages[0]->mapping->host;
3073 while (1) {
3074 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003075 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003076 end - start + 1);
3077 if (!ordered)
3078 break;
3079 unlock_extent(tree, start, end);
3080 btrfs_start_ordered_extent(inode, ordered, 1);
3081 btrfs_put_ordered_extent(ordered);
3082 }
3083
3084 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003085 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003086 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003087 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003088 }
3089}
3090
3091static void __extent_readpages(struct extent_io_tree *tree,
3092 struct page *pages[],
David Sterbae4d17ef2017-06-23 04:09:57 +02003093 int nr_pages,
Miao Xie125bac012013-07-25 19:22:37 +08003094 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003095 struct bio **bio, unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003096 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003097{
Stefan Behrens35a36212013-08-14 18:12:25 +02003098 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003099 u64 end = 0;
3100 u64 page_start;
3101 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003102 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003103
3104 for (index = 0; index < nr_pages; index++) {
3105 page_start = page_offset(pages[index]);
3106 if (!end) {
3107 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003108 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003109 first_index = index;
3110 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003111 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003112 } else {
3113 __do_contiguous_readpages(tree, &pages[first_index],
3114 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003115 end, em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003116 bio, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003117 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003118 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003119 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003120 first_index = index;
3121 }
3122 }
3123
3124 if (end)
3125 __do_contiguous_readpages(tree, &pages[first_index],
3126 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003127 end, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003128 bio_flags, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003129}
3130
3131static int __extent_read_full_page(struct extent_io_tree *tree,
3132 struct page *page,
3133 get_extent_t *get_extent,
3134 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003135 unsigned long *bio_flags,
3136 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003137{
3138 struct inode *inode = page->mapping->host;
3139 struct btrfs_ordered_extent *ordered;
3140 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003141 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003142 int ret;
3143
3144 while (1) {
3145 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003146 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003147 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003148 if (!ordered)
3149 break;
3150 unlock_extent(tree, start, end);
3151 btrfs_start_ordered_extent(inode, ordered, 1);
3152 btrfs_put_ordered_extent(ordered);
3153 }
3154
Miao Xie125bac012013-07-25 19:22:37 +08003155 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003156 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003157 return ret;
3158}
3159
Chris Masond1310b22008-01-24 16:13:08 -05003160int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003161 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003162{
3163 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003164 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003165 int ret;
3166
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003167 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003168 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003169 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003170 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003171 return ret;
3172}
Chris Masond1310b22008-01-24 16:13:08 -05003173
David Sterba3d4b9492017-02-10 19:33:41 +01003174static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003175 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003176{
3177 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003178}
3179
Chris Masond1310b22008-01-24 16:13:08 -05003180/*
Chris Mason40f76582014-05-21 13:35:51 -07003181 * helper for __extent_writepage, doing all of the delayed allocation setup.
3182 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003183 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003184 * to write the page (copy into inline extent). In this case the IO has
3185 * been started and the page is already unlocked.
3186 *
3187 * This returns 0 if all went well (page still locked)
3188 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003189 */
Chris Mason40f76582014-05-21 13:35:51 -07003190static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003191 struct page *page, struct writeback_control *wbc,
3192 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003193{
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003194 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003195 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003196 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003197 u64 delalloc_to_write = 0;
3198 u64 delalloc_end = 0;
3199 int ret;
3200 int page_started = 0;
3201
Chris Mason40f76582014-05-21 13:35:51 -07003202
3203 while (delalloc_end < page_end) {
Lu Fengqi3522e902018-11-29 11:33:38 +08003204 found = find_lock_delalloc_range(inode, tree,
Chris Mason40f76582014-05-21 13:35:51 -07003205 page,
3206 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003207 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003208 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003209 delalloc_start = delalloc_end + 1;
3210 continue;
3211 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003212 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3213 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003214 /* File system has been set read-only */
3215 if (ret) {
3216 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003217 /*
3218 * btrfs_run_delalloc_range should return < 0 for error
3219 * but just in case, we use > 0 here meaning the IO is
3220 * started, so we don't want to return > 0 unless
3221 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003222 */
3223 ret = ret < 0 ? ret : -EIO;
3224 goto done;
3225 }
3226 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003227 * delalloc_end is already one less than the total length, so
3228 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003229 */
3230 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003231 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003232 delalloc_start = delalloc_end + 1;
3233 }
3234 if (wbc->nr_to_write < delalloc_to_write) {
3235 int thresh = 8192;
3236
3237 if (delalloc_to_write < thresh * 2)
3238 thresh = delalloc_to_write;
3239 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3240 thresh);
3241 }
3242
3243 /* did the fill delalloc function already unlock and start
3244 * the IO?
3245 */
3246 if (page_started) {
3247 /*
3248 * we've unlocked the page, so we can't update
3249 * the mapping's writeback index, just update
3250 * nr_to_write.
3251 */
3252 wbc->nr_to_write -= *nr_written;
3253 return 1;
3254 }
3255
3256 ret = 0;
3257
3258done:
3259 return ret;
3260}
3261
3262/*
3263 * helper for __extent_writepage. This calls the writepage start hooks,
3264 * and does the loop to map the page into extents and bios.
3265 *
3266 * We return 1 if the IO is started and the page is unlocked,
3267 * 0 if all went well (page still locked)
3268 * < 0 if there were errors (page still locked)
3269 */
3270static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3271 struct page *page,
3272 struct writeback_control *wbc,
3273 struct extent_page_data *epd,
3274 loff_t i_size,
3275 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003276 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003277{
Chris Masond1310b22008-01-24 16:13:08 -05003278 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003279 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003280 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003281 u64 end;
3282 u64 cur = start;
3283 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003284 u64 block_start;
3285 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003286 struct extent_map *em;
3287 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003288 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003289 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003290 int ret = 0;
3291 int nr = 0;
3292 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003293
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003294 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3295 if (ret) {
3296 /* Fixup worker will requeue */
3297 if (ret == -EBUSY)
3298 wbc->pages_skipped++;
3299 else
3300 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003301
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003302 update_nr_written(wbc, nr_written);
3303 unlock_page(page);
3304 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003305 }
3306
Chris Mason11c83492009-04-20 15:50:09 -04003307 /*
3308 * we don't want to touch the inode after unlocking the page,
3309 * so we update the mapping writeback index now
3310 */
David Sterba3d4b9492017-02-10 19:33:41 +01003311 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003312
Chris Masond1310b22008-01-24 16:13:08 -05003313 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003314 if (i_size <= start) {
Nikolay Borisovc6297322018-11-08 10:18:08 +02003315 btrfs_writepage_endio_finish_ordered(page, start, page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003316 goto done;
3317 }
3318
Chris Masond1310b22008-01-24 16:13:08 -05003319 blocksize = inode->i_sb->s_blocksize;
3320
3321 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003322 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003323 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003324
Chris Mason40f76582014-05-21 13:35:51 -07003325 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003326 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003327 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003328 break;
3329 }
David Sterba3c98c622017-06-23 04:01:08 +02003330 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003331 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003332 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003333 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003334 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003335 break;
3336 }
3337
3338 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003339 em_end = extent_map_end(em);
3340 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003341 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003342 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003343 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003344 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003345 bdev = em->bdev;
3346 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003347 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003348 free_extent_map(em);
3349 em = NULL;
3350
Chris Masonc8b97812008-10-29 14:49:59 -04003351 /*
3352 * compressed and inline extents are written through other
3353 * paths in the FS
3354 */
3355 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003356 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003357 /*
3358 * end_io notification does not happen here for
3359 * compressed extents
3360 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003361 if (!compressed)
3362 btrfs_writepage_endio_finish_ordered(page, cur,
3363 cur + iosize - 1,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003364 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003365 else if (compressed) {
3366 /* we don't want to end_page_writeback on
3367 * a compressed extent. this happens
3368 * elsewhere
3369 */
3370 nr++;
3371 }
3372
3373 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003374 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003375 continue;
3376 }
Chris Masonc8b97812008-10-29 14:49:59 -04003377
David Sterba5cdc84b2018-07-18 20:32:52 +02003378 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003379 if (!PageWriteback(page)) {
3380 btrfs_err(BTRFS_I(inode)->root->fs_info,
3381 "page %lu not writeback, cur %llu end %llu",
3382 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003383 }
David Sterba58409ed2016-05-04 11:46:10 +02003384
David Sterba4b81ba42017-06-06 19:14:26 +02003385 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003386 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003387 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003388 end_bio_extent_writepage,
3389 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003390 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003391 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003392 if (PageWriteback(page))
3393 end_page_writeback(page);
3394 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003395
Chris Masond1310b22008-01-24 16:13:08 -05003396 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003397 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003398 nr++;
3399 }
3400done:
Chris Mason40f76582014-05-21 13:35:51 -07003401 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003402 return ret;
3403}
3404
3405/*
3406 * the writepage semantics are similar to regular writepage. extent
3407 * records are inserted to lock ranges in the tree, and as dirty areas
3408 * are found, they are marked writeback. Then the lock bits are removed
3409 * and the end_io handler clears the writeback ranges
3410 */
3411static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003412 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003413{
3414 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003415 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003416 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003417 int ret;
3418 int nr = 0;
3419 size_t pg_offset = 0;
3420 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003421 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003422 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003423 unsigned long nr_written = 0;
3424
Liu Boff40adf2017-08-24 18:19:48 -06003425 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003426
3427 trace___extent_writepage(page, inode, wbc);
3428
3429 WARN_ON(!PageLocked(page));
3430
3431 ClearPageError(page);
3432
Johannes Thumshirn70730172018-12-05 15:23:03 +01003433 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003434 if (page->index > end_index ||
3435 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003436 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003437 unlock_page(page);
3438 return 0;
3439 }
3440
3441 if (page->index == end_index) {
3442 char *userpage;
3443
3444 userpage = kmap_atomic(page);
3445 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003446 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003447 kunmap_atomic(userpage);
3448 flush_dcache_page(page);
3449 }
3450
3451 pg_offset = 0;
3452
3453 set_page_extent_mapped(page);
3454
Nikolay Borisov7789a552018-11-08 10:18:06 +02003455 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003456 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003457 if (ret == 1)
3458 goto done_unlocked;
3459 if (ret)
3460 goto done;
3461 }
Chris Mason40f76582014-05-21 13:35:51 -07003462
3463 ret = __extent_writepage_io(inode, page, wbc, epd,
3464 i_size, nr_written, write_flags, &nr);
3465 if (ret == 1)
3466 goto done_unlocked;
3467
3468done:
Chris Masond1310b22008-01-24 16:13:08 -05003469 if (nr == 0) {
3470 /* make sure the mapping tag for page dirty gets cleared */
3471 set_page_writeback(page);
3472 end_page_writeback(page);
3473 }
Filipe Manana61391d52014-05-09 17:17:40 +01003474 if (PageError(page)) {
3475 ret = ret < 0 ? ret : -EIO;
3476 end_extent_writepage(page, ret, start, page_end);
3477 }
Chris Masond1310b22008-01-24 16:13:08 -05003478 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003479 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003480
Chris Mason11c83492009-04-20 15:50:09 -04003481done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003482 return 0;
3483}
3484
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003485void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003486{
NeilBrown74316202014-07-07 15:16:04 +10003487 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3488 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003489}
3490
Chris Mason0e378df2014-05-19 20:55:27 -07003491static noinline_for_stack int
3492lock_extent_buffer_for_io(struct extent_buffer *eb,
3493 struct btrfs_fs_info *fs_info,
3494 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003495{
David Sterbacc5e31a2018-03-01 18:20:27 +01003496 int i, num_pages;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003497 int flush = 0;
3498 int ret = 0;
3499
3500 if (!btrfs_try_tree_write_lock(eb)) {
3501 flush = 1;
3502 flush_write_bio(epd);
3503 btrfs_tree_lock(eb);
3504 }
3505
3506 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3507 btrfs_tree_unlock(eb);
3508 if (!epd->sync_io)
3509 return 0;
3510 if (!flush) {
3511 flush_write_bio(epd);
3512 flush = 1;
3513 }
Chris Masona098d8e82012-03-21 12:09:56 -04003514 while (1) {
3515 wait_on_extent_buffer_writeback(eb);
3516 btrfs_tree_lock(eb);
3517 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3518 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003519 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003520 }
3521 }
3522
Josef Bacik51561ff2012-07-20 16:25:24 -04003523 /*
3524 * We need to do this to prevent races in people who check if the eb is
3525 * under IO since we can end up having no IO bits set for a short period
3526 * of time.
3527 */
3528 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003529 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3530 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003531 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003532 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003533 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3534 -eb->len,
3535 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003536 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003537 } else {
3538 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003539 }
3540
3541 btrfs_tree_unlock(eb);
3542
3543 if (!ret)
3544 return ret;
3545
David Sterba65ad0102018-06-29 10:56:49 +02003546 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003547 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003548 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003549
3550 if (!trylock_page(p)) {
3551 if (!flush) {
3552 flush_write_bio(epd);
3553 flush = 1;
3554 }
3555 lock_page(p);
3556 }
3557 }
3558
3559 return ret;
3560}
3561
3562static void end_extent_buffer_writeback(struct extent_buffer *eb)
3563{
3564 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003565 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003566 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3567}
3568
Filipe Manana656f30d2014-09-26 12:25:56 +01003569static void set_btree_ioerr(struct page *page)
3570{
3571 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003572
3573 SetPageError(page);
3574 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3575 return;
3576
3577 /*
3578 * If writeback for a btree extent that doesn't belong to a log tree
3579 * failed, increment the counter transaction->eb_write_errors.
3580 * We do this because while the transaction is running and before it's
3581 * committing (when we call filemap_fdata[write|wait]_range against
3582 * the btree inode), we might have
3583 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3584 * returns an error or an error happens during writeback, when we're
3585 * committing the transaction we wouldn't know about it, since the pages
3586 * can be no longer dirty nor marked anymore for writeback (if a
3587 * subsequent modification to the extent buffer didn't happen before the
3588 * transaction commit), which makes filemap_fdata[write|wait]_range not
3589 * able to find the pages tagged with SetPageError at transaction
3590 * commit time. So if this happens we must abort the transaction,
3591 * otherwise we commit a super block with btree roots that point to
3592 * btree nodes/leafs whose content on disk is invalid - either garbage
3593 * or the content of some node/leaf from a past generation that got
3594 * cowed or deleted and is no longer valid.
3595 *
3596 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3597 * not be enough - we need to distinguish between log tree extents vs
3598 * non-log tree extents, and the next filemap_fdatawait_range() call
3599 * will catch and clear such errors in the mapping - and that call might
3600 * be from a log sync and not from a transaction commit. Also, checking
3601 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3602 * not done and would not be reliable - the eb might have been released
3603 * from memory and reading it back again means that flag would not be
3604 * set (since it's a runtime flag, not persisted on disk).
3605 *
3606 * Using the flags below in the btree inode also makes us achieve the
3607 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3608 * writeback for all dirty pages and before filemap_fdatawait_range()
3609 * is called, the writeback for all dirty pages had already finished
3610 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3611 * filemap_fdatawait_range() would return success, as it could not know
3612 * that writeback errors happened (the pages were no longer tagged for
3613 * writeback).
3614 */
3615 switch (eb->log_index) {
3616 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003617 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003618 break;
3619 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003620 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003621 break;
3622 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003623 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003624 break;
3625 default:
3626 BUG(); /* unexpected, logic error */
3627 }
3628}
3629
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003630static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003631{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003632 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003633 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003634 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003635
David Sterbac09abff2017-07-13 18:10:07 +02003636 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08003637 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003638 struct page *page = bvec->bv_page;
3639
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003640 eb = (struct extent_buffer *)page->private;
3641 BUG_ON(!eb);
3642 done = atomic_dec_and_test(&eb->io_pages);
3643
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003644 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003645 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003646 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003647 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003648 }
3649
3650 end_page_writeback(page);
3651
3652 if (!done)
3653 continue;
3654
3655 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003656 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003657
3658 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003659}
3660
Chris Mason0e378df2014-05-19 20:55:27 -07003661static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003662 struct btrfs_fs_info *fs_info,
3663 struct writeback_control *wbc,
3664 struct extent_page_data *epd)
3665{
3666 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003667 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003668 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003669 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003670 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003671 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003672 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003673 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003674
Filipe Manana656f30d2014-09-26 12:25:56 +01003675 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003676 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003677 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003678
Liu Bo851cd172016-09-23 13:44:44 -07003679 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3680 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003681 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003682 end = btrfs_node_key_ptr_offset(nritems);
3683
David Sterbab159fa22016-11-08 18:09:03 +01003684 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003685 } else {
3686 /*
3687 * leaf:
3688 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3689 */
3690 start = btrfs_item_nr_offset(nritems);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003691 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003692 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003693 }
3694
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003695 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003696 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003697
3698 clear_page_dirty_for_io(p);
3699 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003700 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003701 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003702 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003703 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003704 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003705 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003706 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003707 if (PageWriteback(p))
3708 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003709 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3710 end_extent_buffer_writeback(eb);
3711 ret = -EIO;
3712 break;
3713 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003714 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003715 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003716 unlock_page(p);
3717 }
3718
3719 if (unlikely(ret)) {
3720 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003721 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003722 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003723 unlock_page(p);
3724 }
3725 }
3726
3727 return ret;
3728}
3729
3730int btree_write_cache_pages(struct address_space *mapping,
3731 struct writeback_control *wbc)
3732{
3733 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3734 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3735 struct extent_buffer *eb, *prev_eb = NULL;
3736 struct extent_page_data epd = {
3737 .bio = NULL,
3738 .tree = tree,
3739 .extent_locked = 0,
3740 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3741 };
3742 int ret = 0;
3743 int done = 0;
3744 int nr_to_write_done = 0;
3745 struct pagevec pvec;
3746 int nr_pages;
3747 pgoff_t index;
3748 pgoff_t end; /* Inclusive */
3749 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003750 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003751
Mel Gorman86679822017-11-15 17:37:52 -08003752 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003753 if (wbc->range_cyclic) {
3754 index = mapping->writeback_index; /* Start from prev offset */
3755 end = -1;
3756 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003757 index = wbc->range_start >> PAGE_SHIFT;
3758 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003759 scanned = 1;
3760 }
3761 if (wbc->sync_mode == WB_SYNC_ALL)
3762 tag = PAGECACHE_TAG_TOWRITE;
3763 else
3764 tag = PAGECACHE_TAG_DIRTY;
3765retry:
3766 if (wbc->sync_mode == WB_SYNC_ALL)
3767 tag_pages_for_writeback(mapping, index, end);
3768 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003769 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003770 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003771 unsigned i;
3772
3773 scanned = 1;
3774 for (i = 0; i < nr_pages; i++) {
3775 struct page *page = pvec.pages[i];
3776
3777 if (!PagePrivate(page))
3778 continue;
3779
Josef Bacikb5bae262012-09-14 13:43:01 -04003780 spin_lock(&mapping->private_lock);
3781 if (!PagePrivate(page)) {
3782 spin_unlock(&mapping->private_lock);
3783 continue;
3784 }
3785
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003786 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003787
3788 /*
3789 * Shouldn't happen and normally this would be a BUG_ON
3790 * but no sense in crashing the users box for something
3791 * we can survive anyway.
3792 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303793 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003794 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003795 continue;
3796 }
3797
Josef Bacikb5bae262012-09-14 13:43:01 -04003798 if (eb == prev_eb) {
3799 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003800 continue;
3801 }
3802
Josef Bacikb5bae262012-09-14 13:43:01 -04003803 ret = atomic_inc_not_zero(&eb->refs);
3804 spin_unlock(&mapping->private_lock);
3805 if (!ret)
3806 continue;
3807
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003808 prev_eb = eb;
3809 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3810 if (!ret) {
3811 free_extent_buffer(eb);
3812 continue;
3813 }
3814
3815 ret = write_one_eb(eb, fs_info, wbc, &epd);
3816 if (ret) {
3817 done = 1;
3818 free_extent_buffer(eb);
3819 break;
3820 }
3821 free_extent_buffer(eb);
3822
3823 /*
3824 * the filesystem may choose to bump up nr_to_write.
3825 * We have to make sure to honor the new nr_to_write
3826 * at any time
3827 */
3828 nr_to_write_done = wbc->nr_to_write <= 0;
3829 }
3830 pagevec_release(&pvec);
3831 cond_resched();
3832 }
3833 if (!scanned && !done) {
3834 /*
3835 * We hit the last page and there is more work to be done: wrap
3836 * back to the start of the file
3837 */
3838 scanned = 1;
3839 index = 0;
3840 goto retry;
3841 }
3842 flush_write_bio(&epd);
3843 return ret;
3844}
3845
Chris Masond1310b22008-01-24 16:13:08 -05003846/**
Chris Mason4bef0842008-09-08 11:18:08 -04003847 * 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 -05003848 * @mapping: address space structure to write
3849 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003850 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003851 *
3852 * If a page is already under I/O, write_cache_pages() skips it, even
3853 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3854 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3855 * and msync() need to guarantee that all the data which was dirty at the time
3856 * the call was made get new I/O started against them. If wbc->sync_mode is
3857 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3858 * existing IO to complete.
3859 */
David Sterba4242b642017-02-10 19:38:24 +01003860static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003861 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003862 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003863{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003864 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003865 int ret = 0;
3866 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003867 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003868 struct pagevec pvec;
3869 int nr_pages;
3870 pgoff_t index;
3871 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003872 pgoff_t done_index;
3873 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003874 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003875 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05003876
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003877 /*
3878 * We have to hold onto the inode so that ordered extents can do their
3879 * work when the IO finishes. The alternative to this is failing to add
3880 * an ordered extent if the igrab() fails there and that is a huge pain
3881 * to deal with, so instead just hold onto the inode throughout the
3882 * writepages operation. If it fails here we are freeing up the inode
3883 * anyway and we'd rather not waste our time writing out stuff that is
3884 * going to be truncated anyway.
3885 */
3886 if (!igrab(inode))
3887 return 0;
3888
Mel Gorman86679822017-11-15 17:37:52 -08003889 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003890 if (wbc->range_cyclic) {
3891 index = mapping->writeback_index; /* Start from prev offset */
3892 end = -1;
3893 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003894 index = wbc->range_start >> PAGE_SHIFT;
3895 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003896 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3897 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003898 scanned = 1;
3899 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08003900
3901 /*
3902 * We do the tagged writepage as long as the snapshot flush bit is set
3903 * and we are the first one who do the filemap_flush() on this inode.
3904 *
3905 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
3906 * not race in and drop the bit.
3907 */
3908 if (range_whole && wbc->nr_to_write == LONG_MAX &&
3909 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
3910 &BTRFS_I(inode)->runtime_flags))
3911 wbc->tagged_writepages = 1;
3912
3913 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00003914 tag = PAGECACHE_TAG_TOWRITE;
3915 else
3916 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003917retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08003918 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00003919 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003920 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003921 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08003922 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
3923 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05003924 unsigned i;
3925
3926 scanned = 1;
3927 for (i = 0; i < nr_pages; i++) {
3928 struct page *page = pvec.pages[i];
3929
Liu Boa91326672016-03-07 16:56:21 -08003930 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003931 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07003932 * At this point we hold neither the i_pages lock nor
3933 * the page lock: the page may be truncated or
3934 * invalidated (changing page->mapping to NULL),
3935 * or even swizzled back from swapper_space to
3936 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05003937 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003938 if (!trylock_page(page)) {
David Sterbaaab6e9e2017-11-30 18:00:02 +01003939 flush_write_bio(epd);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003940 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003941 }
Chris Masond1310b22008-01-24 16:13:08 -05003942
3943 if (unlikely(page->mapping != mapping)) {
3944 unlock_page(page);
3945 continue;
3946 }
3947
Chris Masond2c3f4f2008-11-19 12:44:22 -05003948 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003949 if (PageWriteback(page))
David Sterbaaab6e9e2017-11-30 18:00:02 +01003950 flush_write_bio(epd);
Chris Masond1310b22008-01-24 16:13:08 -05003951 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003952 }
Chris Masond1310b22008-01-24 16:13:08 -05003953
3954 if (PageWriteback(page) ||
3955 !clear_page_dirty_for_io(page)) {
3956 unlock_page(page);
3957 continue;
3958 }
3959
David Sterbaaab6e9e2017-11-30 18:00:02 +01003960 ret = __extent_writepage(page, wbc, epd);
Chris Masond1310b22008-01-24 16:13:08 -05003961
3962 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3963 unlock_page(page);
3964 ret = 0;
3965 }
Liu Boa91326672016-03-07 16:56:21 -08003966 if (ret < 0) {
3967 /*
3968 * done_index is set past this page,
3969 * so media errors will not choke
3970 * background writeout for the entire
3971 * file. This has consequences for
3972 * range_cyclic semantics (ie. it may
3973 * not be suitable for data integrity
3974 * writeout).
3975 */
3976 done_index = page->index + 1;
3977 done = 1;
3978 break;
3979 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003980
3981 /*
3982 * the filesystem may choose to bump up nr_to_write.
3983 * We have to make sure to honor the new nr_to_write
3984 * at any time
3985 */
3986 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003987 }
3988 pagevec_release(&pvec);
3989 cond_resched();
3990 }
Liu Bo894b36e2016-03-07 16:56:22 -08003991 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05003992 /*
3993 * We hit the last page and there is more work to be done: wrap
3994 * back to the start of the file
3995 */
3996 scanned = 1;
3997 index = 0;
3998 goto retry;
3999 }
Liu Boa91326672016-03-07 16:56:21 -08004000
4001 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4002 mapping->writeback_index = done_index;
4003
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004004 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004005 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004006}
Chris Masond1310b22008-01-24 16:13:08 -05004007
David Sterbaaab6e9e2017-11-30 18:00:02 +01004008static void flush_write_bio(struct extent_page_data *epd)
Chris Masonffbd5172009-04-20 15:50:09 -04004009{
4010 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004011 int ret;
4012
Liu Bo18fdc672017-09-13 12:18:22 -06004013 ret = submit_one_bio(epd->bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004014 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004015 epd->bio = NULL;
4016 }
4017}
4018
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004019int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004020{
4021 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004022 struct extent_page_data epd = {
4023 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004024 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004025 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004026 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004027 };
Chris Masond1310b22008-01-24 16:13:08 -05004028
Chris Masond1310b22008-01-24 16:13:08 -05004029 ret = __extent_writepage(page, wbc, &epd);
4030
David Sterbae2932ee2017-06-23 04:16:17 +02004031 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004032 return ret;
4033}
Chris Masond1310b22008-01-24 16:13:08 -05004034
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004035int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004036 int mode)
4037{
4038 int ret = 0;
4039 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004040 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004041 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004042 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4043 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004044
4045 struct extent_page_data epd = {
4046 .bio = NULL,
4047 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004048 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004049 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004050 };
4051 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004052 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004053 .nr_to_write = nr_pages * 2,
4054 .range_start = start,
4055 .range_end = end + 1,
4056 };
4057
Chris Masond3977122009-01-05 21:25:51 -05004058 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004059 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004060 if (clear_page_dirty_for_io(page))
4061 ret = __extent_writepage(page, &wbc_writepages, &epd);
4062 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004063 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004064 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004065 unlock_page(page);
4066 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004067 put_page(page);
4068 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004069 }
4070
David Sterbae2932ee2017-06-23 04:16:17 +02004071 flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004072 return ret;
4073}
Chris Masond1310b22008-01-24 16:13:08 -05004074
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004075int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004076 struct writeback_control *wbc)
4077{
4078 int ret = 0;
4079 struct extent_page_data epd = {
4080 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004081 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004082 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004083 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004084 };
4085
David Sterba935db852017-06-23 04:30:28 +02004086 ret = extent_write_cache_pages(mapping, wbc, &epd);
David Sterbae2932ee2017-06-23 04:16:17 +02004087 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004088 return ret;
4089}
Chris Masond1310b22008-01-24 16:13:08 -05004090
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004091int extent_readpages(struct address_space *mapping, struct list_head *pages,
4092 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004093{
4094 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004095 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004096 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004097 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004098 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004099 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004100 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004101
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004102 while (!list_empty(pages)) {
4103 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -08004104 struct page *page = lru_to_page(pages);
Chris Masond1310b22008-01-24 16:13:08 -05004105
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004106 prefetchw(&page->flags);
4107 list_del(&page->lru);
4108 if (add_to_page_cache_lru(page, mapping, page->index,
4109 readahead_gfp_mask(mapping))) {
4110 put_page(page);
4111 continue;
4112 }
4113
4114 pagepool[nr++] = page;
Chris Masond1310b22008-01-24 16:13:08 -05004115 }
Liu Bo67c96842012-07-20 21:43:09 -06004116
David Sterbae4d17ef2017-06-23 04:09:57 +02004117 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004118 &bio_flags, &prev_em_start);
Chris Masond1310b22008-01-24 16:13:08 -05004119 }
Liu Bo67c96842012-07-20 21:43:09 -06004120
Miao Xie125bac012013-07-25 19:22:37 +08004121 if (em_cached)
4122 free_extent_map(em_cached);
4123
Chris Masond1310b22008-01-24 16:13:08 -05004124 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004125 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004126 return 0;
4127}
Chris Masond1310b22008-01-24 16:13:08 -05004128
4129/*
4130 * basic invalidatepage code, this waits on any locked or writeback
4131 * ranges corresponding to the page, and then deletes any extent state
4132 * records from the tree
4133 */
4134int extent_invalidatepage(struct extent_io_tree *tree,
4135 struct page *page, unsigned long offset)
4136{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004137 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004138 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004139 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004140 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4141
Qu Wenruofda28322013-02-26 08:10:22 +00004142 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004143 if (start > end)
4144 return 0;
4145
David Sterbaff13db42015-12-03 14:30:40 +01004146 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004147 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004148 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004149 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4150 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004151 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004152 return 0;
4153}
Chris Masond1310b22008-01-24 16:13:08 -05004154
4155/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004156 * a helper for releasepage, this tests for areas of the page that
4157 * are locked or under IO and drops the related state bits if it is safe
4158 * to drop the page.
4159 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004160static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004161 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004162{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004163 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004164 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004165 int ret = 1;
4166
Chris Mason211f90e2008-07-18 11:56:15 -04004167 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004168 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004169 ret = 0;
4170 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004171 /*
4172 * at this point we can safely clear everything except the
4173 * locked bit and the nodatasum bit
4174 */
David Sterba66b0c882017-10-31 16:30:47 +01004175 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004176 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004177 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004178
4179 /* if clear_extent_bit failed for enomem reasons,
4180 * we can't allow the release to continue.
4181 */
4182 if (ret < 0)
4183 ret = 0;
4184 else
4185 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004186 }
4187 return ret;
4188}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004189
4190/*
Chris Masond1310b22008-01-24 16:13:08 -05004191 * a helper for releasepage. As long as there are no locked extents
4192 * in the range corresponding to the page, both state records and extent
4193 * map records are removed
4194 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004195int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004196{
4197 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004198 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004199 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004200 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4201 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4202 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004203
Mel Gormand0164ad2015-11-06 16:28:21 -08004204 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004205 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004206 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004207 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004208 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004209 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004210 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004211 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004212 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004213 break;
4214 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004215 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4216 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004217 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004218 free_extent_map(em);
4219 break;
4220 }
4221 if (!test_range_bit(tree, em->start,
4222 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004223 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004224 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004225 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4226 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004227 remove_extent_mapping(map, em);
4228 /* once for the rb tree */
4229 free_extent_map(em);
4230 }
4231 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004232 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004233
4234 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004235 free_extent_map(em);
4236 }
Chris Masond1310b22008-01-24 16:13:08 -05004237 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004238 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004239}
Chris Masond1310b22008-01-24 16:13:08 -05004240
Chris Masonec29ed52011-02-23 16:23:20 -05004241/*
4242 * helper function for fiemap, which doesn't want to see any holes.
4243 * This maps until we find something past 'last'
4244 */
4245static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004246 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004247{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004248 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004249 struct extent_map *em;
4250 u64 len;
4251
4252 if (offset >= last)
4253 return NULL;
4254
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304255 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004256 len = last - offset;
4257 if (len == 0)
4258 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004259 len = ALIGN(len, sectorsize);
Nikolay Borisov4ab47a82018-12-12 09:42:32 +02004260 em = btrfs_get_extent_fiemap(BTRFS_I(inode), offset, len);
David Sterbac7040052011-04-19 18:00:01 +02004261 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004262 return em;
4263
4264 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004265 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004266 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004267
4268 /* this is a hole, advance to the next extent */
4269 offset = extent_map_end(em);
4270 free_extent_map(em);
4271 if (offset >= last)
4272 break;
4273 }
4274 return NULL;
4275}
4276
Qu Wenruo47518322017-04-07 10:43:15 +08004277/*
4278 * To cache previous fiemap extent
4279 *
4280 * Will be used for merging fiemap extent
4281 */
4282struct fiemap_cache {
4283 u64 offset;
4284 u64 phys;
4285 u64 len;
4286 u32 flags;
4287 bool cached;
4288};
4289
4290/*
4291 * Helper to submit fiemap extent.
4292 *
4293 * Will try to merge current fiemap extent specified by @offset, @phys,
4294 * @len and @flags with cached one.
4295 * And only when we fails to merge, cached one will be submitted as
4296 * fiemap extent.
4297 *
4298 * Return value is the same as fiemap_fill_next_extent().
4299 */
4300static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4301 struct fiemap_cache *cache,
4302 u64 offset, u64 phys, u64 len, u32 flags)
4303{
4304 int ret = 0;
4305
4306 if (!cache->cached)
4307 goto assign;
4308
4309 /*
4310 * Sanity check, extent_fiemap() should have ensured that new
Andrea Gelmini52042d82018-11-28 12:05:13 +01004311 * fiemap extent won't overlap with cached one.
Qu Wenruo47518322017-04-07 10:43:15 +08004312 * Not recoverable.
4313 *
4314 * NOTE: Physical address can overlap, due to compression
4315 */
4316 if (cache->offset + cache->len > offset) {
4317 WARN_ON(1);
4318 return -EINVAL;
4319 }
4320
4321 /*
4322 * Only merges fiemap extents if
4323 * 1) Their logical addresses are continuous
4324 *
4325 * 2) Their physical addresses are continuous
4326 * So truly compressed (physical size smaller than logical size)
4327 * extents won't get merged with each other
4328 *
4329 * 3) Share same flags except FIEMAP_EXTENT_LAST
4330 * So regular extent won't get merged with prealloc extent
4331 */
4332 if (cache->offset + cache->len == offset &&
4333 cache->phys + cache->len == phys &&
4334 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4335 (flags & ~FIEMAP_EXTENT_LAST)) {
4336 cache->len += len;
4337 cache->flags |= flags;
4338 goto try_submit_last;
4339 }
4340
4341 /* Not mergeable, need to submit cached one */
4342 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4343 cache->len, cache->flags);
4344 cache->cached = false;
4345 if (ret)
4346 return ret;
4347assign:
4348 cache->cached = true;
4349 cache->offset = offset;
4350 cache->phys = phys;
4351 cache->len = len;
4352 cache->flags = flags;
4353try_submit_last:
4354 if (cache->flags & FIEMAP_EXTENT_LAST) {
4355 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4356 cache->phys, cache->len, cache->flags);
4357 cache->cached = false;
4358 }
4359 return ret;
4360}
4361
4362/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004363 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004364 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004365 * The last fiemap cache may still be cached in the following case:
4366 * 0 4k 8k
4367 * |<- Fiemap range ->|
4368 * |<------------ First extent ----------->|
4369 *
4370 * In this case, the first extent range will be cached but not emitted.
4371 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004372 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004373static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4374 struct fiemap_extent_info *fieinfo,
4375 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004376{
4377 int ret;
4378
4379 if (!cache->cached)
4380 return 0;
4381
Qu Wenruo47518322017-04-07 10:43:15 +08004382 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4383 cache->len, cache->flags);
4384 cache->cached = false;
4385 if (ret > 0)
4386 ret = 0;
4387 return ret;
4388}
4389
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004390int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004391 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004392{
Josef Bacik975f84f2010-11-23 19:36:57 +00004393 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004394 u64 off = start;
4395 u64 max = start + len;
4396 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004397 u32 found_type;
4398 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004399 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004400 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004401 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004402 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004403 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004404 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004405 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004406 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004407 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004408 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004409 u64 em_start = 0;
4410 u64 em_len = 0;
4411 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004412
4413 if (len == 0)
4414 return -EINVAL;
4415
Josef Bacik975f84f2010-11-23 19:36:57 +00004416 path = btrfs_alloc_path();
4417 if (!path)
4418 return -ENOMEM;
4419 path->leave_spinning = 1;
4420
Jeff Mahoneyda170662016-06-15 09:22:56 -04004421 start = round_down(start, btrfs_inode_sectorsize(inode));
4422 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004423
Chris Masonec29ed52011-02-23 16:23:20 -05004424 /*
4425 * lookup the last file extent. We're not using i_size here
4426 * because there might be preallocation past i_size
4427 */
David Sterbaf85b7372017-01-20 14:54:07 +01004428 ret = btrfs_lookup_file_extent(NULL, root, path,
4429 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004430 if (ret < 0) {
4431 btrfs_free_path(path);
4432 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004433 } else {
4434 WARN_ON(!ret);
4435 if (ret == 1)
4436 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004437 }
Liu Bo2d324f52016-05-17 17:21:48 -07004438
Josef Bacik975f84f2010-11-23 19:36:57 +00004439 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004440 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004441 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004442
Chris Masonec29ed52011-02-23 16:23:20 -05004443 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004444 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004445 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004446 /* have to trust i_size as the end */
4447 last = (u64)-1;
4448 last_for_get_extent = isize;
4449 } else {
4450 /*
4451 * remember the start of the last extent. There are a
4452 * bunch of different factors that go into the length of the
4453 * extent, so its much less complex to remember where it started
4454 */
4455 last = found_key.offset;
4456 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004457 }
Liu Bofe09e162013-09-22 12:54:23 +08004458 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004459
Chris Masonec29ed52011-02-23 16:23:20 -05004460 /*
4461 * we might have some extents allocated but more delalloc past those
4462 * extents. so, we trust isize unless the start of the last extent is
4463 * beyond isize
4464 */
4465 if (last < isize) {
4466 last = (u64)-1;
4467 last_for_get_extent = isize;
4468 }
4469
David Sterbaff13db42015-12-03 14:30:40 +01004470 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004471 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004472
David Sterbae3350e12017-06-23 04:09:57 +02004473 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004474 if (!em)
4475 goto out;
4476 if (IS_ERR(em)) {
4477 ret = PTR_ERR(em);
4478 goto out;
4479 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004480
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004481 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004482 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004483
Chris Masonea8efc72011-03-08 11:54:40 -05004484 /* break if the extent we found is outside the range */
4485 if (em->start >= max || extent_map_end(em) < off)
4486 break;
4487
4488 /*
4489 * get_extent may return an extent that starts before our
4490 * requested range. We have to make sure the ranges
4491 * we return to fiemap always move forward and don't
4492 * overlap, so adjust the offsets here
4493 */
4494 em_start = max(em->start, off);
4495
4496 /*
4497 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004498 * for adjusting the disk offset below. Only do this if the
4499 * extent isn't compressed since our in ram offset may be past
4500 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004501 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004502 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4503 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004504 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004505 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004506 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004507 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4508 disko = em->block_start + offset_in_extent;
4509 else
4510 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004511
Chris Masonea8efc72011-03-08 11:54:40 -05004512 /*
4513 * bump off for our next call to get_extent
4514 */
4515 off = extent_map_end(em);
4516 if (off >= max)
4517 end = 1;
4518
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004519 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004520 end = 1;
4521 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004522 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004523 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4524 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004525 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004526 flags |= (FIEMAP_EXTENT_DELALLOC |
4527 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004528 } else if (fieinfo->fi_extents_max) {
4529 u64 bytenr = em->block_start -
4530 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004531
Liu Bofe09e162013-09-22 12:54:23 +08004532 /*
4533 * As btrfs supports shared space, this information
4534 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004535 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4536 * then we're just getting a count and we can skip the
4537 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004538 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004539 ret = btrfs_check_shared(root,
4540 btrfs_ino(BTRFS_I(inode)),
4541 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004542 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004543 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004544 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004545 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004546 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004547 }
4548 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4549 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004550 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4551 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004552
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004553 free_extent_map(em);
4554 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004555 if ((em_start >= last) || em_len == (u64)-1 ||
4556 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004557 flags |= FIEMAP_EXTENT_LAST;
4558 end = 1;
4559 }
4560
Chris Masonec29ed52011-02-23 16:23:20 -05004561 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004562 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004563 if (IS_ERR(em)) {
4564 ret = PTR_ERR(em);
4565 goto out;
4566 }
4567 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004568 flags |= FIEMAP_EXTENT_LAST;
4569 end = 1;
4570 }
Qu Wenruo47518322017-04-07 10:43:15 +08004571 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4572 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004573 if (ret) {
4574 if (ret == 1)
4575 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004576 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004577 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004578 }
4579out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004580 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004581 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004582 free_extent_map(em);
4583out:
Liu Bofe09e162013-09-22 12:54:23 +08004584 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004585 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004586 &cached_state);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004587 return ret;
4588}
4589
Chris Mason727011e2010-08-06 13:21:20 -04004590static void __free_extent_buffer(struct extent_buffer *eb)
4591{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004592 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004593 kmem_cache_free(extent_buffer_cache, eb);
4594}
4595
Josef Bacika26e8c92014-03-28 17:07:27 -04004596int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004597{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004598 return (atomic_read(&eb->io_pages) ||
4599 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4600 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004601}
4602
Miao Xie897ca6e92010-10-26 20:57:29 -04004603/*
David Sterba55ac0132018-07-19 17:24:32 +02004604 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004605 */
David Sterba55ac0132018-07-19 17:24:32 +02004606static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004607{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004608 int i;
4609 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004610 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004611
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004612 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004613
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004614 num_pages = num_extent_pages(eb);
4615 for (i = 0; i < num_pages; i++) {
4616 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004617
Forrest Liu5d2361d2015-02-09 17:31:45 +08004618 if (!page)
4619 continue;
4620 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004621 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004622 /*
4623 * We do this since we'll remove the pages after we've
4624 * removed the eb from the radix tree, so we could race
4625 * and have this page now attached to the new eb. So
4626 * only clear page_private if it's still connected to
4627 * this eb.
4628 */
4629 if (PagePrivate(page) &&
4630 page->private == (unsigned long)eb) {
4631 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4632 BUG_ON(PageDirty(page));
4633 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004634 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004635 * We need to make sure we haven't be attached
4636 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004637 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004638 ClearPagePrivate(page);
4639 set_page_private(page, 0);
4640 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004641 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004642 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004643
4644 if (mapped)
4645 spin_unlock(&page->mapping->private_lock);
4646
Nicholas D Steeves01327612016-05-19 21:18:45 -04004647 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004648 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004649 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004650}
4651
4652/*
4653 * Helper for releasing the extent buffer.
4654 */
4655static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4656{
David Sterba55ac0132018-07-19 17:24:32 +02004657 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004658 __free_extent_buffer(eb);
4659}
4660
Josef Bacikf28491e2013-12-16 13:24:27 -05004661static struct extent_buffer *
4662__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004663 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004664{
4665 struct extent_buffer *eb = NULL;
4666
Michal Hockod1b5c562015-08-19 14:17:40 +02004667 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004668 eb->start = start;
4669 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004670 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004671 eb->bflags = 0;
4672 rwlock_init(&eb->lock);
4673 atomic_set(&eb->write_locks, 0);
4674 atomic_set(&eb->read_locks, 0);
4675 atomic_set(&eb->blocking_readers, 0);
4676 atomic_set(&eb->blocking_writers, 0);
4677 atomic_set(&eb->spinning_readers, 0);
4678 atomic_set(&eb->spinning_writers, 0);
4679 eb->lock_nested = 0;
4680 init_waitqueue_head(&eb->write_lock_wq);
4681 init_waitqueue_head(&eb->read_lock_wq);
4682
4683 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4684
4685 spin_lock_init(&eb->refs_lock);
4686 atomic_set(&eb->refs, 1);
4687 atomic_set(&eb->io_pages, 0);
4688
4689 /*
4690 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4691 */
4692 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4693 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4694 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4695
4696 return eb;
4697}
4698
4699struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4700{
David Sterbacc5e31a2018-03-01 18:20:27 +01004701 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004702 struct page *p;
4703 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004704 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004705
David Sterba3f556f72014-06-15 03:20:26 +02004706 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004707 if (new == NULL)
4708 return NULL;
4709
4710 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004711 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004712 if (!p) {
4713 btrfs_release_extent_buffer(new);
4714 return NULL;
4715 }
4716 attach_extent_buffer_page(new, p);
4717 WARN_ON(PageDirty(p));
4718 SetPageUptodate(p);
4719 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004720 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004721 }
4722
Josef Bacikdb7f3432013-08-07 14:54:37 -04004723 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004724 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004725
4726 return new;
4727}
4728
Omar Sandoval0f331222015-09-29 20:50:31 -07004729struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4730 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004731{
4732 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004733 int num_pages;
4734 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004735
David Sterba3f556f72014-06-15 03:20:26 +02004736 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004737 if (!eb)
4738 return NULL;
4739
David Sterba65ad0102018-06-29 10:56:49 +02004740 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004741 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004742 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004743 if (!eb->pages[i])
4744 goto err;
4745 }
4746 set_extent_buffer_uptodate(eb);
4747 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004748 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004749
4750 return eb;
4751err:
4752 for (; i > 0; i--)
4753 __free_page(eb->pages[i - 1]);
4754 __free_extent_buffer(eb);
4755 return NULL;
4756}
4757
Omar Sandoval0f331222015-09-29 20:50:31 -07004758struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004759 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004760{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004761 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004762}
4763
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004764static void check_buffer_tree_ref(struct extent_buffer *eb)
4765{
Chris Mason242e18c2013-01-29 17:49:37 -05004766 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004767 /* the ref bit is tricky. We have to make sure it is set
4768 * if we have the buffer dirty. Otherwise the
4769 * code to free a buffer can end up dropping a dirty
4770 * page
4771 *
4772 * Once the ref bit is set, it won't go away while the
4773 * buffer is dirty or in writeback, and it also won't
4774 * go away while we have the reference count on the
4775 * eb bumped.
4776 *
4777 * We can't just set the ref bit without bumping the
4778 * ref on the eb because free_extent_buffer might
4779 * see the ref bit and try to clear it. If this happens
4780 * free_extent_buffer might end up dropping our original
4781 * ref by mistake and freeing the page before we are able
4782 * to add one more ref.
4783 *
4784 * So bump the ref count first, then set the bit. If someone
4785 * beat us to it, drop the ref we added.
4786 */
Chris Mason242e18c2013-01-29 17:49:37 -05004787 refs = atomic_read(&eb->refs);
4788 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4789 return;
4790
Josef Bacik594831c2012-07-20 16:11:08 -04004791 spin_lock(&eb->refs_lock);
4792 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004793 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004794 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004795}
4796
Mel Gorman2457aec2014-06-04 16:10:31 -07004797static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4798 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004799{
David Sterbacc5e31a2018-03-01 18:20:27 +01004800 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004801
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004802 check_buffer_tree_ref(eb);
4803
David Sterba65ad0102018-06-29 10:56:49 +02004804 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004805 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004806 struct page *p = eb->pages[i];
4807
Mel Gorman2457aec2014-06-04 16:10:31 -07004808 if (p != accessed)
4809 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004810 }
4811}
4812
Josef Bacikf28491e2013-12-16 13:24:27 -05004813struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4814 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004815{
4816 struct extent_buffer *eb;
4817
4818 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004819 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004820 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004821 if (eb && atomic_inc_not_zero(&eb->refs)) {
4822 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004823 /*
4824 * Lock our eb's refs_lock to avoid races with
4825 * free_extent_buffer. When we get our eb it might be flagged
4826 * with EXTENT_BUFFER_STALE and another task running
4827 * free_extent_buffer might have seen that flag set,
4828 * eb->refs == 2, that the buffer isn't under IO (dirty and
4829 * writeback flags not set) and it's still in the tree (flag
4830 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4831 * of decrementing the extent buffer's reference count twice.
4832 * So here we could race and increment the eb's reference count,
4833 * clear its stale flag, mark it as dirty and drop our reference
4834 * before the other task finishes executing free_extent_buffer,
4835 * which would later result in an attempt to free an extent
4836 * buffer that is dirty.
4837 */
4838 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4839 spin_lock(&eb->refs_lock);
4840 spin_unlock(&eb->refs_lock);
4841 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004842 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004843 return eb;
4844 }
4845 rcu_read_unlock();
4846
4847 return NULL;
4848}
4849
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004850#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4851struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004852 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004853{
4854 struct extent_buffer *eb, *exists = NULL;
4855 int ret;
4856
4857 eb = find_extent_buffer(fs_info, start);
4858 if (eb)
4859 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004860 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004861 if (!eb)
4862 return NULL;
4863 eb->fs_info = fs_info;
4864again:
David Sterbae1860a72016-05-09 14:11:38 +02004865 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004866 if (ret)
4867 goto free_eb;
4868 spin_lock(&fs_info->buffer_lock);
4869 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004870 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004871 spin_unlock(&fs_info->buffer_lock);
4872 radix_tree_preload_end();
4873 if (ret == -EEXIST) {
4874 exists = find_extent_buffer(fs_info, start);
4875 if (exists)
4876 goto free_eb;
4877 else
4878 goto again;
4879 }
4880 check_buffer_tree_ref(eb);
4881 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4882
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004883 return eb;
4884free_eb:
4885 btrfs_release_extent_buffer(eb);
4886 return exists;
4887}
4888#endif
4889
Josef Bacikf28491e2013-12-16 13:24:27 -05004890struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004891 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004892{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004893 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01004894 int num_pages;
4895 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004896 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004897 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004898 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004899 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004900 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004901 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004902 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004903
Jeff Mahoneyda170662016-06-15 09:22:56 -04004904 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004905 btrfs_err(fs_info, "bad tree block start %llu", start);
4906 return ERR_PTR(-EINVAL);
4907 }
4908
Josef Bacikf28491e2013-12-16 13:24:27 -05004909 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004910 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004911 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004912
David Sterba23d79d82014-06-15 02:55:29 +02004913 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004914 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004915 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004916
David Sterba65ad0102018-06-29 10:56:49 +02004917 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04004918 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004919 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004920 if (!p) {
4921 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004922 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004923 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004924
4925 spin_lock(&mapping->private_lock);
4926 if (PagePrivate(p)) {
4927 /*
4928 * We could have already allocated an eb for this page
4929 * and attached one so lets see if we can get a ref on
4930 * the existing eb, and if we can we know it's good and
4931 * we can just return that one, else we know we can just
4932 * overwrite page->private.
4933 */
4934 exists = (struct extent_buffer *)p->private;
4935 if (atomic_inc_not_zero(&exists->refs)) {
4936 spin_unlock(&mapping->private_lock);
4937 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004938 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004939 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004940 goto free_eb;
4941 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004942 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004943
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004944 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004945 * Do this so attach doesn't complain and we need to
4946 * drop the ref the old guy had.
4947 */
4948 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004949 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004950 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05004951 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004952 attach_extent_buffer_page(eb, p);
4953 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004954 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004955 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004956 if (!PageUptodate(p))
4957 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004958
4959 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03004960 * We can't unlock the pages just yet since the extent buffer
4961 * hasn't been properly inserted in the radix tree, this
4962 * opens a race with btree_releasepage which can free a page
4963 * while we are still filling in all pages for the buffer and
4964 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05004965 */
Chris Masond1310b22008-01-24 16:13:08 -05004966 }
4967 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004968 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004969again:
David Sterbae1860a72016-05-09 14:11:38 +02004970 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07004971 if (ret) {
4972 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04004973 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004974 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004975
Josef Bacikf28491e2013-12-16 13:24:27 -05004976 spin_lock(&fs_info->buffer_lock);
4977 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004978 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05004979 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004980 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004981 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004982 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004983 if (exists)
4984 goto free_eb;
4985 else
Josef Bacik115391d2012-03-09 09:51:43 -05004986 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004987 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004988 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004989 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004990 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004991
4992 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03004993 * Now it's safe to unlock the pages because any calls to
4994 * btree_releasepage will correctly detect that a page belongs to a
4995 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05004996 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03004997 for (i = 0; i < num_pages; i++)
4998 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05004999 return eb;
5000
Chris Mason6af118ce2008-07-22 11:18:07 -04005001free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005002 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005003 for (i = 0; i < num_pages; i++) {
5004 if (eb->pages[i])
5005 unlock_page(eb->pages[i]);
5006 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005007
Miao Xie897ca6e92010-10-26 20:57:29 -04005008 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005009 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005010}
Chris Masond1310b22008-01-24 16:13:08 -05005011
Josef Bacik3083ee22012-03-09 16:01:49 -05005012static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5013{
5014 struct extent_buffer *eb =
5015 container_of(head, struct extent_buffer, rcu_head);
5016
5017 __free_extent_buffer(eb);
5018}
5019
David Sterbaf7a52a42013-04-26 14:56:29 +00005020static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005021{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005022 lockdep_assert_held(&eb->refs_lock);
5023
Josef Bacik3083ee22012-03-09 16:01:49 -05005024 WARN_ON(atomic_read(&eb->refs) == 0);
5025 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005026 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005027 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005028
Jan Schmidt815a51c2012-05-16 17:00:02 +02005029 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005030
Josef Bacikf28491e2013-12-16 13:24:27 -05005031 spin_lock(&fs_info->buffer_lock);
5032 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005033 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005034 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005035 } else {
5036 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005037 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005038
5039 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005040 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005041#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005042 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005043 __free_extent_buffer(eb);
5044 return 1;
5045 }
5046#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005047 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005048 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005049 }
5050 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005051
5052 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005053}
5054
Chris Masond1310b22008-01-24 16:13:08 -05005055void free_extent_buffer(struct extent_buffer *eb)
5056{
Chris Mason242e18c2013-01-29 17:49:37 -05005057 int refs;
5058 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005059 if (!eb)
5060 return;
5061
Chris Mason242e18c2013-01-29 17:49:37 -05005062 while (1) {
5063 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005064 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5065 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5066 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005067 break;
5068 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5069 if (old == refs)
5070 return;
5071 }
5072
Josef Bacik3083ee22012-03-09 16:01:49 -05005073 spin_lock(&eb->refs_lock);
5074 if (atomic_read(&eb->refs) == 2 &&
5075 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005076 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005077 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5078 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005079
Josef Bacik3083ee22012-03-09 16:01:49 -05005080 /*
5081 * I know this is terrible, but it's temporary until we stop tracking
5082 * the uptodate bits and such for the extent buffers.
5083 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005084 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005085}
Chris Masond1310b22008-01-24 16:13:08 -05005086
Josef Bacik3083ee22012-03-09 16:01:49 -05005087void free_extent_buffer_stale(struct extent_buffer *eb)
5088{
5089 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005090 return;
5091
Josef Bacik3083ee22012-03-09 16:01:49 -05005092 spin_lock(&eb->refs_lock);
5093 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5094
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005095 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005096 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5097 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005098 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005099}
5100
Chris Mason1d4284b2012-03-28 20:31:37 -04005101void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005102{
David Sterbacc5e31a2018-03-01 18:20:27 +01005103 int i;
5104 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005105 struct page *page;
5106
David Sterba65ad0102018-06-29 10:56:49 +02005107 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005108
5109 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005110 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005111 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005112 continue;
5113
Chris Masona61e6f22008-07-22 11:18:08 -04005114 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005115 WARN_ON(!PagePrivate(page));
5116
Chris Masond1310b22008-01-24 16:13:08 -05005117 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005118 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005119 if (!PageDirty(page))
5120 __xa_clear_mark(&page->mapping->i_pages,
5121 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005122 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005123 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005124 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005125 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005126 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005127}
Chris Masond1310b22008-01-24 16:13:08 -05005128
Liu Boabb57ef2018-09-14 01:44:42 +08005129bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005130{
David Sterbacc5e31a2018-03-01 18:20:27 +01005131 int i;
5132 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005133 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005134
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005135 check_buffer_tree_ref(eb);
5136
Chris Masonb9473432009-03-13 11:00:37 -04005137 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005138
David Sterba65ad0102018-06-29 10:56:49 +02005139 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005140 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005141 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5142
Liu Boabb57ef2018-09-14 01:44:42 +08005143 if (!was_dirty)
5144 for (i = 0; i < num_pages; i++)
5145 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005146
5147#ifdef CONFIG_BTRFS_DEBUG
5148 for (i = 0; i < num_pages; i++)
5149 ASSERT(PageDirty(eb->pages[i]));
5150#endif
5151
Chris Masonb9473432009-03-13 11:00:37 -04005152 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005153}
Chris Masond1310b22008-01-24 16:13:08 -05005154
David Sterba69ba3922015-12-03 13:08:59 +01005155void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005156{
David Sterbacc5e31a2018-03-01 18:20:27 +01005157 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005158 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005159 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005160
Chris Masonb4ce94d2009-02-04 09:25:08 -05005161 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005162 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005163 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005164 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005165 if (page)
5166 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005167 }
Chris Mason1259ab72008-05-12 13:39:03 -04005168}
5169
David Sterba09c25a82015-12-03 13:08:59 +01005170void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005171{
David Sterbacc5e31a2018-03-01 18:20:27 +01005172 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005173 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005174 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005175
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005176 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005177 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005178 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005179 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005180 SetPageUptodate(page);
5181 }
Chris Masond1310b22008-01-24 16:13:08 -05005182}
Chris Masond1310b22008-01-24 16:13:08 -05005183
Chris Masond1310b22008-01-24 16:13:08 -05005184int read_extent_buffer_pages(struct extent_io_tree *tree,
David Sterba6af49db2017-06-23 04:09:57 +02005185 struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005186{
David Sterbacc5e31a2018-03-01 18:20:27 +01005187 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005188 struct page *page;
5189 int err;
5190 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005191 int locked_pages = 0;
5192 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005193 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005194 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005195 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005196 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005197
Chris Masonb4ce94d2009-02-04 09:25:08 -05005198 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005199 return 0;
5200
David Sterba65ad0102018-06-29 10:56:49 +02005201 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005202 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005203 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005204 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005205 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005206 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005207 } else {
5208 lock_page(page);
5209 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005210 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005211 }
5212 /*
5213 * We need to firstly lock all pages to make sure that
5214 * the uptodate bit of our pages won't be affected by
5215 * clear_extent_buffer_uptodate().
5216 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005217 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005218 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005219 if (!PageUptodate(page)) {
5220 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005221 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005222 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005223 }
Liu Bo2571e732016-08-03 12:33:01 -07005224
Chris Masonce9adaa2008-04-09 16:28:12 -04005225 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005226 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005227 goto unlock_exit;
5228 }
5229
Filipe Manana656f30d2014-09-26 12:25:56 +01005230 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005231 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005232 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005233 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005234 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005235
Chris Masonce9adaa2008-04-09 16:28:12 -04005236 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005237 if (ret) {
5238 atomic_dec(&eb->io_pages);
5239 unlock_page(page);
5240 continue;
5241 }
5242
Chris Masonf1885912008-04-09 16:28:12 -04005243 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005244 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005245 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005246 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005247 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005248 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005249 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005250 /*
5251 * We use &bio in above __extent_read_full_page,
5252 * so we ensure that if it returns error, the
5253 * current page fails to add itself to bio and
5254 * it's been unlocked.
5255 *
5256 * We must dec io_pages by ourselves.
5257 */
5258 atomic_dec(&eb->io_pages);
5259 }
Chris Masond1310b22008-01-24 16:13:08 -05005260 } else {
5261 unlock_page(page);
5262 }
5263 }
5264
Jeff Mahoney355808c2011-10-03 23:23:14 -04005265 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005266 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005267 if (err)
5268 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005269 }
Chris Masona86c12c2008-02-07 10:50:54 -05005270
Arne Jansenbb82ab82011-06-10 14:06:53 +02005271 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005272 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005273
Josef Bacik8436ea912016-09-02 15:40:03 -04005274 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005275 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005276 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005277 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005278 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005279 }
Chris Masond3977122009-01-05 21:25:51 -05005280
Chris Masond1310b22008-01-24 16:13:08 -05005281 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005282
5283unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005284 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005285 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005286 page = eb->pages[locked_pages];
5287 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005288 }
5289 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005290}
Chris Masond1310b22008-01-24 16:13:08 -05005291
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005292void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5293 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005294{
5295 size_t cur;
5296 size_t offset;
5297 struct page *page;
5298 char *kaddr;
5299 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005300 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005301 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005302
Liu Bof716abd2017-08-09 11:10:16 -06005303 if (start + len > eb->len) {
5304 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5305 eb->start, eb->len, start, len);
5306 memset(dst, 0, len);
5307 return;
5308 }
Chris Masond1310b22008-01-24 16:13:08 -05005309
Johannes Thumshirn70730172018-12-05 15:23:03 +01005310 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005311
Chris Masond3977122009-01-05 21:25:51 -05005312 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005313 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005314
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005315 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005316 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005317 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005318
5319 dst += cur;
5320 len -= cur;
5321 offset = 0;
5322 i++;
5323 }
5324}
Chris Masond1310b22008-01-24 16:13:08 -05005325
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005326int read_extent_buffer_to_user(const struct extent_buffer *eb,
5327 void __user *dstv,
5328 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005329{
5330 size_t cur;
5331 size_t offset;
5332 struct page *page;
5333 char *kaddr;
5334 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005335 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005336 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005337 int ret = 0;
5338
5339 WARN_ON(start > eb->len);
5340 WARN_ON(start + len > eb->start + eb->len);
5341
Johannes Thumshirn70730172018-12-05 15:23:03 +01005342 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005343
5344 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005345 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005346
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005347 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005348 kaddr = page_address(page);
5349 if (copy_to_user(dst, kaddr + offset, cur)) {
5350 ret = -EFAULT;
5351 break;
5352 }
5353
5354 dst += cur;
5355 len -= cur;
5356 offset = 0;
5357 i++;
5358 }
5359
5360 return ret;
5361}
5362
Liu Bo415b35a2016-06-17 19:16:21 -07005363/*
5364 * return 0 if the item is found within a page.
5365 * return 1 if the item spans two pages.
5366 * return -EINVAL otherwise.
5367 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005368int map_private_extent_buffer(const struct extent_buffer *eb,
5369 unsigned long start, unsigned long min_len,
5370 char **map, unsigned long *map_start,
5371 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005372{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005373 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005374 char *kaddr;
5375 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005376 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005377 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005378 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005379 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005380
Liu Bof716abd2017-08-09 11:10:16 -06005381 if (start + min_len > eb->len) {
5382 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5383 eb->start, eb->len, start, min_len);
5384 return -EINVAL;
5385 }
5386
Chris Masond1310b22008-01-24 16:13:08 -05005387 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005388 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005389
5390 if (i == 0) {
5391 offset = start_offset;
5392 *map_start = 0;
5393 } else {
5394 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005395 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005396 }
Chris Masond3977122009-01-05 21:25:51 -05005397
David Sterbafb85fc92014-07-31 01:03:53 +02005398 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005399 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005400 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005401 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005402 return 0;
5403}
Chris Masond1310b22008-01-24 16:13:08 -05005404
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005405int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5406 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005407{
5408 size_t cur;
5409 size_t offset;
5410 struct page *page;
5411 char *kaddr;
5412 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005413 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005414 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005415 int ret = 0;
5416
5417 WARN_ON(start > eb->len);
5418 WARN_ON(start + len > eb->start + eb->len);
5419
Johannes Thumshirn70730172018-12-05 15:23:03 +01005420 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005421
Chris Masond3977122009-01-05 21:25:51 -05005422 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005423 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005424
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005425 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005426
Chris Masona6591712011-07-19 12:04:14 -04005427 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005428 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005429 if (ret)
5430 break;
5431
5432 ptr += cur;
5433 len -= cur;
5434 offset = 0;
5435 i++;
5436 }
5437 return ret;
5438}
Chris Masond1310b22008-01-24 16:13:08 -05005439
David Sterbaf157bf72016-11-09 17:43:38 +01005440void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5441 const void *srcv)
5442{
5443 char *kaddr;
5444
5445 WARN_ON(!PageUptodate(eb->pages[0]));
5446 kaddr = page_address(eb->pages[0]);
5447 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5448 BTRFS_FSID_SIZE);
5449}
5450
5451void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5452{
5453 char *kaddr;
5454
5455 WARN_ON(!PageUptodate(eb->pages[0]));
5456 kaddr = page_address(eb->pages[0]);
5457 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5458 BTRFS_FSID_SIZE);
5459}
5460
Chris Masond1310b22008-01-24 16:13:08 -05005461void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5462 unsigned long start, unsigned long len)
5463{
5464 size_t cur;
5465 size_t offset;
5466 struct page *page;
5467 char *kaddr;
5468 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005469 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005470 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005471
5472 WARN_ON(start > eb->len);
5473 WARN_ON(start + len > eb->start + eb->len);
5474
Johannes Thumshirn70730172018-12-05 15:23:03 +01005475 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005476
Chris Masond3977122009-01-05 21:25:51 -05005477 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005478 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005479 WARN_ON(!PageUptodate(page));
5480
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005481 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005482 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005483 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005484
5485 src += cur;
5486 len -= cur;
5487 offset = 0;
5488 i++;
5489 }
5490}
Chris Masond1310b22008-01-24 16:13:08 -05005491
David Sterbab159fa22016-11-08 18:09:03 +01005492void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5493 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005494{
5495 size_t cur;
5496 size_t offset;
5497 struct page *page;
5498 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005499 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005500 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005501
5502 WARN_ON(start > eb->len);
5503 WARN_ON(start + len > eb->start + eb->len);
5504
Johannes Thumshirn70730172018-12-05 15:23:03 +01005505 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005506
Chris Masond3977122009-01-05 21:25:51 -05005507 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005508 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005509 WARN_ON(!PageUptodate(page));
5510
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005511 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005512 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005513 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005514
5515 len -= cur;
5516 offset = 0;
5517 i++;
5518 }
5519}
Chris Masond1310b22008-01-24 16:13:08 -05005520
David Sterba58e80122016-11-08 18:30:31 +01005521void copy_extent_buffer_full(struct extent_buffer *dst,
5522 struct extent_buffer *src)
5523{
5524 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005525 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005526
5527 ASSERT(dst->len == src->len);
5528
David Sterba65ad0102018-06-29 10:56:49 +02005529 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005530 for (i = 0; i < num_pages; i++)
5531 copy_page(page_address(dst->pages[i]),
5532 page_address(src->pages[i]));
5533}
5534
Chris Masond1310b22008-01-24 16:13:08 -05005535void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5536 unsigned long dst_offset, unsigned long src_offset,
5537 unsigned long len)
5538{
5539 u64 dst_len = dst->len;
5540 size_t cur;
5541 size_t offset;
5542 struct page *page;
5543 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005544 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005545 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005546
5547 WARN_ON(src->len != dst_len);
5548
Johannes Thumshirn70730172018-12-05 15:23:03 +01005549 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005550
Chris Masond3977122009-01-05 21:25:51 -05005551 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005552 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005553 WARN_ON(!PageUptodate(page));
5554
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005555 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005556
Chris Masona6591712011-07-19 12:04:14 -04005557 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005558 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005559
5560 src_offset += cur;
5561 len -= cur;
5562 offset = 0;
5563 i++;
5564 }
5565}
Chris Masond1310b22008-01-24 16:13:08 -05005566
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005567/*
5568 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5569 * given bit number
5570 * @eb: the extent buffer
5571 * @start: offset of the bitmap item in the extent buffer
5572 * @nr: bit number
5573 * @page_index: return index of the page in the extent buffer that contains the
5574 * given bit number
5575 * @page_offset: return offset into the page given by page_index
5576 *
5577 * This helper hides the ugliness of finding the byte in an extent buffer which
5578 * contains a given bit.
5579 */
5580static inline void eb_bitmap_offset(struct extent_buffer *eb,
5581 unsigned long start, unsigned long nr,
5582 unsigned long *page_index,
5583 size_t *page_offset)
5584{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005585 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005586 size_t byte_offset = BIT_BYTE(nr);
5587 size_t offset;
5588
5589 /*
5590 * The byte we want is the offset of the extent buffer + the offset of
5591 * the bitmap item in the extent buffer + the offset of the byte in the
5592 * bitmap item.
5593 */
5594 offset = start_offset + start + byte_offset;
5595
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005596 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005597 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005598}
5599
5600/**
5601 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5602 * @eb: the extent buffer
5603 * @start: offset of the bitmap item in the extent buffer
5604 * @nr: bit number to test
5605 */
5606int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5607 unsigned long nr)
5608{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005609 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005610 struct page *page;
5611 unsigned long i;
5612 size_t offset;
5613
5614 eb_bitmap_offset(eb, start, nr, &i, &offset);
5615 page = eb->pages[i];
5616 WARN_ON(!PageUptodate(page));
5617 kaddr = page_address(page);
5618 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5619}
5620
5621/**
5622 * extent_buffer_bitmap_set - set an area of a bitmap
5623 * @eb: the extent buffer
5624 * @start: offset of the bitmap item in the extent buffer
5625 * @pos: bit number of the first bit
5626 * @len: number of bits to set
5627 */
5628void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5629 unsigned long pos, unsigned long len)
5630{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005631 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005632 struct page *page;
5633 unsigned long i;
5634 size_t offset;
5635 const unsigned int size = pos + len;
5636 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005637 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005638
5639 eb_bitmap_offset(eb, start, pos, &i, &offset);
5640 page = eb->pages[i];
5641 WARN_ON(!PageUptodate(page));
5642 kaddr = page_address(page);
5643
5644 while (len >= bits_to_set) {
5645 kaddr[offset] |= mask_to_set;
5646 len -= bits_to_set;
5647 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005648 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005649 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005650 offset = 0;
5651 page = eb->pages[++i];
5652 WARN_ON(!PageUptodate(page));
5653 kaddr = page_address(page);
5654 }
5655 }
5656 if (len) {
5657 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5658 kaddr[offset] |= mask_to_set;
5659 }
5660}
5661
5662
5663/**
5664 * extent_buffer_bitmap_clear - clear an area of a bitmap
5665 * @eb: the extent buffer
5666 * @start: offset of the bitmap item in the extent buffer
5667 * @pos: bit number of the first bit
5668 * @len: number of bits to clear
5669 */
5670void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5671 unsigned long pos, unsigned long len)
5672{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005673 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005674 struct page *page;
5675 unsigned long i;
5676 size_t offset;
5677 const unsigned int size = pos + len;
5678 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005679 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005680
5681 eb_bitmap_offset(eb, start, pos, &i, &offset);
5682 page = eb->pages[i];
5683 WARN_ON(!PageUptodate(page));
5684 kaddr = page_address(page);
5685
5686 while (len >= bits_to_clear) {
5687 kaddr[offset] &= ~mask_to_clear;
5688 len -= bits_to_clear;
5689 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005690 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005691 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005692 offset = 0;
5693 page = eb->pages[++i];
5694 WARN_ON(!PageUptodate(page));
5695 kaddr = page_address(page);
5696 }
5697 }
5698 if (len) {
5699 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5700 kaddr[offset] &= ~mask_to_clear;
5701 }
5702}
5703
Sergei Trofimovich33872062011-04-11 21:52:52 +00005704static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5705{
5706 unsigned long distance = (src > dst) ? src - dst : dst - src;
5707 return distance < len;
5708}
5709
Chris Masond1310b22008-01-24 16:13:08 -05005710static void copy_pages(struct page *dst_page, struct page *src_page,
5711 unsigned long dst_off, unsigned long src_off,
5712 unsigned long len)
5713{
Chris Masona6591712011-07-19 12:04:14 -04005714 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005715 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005716 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005717
Sergei Trofimovich33872062011-04-11 21:52:52 +00005718 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005719 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005720 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005721 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005722 if (areas_overlap(src_off, dst_off, len))
5723 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005724 }
Chris Masond1310b22008-01-24 16:13:08 -05005725
Chris Mason727011e2010-08-06 13:21:20 -04005726 if (must_memmove)
5727 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5728 else
5729 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005730}
5731
5732void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5733 unsigned long src_offset, unsigned long len)
5734{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005735 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005736 size_t cur;
5737 size_t dst_off_in_page;
5738 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005739 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005740 unsigned long dst_i;
5741 unsigned long src_i;
5742
5743 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005744 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005745 "memmove bogus src_offset %lu move len %lu dst len %lu",
5746 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005747 BUG_ON(1);
5748 }
5749 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005750 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005751 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5752 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005753 BUG_ON(1);
5754 }
5755
Chris Masond3977122009-01-05 21:25:51 -05005756 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01005757 dst_off_in_page = offset_in_page(start_offset + dst_offset);
5758 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005759
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005760 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5761 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005762
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005763 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005764 src_off_in_page));
5765 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005766 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005767
David Sterbafb85fc92014-07-31 01:03:53 +02005768 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005769 dst_off_in_page, src_off_in_page, cur);
5770
5771 src_offset += cur;
5772 dst_offset += cur;
5773 len -= cur;
5774 }
5775}
Chris Masond1310b22008-01-24 16:13:08 -05005776
5777void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5778 unsigned long src_offset, unsigned long len)
5779{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005780 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005781 size_t cur;
5782 size_t dst_off_in_page;
5783 size_t src_off_in_page;
5784 unsigned long dst_end = dst_offset + len - 1;
5785 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005786 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005787 unsigned long dst_i;
5788 unsigned long src_i;
5789
5790 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005791 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005792 "memmove bogus src_offset %lu move len %lu len %lu",
5793 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005794 BUG_ON(1);
5795 }
5796 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005797 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005798 "memmove bogus dst_offset %lu move len %lu len %lu",
5799 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005800 BUG_ON(1);
5801 }
Chris Mason727011e2010-08-06 13:21:20 -04005802 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005803 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5804 return;
5805 }
Chris Masond3977122009-01-05 21:25:51 -05005806 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005807 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5808 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005809
Johannes Thumshirn70730172018-12-05 15:23:03 +01005810 dst_off_in_page = offset_in_page(start_offset + dst_end);
5811 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05005812
5813 cur = min_t(unsigned long, len, src_off_in_page + 1);
5814 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005815 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005816 dst_off_in_page - cur + 1,
5817 src_off_in_page - cur + 1, cur);
5818
5819 dst_end -= cur;
5820 src_end -= cur;
5821 len -= cur;
5822 }
5823}
Chris Mason6af118ce2008-07-22 11:18:07 -04005824
David Sterbaf7a52a42013-04-26 14:56:29 +00005825int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005826{
Chris Mason6af118ce2008-07-22 11:18:07 -04005827 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005828
Miao Xie19fe0a82010-10-26 20:57:29 -04005829 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005830 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005831 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005832 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005833 spin_lock(&page->mapping->private_lock);
5834 if (!PagePrivate(page)) {
5835 spin_unlock(&page->mapping->private_lock);
5836 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005837 }
5838
Josef Bacik3083ee22012-03-09 16:01:49 -05005839 eb = (struct extent_buffer *)page->private;
5840 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005841
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005842 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005843 * This is a little awful but should be ok, we need to make sure that
5844 * the eb doesn't disappear out from under us while we're looking at
5845 * this page.
5846 */
5847 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005848 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005849 spin_unlock(&eb->refs_lock);
5850 spin_unlock(&page->mapping->private_lock);
5851 return 0;
5852 }
5853 spin_unlock(&page->mapping->private_lock);
5854
Josef Bacik3083ee22012-03-09 16:01:49 -05005855 /*
5856 * If tree ref isn't set then we know the ref on this eb is a real ref,
5857 * so just return, this page will likely be freed soon anyway.
5858 */
5859 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5860 spin_unlock(&eb->refs_lock);
5861 return 0;
5862 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005863
David Sterbaf7a52a42013-04-26 14:56:29 +00005864 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005865}