blob: 7b489988d81197f1f71bef41e489f18b44a195c3 [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 **prev_ret,
285 struct rb_node **next_ret,
286 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
Chris Masond1310b22008-01-24 16:13:08 -0500314 if (prev_ret) {
315 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 }
320 *prev_ret = prev;
321 prev = orig_prev;
322 }
323
324 if (next_ret) {
325 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 }
330 *next_ret = prev;
331 }
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{
Chris Mason70dec802008-01-29 09:59:12 -0500341 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500342 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500343
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000344 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500345 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500346 return prev;
347 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.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800495 * it will optionally wake up any one 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;
588 bits |= EXTENT_FIRST_DELALLOC;
589
Josef Bacik2ac55d42010-02-03 19:33:23 +0000590 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
591 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500592again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800593 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000594 /*
595 * Don't care for allocation failure here because we might end
596 * up not needing the pre-allocated extent state at all, which
597 * is the case if we only have in the tree extent states that
598 * cover our input range and don't cover too any other range.
599 * If we end up needing a new extent state we allocate it later.
600 */
Chris Masond1310b22008-01-24 16:13:08 -0500601 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500602 }
603
Chris Masoncad321a2008-12-17 14:51:42 -0500604 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400605 if (cached_state) {
606 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000607
608 if (clear) {
609 *cached_state = NULL;
610 cached_state = NULL;
611 }
612
Filipe Manana27a35072014-07-06 20:09:59 +0100613 if (cached && extent_state_in_tree(cached) &&
614 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000615 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200616 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400617 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400618 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400619 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000620 if (clear)
621 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400622 }
Chris Masond1310b22008-01-24 16:13:08 -0500623 /*
624 * this search will find the extents that end after
625 * our range starts
626 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500627 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500628 if (!node)
629 goto out;
630 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400631hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500632 if (state->start > end)
633 goto out;
634 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400635 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500636
Liu Bo04493142012-02-16 18:34:37 +0800637 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800638 if (!(state->state & bits)) {
639 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800640 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800641 }
Liu Bo04493142012-02-16 18:34:37 +0800642
Chris Masond1310b22008-01-24 16:13:08 -0500643 /*
644 * | ---- desired range ---- |
645 * | state | or
646 * | ------------- state -------------- |
647 *
648 * We need to split the extent we found, and may flip
649 * bits on second half.
650 *
651 * If the extent we found extends past our range, we
652 * just split and search again. It'll get split again
653 * the next time though.
654 *
655 * If the extent we found is inside our range, we clear
656 * the desired bit on it.
657 */
658
659 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000660 prealloc = alloc_extent_state_atomic(prealloc);
661 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500662 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400663 if (err)
664 extent_io_tree_panic(tree, err);
665
Chris Masond1310b22008-01-24 16:13:08 -0500666 prealloc = NULL;
667 if (err)
668 goto out;
669 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800670 state = clear_state_bit(tree, state, &bits, wake,
671 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800672 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500673 }
674 goto search_again;
675 }
676 /*
677 * | ---- desired range ---- |
678 * | state |
679 * We need to split the extent, and clear the bit
680 * on the first half
681 */
682 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000683 prealloc = alloc_extent_state_atomic(prealloc);
684 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500685 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400686 if (err)
687 extent_io_tree_panic(tree, err);
688
Chris Masond1310b22008-01-24 16:13:08 -0500689 if (wake)
690 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400691
Qu Wenruofefdc552015-10-12 15:35:38 +0800692 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400693
Chris Masond1310b22008-01-24 16:13:08 -0500694 prealloc = NULL;
695 goto out;
696 }
Chris Mason42daec22009-09-23 19:51:09 -0400697
Qu Wenruofefdc552015-10-12 15:35:38 +0800698 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800699next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400700 if (last_end == (u64)-1)
701 goto out;
702 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800703 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800704 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500705
706search_again:
707 if (start > end)
708 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500709 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800710 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500711 cond_resched();
712 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200713
714out:
715 spin_unlock(&tree->lock);
716 if (prealloc)
717 free_extent_state(prealloc);
718
719 return 0;
720
Chris Masond1310b22008-01-24 16:13:08 -0500721}
Chris Masond1310b22008-01-24 16:13:08 -0500722
Jeff Mahoney143bede2012-03-01 14:56:26 +0100723static void wait_on_state(struct extent_io_tree *tree,
724 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500725 __releases(tree->lock)
726 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500727{
728 DEFINE_WAIT(wait);
729 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500730 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500731 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500732 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500733 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500734}
735
736/*
737 * waits for one or more bits to clear on a range in the state tree.
738 * The range [start, end] is inclusive.
739 * The tree lock is taken by this function
740 */
David Sterba41074882013-04-29 13:38:46 +0000741static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
742 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500743{
744 struct extent_state *state;
745 struct rb_node *node;
746
Josef Bacika5dee372013-12-13 10:02:44 -0500747 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000748
Chris Masoncad321a2008-12-17 14:51:42 -0500749 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500750again:
751 while (1) {
752 /*
753 * this search will find all the extents that end after
754 * our range starts
755 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500756 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100757process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500758 if (!node)
759 break;
760
761 state = rb_entry(node, struct extent_state, rb_node);
762
763 if (state->start > end)
764 goto out;
765
766 if (state->state & bits) {
767 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200768 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500769 wait_on_state(tree, state);
770 free_extent_state(state);
771 goto again;
772 }
773 start = state->end + 1;
774
775 if (start > end)
776 break;
777
Filipe Mananac50d3e72014-03-31 14:53:25 +0100778 if (!cond_resched_lock(&tree->lock)) {
779 node = rb_next(node);
780 goto process_node;
781 }
Chris Masond1310b22008-01-24 16:13:08 -0500782 }
783out:
Chris Masoncad321a2008-12-17 14:51:42 -0500784 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500785}
Chris Masond1310b22008-01-24 16:13:08 -0500786
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000787static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500788 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800789 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500790{
David Sterba9ee49a042015-01-14 19:52:13 +0100791 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
David Sterba57599c72018-03-01 17:56:34 +0100792 int ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400793
Nikolay Borisove06a1fc2018-11-01 14:09:50 +0200794 if (tree->private_data && is_data_inode(tree->private_data))
795 btrfs_set_delalloc_extent(tree->private_data, state, bits);
796
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400797 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500798 u64 range = state->end - state->start + 1;
799 tree->dirty_bytes += range;
800 }
David Sterba57599c72018-03-01 17:56:34 +0100801 ret = add_extent_changeset(state, bits_to_set, changeset, 1);
802 BUG_ON(ret < 0);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400803 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500804}
805
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100806static void cache_state_if_flags(struct extent_state *state,
807 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100808 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400809{
810 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100811 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400812 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200813 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400814 }
815 }
816}
817
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100818static void cache_state(struct extent_state *state,
819 struct extent_state **cached_ptr)
820{
821 return cache_state_if_flags(state, cached_ptr,
822 EXTENT_IOBITS | EXTENT_BOUNDARY);
823}
824
Chris Masond1310b22008-01-24 16:13:08 -0500825/*
Chris Mason1edbb732009-09-02 13:24:36 -0400826 * set some bits on a range in the tree. This may require allocations or
827 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500828 *
Chris Mason1edbb732009-09-02 13:24:36 -0400829 * If any of the exclusive bits are set, this will fail with -EEXIST if some
830 * part of the range already has the desired bits set. The start of the
831 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500832 *
Chris Mason1edbb732009-09-02 13:24:36 -0400833 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500834 */
Chris Mason1edbb732009-09-02 13:24:36 -0400835
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100836static int __must_check
837__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100838 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000839 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800840 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500841{
842 struct extent_state *state;
843 struct extent_state *prealloc = NULL;
844 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000845 struct rb_node **p;
846 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500847 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500848 u64 last_start;
849 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400850
Josef Bacika5dee372013-12-13 10:02:44 -0500851 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000852
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400853 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500854again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800855 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200856 /*
857 * Don't care for allocation failure here because we might end
858 * up not needing the pre-allocated extent state at all, which
859 * is the case if we only have in the tree extent states that
860 * cover our input range and don't cover too any other range.
861 * If we end up needing a new extent state we allocate it later.
862 */
Chris Masond1310b22008-01-24 16:13:08 -0500863 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500864 }
865
Chris Masoncad321a2008-12-17 14:51:42 -0500866 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400867 if (cached_state && *cached_state) {
868 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400869 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100870 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400871 node = &state->rb_node;
872 goto hit_next;
873 }
874 }
Chris Masond1310b22008-01-24 16:13:08 -0500875 /*
876 * this search will find all the extents that end after
877 * our range starts.
878 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000879 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500880 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000881 prealloc = alloc_extent_state_atomic(prealloc);
882 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000883 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800884 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400885 if (err)
886 extent_io_tree_panic(tree, err);
887
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000888 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500889 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500890 goto out;
891 }
Chris Masond1310b22008-01-24 16:13:08 -0500892 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400893hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500894 last_start = state->start;
895 last_end = state->end;
896
897 /*
898 * | ---- desired range ---- |
899 * | state |
900 *
901 * Just lock what we found and keep going
902 */
903 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400904 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500905 *failed_start = state->start;
906 err = -EEXIST;
907 goto out;
908 }
Chris Mason42daec22009-09-23 19:51:09 -0400909
Qu Wenruod38ed272015-10-12 14:53:37 +0800910 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400911 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500912 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400913 if (last_end == (u64)-1)
914 goto out;
915 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800916 state = next_state(state);
917 if (start < end && state && state->start == start &&
918 !need_resched())
919 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500920 goto search_again;
921 }
922
923 /*
924 * | ---- desired range ---- |
925 * | state |
926 * or
927 * | ------------- state -------------- |
928 *
929 * We need to split the extent we found, and may flip bits on
930 * second half.
931 *
932 * If the extent we found extends past our
933 * range, we just split and search again. It'll get split
934 * again the next time though.
935 *
936 * If the extent we found is inside our range, we set the
937 * desired bit on it.
938 */
939 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400940 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500941 *failed_start = start;
942 err = -EEXIST;
943 goto out;
944 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000945
946 prealloc = alloc_extent_state_atomic(prealloc);
947 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500948 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400949 if (err)
950 extent_io_tree_panic(tree, err);
951
Chris Masond1310b22008-01-24 16:13:08 -0500952 prealloc = NULL;
953 if (err)
954 goto out;
955 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800956 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400957 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500958 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400959 if (last_end == (u64)-1)
960 goto out;
961 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800962 state = next_state(state);
963 if (start < end && state && state->start == start &&
964 !need_resched())
965 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500966 }
967 goto search_again;
968 }
969 /*
970 * | ---- desired range ---- |
971 * | state | or | state |
972 *
973 * There's a hole, we need to insert something in it and
974 * ignore the extent we found.
975 */
976 if (state->start > start) {
977 u64 this_end;
978 if (end < last_start)
979 this_end = end;
980 else
Chris Masond3977122009-01-05 21:25:51 -0500981 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000982
983 prealloc = alloc_extent_state_atomic(prealloc);
984 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000985
986 /*
987 * Avoid to free 'prealloc' if it can be merged with
988 * the later extent.
989 */
Chris Masond1310b22008-01-24 16:13:08 -0500990 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800991 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400992 if (err)
993 extent_io_tree_panic(tree, err);
994
Chris Mason2c64c532009-09-02 15:04:12 -0400995 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500996 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500997 start = this_end + 1;
998 goto search_again;
999 }
1000 /*
1001 * | ---- desired range ---- |
1002 * | state |
1003 * We need to split the extent, and set the bit
1004 * on the first half
1005 */
1006 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001007 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001008 *failed_start = start;
1009 err = -EEXIST;
1010 goto out;
1011 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001012
1013 prealloc = alloc_extent_state_atomic(prealloc);
1014 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001015 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001016 if (err)
1017 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001018
Qu Wenruod38ed272015-10-12 14:53:37 +08001019 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001020 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001021 merge_state(tree, prealloc);
1022 prealloc = NULL;
1023 goto out;
1024 }
1025
David Sterbab5a4ba142016-04-27 01:02:15 +02001026search_again:
1027 if (start > end)
1028 goto out;
1029 spin_unlock(&tree->lock);
1030 if (gfpflags_allow_blocking(mask))
1031 cond_resched();
1032 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001033
1034out:
Chris Masoncad321a2008-12-17 14:51:42 -05001035 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001036 if (prealloc)
1037 free_extent_state(prealloc);
1038
1039 return err;
1040
Chris Masond1310b22008-01-24 16:13:08 -05001041}
Chris Masond1310b22008-01-24 16:13:08 -05001042
David Sterba41074882013-04-29 13:38:46 +00001043int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001044 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001045 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001046{
1047 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001048 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001049}
1050
1051
Josef Bacik462d6fa2011-09-26 13:56:12 -04001052/**
Liu Bo10983f22012-07-11 15:26:19 +08001053 * convert_extent_bit - convert all bits in a given range from one bit to
1054 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001055 * @tree: the io tree to search
1056 * @start: the start offset in bytes
1057 * @end: the end offset in bytes (inclusive)
1058 * @bits: the bits to set in this range
1059 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001060 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001061 *
1062 * This will go through and set bits for the given range. If any states exist
1063 * already in this range they are set with the given bit and cleared of the
1064 * clear_bits. This is only meant to be used by things that are mergeable, ie
1065 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1066 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001067 *
1068 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001069 */
1070int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001071 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001072 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001073{
1074 struct extent_state *state;
1075 struct extent_state *prealloc = NULL;
1076 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001077 struct rb_node **p;
1078 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001079 int err = 0;
1080 u64 last_start;
1081 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001082 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001083
Josef Bacika5dee372013-12-13 10:02:44 -05001084 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001085
Josef Bacik462d6fa2011-09-26 13:56:12 -04001086again:
David Sterba210aa272016-04-26 23:54:39 +02001087 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001088 /*
1089 * Best effort, don't worry if extent state allocation fails
1090 * here for the first iteration. We might have a cached state
1091 * that matches exactly the target range, in which case no
1092 * extent state allocations are needed. We'll only know this
1093 * after locking the tree.
1094 */
David Sterba210aa272016-04-26 23:54:39 +02001095 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001096 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001097 return -ENOMEM;
1098 }
1099
1100 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001101 if (cached_state && *cached_state) {
1102 state = *cached_state;
1103 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001104 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001105 node = &state->rb_node;
1106 goto hit_next;
1107 }
1108 }
1109
Josef Bacik462d6fa2011-09-26 13:56:12 -04001110 /*
1111 * this search will find all the extents that end after
1112 * our range starts.
1113 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001114 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001115 if (!node) {
1116 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001117 if (!prealloc) {
1118 err = -ENOMEM;
1119 goto out;
1120 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001121 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001122 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001123 if (err)
1124 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001125 cache_state(prealloc, cached_state);
1126 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001127 goto out;
1128 }
1129 state = rb_entry(node, struct extent_state, rb_node);
1130hit_next:
1131 last_start = state->start;
1132 last_end = state->end;
1133
1134 /*
1135 * | ---- desired range ---- |
1136 * | state |
1137 *
1138 * Just lock what we found and keep going
1139 */
1140 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001141 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001142 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001143 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001144 if (last_end == (u64)-1)
1145 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001146 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001147 if (start < end && state && state->start == start &&
1148 !need_resched())
1149 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001150 goto search_again;
1151 }
1152
1153 /*
1154 * | ---- desired range ---- |
1155 * | state |
1156 * or
1157 * | ------------- state -------------- |
1158 *
1159 * We need to split the extent we found, and may flip bits on
1160 * second half.
1161 *
1162 * If the extent we found extends past our
1163 * range, we just split and search again. It'll get split
1164 * again the next time though.
1165 *
1166 * If the extent we found is inside our range, we set the
1167 * desired bit on it.
1168 */
1169 if (state->start < start) {
1170 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001171 if (!prealloc) {
1172 err = -ENOMEM;
1173 goto out;
1174 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001175 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001176 if (err)
1177 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001178 prealloc = NULL;
1179 if (err)
1180 goto out;
1181 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001182 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001183 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001184 state = clear_state_bit(tree, state, &clear_bits, 0,
1185 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001186 if (last_end == (u64)-1)
1187 goto out;
1188 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001189 if (start < end && state && state->start == start &&
1190 !need_resched())
1191 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001192 }
1193 goto search_again;
1194 }
1195 /*
1196 * | ---- desired range ---- |
1197 * | state | or | state |
1198 *
1199 * There's a hole, we need to insert something in it and
1200 * ignore the extent we found.
1201 */
1202 if (state->start > start) {
1203 u64 this_end;
1204 if (end < last_start)
1205 this_end = end;
1206 else
1207 this_end = last_start - 1;
1208
1209 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001210 if (!prealloc) {
1211 err = -ENOMEM;
1212 goto out;
1213 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001214
1215 /*
1216 * Avoid to free 'prealloc' if it can be merged with
1217 * the later extent.
1218 */
1219 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001220 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001221 if (err)
1222 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001223 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001224 prealloc = NULL;
1225 start = this_end + 1;
1226 goto search_again;
1227 }
1228 /*
1229 * | ---- desired range ---- |
1230 * | state |
1231 * We need to split the extent, and set the bit
1232 * on the first half
1233 */
1234 if (state->start <= end && state->end > end) {
1235 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001236 if (!prealloc) {
1237 err = -ENOMEM;
1238 goto out;
1239 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001240
1241 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001242 if (err)
1243 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001244
Qu Wenruod38ed272015-10-12 14:53:37 +08001245 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001246 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001247 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001248 prealloc = NULL;
1249 goto out;
1250 }
1251
Josef Bacik462d6fa2011-09-26 13:56:12 -04001252search_again:
1253 if (start > end)
1254 goto out;
1255 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001256 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001257 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001258 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001259
1260out:
1261 spin_unlock(&tree->lock);
1262 if (prealloc)
1263 free_extent_state(prealloc);
1264
1265 return err;
1266}
1267
Chris Masond1310b22008-01-24 16:13:08 -05001268/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001269int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001270 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001271{
1272 /*
1273 * We don't support EXTENT_LOCKED yet, as current changeset will
1274 * record any bits changed, so for EXTENT_LOCKED case, it will
1275 * either fail with -EEXIST or changeset will record the whole
1276 * range.
1277 */
1278 BUG_ON(bits & EXTENT_LOCKED);
1279
David Sterba2c53b912016-04-26 23:54:39 +02001280 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001281 changeset);
1282}
1283
Qu Wenruofefdc552015-10-12 15:35:38 +08001284int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1285 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001286 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001287{
1288 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001289 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001290}
1291
Qu Wenruofefdc552015-10-12 15:35:38 +08001292int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001293 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001294{
1295 /*
1296 * Don't support EXTENT_LOCKED case, same reason as
1297 * set_record_extent_bits().
1298 */
1299 BUG_ON(bits & EXTENT_LOCKED);
1300
David Sterbaf734c442016-04-26 23:54:39 +02001301 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001302 changeset);
1303}
1304
Chris Masond352ac62008-09-29 15:18:18 -04001305/*
1306 * either insert or lock state struct between start and end use mask to tell
1307 * us if waiting is desired.
1308 */
Chris Mason1edbb732009-09-02 13:24:36 -04001309int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001310 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001311{
1312 int err;
1313 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001314
Chris Masond1310b22008-01-24 16:13:08 -05001315 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001316 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001317 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001318 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001319 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001320 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1321 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001322 } else
Chris Masond1310b22008-01-24 16:13:08 -05001323 break;
Chris Masond1310b22008-01-24 16:13:08 -05001324 WARN_ON(start > end);
1325 }
1326 return err;
1327}
Chris Masond1310b22008-01-24 16:13:08 -05001328
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001329int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001330{
1331 int err;
1332 u64 failed_start;
1333
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001334 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001335 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001336 if (err == -EEXIST) {
1337 if (failed_start > start)
1338 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001339 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001340 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001341 }
Josef Bacik25179202008-10-29 14:49:05 -04001342 return 1;
1343}
Josef Bacik25179202008-10-29 14:49:05 -04001344
David Sterbabd1fa4f2015-12-03 13:08:59 +01001345void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001346{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001347 unsigned long index = start >> PAGE_SHIFT;
1348 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001349 struct page *page;
1350
1351 while (index <= end_index) {
1352 page = find_get_page(inode->i_mapping, index);
1353 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1354 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001355 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001356 index++;
1357 }
Chris Mason4adaa612013-03-26 13:07:00 -04001358}
1359
David Sterbaf6311572015-12-03 13:08:59 +01001360void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001361{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001362 unsigned long index = start >> PAGE_SHIFT;
1363 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001364 struct page *page;
1365
1366 while (index <= end_index) {
1367 page = find_get_page(inode->i_mapping, index);
1368 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001369 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001370 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001371 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001372 index++;
1373 }
Chris Mason4adaa612013-03-26 13:07:00 -04001374}
1375
Chris Masond352ac62008-09-29 15:18:18 -04001376/* find the first state struct with 'bits' set after 'start', and
1377 * return it. tree->lock must be held. NULL will returned if
1378 * nothing was found after 'start'
1379 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001380static struct extent_state *
1381find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001382 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001383{
1384 struct rb_node *node;
1385 struct extent_state *state;
1386
1387 /*
1388 * this search will find all the extents that end after
1389 * our range starts.
1390 */
1391 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001392 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001393 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001394
Chris Masond3977122009-01-05 21:25:51 -05001395 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001396 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001397 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001398 return state;
Chris Masond3977122009-01-05 21:25:51 -05001399
Chris Masond7fc6402008-02-18 12:12:38 -05001400 node = rb_next(node);
1401 if (!node)
1402 break;
1403 }
1404out:
1405 return NULL;
1406}
Chris Masond7fc6402008-02-18 12:12:38 -05001407
Chris Masond352ac62008-09-29 15:18:18 -04001408/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001409 * find the first offset in the io tree with 'bits' set. zero is
1410 * returned if we find something, and *start_ret and *end_ret are
1411 * set to reflect the state struct that was found.
1412 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001413 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001414 */
1415int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001416 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001417 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001418{
1419 struct extent_state *state;
1420 int ret = 1;
1421
1422 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001423 if (cached_state && *cached_state) {
1424 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001425 if (state->end == start - 1 && extent_state_in_tree(state)) {
Liu Bo9688e9a2018-08-23 03:14:53 +08001426 while ((state = next_state(state)) != NULL) {
Josef Bacike6138872012-09-27 17:07:30 -04001427 if (state->state & bits)
1428 goto got_it;
Josef Bacike6138872012-09-27 17:07:30 -04001429 }
1430 free_extent_state(*cached_state);
1431 *cached_state = NULL;
1432 goto out;
1433 }
1434 free_extent_state(*cached_state);
1435 *cached_state = NULL;
1436 }
1437
Xiao Guangrong69261c42011-07-14 03:19:45 +00001438 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001439got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001440 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001441 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001442 *start_ret = state->start;
1443 *end_ret = state->end;
1444 ret = 0;
1445 }
Josef Bacike6138872012-09-27 17:07:30 -04001446out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001447 spin_unlock(&tree->lock);
1448 return ret;
1449}
1450
1451/*
Chris Masond352ac62008-09-29 15:18:18 -04001452 * find a contiguous range of bytes in the file marked as delalloc, not
1453 * more than 'max_bytes'. start and end are used to return the range,
1454 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001455 * true is returned if we find something, false if nothing was in the tree
Chris Masond352ac62008-09-29 15:18:18 -04001456 */
Lu Fengqi3522e902018-11-29 11:33:38 +08001457static noinline bool find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001458 u64 *start, u64 *end, u64 max_bytes,
1459 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001460{
1461 struct rb_node *node;
1462 struct extent_state *state;
1463 u64 cur_start = *start;
Lu Fengqi3522e902018-11-29 11:33:38 +08001464 bool found = false;
Chris Masond1310b22008-01-24 16:13:08 -05001465 u64 total_bytes = 0;
1466
Chris Masoncad321a2008-12-17 14:51:42 -05001467 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001468
Chris Masond1310b22008-01-24 16:13:08 -05001469 /*
1470 * this search will find all the extents that end after
1471 * our range starts.
1472 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001473 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001474 if (!node) {
Lu Fengqi3522e902018-11-29 11:33:38 +08001475 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001476 goto out;
1477 }
1478
Chris Masond3977122009-01-05 21:25:51 -05001479 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001480 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001481 if (found && (state->start != cur_start ||
1482 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001483 goto out;
1484 }
1485 if (!(state->state & EXTENT_DELALLOC)) {
1486 if (!found)
1487 *end = state->end;
1488 goto out;
1489 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001490 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001491 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001492 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001493 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001494 }
Lu Fengqi3522e902018-11-29 11:33:38 +08001495 found = true;
Chris Masond1310b22008-01-24 16:13:08 -05001496 *end = state->end;
1497 cur_start = state->end + 1;
1498 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001499 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001500 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001501 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001502 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001503 break;
1504 }
1505out:
Chris Masoncad321a2008-12-17 14:51:42 -05001506 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001507 return found;
1508}
1509
Liu Boda2c7002017-02-10 16:41:05 +01001510static int __process_pages_contig(struct address_space *mapping,
1511 struct page *locked_page,
1512 pgoff_t start_index, pgoff_t end_index,
1513 unsigned long page_ops, pgoff_t *index_ret);
1514
Jeff Mahoney143bede2012-03-01 14:56:26 +01001515static noinline void __unlock_for_delalloc(struct inode *inode,
1516 struct page *locked_page,
1517 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001518{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001519 unsigned long index = start >> PAGE_SHIFT;
1520 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001521
Liu Bo76c00212017-02-10 16:42:14 +01001522 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001523 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001524 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001525
Liu Bo76c00212017-02-10 16:42:14 +01001526 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1527 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001528}
1529
1530static noinline int lock_delalloc_pages(struct inode *inode,
1531 struct page *locked_page,
1532 u64 delalloc_start,
1533 u64 delalloc_end)
1534{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001535 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001536 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001537 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001538 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001539
Liu Bo76c00212017-02-10 16:42:14 +01001540 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001541 if (index == locked_page->index && index == end_index)
1542 return 0;
1543
Liu Bo76c00212017-02-10 16:42:14 +01001544 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1545 end_index, PAGE_LOCK, &index_ret);
1546 if (ret == -EAGAIN)
1547 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1548 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001549 return ret;
1550}
1551
1552/*
Lu Fengqi3522e902018-11-29 11:33:38 +08001553 * Find and lock a contiguous range of bytes in the file marked as delalloc, no
1554 * more than @max_bytes. @Start and @end are used to return the range,
Chris Masonc8b97812008-10-29 14:49:59 -04001555 *
Lu Fengqi3522e902018-11-29 11:33:38 +08001556 * Return: true if we find something
1557 * false if nothing was in the tree
Chris Masonc8b97812008-10-29 14:49:59 -04001558 */
Johannes Thumshirnce9f9672018-11-19 10:38:17 +01001559EXPORT_FOR_TESTS
Lu Fengqi3522e902018-11-29 11:33:38 +08001560noinline_for_stack bool find_lock_delalloc_range(struct inode *inode,
Josef Bacik294e30f2013-10-09 12:00:56 -04001561 struct extent_io_tree *tree,
1562 struct page *locked_page, u64 *start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03001563 u64 *end)
Chris Masonc8b97812008-10-29 14:49:59 -04001564{
Nikolay Borisov917aace2018-10-26 14:43:20 +03001565 u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001566 u64 delalloc_start;
1567 u64 delalloc_end;
Lu Fengqi3522e902018-11-29 11:33:38 +08001568 bool found;
Chris Mason9655d292009-09-02 15:22:30 -04001569 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001570 int ret;
1571 int loops = 0;
1572
1573again:
1574 /* step one, find a bunch of delalloc bytes starting at start */
1575 delalloc_start = *start;
1576 delalloc_end = 0;
1577 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001578 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001579 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001580 *start = delalloc_start;
1581 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001582 free_extent_state(cached_state);
Lu Fengqi3522e902018-11-29 11:33:38 +08001583 return false;
Chris Masonc8b97812008-10-29 14:49:59 -04001584 }
1585
1586 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001587 * start comes from the offset of locked_page. We have to lock
1588 * pages in order, so we can't process delalloc bytes before
1589 * locked_page
1590 */
Chris Masond3977122009-01-05 21:25:51 -05001591 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001592 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001593
1594 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001595 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001596 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001597 if (delalloc_end + 1 - delalloc_start > max_bytes)
1598 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001599
Chris Masonc8b97812008-10-29 14:49:59 -04001600 /* step two, lock all the pages after the page that has start */
1601 ret = lock_delalloc_pages(inode, locked_page,
1602 delalloc_start, delalloc_end);
Nikolay Borisov9bfd61d2018-10-26 14:43:21 +03001603 ASSERT(!ret || ret == -EAGAIN);
Chris Masonc8b97812008-10-29 14:49:59 -04001604 if (ret == -EAGAIN) {
1605 /* some of the pages are gone, lets avoid looping by
1606 * shortening the size of the delalloc range we're searching
1607 */
Chris Mason9655d292009-09-02 15:22:30 -04001608 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001609 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001610 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001611 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001612 loops = 1;
1613 goto again;
1614 } else {
Lu Fengqi3522e902018-11-29 11:33:38 +08001615 found = false;
Chris Masonc8b97812008-10-29 14:49:59 -04001616 goto out_failed;
1617 }
1618 }
Chris Masonc8b97812008-10-29 14:49:59 -04001619
1620 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001621 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001622
1623 /* then test to make sure it is all still delalloc */
1624 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001625 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001626 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001627 unlock_extent_cached(tree, delalloc_start, delalloc_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001628 &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001629 __unlock_for_delalloc(inode, locked_page,
1630 delalloc_start, delalloc_end);
1631 cond_resched();
1632 goto again;
1633 }
Chris Mason9655d292009-09-02 15:22:30 -04001634 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001635 *start = delalloc_start;
1636 *end = delalloc_end;
1637out_failed:
1638 return found;
1639}
1640
Liu Boda2c7002017-02-10 16:41:05 +01001641static int __process_pages_contig(struct address_space *mapping,
1642 struct page *locked_page,
1643 pgoff_t start_index, pgoff_t end_index,
1644 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001645{
Liu Bo873695b2017-02-02 17:49:22 -08001646 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001647 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001648 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001649 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001650 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001651 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001652 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001653
Liu Boda2c7002017-02-10 16:41:05 +01001654 if (page_ops & PAGE_LOCK) {
1655 ASSERT(page_ops == PAGE_LOCK);
1656 ASSERT(index_ret && *index_ret == start_index);
1657 }
1658
Filipe Manana704de492014-10-06 22:14:22 +01001659 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001660 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001661
Chris Masond3977122009-01-05 21:25:51 -05001662 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001663 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001664 min_t(unsigned long,
1665 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001666 if (ret == 0) {
1667 /*
1668 * Only if we're going to lock these pages,
1669 * can we find nothing at @index.
1670 */
1671 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001672 err = -EAGAIN;
1673 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001674 }
Chris Mason8b62b722009-09-02 16:53:46 -04001675
Liu Boda2c7002017-02-10 16:41:05 +01001676 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001677 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001678 SetPagePrivate2(pages[i]);
1679
Chris Masonc8b97812008-10-29 14:49:59 -04001680 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001681 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001682 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001683 continue;
1684 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001685 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001686 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001687 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001688 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001689 if (page_ops & PAGE_SET_ERROR)
1690 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001691 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001692 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001693 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001694 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001695 if (page_ops & PAGE_LOCK) {
1696 lock_page(pages[i]);
1697 if (!PageDirty(pages[i]) ||
1698 pages[i]->mapping != mapping) {
1699 unlock_page(pages[i]);
1700 put_page(pages[i]);
1701 err = -EAGAIN;
1702 goto out;
1703 }
1704 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001705 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001706 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001707 }
1708 nr_pages -= ret;
1709 index += ret;
1710 cond_resched();
1711 }
Liu Boda2c7002017-02-10 16:41:05 +01001712out:
1713 if (err && index_ret)
1714 *index_ret = start_index + pages_locked - 1;
1715 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001716}
Chris Masonc8b97812008-10-29 14:49:59 -04001717
Liu Bo873695b2017-02-02 17:49:22 -08001718void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1719 u64 delalloc_end, struct page *locked_page,
1720 unsigned clear_bits,
1721 unsigned long page_ops)
1722{
1723 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001724 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001725
1726 __process_pages_contig(inode->i_mapping, locked_page,
1727 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001728 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001729}
1730
Chris Masond352ac62008-09-29 15:18:18 -04001731/*
1732 * count the number of bytes in the tree that have a given bit(s)
1733 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1734 * cached. The total number found is returned.
1735 */
Chris Masond1310b22008-01-24 16:13:08 -05001736u64 count_range_bits(struct extent_io_tree *tree,
1737 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001738 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001739{
1740 struct rb_node *node;
1741 struct extent_state *state;
1742 u64 cur_start = *start;
1743 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001744 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001745 int found = 0;
1746
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301747 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001748 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001749
Chris Masoncad321a2008-12-17 14:51:42 -05001750 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001751 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1752 total_bytes = tree->dirty_bytes;
1753 goto out;
1754 }
1755 /*
1756 * this search will find all the extents that end after
1757 * our range starts.
1758 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001759 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001760 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001761 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001762
Chris Masond3977122009-01-05 21:25:51 -05001763 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001764 state = rb_entry(node, struct extent_state, rb_node);
1765 if (state->start > search_end)
1766 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001767 if (contig && found && state->start > last + 1)
1768 break;
1769 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001770 total_bytes += min(search_end, state->end) + 1 -
1771 max(cur_start, state->start);
1772 if (total_bytes >= max_bytes)
1773 break;
1774 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001775 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001776 found = 1;
1777 }
Chris Masonec29ed52011-02-23 16:23:20 -05001778 last = state->end;
1779 } else if (contig && found) {
1780 break;
Chris Masond1310b22008-01-24 16:13:08 -05001781 }
1782 node = rb_next(node);
1783 if (!node)
1784 break;
1785 }
1786out:
Chris Masoncad321a2008-12-17 14:51:42 -05001787 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001788 return total_bytes;
1789}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001790
Chris Masond352ac62008-09-29 15:18:18 -04001791/*
1792 * set the private field for a given byte offset in the tree. If there isn't
1793 * an extent_state there already, this does nothing.
1794 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001795static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001796 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001797{
1798 struct rb_node *node;
1799 struct extent_state *state;
1800 int ret = 0;
1801
Chris Masoncad321a2008-12-17 14:51:42 -05001802 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001803 /*
1804 * this search will find all the extents that end after
1805 * our range starts.
1806 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001807 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001808 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001809 ret = -ENOENT;
1810 goto out;
1811 }
1812 state = rb_entry(node, struct extent_state, rb_node);
1813 if (state->start != start) {
1814 ret = -ENOENT;
1815 goto out;
1816 }
David Sterba47dc1962016-02-11 13:24:13 +01001817 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001818out:
Chris Masoncad321a2008-12-17 14:51:42 -05001819 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001820 return ret;
1821}
1822
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001823static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001824 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001825{
1826 struct rb_node *node;
1827 struct extent_state *state;
1828 int ret = 0;
1829
Chris Masoncad321a2008-12-17 14:51:42 -05001830 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001831 /*
1832 * this search will find all the extents that end after
1833 * our range starts.
1834 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001835 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001836 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001837 ret = -ENOENT;
1838 goto out;
1839 }
1840 state = rb_entry(node, struct extent_state, rb_node);
1841 if (state->start != start) {
1842 ret = -ENOENT;
1843 goto out;
1844 }
David Sterba47dc1962016-02-11 13:24:13 +01001845 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001846out:
Chris Masoncad321a2008-12-17 14:51:42 -05001847 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001848 return ret;
1849}
1850
1851/*
1852 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001853 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001854 * has the bits set. Otherwise, 1 is returned if any bit in the
1855 * range is found set.
1856 */
1857int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001858 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001859{
1860 struct extent_state *state = NULL;
1861 struct rb_node *node;
1862 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001863
Chris Masoncad321a2008-12-17 14:51:42 -05001864 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001865 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001866 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001867 node = &cached->rb_node;
1868 else
1869 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001870 while (node && start <= end) {
1871 state = rb_entry(node, struct extent_state, rb_node);
1872
1873 if (filled && state->start > start) {
1874 bitset = 0;
1875 break;
1876 }
1877
1878 if (state->start > end)
1879 break;
1880
1881 if (state->state & bits) {
1882 bitset = 1;
1883 if (!filled)
1884 break;
1885 } else if (filled) {
1886 bitset = 0;
1887 break;
1888 }
Chris Mason46562ce2009-09-23 20:23:16 -04001889
1890 if (state->end == (u64)-1)
1891 break;
1892
Chris Masond1310b22008-01-24 16:13:08 -05001893 start = state->end + 1;
1894 if (start > end)
1895 break;
1896 node = rb_next(node);
1897 if (!node) {
1898 if (filled)
1899 bitset = 0;
1900 break;
1901 }
1902 }
Chris Masoncad321a2008-12-17 14:51:42 -05001903 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001904 return bitset;
1905}
Chris Masond1310b22008-01-24 16:13:08 -05001906
1907/*
1908 * helper function to set a given page up to date if all the
1909 * extents in the tree for that page are up to date
1910 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001911static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001912{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001913 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001914 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001915 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001916 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001917}
1918
Josef Bacik7870d082017-05-05 11:57:15 -04001919int free_io_failure(struct extent_io_tree *failure_tree,
1920 struct extent_io_tree *io_tree,
1921 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001922{
1923 int ret;
1924 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001925
David Sterba47dc1962016-02-11 13:24:13 +01001926 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001927 ret = clear_extent_bits(failure_tree, rec->start,
1928 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001929 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001930 if (ret)
1931 err = ret;
1932
Josef Bacik7870d082017-05-05 11:57:15 -04001933 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001934 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001935 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001936 if (ret && !err)
1937 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001938
1939 kfree(rec);
1940 return err;
1941}
1942
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001943/*
1944 * this bypasses the standard btrfs submit functions deliberately, as
1945 * the standard behavior is to write all copies in a raid setup. here we only
1946 * want to write the one bad copy. so we do the mapping for ourselves and issue
1947 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001948 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001949 * actually prevents the read that triggered the error from finishing.
1950 * currently, there can be no more than two copies of every data bit. thus,
1951 * exactly one rewrite is required.
1952 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04001953int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1954 u64 length, u64 logical, struct page *page,
1955 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001956{
1957 struct bio *bio;
1958 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001959 u64 map_length = 0;
1960 u64 sector;
1961 struct btrfs_bio *bbio = NULL;
1962 int ret;
1963
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001964 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001965 BUG_ON(!mirror_num);
1966
David Sterbac5e4c3d2017-06-12 17:29:41 +02001967 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001968 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001969 map_length = length;
1970
Filipe Mananab5de8d02016-05-27 22:21:27 +01001971 /*
1972 * Avoid races with device replace and make sure our bbio has devices
1973 * associated to its stripes that don't go away while we are doing the
1974 * read repair operation.
1975 */
1976 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03001977 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07001978 /*
1979 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
1980 * to update all raid stripes, but here we just want to correct
1981 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
1982 * stripe's dev and sector.
1983 */
1984 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
1985 &map_length, &bbio, 0);
1986 if (ret) {
1987 btrfs_bio_counter_dec(fs_info);
1988 bio_put(bio);
1989 return -EIO;
1990 }
1991 ASSERT(bbio->mirror_num == 1);
1992 } else {
1993 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
1994 &map_length, &bbio, mirror_num);
1995 if (ret) {
1996 btrfs_bio_counter_dec(fs_info);
1997 bio_put(bio);
1998 return -EIO;
1999 }
2000 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002001 }
Liu Boc7253282017-03-29 10:53:58 -07002002
2003 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002004 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002005 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002006 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002007 if (!dev || !dev->bdev ||
2008 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002009 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002010 bio_put(bio);
2011 return -EIO;
2012 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002013 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002014 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002015 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002016
Mike Christie4e49ea42016-06-05 14:31:41 -05002017 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002018 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002019 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002020 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002021 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002022 return -EIO;
2023 }
2024
David Sterbab14af3b2015-10-08 10:43:10 +02002025 btrfs_info_rl_in_rcu(fs_info,
2026 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002027 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002028 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002029 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002030 bio_put(bio);
2031 return 0;
2032}
2033
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002034int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2035 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002036{
Josef Bacikea466792012-03-26 21:57:36 -04002037 u64 start = eb->start;
David Sterbacc5e31a2018-03-01 18:20:27 +01002038 int i, num_pages = num_extent_pages(eb);
Chris Masond95603b2012-04-12 15:55:15 -04002039 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002040
David Howellsbc98a422017-07-17 08:45:34 +01002041 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002042 return -EROFS;
2043
Josef Bacikea466792012-03-26 21:57:36 -04002044 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002045 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002046
Josef Bacik6ec656b2017-05-05 11:57:14 -04002047 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002048 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002049 if (ret)
2050 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002051 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002052 }
2053
2054 return ret;
2055}
2056
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002057/*
2058 * each time an IO finishes, we do a fast check in the IO failure tree
2059 * to see if we need to process or clean up an io_failure_record
2060 */
Josef Bacik7870d082017-05-05 11:57:15 -04002061int clean_io_failure(struct btrfs_fs_info *fs_info,
2062 struct extent_io_tree *failure_tree,
2063 struct extent_io_tree *io_tree, u64 start,
2064 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002065{
2066 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002067 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002068 struct extent_state *state;
2069 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002070 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002071
2072 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002073 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2074 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002075 if (!ret)
2076 return 0;
2077
Josef Bacik7870d082017-05-05 11:57:15 -04002078 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002079 if (ret)
2080 return 0;
2081
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002082 BUG_ON(!failrec->this_mirror);
2083
2084 if (failrec->in_validation) {
2085 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002086 btrfs_debug(fs_info,
2087 "clean_io_failure: freeing dummy error at %llu",
2088 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002089 goto out;
2090 }
David Howellsbc98a422017-07-17 08:45:34 +01002091 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002092 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002093
Josef Bacik7870d082017-05-05 11:57:15 -04002094 spin_lock(&io_tree->lock);
2095 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002096 failrec->start,
2097 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002098 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099
Miao Xie883d0de2013-07-25 19:22:35 +08002100 if (state && state->start <= failrec->start &&
2101 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002102 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2103 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002105 repair_io_failure(fs_info, ino, start, failrec->len,
2106 failrec->logical, page, pg_offset,
2107 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002108 }
2109 }
2110
2111out:
Josef Bacik7870d082017-05-05 11:57:15 -04002112 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002113
Miao Xie454ff3d2014-09-12 18:43:58 +08002114 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002115}
2116
Miao Xief6124962014-09-12 18:44:04 +08002117/*
2118 * Can be called when
2119 * - hold extent lock
2120 * - under ordered extent
2121 * - the inode is freeing
2122 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002123void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002124{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002125 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002126 struct io_failure_record *failrec;
2127 struct extent_state *state, *next;
2128
2129 if (RB_EMPTY_ROOT(&failure_tree->state))
2130 return;
2131
2132 spin_lock(&failure_tree->lock);
2133 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2134 while (state) {
2135 if (state->start > end)
2136 break;
2137
2138 ASSERT(state->end <= end);
2139
2140 next = next_state(state);
2141
David Sterba47dc1962016-02-11 13:24:13 +01002142 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002143 free_extent_state(state);
2144 kfree(failrec);
2145
2146 state = next;
2147 }
2148 spin_unlock(&failure_tree->lock);
2149}
2150
Miao Xie2fe63032014-09-12 18:43:59 +08002151int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002152 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002153{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002154 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002155 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002156 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002157 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2158 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2159 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002160 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002161 u64 logical;
2162
David Sterba47dc1962016-02-11 13:24:13 +01002163 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002164 if (ret) {
2165 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2166 if (!failrec)
2167 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002168
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002169 failrec->start = start;
2170 failrec->len = end - start + 1;
2171 failrec->this_mirror = 0;
2172 failrec->bio_flags = 0;
2173 failrec->in_validation = 0;
2174
2175 read_lock(&em_tree->lock);
2176 em = lookup_extent_mapping(em_tree, start, failrec->len);
2177 if (!em) {
2178 read_unlock(&em_tree->lock);
2179 kfree(failrec);
2180 return -EIO;
2181 }
2182
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002183 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 free_extent_map(em);
2185 em = NULL;
2186 }
2187 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002188 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002189 kfree(failrec);
2190 return -EIO;
2191 }
Miao Xie2fe63032014-09-12 18:43:59 +08002192
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002193 logical = start - em->start;
2194 logical = em->block_start + logical;
2195 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2196 logical = em->block_start;
2197 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2198 extent_set_compress_type(&failrec->bio_flags,
2199 em->compress_type);
2200 }
Miao Xie2fe63032014-09-12 18:43:59 +08002201
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002202 btrfs_debug(fs_info,
2203 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2204 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002205
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002206 failrec->logical = logical;
2207 free_extent_map(em);
2208
2209 /* set the bits in the private failure tree */
2210 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002211 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002212 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002213 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002214 /* set the bits in the inode's tree */
2215 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002216 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002217 if (ret < 0) {
2218 kfree(failrec);
2219 return ret;
2220 }
2221 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002222 btrfs_debug(fs_info,
2223 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2224 failrec->logical, failrec->start, failrec->len,
2225 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002226 /*
2227 * when data can be on disk more than twice, add to failrec here
2228 * (e.g. with a list for failed_mirror) to make
2229 * clean_io_failure() clean all those errors at once.
2230 */
2231 }
Miao Xie2fe63032014-09-12 18:43:59 +08002232
2233 *failrec_ret = failrec;
2234
2235 return 0;
2236}
2237
Ming Leia0b60d72017-12-18 20:22:11 +08002238bool btrfs_check_repairable(struct inode *inode, unsigned failed_bio_pages,
Miao Xie2fe63032014-09-12 18:43:59 +08002239 struct io_failure_record *failrec, int failed_mirror)
2240{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002241 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002242 int num_copies;
2243
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002244 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002245 if (num_copies == 1) {
2246 /*
2247 * we only have a single copy of the data, so don't bother with
2248 * all the retry and error correction code that follows. no
2249 * matter what the error is, it is very likely to persist.
2250 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002251 btrfs_debug(fs_info,
2252 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2253 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002254 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002255 }
2256
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002257 /*
2258 * there are two premises:
2259 * a) deliver good data to the caller
2260 * b) correct the bad sectors on disk
2261 */
Ming Leia0b60d72017-12-18 20:22:11 +08002262 if (failed_bio_pages > 1) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002263 /*
2264 * to fulfill b), we need to know the exact failing sectors, as
2265 * we don't want to rewrite any more than the failed ones. thus,
2266 * we need separate read requests for the failed bio
2267 *
2268 * if the following BUG_ON triggers, our validation request got
2269 * merged. we need separate requests for our algorithm to work.
2270 */
2271 BUG_ON(failrec->in_validation);
2272 failrec->in_validation = 1;
2273 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002274 } else {
2275 /*
2276 * we're ready to fulfill a) and b) alongside. get a good copy
2277 * of the failed sector and if we succeed, we have setup
2278 * everything for repair_io_failure to do the rest for us.
2279 */
2280 if (failrec->in_validation) {
2281 BUG_ON(failrec->this_mirror != failed_mirror);
2282 failrec->in_validation = 0;
2283 failrec->this_mirror = 0;
2284 }
2285 failrec->failed_mirror = failed_mirror;
2286 failrec->this_mirror++;
2287 if (failrec->this_mirror == failed_mirror)
2288 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002289 }
2290
Miao Xiefacc8a222013-07-25 19:22:34 +08002291 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002292 btrfs_debug(fs_info,
2293 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2294 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002295 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002296 }
2297
Liu Boc3cfb652017-07-13 15:00:50 -07002298 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002299}
2300
2301
2302struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2303 struct io_failure_record *failrec,
2304 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002305 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002306{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002307 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002308 struct bio *bio;
2309 struct btrfs_io_bio *btrfs_failed_bio;
2310 struct btrfs_io_bio *btrfs_bio;
2311
David Sterbac5e4c3d2017-06-12 17:29:41 +02002312 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002313 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002314 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002315 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002316 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002317 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002318
Miao Xiefacc8a222013-07-25 19:22:34 +08002319 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2320 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002321 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2322
2323 btrfs_bio = btrfs_io_bio(bio);
2324 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002325 icsum *= csum_size;
2326 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002327 csum_size);
2328 }
2329
Miao Xie2fe63032014-09-12 18:43:59 +08002330 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002331
Miao Xie2fe63032014-09-12 18:43:59 +08002332 return bio;
2333}
2334
2335/*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002336 * This is a generic handler for readpage errors. If other copies exist, read
2337 * those and write back good data to the failed position. Does not investigate
2338 * in remapping the failed extent elsewhere, hoping the device will be smart
2339 * enough to do this as needed
Miao Xie2fe63032014-09-12 18:43:59 +08002340 */
Miao Xie2fe63032014-09-12 18:43:59 +08002341static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2342 struct page *page, u64 start, u64 end,
2343 int failed_mirror)
2344{
2345 struct io_failure_record *failrec;
2346 struct inode *inode = page->mapping->host;
2347 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002348 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002349 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002350 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002351 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002352 int ret;
Ming Leia0b60d72017-12-18 20:22:11 +08002353 unsigned failed_bio_pages = bio_pages_all(failed_bio);
Miao Xie2fe63032014-09-12 18:43:59 +08002354
Mike Christie1f7ad752016-06-05 14:31:51 -05002355 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002356
2357 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2358 if (ret)
2359 return ret;
2360
Ming Leia0b60d72017-12-18 20:22:11 +08002361 if (!btrfs_check_repairable(inode, failed_bio_pages, failrec,
Liu Boc3cfb652017-07-13 15:00:50 -07002362 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002363 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002364 return -EIO;
2365 }
2366
Ming Leia0b60d72017-12-18 20:22:11 +08002367 if (failed_bio_pages > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002368 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002369
2370 phy_offset >>= inode->i_sb->s_blocksize_bits;
2371 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2372 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002373 (int)phy_offset, failed_bio->bi_end_io,
2374 NULL);
David Sterbaebcc3262018-06-29 10:56:53 +02002375 bio->bi_opf = REQ_OP_READ | read_mode;
Miao Xie2fe63032014-09-12 18:43:59 +08002376
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002377 btrfs_debug(btrfs_sb(inode->i_sb),
2378 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2379 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002380
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002381 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002382 failrec->bio_flags, 0);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002383 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002384 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002385 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002386 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002387 }
2388
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002389 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002390}
2391
Chris Masond1310b22008-01-24 16:13:08 -05002392/* lots and lots of room for performance fixes in the end_bio funcs */
2393
David Sterbab5227c02015-12-03 13:08:59 +01002394void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002395{
2396 int uptodate = (err == 0);
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002397 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002398
Nikolay Borisovc6297322018-11-08 10:18:08 +02002399 btrfs_writepage_endio_finish_ordered(page, start, end, uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002400
Jeff Mahoney87826df2012-02-15 16:23:57 +01002401 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002402 ClearPageUptodate(page);
2403 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002404 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002405 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002406 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002407}
2408
Chris Masond1310b22008-01-24 16:13:08 -05002409/*
2410 * after a writepage IO is done, we need to:
2411 * clear the uptodate bits on error
2412 * clear the writeback bits in the extent tree for this IO
2413 * end_page_writeback if the page has no more pending IO
2414 *
2415 * Scheduling is not allowed, so the extent state tree is expected
2416 * to have one and only one object corresponding to this IO.
2417 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002418static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002419{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002420 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002421 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002422 u64 start;
2423 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002424 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002425
David Sterbac09abff2017-07-13 18:10:07 +02002426 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002427 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002428 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002429 struct inode *inode = page->mapping->host;
2430 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002431
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002432 /* We always issue full-page reads, but if some block
2433 * in a page fails to read, blk_update_request() will
2434 * advance bv_offset and adjust bv_len to compensate.
2435 * Print a warning for nonzero offsets, and an error
2436 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002437 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2438 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002439 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002440 "partial page write in btrfs with offset %u and length %u",
2441 bvec->bv_offset, bvec->bv_len);
2442 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002443 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002444 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002445 bvec->bv_offset, bvec->bv_len);
2446 }
Chris Masond1310b22008-01-24 16:13:08 -05002447
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002448 start = page_offset(page);
2449 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002450
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002451 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002452 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002453 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002454
Chris Masond1310b22008-01-24 16:13:08 -05002455 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002456}
2457
Miao Xie883d0de2013-07-25 19:22:35 +08002458static void
2459endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2460 int uptodate)
2461{
2462 struct extent_state *cached = NULL;
2463 u64 end = start + len - 1;
2464
2465 if (uptodate && tree->track_uptodate)
2466 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
David Sterbad810a4b2017-12-07 18:52:54 +01002467 unlock_extent_cached_atomic(tree, start, end, &cached);
Miao Xie883d0de2013-07-25 19:22:35 +08002468}
2469
Chris Masond1310b22008-01-24 16:13:08 -05002470/*
2471 * after a readpage IO is done, we need to:
2472 * clear the uptodate bits on error
2473 * set the uptodate bits if things worked
2474 * set the page up to date if all extents in the tree are uptodate
2475 * clear the lock bit in the extent tree
2476 * unlock the page if there are no other extents locked for it
2477 *
2478 * Scheduling is not allowed, so the extent state tree is expected
2479 * to have one and only one object corresponding to this IO.
2480 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002481static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002482{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002483 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002484 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002485 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002486 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002487 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002488 u64 start;
2489 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002490 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002491 u64 extent_start = 0;
2492 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002493 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002494 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002495 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002496
David Sterbac09abff2017-07-13 18:10:07 +02002497 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002498 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002499 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002500 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002501 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002502 bool data_inode = btrfs_ino(BTRFS_I(inode))
2503 != BTRFS_BTREE_INODE_OBJECTID;
Arne Jansen507903b2011-04-06 10:02:20 +00002504
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002505 btrfs_debug(fs_info,
2506 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002507 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002508 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002509 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002510 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002511
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002512 /* We always issue full-page reads, but if some block
2513 * in a page fails to read, blk_update_request() will
2514 * advance bv_offset and adjust bv_len to compensate.
2515 * Print a warning for nonzero offsets, and an error
2516 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002517 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2518 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002519 btrfs_err(fs_info,
2520 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002521 bvec->bv_offset, bvec->bv_len);
2522 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002523 btrfs_info(fs_info,
2524 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002525 bvec->bv_offset, bvec->bv_len);
2526 }
Chris Masond1310b22008-01-24 16:13:08 -05002527
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002528 start = page_offset(page);
2529 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002530 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002531
Chris Mason9be33952013-05-17 18:30:14 -04002532 mirror = io_bio->mirror_num;
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002533 if (likely(uptodate)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002534 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2535 page, start, end,
2536 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002537 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002538 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002539 else
Josef Bacik7870d082017-05-05 11:57:15 -04002540 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2541 failure_tree, tree, start,
2542 page,
2543 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002544 }
Josef Bacikea466792012-03-26 21:57:36 -04002545
Miao Xief2a09da2013-07-25 19:22:33 +08002546 if (likely(uptodate))
2547 goto readpage_ok;
2548
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002549 if (data_inode) {
Liu Bo9d0d1c82017-03-24 15:04:50 -07002550
2551 /*
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002552 * The generic bio_readpage_error handles errors the
2553 * following way: If possible, new read requests are
2554 * created and submitted and will end up in
2555 * end_bio_extent_readpage as well (if we're lucky,
2556 * not in the !uptodate case). In that case it returns
2557 * 0 and we just go on with the next page in our bio.
2558 * If it can't handle the error it will return -EIO and
2559 * we remain responsible for that page.
Liu Bo9d0d1c82017-03-24 15:04:50 -07002560 */
Nikolay Borisov78e62c02018-11-22 10:17:49 +02002561 ret = bio_readpage_error(bio, offset, page, start, end,
2562 mirror);
2563 if (ret == 0) {
2564 uptodate = !bio->bi_status;
2565 offset += len;
2566 continue;
2567 }
2568 } else {
2569 struct extent_buffer *eb;
2570
2571 eb = (struct extent_buffer *)page->private;
2572 set_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
2573 eb->read_mirror = mirror;
2574 atomic_dec(&eb->io_pages);
2575 if (test_and_clear_bit(EXTENT_BUFFER_READAHEAD,
2576 &eb->bflags))
2577 btree_readahead_hook(eb, -EIO);
2578
2579 ret = -EIO;
Chris Mason7e383262008-04-09 16:28:12 -04002580 }
Miao Xief2a09da2013-07-25 19:22:33 +08002581readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002582 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002583 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002584 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002585 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002586
2587 /* Zero out the end if this page straddles i_size */
Johannes Thumshirn70730172018-12-05 15:23:03 +01002588 off = offset_in_page(i_size);
Liu Boa583c022014-08-19 23:32:22 +08002589 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002590 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002591 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002592 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002593 ClearPageUptodate(page);
2594 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002595 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002596 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002597 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002598
2599 if (unlikely(!uptodate)) {
2600 if (extent_len) {
2601 endio_readpage_release_extent(tree,
2602 extent_start,
2603 extent_len, 1);
2604 extent_start = 0;
2605 extent_len = 0;
2606 }
2607 endio_readpage_release_extent(tree, start,
2608 end - start + 1, 0);
2609 } else if (!extent_len) {
2610 extent_start = start;
2611 extent_len = end + 1 - start;
2612 } else if (extent_start + extent_len == start) {
2613 extent_len += end + 1 - start;
2614 } else {
2615 endio_readpage_release_extent(tree, extent_start,
2616 extent_len, uptodate);
2617 extent_start = start;
2618 extent_len = end + 1 - start;
2619 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002620 }
Chris Masond1310b22008-01-24 16:13:08 -05002621
Miao Xie883d0de2013-07-25 19:22:35 +08002622 if (extent_len)
2623 endio_readpage_release_extent(tree, extent_start, extent_len,
2624 uptodate);
David Sterbab3a0dd52018-11-22 17:16:49 +01002625 btrfs_io_bio_free_csum(io_bio);
Chris Masond1310b22008-01-24 16:13:08 -05002626 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002627}
2628
Chris Mason9be33952013-05-17 18:30:14 -04002629/*
David Sterba184f9992017-06-12 17:29:39 +02002630 * Initialize the members up to but not including 'bio'. Use after allocating a
2631 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2632 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002633 */
David Sterba184f9992017-06-12 17:29:39 +02002634static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002635{
David Sterba184f9992017-06-12 17:29:39 +02002636 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2637}
2638
2639/*
David Sterba6e707bc2017-06-02 17:26:26 +02002640 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2641 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2642 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002643 */
David Sterbac821e7f32017-06-02 18:35:36 +02002644struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002645{
2646 struct bio *bio;
2647
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002648 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002649 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002650 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002651 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002652 return bio;
2653}
2654
David Sterba8b6c1d52017-06-02 17:48:13 +02002655struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002656{
Miao Xie23ea8e52014-09-12 18:43:54 +08002657 struct btrfs_io_bio *btrfs_bio;
2658 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002659
David Sterba6e707bc2017-06-02 17:26:26 +02002660 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002661 new = bio_clone_fast(bio, GFP_NOFS, &btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002662 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002663 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002664 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002665 return new;
2666}
Chris Mason9be33952013-05-17 18:30:14 -04002667
David Sterbac5e4c3d2017-06-12 17:29:41 +02002668struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002669{
Miao Xiefacc8a222013-07-25 19:22:34 +08002670 struct bio *bio;
2671
David Sterba6e707bc2017-06-02 17:26:26 +02002672 /* Bio allocation backed by a bioset does not fail */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002673 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, &btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002674 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002675 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002676}
2677
Liu Boe4770942017-05-16 10:57:14 -07002678struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002679{
2680 struct bio *bio;
2681 struct btrfs_io_bio *btrfs_bio;
2682
2683 /* this will never fail when it's backed by a bioset */
Kent Overstreet8ac9f7c2018-05-20 18:25:56 -04002684 bio = bio_clone_fast(orig, GFP_NOFS, &btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002685 ASSERT(bio);
2686
2687 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002688 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002689
2690 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002691 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002692 return bio;
2693}
Chris Mason9be33952013-05-17 18:30:14 -04002694
Mike Christie1f7ad752016-06-05 14:31:51 -05002695static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2696 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002697{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002698 blk_status_t ret = 0;
Ming Leic45a8f22017-12-18 20:22:05 +08002699 struct bio_vec *bvec = bio_last_bvec_all(bio);
Chris Mason70dec802008-01-29 09:59:12 -05002700 struct page *page = bvec->bv_page;
2701 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002702 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002703
Miao Xie4eee4fa2012-12-21 09:17:45 +00002704 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002705
David Woodhouse902b22f2008-08-20 08:51:49 -04002706 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002707
David Sterba20c98012017-02-17 15:59:35 +01002708 if (tree->ops)
Josef Bacikc6100a42017-05-05 11:57:13 -04002709 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002710 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002711 else
Mike Christie4e49ea42016-06-05 14:31:41 -05002712 btrfsic_submit_bio(bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002713
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002714 return blk_status_to_errno(ret);
Chris Masond1310b22008-01-24 16:13:08 -05002715}
2716
David Sterba4b81ba42017-06-06 19:14:26 +02002717/*
2718 * @opf: bio REQ_OP_* and REQ_* flags as one value
David Sterbab8b3d622017-06-12 19:50:41 +02002719 * @tree: tree so we can call our merge_bio hook
2720 * @wbc: optional writeback control for io accounting
2721 * @page: page to add to the bio
2722 * @pg_offset: offset of the new bio or to check whether we are adding
2723 * a contiguous page to the previous one
2724 * @size: portion of page that we want to write
2725 * @offset: starting offset in the page
2726 * @bdev: attach newly created bios to this bdev
David Sterba5c2b1fd2017-06-06 19:22:55 +02002727 * @bio_ret: must be valid pointer, newly allocated bio will be stored there
David Sterbab8b3d622017-06-12 19:50:41 +02002728 * @end_io_func: end_io callback for new bio
2729 * @mirror_num: desired mirror to read/write
2730 * @prev_bio_flags: flags of previous bio to see if we can merge the current one
2731 * @bio_flags: flags of the current bio to see if we can merge them
David Sterba4b81ba42017-06-06 19:14:26 +02002732 */
2733static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002734 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002735 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002736 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002737 struct block_device *bdev,
2738 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002739 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002740 int mirror_num,
2741 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002742 unsigned long bio_flags,
2743 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002744{
2745 int ret = 0;
2746 struct bio *bio;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002747 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002748 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002749
David Sterba5c2b1fd2017-06-06 19:22:55 +02002750 ASSERT(bio_ret);
2751
2752 if (*bio_ret) {
David Sterba0c8508a2017-06-12 20:00:43 +02002753 bool contig;
2754 bool can_merge = true;
2755
Chris Masond1310b22008-01-24 16:13:08 -05002756 bio = *bio_ret;
David Sterba0c8508a2017-06-12 20:00:43 +02002757 if (prev_bio_flags & EXTENT_BIO_COMPRESSED)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002758 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002759 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002760 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002761
Nikolay Borisovda12fe52018-11-27 20:57:58 +02002762 ASSERT(tree->ops);
2763 if (btrfs_bio_fits_in_stripe(page, page_size, bio, bio_flags))
David Sterba0c8508a2017-06-12 20:00:43 +02002764 can_merge = false;
2765
2766 if (prev_bio_flags != bio_flags || !contig || !can_merge ||
Filipe Manana005efed2015-09-14 09:09:31 +01002767 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002768 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002769 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002770 if (ret < 0) {
2771 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002772 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002773 }
Chris Masond1310b22008-01-24 16:13:08 -05002774 bio = NULL;
2775 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002776 if (wbc)
2777 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002778 return 0;
2779 }
2780 }
Chris Masonc8b97812008-10-29 14:49:59 -04002781
David Sterba6273b7f2017-10-04 17:30:11 +02002782 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002783 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002784 bio->bi_end_io = end_io_func;
2785 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002786 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002787 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002788 if (wbc) {
2789 wbc_init_bio(wbc, bio);
2790 wbc_account_io(wbc, page, page_size);
2791 }
Chris Mason70dec802008-01-29 09:59:12 -05002792
David Sterba5c2b1fd2017-06-06 19:22:55 +02002793 *bio_ret = bio;
Chris Masond1310b22008-01-24 16:13:08 -05002794
2795 return ret;
2796}
2797
Eric Sandeen48a3b632013-04-25 20:41:01 +00002798static void attach_extent_buffer_page(struct extent_buffer *eb,
2799 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002800{
2801 if (!PagePrivate(page)) {
2802 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002803 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002804 set_page_private(page, (unsigned long)eb);
2805 } else {
2806 WARN_ON(page->private != (unsigned long)eb);
2807 }
2808}
2809
Chris Masond1310b22008-01-24 16:13:08 -05002810void set_page_extent_mapped(struct page *page)
2811{
2812 if (!PagePrivate(page)) {
2813 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002814 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002815 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002816 }
2817}
2818
Miao Xie125bac012013-07-25 19:22:37 +08002819static struct extent_map *
2820__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2821 u64 start, u64 len, get_extent_t *get_extent,
2822 struct extent_map **em_cached)
2823{
2824 struct extent_map *em;
2825
2826 if (em_cached && *em_cached) {
2827 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002828 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002829 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002830 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002831 return em;
2832 }
2833
2834 free_extent_map(em);
2835 *em_cached = NULL;
2836 }
2837
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002838 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002839 if (em_cached && !IS_ERR_OR_NULL(em)) {
2840 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002841 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002842 *em_cached = em;
2843 }
2844 return em;
2845}
Chris Masond1310b22008-01-24 16:13:08 -05002846/*
2847 * basic readpage implementation. Locked extent state structs are inserted
2848 * into the tree that are removed when the IO is done (by the end_io
2849 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002850 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002851 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002852 */
Miao Xie99740902013-07-25 19:22:36 +08002853static int __do_readpage(struct extent_io_tree *tree,
2854 struct page *page,
2855 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002856 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002857 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002858 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002859 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002860{
2861 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002862 u64 start = page_offset(page);
David Sterba8eec8292017-06-06 19:50:13 +02002863 const u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002864 u64 cur = start;
2865 u64 extent_offset;
2866 u64 last_byte = i_size_read(inode);
2867 u64 block_start;
2868 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05002869 struct extent_map *em;
2870 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002871 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002872 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002873 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002874 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002875 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002876 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002877 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002878
2879 set_page_extent_mapped(page);
2880
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002881 if (!PageUptodate(page)) {
2882 if (cleancache_get_page(page) == 0) {
2883 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002884 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002885 goto out;
2886 }
2887 }
2888
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002889 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002890 char *userpage;
Johannes Thumshirn70730172018-12-05 15:23:03 +01002891 size_t zero_offset = offset_in_page(last_byte);
Chris Masonc8b97812008-10-29 14:49:59 -04002892
2893 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002894 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002895 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002896 memset(userpage + zero_offset, 0, iosize);
2897 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002898 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002899 }
2900 }
Chris Masond1310b22008-01-24 16:13:08 -05002901 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002902 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02002903 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002904
Chris Masond1310b22008-01-24 16:13:08 -05002905 if (cur >= last_byte) {
2906 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002907 struct extent_state *cached = NULL;
2908
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002909 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002910 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002911 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002912 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002913 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002914 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002915 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002916 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01002917 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05002918 break;
2919 }
Miao Xie125bac012013-07-25 19:22:37 +08002920 em = __get_extent_map(inode, page, pg_offset, cur,
2921 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002922 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002923 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00002924 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002925 break;
2926 }
Chris Masond1310b22008-01-24 16:13:08 -05002927 extent_offset = cur - em->start;
2928 BUG_ON(extent_map_end(em) <= cur);
2929 BUG_ON(end < cur);
2930
Li Zefan261507a02010-12-17 14:21:50 +08002931 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002932 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002933 extent_set_compress_type(&this_bio_flag,
2934 em->compress_type);
2935 }
Chris Masonc8b97812008-10-29 14:49:59 -04002936
Chris Masond1310b22008-01-24 16:13:08 -05002937 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2938 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002939 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002940 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2941 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02002942 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002943 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02002944 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04002945 disk_io_size = iosize;
2946 }
Chris Masond1310b22008-01-24 16:13:08 -05002947 bdev = em->bdev;
2948 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002949 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2950 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002951
2952 /*
2953 * If we have a file range that points to a compressed extent
2954 * and it's followed by a consecutive file range that points to
2955 * to the same compressed extent (possibly with a different
2956 * offset and/or length, so it either points to the whole extent
2957 * or only part of it), we must make sure we do not submit a
2958 * single bio to populate the pages for the 2 ranges because
2959 * this makes the compressed extent read zero out the pages
2960 * belonging to the 2nd range. Imagine the following scenario:
2961 *
2962 * File layout
2963 * [0 - 8K] [8K - 24K]
2964 * | |
2965 * | |
2966 * points to extent X, points to extent X,
2967 * offset 4K, length of 8K offset 0, length 16K
2968 *
2969 * [extent X, compressed length = 4K uncompressed length = 16K]
2970 *
2971 * If the bio to read the compressed extent covers both ranges,
2972 * it will decompress extent X into the pages belonging to the
2973 * first range and then it will stop, zeroing out the remaining
2974 * pages that belong to the other range that points to extent X.
2975 * So here we make sure we submit 2 bios, one for the first
2976 * range and another one for the third range. Both will target
2977 * the same physical extent from disk, but we can't currently
2978 * make the compressed bio endio callback populate the pages
2979 * for both ranges because each compressed bio is tightly
2980 * coupled with a single extent map, and each range can have
2981 * an extent map with a different offset value relative to the
2982 * uncompressed data of our extent and different lengths. This
2983 * is a corner case so we prioritize correctness over
2984 * non-optimal behavior (submitting 2 bios for the same extent).
2985 */
2986 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
2987 prev_em_start && *prev_em_start != (u64)-1 &&
2988 *prev_em_start != em->orig_start)
2989 force_bio_submit = true;
2990
2991 if (prev_em_start)
2992 *prev_em_start = em->orig_start;
2993
Chris Masond1310b22008-01-24 16:13:08 -05002994 free_extent_map(em);
2995 em = NULL;
2996
2997 /* we've found a hole, just zero and go on */
2998 if (block_start == EXTENT_MAP_HOLE) {
2999 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003000 struct extent_state *cached = NULL;
3001
Cong Wang7ac687d2011-11-25 23:14:28 +08003002 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003003 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003004 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003005 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003006
3007 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003008 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003009 unlock_extent_cached(tree, cur,
David Sterbae43bbe52017-12-12 21:43:52 +01003010 cur + iosize - 1, &cached);
Chris Masond1310b22008-01-24 16:13:08 -05003011 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003012 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003013 continue;
3014 }
3015 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003016 if (test_range_bit(tree, cur, cur_end,
3017 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003018 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003019 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003020 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003021 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003022 continue;
3023 }
Chris Mason70dec802008-01-29 09:59:12 -05003024 /* we have an inline extent but it didn't get marked up
3025 * to date. Error out
3026 */
3027 if (block_start == EXTENT_MAP_INLINE) {
3028 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003029 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003030 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003031 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003032 continue;
3033 }
Chris Masond1310b22008-01-24 16:13:08 -05003034
David Sterba4b81ba42017-06-06 19:14:26 +02003035 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003036 page, offset, disk_io_size,
3037 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003038 end_bio_extent_readpage, mirror_num,
3039 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003040 this_bio_flag,
3041 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003042 if (!ret) {
3043 nr++;
3044 *bio_flags = this_bio_flag;
3045 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003046 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003047 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003048 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003049 }
Chris Masond1310b22008-01-24 16:13:08 -05003050 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003051 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003052 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003053out:
Chris Masond1310b22008-01-24 16:13:08 -05003054 if (!nr) {
3055 if (!PageError(page))
3056 SetPageUptodate(page);
3057 unlock_page(page);
3058 }
Liu Bobaf863b2016-07-11 10:39:07 -07003059 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003060}
3061
Miao Xie99740902013-07-25 19:22:36 +08003062static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3063 struct page *pages[], int nr_pages,
3064 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003065 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003066 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003067 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003068 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003069{
3070 struct inode *inode;
3071 struct btrfs_ordered_extent *ordered;
3072 int index;
3073
3074 inode = pages[0]->mapping->host;
3075 while (1) {
3076 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003077 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003078 end - start + 1);
3079 if (!ordered)
3080 break;
3081 unlock_extent(tree, start, end);
3082 btrfs_start_ordered_extent(inode, ordered, 1);
3083 btrfs_put_ordered_extent(ordered);
3084 }
3085
3086 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003087 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
Jens Axboe5e9d3982018-08-17 15:45:39 -07003088 bio, 0, bio_flags, REQ_RAHEAD, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003089 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003090 }
3091}
3092
3093static void __extent_readpages(struct extent_io_tree *tree,
3094 struct page *pages[],
David Sterbae4d17ef2017-06-23 04:09:57 +02003095 int nr_pages,
Miao Xie125bac012013-07-25 19:22:37 +08003096 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003097 struct bio **bio, unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003098 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003099{
Stefan Behrens35a36212013-08-14 18:12:25 +02003100 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003101 u64 end = 0;
3102 u64 page_start;
3103 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003104 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003105
3106 for (index = 0; index < nr_pages; index++) {
3107 page_start = page_offset(pages[index]);
3108 if (!end) {
3109 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003110 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003111 first_index = index;
3112 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003113 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003114 } else {
3115 __do_contiguous_readpages(tree, &pages[first_index],
3116 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003117 end, em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003118 bio, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003119 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003120 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003121 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003122 first_index = index;
3123 }
3124 }
3125
3126 if (end)
3127 __do_contiguous_readpages(tree, &pages[first_index],
3128 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003129 end, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003130 bio_flags, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003131}
3132
3133static int __extent_read_full_page(struct extent_io_tree *tree,
3134 struct page *page,
3135 get_extent_t *get_extent,
3136 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003137 unsigned long *bio_flags,
3138 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003139{
3140 struct inode *inode = page->mapping->host;
3141 struct btrfs_ordered_extent *ordered;
3142 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003143 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003144 int ret;
3145
3146 while (1) {
3147 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003148 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003149 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003150 if (!ordered)
3151 break;
3152 unlock_extent(tree, start, end);
3153 btrfs_start_ordered_extent(inode, ordered, 1);
3154 btrfs_put_ordered_extent(ordered);
3155 }
3156
Miao Xie125bac012013-07-25 19:22:37 +08003157 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003158 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003159 return ret;
3160}
3161
Chris Masond1310b22008-01-24 16:13:08 -05003162int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003163 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003164{
3165 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003166 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003167 int ret;
3168
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003169 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003170 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003171 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003172 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003173 return ret;
3174}
Chris Masond1310b22008-01-24 16:13:08 -05003175
David Sterba3d4b9492017-02-10 19:33:41 +01003176static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003177 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003178{
3179 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003180}
3181
Chris Masond1310b22008-01-24 16:13:08 -05003182/*
Chris Mason40f76582014-05-21 13:35:51 -07003183 * helper for __extent_writepage, doing all of the delayed allocation setup.
3184 *
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003185 * This returns 1 if btrfs_run_delalloc_range function did all the work required
Chris Mason40f76582014-05-21 13:35:51 -07003186 * to write the page (copy into inline extent). In this case the IO has
3187 * been started and the page is already unlocked.
3188 *
3189 * This returns 0 if all went well (page still locked)
3190 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003191 */
Chris Mason40f76582014-05-21 13:35:51 -07003192static noinline_for_stack int writepage_delalloc(struct inode *inode,
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003193 struct page *page, struct writeback_control *wbc,
3194 u64 delalloc_start, unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003195{
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003196 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003197 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Lu Fengqi3522e902018-11-29 11:33:38 +08003198 bool found;
Chris Mason40f76582014-05-21 13:35:51 -07003199 u64 delalloc_to_write = 0;
3200 u64 delalloc_end = 0;
3201 int ret;
3202 int page_started = 0;
3203
Chris Mason40f76582014-05-21 13:35:51 -07003204
3205 while (delalloc_end < page_end) {
Lu Fengqi3522e902018-11-29 11:33:38 +08003206 found = find_lock_delalloc_range(inode, tree,
Chris Mason40f76582014-05-21 13:35:51 -07003207 page,
3208 &delalloc_start,
Nikolay Borisov917aace2018-10-26 14:43:20 +03003209 &delalloc_end);
Lu Fengqi3522e902018-11-29 11:33:38 +08003210 if (!found) {
Chris Mason40f76582014-05-21 13:35:51 -07003211 delalloc_start = delalloc_end + 1;
3212 continue;
3213 }
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003214 ret = btrfs_run_delalloc_range(inode, page, delalloc_start,
3215 delalloc_end, &page_started, nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003216 /* File system has been set read-only */
3217 if (ret) {
3218 SetPageError(page);
Nikolay Borisov5eaad972018-11-01 14:09:46 +02003219 /*
3220 * btrfs_run_delalloc_range should return < 0 for error
3221 * but just in case, we use > 0 here meaning the IO is
3222 * started, so we don't want to return > 0 unless
3223 * things are going well.
Chris Mason40f76582014-05-21 13:35:51 -07003224 */
3225 ret = ret < 0 ? ret : -EIO;
3226 goto done;
3227 }
3228 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003229 * delalloc_end is already one less than the total length, so
3230 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003231 */
3232 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003233 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003234 delalloc_start = delalloc_end + 1;
3235 }
3236 if (wbc->nr_to_write < delalloc_to_write) {
3237 int thresh = 8192;
3238
3239 if (delalloc_to_write < thresh * 2)
3240 thresh = delalloc_to_write;
3241 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3242 thresh);
3243 }
3244
3245 /* did the fill delalloc function already unlock and start
3246 * the IO?
3247 */
3248 if (page_started) {
3249 /*
3250 * we've unlocked the page, so we can't update
3251 * the mapping's writeback index, just update
3252 * nr_to_write.
3253 */
3254 wbc->nr_to_write -= *nr_written;
3255 return 1;
3256 }
3257
3258 ret = 0;
3259
3260done:
3261 return ret;
3262}
3263
3264/*
3265 * helper for __extent_writepage. This calls the writepage start hooks,
3266 * and does the loop to map the page into extents and bios.
3267 *
3268 * We return 1 if the IO is started and the page is unlocked,
3269 * 0 if all went well (page still locked)
3270 * < 0 if there were errors (page still locked)
3271 */
3272static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3273 struct page *page,
3274 struct writeback_control *wbc,
3275 struct extent_page_data *epd,
3276 loff_t i_size,
3277 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003278 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003279{
Chris Masond1310b22008-01-24 16:13:08 -05003280 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003281 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003282 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003283 u64 end;
3284 u64 cur = start;
3285 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003286 u64 block_start;
3287 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003288 struct extent_map *em;
3289 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003290 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003291 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003292 int ret = 0;
3293 int nr = 0;
3294 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003295
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003296 ret = btrfs_writepage_cow_fixup(page, start, page_end);
3297 if (ret) {
3298 /* Fixup worker will requeue */
3299 if (ret == -EBUSY)
3300 wbc->pages_skipped++;
3301 else
3302 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003303
Nikolay Borisovd75855b2018-11-01 14:09:47 +02003304 update_nr_written(wbc, nr_written);
3305 unlock_page(page);
3306 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003307 }
3308
Chris Mason11c83492009-04-20 15:50:09 -04003309 /*
3310 * we don't want to touch the inode after unlocking the page,
3311 * so we update the mapping writeback index now
3312 */
David Sterba3d4b9492017-02-10 19:33:41 +01003313 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003314
Chris Masond1310b22008-01-24 16:13:08 -05003315 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003316 if (i_size <= start) {
Nikolay Borisovc6297322018-11-08 10:18:08 +02003317 btrfs_writepage_endio_finish_ordered(page, start, page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003318 goto done;
3319 }
3320
Chris Masond1310b22008-01-24 16:13:08 -05003321 blocksize = inode->i_sb->s_blocksize;
3322
3323 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003324 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003325 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003326
Chris Mason40f76582014-05-21 13:35:51 -07003327 if (cur >= i_size) {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003328 btrfs_writepage_endio_finish_ordered(page, cur,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003329 page_end, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003330 break;
3331 }
David Sterba3c98c622017-06-23 04:01:08 +02003332 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003333 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003334 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003335 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003336 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003337 break;
3338 }
3339
3340 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003341 em_end = extent_map_end(em);
3342 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003343 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003344 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003345 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003346 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003347 bdev = em->bdev;
3348 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003349 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003350 free_extent_map(em);
3351 em = NULL;
3352
Chris Masonc8b97812008-10-29 14:49:59 -04003353 /*
3354 * compressed and inline extents are written through other
3355 * paths in the FS
3356 */
3357 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003358 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003359 /*
3360 * end_io notification does not happen here for
3361 * compressed extents
3362 */
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02003363 if (!compressed)
3364 btrfs_writepage_endio_finish_ordered(page, cur,
3365 cur + iosize - 1,
Nikolay Borisovc6297322018-11-08 10:18:08 +02003366 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003367 else if (compressed) {
3368 /* we don't want to end_page_writeback on
3369 * a compressed extent. this happens
3370 * elsewhere
3371 */
3372 nr++;
3373 }
3374
3375 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003376 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003377 continue;
3378 }
Chris Masonc8b97812008-10-29 14:49:59 -04003379
David Sterba5cdc84b2018-07-18 20:32:52 +02003380 btrfs_set_range_writeback(tree, cur, cur + iosize - 1);
David Sterba58409ed2016-05-04 11:46:10 +02003381 if (!PageWriteback(page)) {
3382 btrfs_err(BTRFS_I(inode)->root->fs_info,
3383 "page %lu not writeback, cur %llu end %llu",
3384 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003385 }
David Sterba58409ed2016-05-04 11:46:10 +02003386
David Sterba4b81ba42017-06-06 19:14:26 +02003387 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003388 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003389 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003390 end_bio_extent_writepage,
3391 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003392 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003393 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003394 if (PageWriteback(page))
3395 end_page_writeback(page);
3396 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003397
Chris Masond1310b22008-01-24 16:13:08 -05003398 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003399 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003400 nr++;
3401 }
3402done:
Chris Mason40f76582014-05-21 13:35:51 -07003403 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003404 return ret;
3405}
3406
3407/*
3408 * the writepage semantics are similar to regular writepage. extent
3409 * records are inserted to lock ranges in the tree, and as dirty areas
3410 * are found, they are marked writeback. Then the lock bits are removed
3411 * and the end_io handler clears the writeback ranges
3412 */
3413static int __extent_writepage(struct page *page, struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003414 struct extent_page_data *epd)
Chris Mason40f76582014-05-21 13:35:51 -07003415{
3416 struct inode *inode = page->mapping->host;
Chris Mason40f76582014-05-21 13:35:51 -07003417 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003418 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003419 int ret;
3420 int nr = 0;
3421 size_t pg_offset = 0;
3422 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003423 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003424 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003425 unsigned long nr_written = 0;
3426
Liu Boff40adf2017-08-24 18:19:48 -06003427 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003428
3429 trace___extent_writepage(page, inode, wbc);
3430
3431 WARN_ON(!PageLocked(page));
3432
3433 ClearPageError(page);
3434
Johannes Thumshirn70730172018-12-05 15:23:03 +01003435 pg_offset = offset_in_page(i_size);
Chris Mason40f76582014-05-21 13:35:51 -07003436 if (page->index > end_index ||
3437 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003438 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003439 unlock_page(page);
3440 return 0;
3441 }
3442
3443 if (page->index == end_index) {
3444 char *userpage;
3445
3446 userpage = kmap_atomic(page);
3447 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003448 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003449 kunmap_atomic(userpage);
3450 flush_dcache_page(page);
3451 }
3452
3453 pg_offset = 0;
3454
3455 set_page_extent_mapped(page);
3456
Nikolay Borisov7789a552018-11-08 10:18:06 +02003457 if (!epd->extent_locked) {
Nikolay Borisov8cc02372018-11-08 10:18:07 +02003458 ret = writepage_delalloc(inode, page, wbc, start, &nr_written);
Nikolay Borisov7789a552018-11-08 10:18:06 +02003459 if (ret == 1)
3460 goto done_unlocked;
3461 if (ret)
3462 goto done;
3463 }
Chris Mason40f76582014-05-21 13:35:51 -07003464
3465 ret = __extent_writepage_io(inode, page, wbc, epd,
3466 i_size, nr_written, write_flags, &nr);
3467 if (ret == 1)
3468 goto done_unlocked;
3469
3470done:
Chris Masond1310b22008-01-24 16:13:08 -05003471 if (nr == 0) {
3472 /* make sure the mapping tag for page dirty gets cleared */
3473 set_page_writeback(page);
3474 end_page_writeback(page);
3475 }
Filipe Manana61391d52014-05-09 17:17:40 +01003476 if (PageError(page)) {
3477 ret = ret < 0 ? ret : -EIO;
3478 end_extent_writepage(page, ret, start, page_end);
3479 }
Chris Masond1310b22008-01-24 16:13:08 -05003480 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003481 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003482
Chris Mason11c83492009-04-20 15:50:09 -04003483done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003484 return 0;
3485}
3486
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003487void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003488{
NeilBrown74316202014-07-07 15:16:04 +10003489 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3490 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003491}
3492
Chris Mason0e378df2014-05-19 20:55:27 -07003493static noinline_for_stack int
3494lock_extent_buffer_for_io(struct extent_buffer *eb,
3495 struct btrfs_fs_info *fs_info,
3496 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003497{
David Sterbacc5e31a2018-03-01 18:20:27 +01003498 int i, num_pages;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003499 int flush = 0;
3500 int ret = 0;
3501
3502 if (!btrfs_try_tree_write_lock(eb)) {
3503 flush = 1;
3504 flush_write_bio(epd);
3505 btrfs_tree_lock(eb);
3506 }
3507
3508 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3509 btrfs_tree_unlock(eb);
3510 if (!epd->sync_io)
3511 return 0;
3512 if (!flush) {
3513 flush_write_bio(epd);
3514 flush = 1;
3515 }
Chris Masona098d8e82012-03-21 12:09:56 -04003516 while (1) {
3517 wait_on_extent_buffer_writeback(eb);
3518 btrfs_tree_lock(eb);
3519 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3520 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003521 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003522 }
3523 }
3524
Josef Bacik51561ff2012-07-20 16:25:24 -04003525 /*
3526 * We need to do this to prevent races in people who check if the eb is
3527 * under IO since we can end up having no IO bits set for a short period
3528 * of time.
3529 */
3530 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003531 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3532 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003533 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003534 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003535 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3536 -eb->len,
3537 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003538 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003539 } else {
3540 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003541 }
3542
3543 btrfs_tree_unlock(eb);
3544
3545 if (!ret)
3546 return ret;
3547
David Sterba65ad0102018-06-29 10:56:49 +02003548 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003549 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003550 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003551
3552 if (!trylock_page(p)) {
3553 if (!flush) {
3554 flush_write_bio(epd);
3555 flush = 1;
3556 }
3557 lock_page(p);
3558 }
3559 }
3560
3561 return ret;
3562}
3563
3564static void end_extent_buffer_writeback(struct extent_buffer *eb)
3565{
3566 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003567 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003568 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3569}
3570
Filipe Manana656f30d2014-09-26 12:25:56 +01003571static void set_btree_ioerr(struct page *page)
3572{
3573 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003574
3575 SetPageError(page);
3576 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3577 return;
3578
3579 /*
3580 * If writeback for a btree extent that doesn't belong to a log tree
3581 * failed, increment the counter transaction->eb_write_errors.
3582 * We do this because while the transaction is running and before it's
3583 * committing (when we call filemap_fdata[write|wait]_range against
3584 * the btree inode), we might have
3585 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3586 * returns an error or an error happens during writeback, when we're
3587 * committing the transaction we wouldn't know about it, since the pages
3588 * can be no longer dirty nor marked anymore for writeback (if a
3589 * subsequent modification to the extent buffer didn't happen before the
3590 * transaction commit), which makes filemap_fdata[write|wait]_range not
3591 * able to find the pages tagged with SetPageError at transaction
3592 * commit time. So if this happens we must abort the transaction,
3593 * otherwise we commit a super block with btree roots that point to
3594 * btree nodes/leafs whose content on disk is invalid - either garbage
3595 * or the content of some node/leaf from a past generation that got
3596 * cowed or deleted and is no longer valid.
3597 *
3598 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3599 * not be enough - we need to distinguish between log tree extents vs
3600 * non-log tree extents, and the next filemap_fdatawait_range() call
3601 * will catch and clear such errors in the mapping - and that call might
3602 * be from a log sync and not from a transaction commit. Also, checking
3603 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3604 * not done and would not be reliable - the eb might have been released
3605 * from memory and reading it back again means that flag would not be
3606 * set (since it's a runtime flag, not persisted on disk).
3607 *
3608 * Using the flags below in the btree inode also makes us achieve the
3609 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3610 * writeback for all dirty pages and before filemap_fdatawait_range()
3611 * is called, the writeback for all dirty pages had already finished
3612 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3613 * filemap_fdatawait_range() would return success, as it could not know
3614 * that writeback errors happened (the pages were no longer tagged for
3615 * writeback).
3616 */
3617 switch (eb->log_index) {
3618 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003619 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003620 break;
3621 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003622 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003623 break;
3624 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003625 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003626 break;
3627 default:
3628 BUG(); /* unexpected, logic error */
3629 }
3630}
3631
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003632static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003633{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003634 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003635 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003636 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003637
David Sterbac09abff2017-07-13 18:10:07 +02003638 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08003639 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003640 struct page *page = bvec->bv_page;
3641
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003642 eb = (struct extent_buffer *)page->private;
3643 BUG_ON(!eb);
3644 done = atomic_dec_and_test(&eb->io_pages);
3645
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003646 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003647 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003648 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003649 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003650 }
3651
3652 end_page_writeback(page);
3653
3654 if (!done)
3655 continue;
3656
3657 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003658 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003659
3660 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003661}
3662
Chris Mason0e378df2014-05-19 20:55:27 -07003663static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003664 struct btrfs_fs_info *fs_info,
3665 struct writeback_control *wbc,
3666 struct extent_page_data *epd)
3667{
3668 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003669 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003670 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003671 u32 nritems;
David Sterbacc5e31a2018-03-01 18:20:27 +01003672 int i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003673 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003674 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003675 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003676
Filipe Manana656f30d2014-09-26 12:25:56 +01003677 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02003678 num_pages = num_extent_pages(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003679 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003680
Liu Bo851cd172016-09-23 13:44:44 -07003681 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3682 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003683 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003684 end = btrfs_node_key_ptr_offset(nritems);
3685
David Sterbab159fa22016-11-08 18:09:03 +01003686 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003687 } else {
3688 /*
3689 * leaf:
3690 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3691 */
3692 start = btrfs_item_nr_offset(nritems);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003693 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003694 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003695 }
3696
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003697 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003698 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003699
3700 clear_page_dirty_for_io(p);
3701 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003702 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003703 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003704 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003705 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003706 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003707 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003708 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003709 if (PageWriteback(p))
3710 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003711 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3712 end_extent_buffer_writeback(eb);
3713 ret = -EIO;
3714 break;
3715 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003716 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003717 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003718 unlock_page(p);
3719 }
3720
3721 if (unlikely(ret)) {
3722 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003723 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003724 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003725 unlock_page(p);
3726 }
3727 }
3728
3729 return ret;
3730}
3731
3732int btree_write_cache_pages(struct address_space *mapping,
3733 struct writeback_control *wbc)
3734{
3735 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3736 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3737 struct extent_buffer *eb, *prev_eb = NULL;
3738 struct extent_page_data epd = {
3739 .bio = NULL,
3740 .tree = tree,
3741 .extent_locked = 0,
3742 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3743 };
3744 int ret = 0;
3745 int done = 0;
3746 int nr_to_write_done = 0;
3747 struct pagevec pvec;
3748 int nr_pages;
3749 pgoff_t index;
3750 pgoff_t end; /* Inclusive */
3751 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003752 xa_mark_t tag;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003753
Mel Gorman86679822017-11-15 17:37:52 -08003754 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003755 if (wbc->range_cyclic) {
3756 index = mapping->writeback_index; /* Start from prev offset */
3757 end = -1;
3758 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003759 index = wbc->range_start >> PAGE_SHIFT;
3760 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003761 scanned = 1;
3762 }
3763 if (wbc->sync_mode == WB_SYNC_ALL)
3764 tag = PAGECACHE_TAG_TOWRITE;
3765 else
3766 tag = PAGECACHE_TAG_DIRTY;
3767retry:
3768 if (wbc->sync_mode == WB_SYNC_ALL)
3769 tag_pages_for_writeback(mapping, index, end);
3770 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003771 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003772 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003773 unsigned i;
3774
3775 scanned = 1;
3776 for (i = 0; i < nr_pages; i++) {
3777 struct page *page = pvec.pages[i];
3778
3779 if (!PagePrivate(page))
3780 continue;
3781
Josef Bacikb5bae262012-09-14 13:43:01 -04003782 spin_lock(&mapping->private_lock);
3783 if (!PagePrivate(page)) {
3784 spin_unlock(&mapping->private_lock);
3785 continue;
3786 }
3787
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003788 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003789
3790 /*
3791 * Shouldn't happen and normally this would be a BUG_ON
3792 * but no sense in crashing the users box for something
3793 * we can survive anyway.
3794 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303795 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003796 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003797 continue;
3798 }
3799
Josef Bacikb5bae262012-09-14 13:43:01 -04003800 if (eb == prev_eb) {
3801 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003802 continue;
3803 }
3804
Josef Bacikb5bae262012-09-14 13:43:01 -04003805 ret = atomic_inc_not_zero(&eb->refs);
3806 spin_unlock(&mapping->private_lock);
3807 if (!ret)
3808 continue;
3809
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003810 prev_eb = eb;
3811 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3812 if (!ret) {
3813 free_extent_buffer(eb);
3814 continue;
3815 }
3816
3817 ret = write_one_eb(eb, fs_info, wbc, &epd);
3818 if (ret) {
3819 done = 1;
3820 free_extent_buffer(eb);
3821 break;
3822 }
3823 free_extent_buffer(eb);
3824
3825 /*
3826 * the filesystem may choose to bump up nr_to_write.
3827 * We have to make sure to honor the new nr_to_write
3828 * at any time
3829 */
3830 nr_to_write_done = wbc->nr_to_write <= 0;
3831 }
3832 pagevec_release(&pvec);
3833 cond_resched();
3834 }
3835 if (!scanned && !done) {
3836 /*
3837 * We hit the last page and there is more work to be done: wrap
3838 * back to the start of the file
3839 */
3840 scanned = 1;
3841 index = 0;
3842 goto retry;
3843 }
3844 flush_write_bio(&epd);
3845 return ret;
3846}
3847
Chris Masond1310b22008-01-24 16:13:08 -05003848/**
Chris Mason4bef0842008-09-08 11:18:08 -04003849 * 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 -05003850 * @mapping: address space structure to write
3851 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
David Sterba935db852017-06-23 04:30:28 +02003852 * @data: data passed to __extent_writepage function
Chris Masond1310b22008-01-24 16:13:08 -05003853 *
3854 * If a page is already under I/O, write_cache_pages() skips it, even
3855 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3856 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3857 * and msync() need to guarantee that all the data which was dirty at the time
3858 * the call was made get new I/O started against them. If wbc->sync_mode is
3859 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3860 * existing IO to complete.
3861 */
David Sterba4242b642017-02-10 19:38:24 +01003862static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003863 struct writeback_control *wbc,
David Sterbaaab6e9e2017-11-30 18:00:02 +01003864 struct extent_page_data *epd)
Chris Masond1310b22008-01-24 16:13:08 -05003865{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003866 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003867 int ret = 0;
3868 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003869 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003870 struct pagevec pvec;
3871 int nr_pages;
3872 pgoff_t index;
3873 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003874 pgoff_t done_index;
3875 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003876 int scanned = 0;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05003877 xa_mark_t tag;
Chris Masond1310b22008-01-24 16:13:08 -05003878
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003879 /*
3880 * We have to hold onto the inode so that ordered extents can do their
3881 * work when the IO finishes. The alternative to this is failing to add
3882 * an ordered extent if the igrab() fails there and that is a huge pain
3883 * to deal with, so instead just hold onto the inode throughout the
3884 * writepages operation. If it fails here we are freeing up the inode
3885 * anyway and we'd rather not waste our time writing out stuff that is
3886 * going to be truncated anyway.
3887 */
3888 if (!igrab(inode))
3889 return 0;
3890
Mel Gorman86679822017-11-15 17:37:52 -08003891 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003892 if (wbc->range_cyclic) {
3893 index = mapping->writeback_index; /* Start from prev offset */
3894 end = -1;
3895 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003896 index = wbc->range_start >> PAGE_SHIFT;
3897 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003898 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3899 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003900 scanned = 1;
3901 }
Ethan Lien3cd24c62018-11-01 14:49:03 +08003902
3903 /*
3904 * We do the tagged writepage as long as the snapshot flush bit is set
3905 * and we are the first one who do the filemap_flush() on this inode.
3906 *
3907 * The nr_to_write == LONG_MAX is needed to make sure other flushers do
3908 * not race in and drop the bit.
3909 */
3910 if (range_whole && wbc->nr_to_write == LONG_MAX &&
3911 test_and_clear_bit(BTRFS_INODE_SNAPSHOT_FLUSH,
3912 &BTRFS_I(inode)->runtime_flags))
3913 wbc->tagged_writepages = 1;
3914
3915 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00003916 tag = PAGECACHE_TAG_TOWRITE;
3917 else
3918 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003919retry:
Ethan Lien3cd24c62018-11-01 14:49:03 +08003920 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Josef Bacikf7aaa062011-07-15 21:26:38 +00003921 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003922 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003923 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08003924 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
3925 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05003926 unsigned i;
3927
3928 scanned = 1;
3929 for (i = 0; i < nr_pages; i++) {
3930 struct page *page = pvec.pages[i];
3931
Liu Boa91326672016-03-07 16:56:21 -08003932 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003933 /*
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07003934 * At this point we hold neither the i_pages lock nor
3935 * the page lock: the page may be truncated or
3936 * invalidated (changing page->mapping to NULL),
3937 * or even swizzled back from swapper_space to
3938 * tmpfs file mapping
Chris Masond1310b22008-01-24 16:13:08 -05003939 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003940 if (!trylock_page(page)) {
David Sterbaaab6e9e2017-11-30 18:00:02 +01003941 flush_write_bio(epd);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003942 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003943 }
Chris Masond1310b22008-01-24 16:13:08 -05003944
3945 if (unlikely(page->mapping != mapping)) {
3946 unlock_page(page);
3947 continue;
3948 }
3949
Chris Masond2c3f4f2008-11-19 12:44:22 -05003950 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003951 if (PageWriteback(page))
David Sterbaaab6e9e2017-11-30 18:00:02 +01003952 flush_write_bio(epd);
Chris Masond1310b22008-01-24 16:13:08 -05003953 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003954 }
Chris Masond1310b22008-01-24 16:13:08 -05003955
3956 if (PageWriteback(page) ||
3957 !clear_page_dirty_for_io(page)) {
3958 unlock_page(page);
3959 continue;
3960 }
3961
David Sterbaaab6e9e2017-11-30 18:00:02 +01003962 ret = __extent_writepage(page, wbc, epd);
Chris Masond1310b22008-01-24 16:13:08 -05003963
3964 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3965 unlock_page(page);
3966 ret = 0;
3967 }
Liu Boa91326672016-03-07 16:56:21 -08003968 if (ret < 0) {
3969 /*
3970 * done_index is set past this page,
3971 * so media errors will not choke
3972 * background writeout for the entire
3973 * file. This has consequences for
3974 * range_cyclic semantics (ie. it may
3975 * not be suitable for data integrity
3976 * writeout).
3977 */
3978 done_index = page->index + 1;
3979 done = 1;
3980 break;
3981 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003982
3983 /*
3984 * the filesystem may choose to bump up nr_to_write.
3985 * We have to make sure to honor the new nr_to_write
3986 * at any time
3987 */
3988 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003989 }
3990 pagevec_release(&pvec);
3991 cond_resched();
3992 }
Liu Bo894b36e2016-03-07 16:56:22 -08003993 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05003994 /*
3995 * We hit the last page and there is more work to be done: wrap
3996 * back to the start of the file
3997 */
3998 scanned = 1;
3999 index = 0;
4000 goto retry;
4001 }
Liu Boa91326672016-03-07 16:56:21 -08004002
4003 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4004 mapping->writeback_index = done_index;
4005
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004006 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004007 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004008}
Chris Masond1310b22008-01-24 16:13:08 -05004009
David Sterbaaab6e9e2017-11-30 18:00:02 +01004010static void flush_write_bio(struct extent_page_data *epd)
Chris Masonffbd5172009-04-20 15:50:09 -04004011{
4012 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004013 int ret;
4014
Liu Bo18fdc672017-09-13 12:18:22 -06004015 ret = submit_one_bio(epd->bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004016 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004017 epd->bio = NULL;
4018 }
4019}
4020
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004021int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004022{
4023 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004024 struct extent_page_data epd = {
4025 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004026 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004027 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004028 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004029 };
Chris Masond1310b22008-01-24 16:13:08 -05004030
Chris Masond1310b22008-01-24 16:13:08 -05004031 ret = __extent_writepage(page, wbc, &epd);
4032
David Sterbae2932ee2017-06-23 04:16:17 +02004033 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004034 return ret;
4035}
Chris Masond1310b22008-01-24 16:13:08 -05004036
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004037int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
Chris Mason771ed682008-11-06 22:02:51 -05004038 int mode)
4039{
4040 int ret = 0;
4041 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004042 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004043 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004044 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4045 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004046
4047 struct extent_page_data epd = {
4048 .bio = NULL,
4049 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004050 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004051 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004052 };
4053 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004054 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004055 .nr_to_write = nr_pages * 2,
4056 .range_start = start,
4057 .range_end = end + 1,
4058 };
4059
Chris Masond3977122009-01-05 21:25:51 -05004060 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004061 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004062 if (clear_page_dirty_for_io(page))
4063 ret = __extent_writepage(page, &wbc_writepages, &epd);
4064 else {
Nikolay Borisov7087a9d2018-11-01 14:09:48 +02004065 btrfs_writepage_endio_finish_ordered(page, start,
Nikolay Borisovc6297322018-11-08 10:18:08 +02004066 start + PAGE_SIZE - 1, 1);
Chris Mason771ed682008-11-06 22:02:51 -05004067 unlock_page(page);
4068 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004069 put_page(page);
4070 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004071 }
4072
David Sterbae2932ee2017-06-23 04:16:17 +02004073 flush_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004074 return ret;
4075}
Chris Masond1310b22008-01-24 16:13:08 -05004076
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004077int extent_writepages(struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004078 struct writeback_control *wbc)
4079{
4080 int ret = 0;
4081 struct extent_page_data epd = {
4082 .bio = NULL,
Nikolay Borisov8ae225a2018-04-19 10:46:38 +03004083 .tree = &BTRFS_I(mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004084 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004085 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004086 };
4087
David Sterba935db852017-06-23 04:30:28 +02004088 ret = extent_write_cache_pages(mapping, wbc, &epd);
David Sterbae2932ee2017-06-23 04:16:17 +02004089 flush_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004090 return ret;
4091}
Chris Masond1310b22008-01-24 16:13:08 -05004092
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004093int extent_readpages(struct address_space *mapping, struct list_head *pages,
4094 unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004095{
4096 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004097 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004098 struct page *pagepool[16];
Miao Xie125bac012013-07-25 19:22:37 +08004099 struct extent_map *em_cached = NULL;
Nikolay Borisov2a3ff0a2018-04-19 10:46:36 +03004100 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
Liu Bo67c96842012-07-20 21:43:09 -06004101 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004102 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004103
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004104 while (!list_empty(pages)) {
4105 for (nr = 0; nr < ARRAY_SIZE(pagepool) && !list_empty(pages);) {
4106 struct page *page = list_entry(pages->prev,
4107 struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004108
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004109 prefetchw(&page->flags);
4110 list_del(&page->lru);
4111 if (add_to_page_cache_lru(page, mapping, page->index,
4112 readahead_gfp_mask(mapping))) {
4113 put_page(page);
4114 continue;
4115 }
4116
4117 pagepool[nr++] = page;
Chris Masond1310b22008-01-24 16:13:08 -05004118 }
Liu Bo67c96842012-07-20 21:43:09 -06004119
David Sterbae4d17ef2017-06-23 04:09:57 +02004120 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
Nikolay Borisov61ed3a12018-11-29 18:41:31 +02004121 &bio_flags, &prev_em_start);
Chris Masond1310b22008-01-24 16:13:08 -05004122 }
Liu Bo67c96842012-07-20 21:43:09 -06004123
Miao Xie125bac012013-07-25 19:22:37 +08004124 if (em_cached)
4125 free_extent_map(em_cached);
4126
Chris Masond1310b22008-01-24 16:13:08 -05004127 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004128 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004129 return 0;
4130}
Chris Masond1310b22008-01-24 16:13:08 -05004131
4132/*
4133 * basic invalidatepage code, this waits on any locked or writeback
4134 * ranges corresponding to the page, and then deletes any extent state
4135 * records from the tree
4136 */
4137int extent_invalidatepage(struct extent_io_tree *tree,
4138 struct page *page, unsigned long offset)
4139{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004140 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004141 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004142 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004143 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4144
Qu Wenruofda28322013-02-26 08:10:22 +00004145 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004146 if (start > end)
4147 return 0;
4148
David Sterbaff13db42015-12-03 14:30:40 +01004149 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004150 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004151 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004152 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4153 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004154 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004155 return 0;
4156}
Chris Masond1310b22008-01-24 16:13:08 -05004157
4158/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004159 * a helper for releasepage, this tests for areas of the page that
4160 * are locked or under IO and drops the related state bits if it is safe
4161 * to drop the page.
4162 */
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004163static int try_release_extent_state(struct extent_io_tree *tree,
Eric Sandeen48a3b632013-04-25 20:41:01 +00004164 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004165{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004166 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004167 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004168 int ret = 1;
4169
Chris Mason211f90e2008-07-18 11:56:15 -04004170 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004171 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004172 ret = 0;
4173 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004174 /*
4175 * at this point we can safely clear everything except the
4176 * locked bit and the nodatasum bit
4177 */
David Sterba66b0c882017-10-31 16:30:47 +01004178 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004179 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004180 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004181
4182 /* if clear_extent_bit failed for enomem reasons,
4183 * we can't allow the release to continue.
4184 */
4185 if (ret < 0)
4186 ret = 0;
4187 else
4188 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004189 }
4190 return ret;
4191}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004192
4193/*
Chris Masond1310b22008-01-24 16:13:08 -05004194 * a helper for releasepage. As long as there are no locked extents
4195 * in the range corresponding to the page, both state records and extent
4196 * map records are removed
4197 */
Nikolay Borisov477a30b2018-04-19 10:46:34 +03004198int try_release_extent_mapping(struct page *page, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004199{
4200 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004201 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004202 u64 end = start + PAGE_SIZE - 1;
Filipe Mananabd3599a2018-07-12 01:36:43 +01004203 struct btrfs_inode *btrfs_inode = BTRFS_I(page->mapping->host);
4204 struct extent_io_tree *tree = &btrfs_inode->io_tree;
4205 struct extent_map_tree *map = &btrfs_inode->extent_tree;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004206
Mel Gormand0164ad2015-11-06 16:28:21 -08004207 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004208 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004209 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004210 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004211 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004212 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004213 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004214 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004215 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004216 break;
4217 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004218 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4219 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004220 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004221 free_extent_map(em);
4222 break;
4223 }
4224 if (!test_range_bit(tree, em->start,
4225 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004226 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004227 0, NULL)) {
Filipe Mananabd3599a2018-07-12 01:36:43 +01004228 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4229 &btrfs_inode->runtime_flags);
Chris Mason70dec802008-01-29 09:59:12 -05004230 remove_extent_mapping(map, em);
4231 /* once for the rb tree */
4232 free_extent_map(em);
4233 }
4234 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004235 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004236
4237 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004238 free_extent_map(em);
4239 }
Chris Masond1310b22008-01-24 16:13:08 -05004240 }
Nikolay Borisov29c68b2d2018-04-19 10:46:35 +03004241 return try_release_extent_state(tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004242}
Chris Masond1310b22008-01-24 16:13:08 -05004243
Chris Masonec29ed52011-02-23 16:23:20 -05004244/*
4245 * helper function for fiemap, which doesn't want to see any holes.
4246 * This maps until we find something past 'last'
4247 */
4248static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004249 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004250{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004251 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004252 struct extent_map *em;
4253 u64 len;
4254
4255 if (offset >= last)
4256 return NULL;
4257
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304258 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004259 len = last - offset;
4260 if (len == 0)
4261 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004262 len = ALIGN(len, sectorsize);
David Sterbae3350e12017-06-23 04:09:57 +02004263 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0, offset,
4264 len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004265 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004266 return em;
4267
4268 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004269 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004270 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004271
4272 /* this is a hole, advance to the next extent */
4273 offset = extent_map_end(em);
4274 free_extent_map(em);
4275 if (offset >= last)
4276 break;
4277 }
4278 return NULL;
4279}
4280
Qu Wenruo47518322017-04-07 10:43:15 +08004281/*
4282 * To cache previous fiemap extent
4283 *
4284 * Will be used for merging fiemap extent
4285 */
4286struct fiemap_cache {
4287 u64 offset;
4288 u64 phys;
4289 u64 len;
4290 u32 flags;
4291 bool cached;
4292};
4293
4294/*
4295 * Helper to submit fiemap extent.
4296 *
4297 * Will try to merge current fiemap extent specified by @offset, @phys,
4298 * @len and @flags with cached one.
4299 * And only when we fails to merge, cached one will be submitted as
4300 * fiemap extent.
4301 *
4302 * Return value is the same as fiemap_fill_next_extent().
4303 */
4304static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4305 struct fiemap_cache *cache,
4306 u64 offset, u64 phys, u64 len, u32 flags)
4307{
4308 int ret = 0;
4309
4310 if (!cache->cached)
4311 goto assign;
4312
4313 /*
4314 * Sanity check, extent_fiemap() should have ensured that new
4315 * fiemap extent won't overlap with cahced one.
4316 * Not recoverable.
4317 *
4318 * NOTE: Physical address can overlap, due to compression
4319 */
4320 if (cache->offset + cache->len > offset) {
4321 WARN_ON(1);
4322 return -EINVAL;
4323 }
4324
4325 /*
4326 * Only merges fiemap extents if
4327 * 1) Their logical addresses are continuous
4328 *
4329 * 2) Their physical addresses are continuous
4330 * So truly compressed (physical size smaller than logical size)
4331 * extents won't get merged with each other
4332 *
4333 * 3) Share same flags except FIEMAP_EXTENT_LAST
4334 * So regular extent won't get merged with prealloc extent
4335 */
4336 if (cache->offset + cache->len == offset &&
4337 cache->phys + cache->len == phys &&
4338 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4339 (flags & ~FIEMAP_EXTENT_LAST)) {
4340 cache->len += len;
4341 cache->flags |= flags;
4342 goto try_submit_last;
4343 }
4344
4345 /* Not mergeable, need to submit cached one */
4346 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4347 cache->len, cache->flags);
4348 cache->cached = false;
4349 if (ret)
4350 return ret;
4351assign:
4352 cache->cached = true;
4353 cache->offset = offset;
4354 cache->phys = phys;
4355 cache->len = len;
4356 cache->flags = flags;
4357try_submit_last:
4358 if (cache->flags & FIEMAP_EXTENT_LAST) {
4359 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4360 cache->phys, cache->len, cache->flags);
4361 cache->cached = false;
4362 }
4363 return ret;
4364}
4365
4366/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004367 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004368 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004369 * The last fiemap cache may still be cached in the following case:
4370 * 0 4k 8k
4371 * |<- Fiemap range ->|
4372 * |<------------ First extent ----------->|
4373 *
4374 * In this case, the first extent range will be cached but not emitted.
4375 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004376 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004377static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4378 struct fiemap_extent_info *fieinfo,
4379 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004380{
4381 int ret;
4382
4383 if (!cache->cached)
4384 return 0;
4385
Qu Wenruo47518322017-04-07 10:43:15 +08004386 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4387 cache->len, cache->flags);
4388 cache->cached = false;
4389 if (ret > 0)
4390 ret = 0;
4391 return ret;
4392}
4393
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004394int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004395 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004396{
Josef Bacik975f84f2010-11-23 19:36:57 +00004397 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004398 u64 off = start;
4399 u64 max = start + len;
4400 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004401 u32 found_type;
4402 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004403 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004404 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004405 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004406 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004407 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004408 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004409 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004410 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004411 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004412 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004413 u64 em_start = 0;
4414 u64 em_len = 0;
4415 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004416
4417 if (len == 0)
4418 return -EINVAL;
4419
Josef Bacik975f84f2010-11-23 19:36:57 +00004420 path = btrfs_alloc_path();
4421 if (!path)
4422 return -ENOMEM;
4423 path->leave_spinning = 1;
4424
Jeff Mahoneyda170662016-06-15 09:22:56 -04004425 start = round_down(start, btrfs_inode_sectorsize(inode));
4426 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004427
Chris Masonec29ed52011-02-23 16:23:20 -05004428 /*
4429 * lookup the last file extent. We're not using i_size here
4430 * because there might be preallocation past i_size
4431 */
David Sterbaf85b7372017-01-20 14:54:07 +01004432 ret = btrfs_lookup_file_extent(NULL, root, path,
4433 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004434 if (ret < 0) {
4435 btrfs_free_path(path);
4436 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004437 } else {
4438 WARN_ON(!ret);
4439 if (ret == 1)
4440 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004441 }
Liu Bo2d324f52016-05-17 17:21:48 -07004442
Josef Bacik975f84f2010-11-23 19:36:57 +00004443 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004444 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004445 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004446
Chris Masonec29ed52011-02-23 16:23:20 -05004447 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004448 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004449 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004450 /* have to trust i_size as the end */
4451 last = (u64)-1;
4452 last_for_get_extent = isize;
4453 } else {
4454 /*
4455 * remember the start of the last extent. There are a
4456 * bunch of different factors that go into the length of the
4457 * extent, so its much less complex to remember where it started
4458 */
4459 last = found_key.offset;
4460 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004461 }
Liu Bofe09e162013-09-22 12:54:23 +08004462 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004463
Chris Masonec29ed52011-02-23 16:23:20 -05004464 /*
4465 * we might have some extents allocated but more delalloc past those
4466 * extents. so, we trust isize unless the start of the last extent is
4467 * beyond isize
4468 */
4469 if (last < isize) {
4470 last = (u64)-1;
4471 last_for_get_extent = isize;
4472 }
4473
David Sterbaff13db42015-12-03 14:30:40 +01004474 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004475 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004476
David Sterbae3350e12017-06-23 04:09:57 +02004477 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004478 if (!em)
4479 goto out;
4480 if (IS_ERR(em)) {
4481 ret = PTR_ERR(em);
4482 goto out;
4483 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004484
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004485 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004486 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004487
Chris Masonea8efc72011-03-08 11:54:40 -05004488 /* break if the extent we found is outside the range */
4489 if (em->start >= max || extent_map_end(em) < off)
4490 break;
4491
4492 /*
4493 * get_extent may return an extent that starts before our
4494 * requested range. We have to make sure the ranges
4495 * we return to fiemap always move forward and don't
4496 * overlap, so adjust the offsets here
4497 */
4498 em_start = max(em->start, off);
4499
4500 /*
4501 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004502 * for adjusting the disk offset below. Only do this if the
4503 * extent isn't compressed since our in ram offset may be past
4504 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004505 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004506 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4507 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004508 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004509 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004510 flags = 0;
Filipe Mananaf0986312018-06-20 10:02:30 +01004511 if (em->block_start < EXTENT_MAP_LAST_BYTE)
4512 disko = em->block_start + offset_in_extent;
4513 else
4514 disko = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004515
Chris Masonea8efc72011-03-08 11:54:40 -05004516 /*
4517 * bump off for our next call to get_extent
4518 */
4519 off = extent_map_end(em);
4520 if (off >= max)
4521 end = 1;
4522
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004523 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004524 end = 1;
4525 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004526 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004527 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4528 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004529 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004530 flags |= (FIEMAP_EXTENT_DELALLOC |
4531 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004532 } else if (fieinfo->fi_extents_max) {
4533 u64 bytenr = em->block_start -
4534 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004535
Liu Bofe09e162013-09-22 12:54:23 +08004536 /*
4537 * As btrfs supports shared space, this information
4538 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004539 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4540 * then we're just getting a count and we can skip the
4541 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004542 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004543 ret = btrfs_check_shared(root,
4544 btrfs_ino(BTRFS_I(inode)),
4545 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004546 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004547 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004548 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004549 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004550 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004551 }
4552 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4553 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004554 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4555 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004556
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004557 free_extent_map(em);
4558 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004559 if ((em_start >= last) || em_len == (u64)-1 ||
4560 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004561 flags |= FIEMAP_EXTENT_LAST;
4562 end = 1;
4563 }
4564
Chris Masonec29ed52011-02-23 16:23:20 -05004565 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004566 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004567 if (IS_ERR(em)) {
4568 ret = PTR_ERR(em);
4569 goto out;
4570 }
4571 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004572 flags |= FIEMAP_EXTENT_LAST;
4573 end = 1;
4574 }
Qu Wenruo47518322017-04-07 10:43:15 +08004575 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4576 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004577 if (ret) {
4578 if (ret == 1)
4579 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004580 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004581 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004582 }
4583out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004584 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004585 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004586 free_extent_map(em);
4587out:
Liu Bofe09e162013-09-22 12:54:23 +08004588 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004589 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
David Sterbae43bbe52017-12-12 21:43:52 +01004590 &cached_state);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004591 return ret;
4592}
4593
Chris Mason727011e2010-08-06 13:21:20 -04004594static void __free_extent_buffer(struct extent_buffer *eb)
4595{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004596 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004597 kmem_cache_free(extent_buffer_cache, eb);
4598}
4599
Josef Bacika26e8c92014-03-28 17:07:27 -04004600int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004601{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004602 return (atomic_read(&eb->io_pages) ||
4603 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4604 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004605}
4606
Miao Xie897ca6e92010-10-26 20:57:29 -04004607/*
David Sterba55ac0132018-07-19 17:24:32 +02004608 * Release all pages attached to the extent buffer.
Miao Xie897ca6e92010-10-26 20:57:29 -04004609 */
David Sterba55ac0132018-07-19 17:24:32 +02004610static void btrfs_release_extent_buffer_pages(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004611{
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004612 int i;
4613 int num_pages;
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004614 int mapped = !test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004615
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004616 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004617
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004618 num_pages = num_extent_pages(eb);
4619 for (i = 0; i < num_pages; i++) {
4620 struct page *page = eb->pages[i];
Miao Xie897ca6e92010-10-26 20:57:29 -04004621
Forrest Liu5d2361d2015-02-09 17:31:45 +08004622 if (!page)
4623 continue;
4624 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004625 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004626 /*
4627 * We do this since we'll remove the pages after we've
4628 * removed the eb from the radix tree, so we could race
4629 * and have this page now attached to the new eb. So
4630 * only clear page_private if it's still connected to
4631 * this eb.
4632 */
4633 if (PagePrivate(page) &&
4634 page->private == (unsigned long)eb) {
4635 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4636 BUG_ON(PageDirty(page));
4637 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004638 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004639 * We need to make sure we haven't be attached
4640 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004641 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004642 ClearPagePrivate(page);
4643 set_page_private(page, 0);
4644 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004645 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004646 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004647
4648 if (mapped)
4649 spin_unlock(&page->mapping->private_lock);
4650
Nicholas D Steeves01327612016-05-19 21:18:45 -04004651 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004652 put_page(page);
Nikolay Borisovd64766f2018-06-27 16:38:22 +03004653 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004654}
4655
4656/*
4657 * Helper for releasing the extent buffer.
4658 */
4659static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4660{
David Sterba55ac0132018-07-19 17:24:32 +02004661 btrfs_release_extent_buffer_pages(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004662 __free_extent_buffer(eb);
4663}
4664
Josef Bacikf28491e2013-12-16 13:24:27 -05004665static struct extent_buffer *
4666__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004667 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004668{
4669 struct extent_buffer *eb = NULL;
4670
Michal Hockod1b5c562015-08-19 14:17:40 +02004671 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004672 eb->start = start;
4673 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004674 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004675 eb->bflags = 0;
4676 rwlock_init(&eb->lock);
4677 atomic_set(&eb->write_locks, 0);
4678 atomic_set(&eb->read_locks, 0);
4679 atomic_set(&eb->blocking_readers, 0);
4680 atomic_set(&eb->blocking_writers, 0);
4681 atomic_set(&eb->spinning_readers, 0);
4682 atomic_set(&eb->spinning_writers, 0);
4683 eb->lock_nested = 0;
4684 init_waitqueue_head(&eb->write_lock_wq);
4685 init_waitqueue_head(&eb->read_lock_wq);
4686
4687 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4688
4689 spin_lock_init(&eb->refs_lock);
4690 atomic_set(&eb->refs, 1);
4691 atomic_set(&eb->io_pages, 0);
4692
4693 /*
4694 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4695 */
4696 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4697 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4698 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4699
4700 return eb;
4701}
4702
4703struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4704{
David Sterbacc5e31a2018-03-01 18:20:27 +01004705 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004706 struct page *p;
4707 struct extent_buffer *new;
David Sterbacc5e31a2018-03-01 18:20:27 +01004708 int num_pages = num_extent_pages(src);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004709
David Sterba3f556f72014-06-15 03:20:26 +02004710 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004711 if (new == NULL)
4712 return NULL;
4713
4714 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004715 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004716 if (!p) {
4717 btrfs_release_extent_buffer(new);
4718 return NULL;
4719 }
4720 attach_extent_buffer_page(new, p);
4721 WARN_ON(PageDirty(p));
4722 SetPageUptodate(p);
4723 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004724 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004725 }
4726
Josef Bacikdb7f3432013-08-07 14:54:37 -04004727 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004728 set_bit(EXTENT_BUFFER_UNMAPPED, &new->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004729
4730 return new;
4731}
4732
Omar Sandoval0f331222015-09-29 20:50:31 -07004733struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4734 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004735{
4736 struct extent_buffer *eb;
David Sterbacc5e31a2018-03-01 18:20:27 +01004737 int num_pages;
4738 int i;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004739
David Sterba3f556f72014-06-15 03:20:26 +02004740 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004741 if (!eb)
4742 return NULL;
4743
David Sterba65ad0102018-06-29 10:56:49 +02004744 num_pages = num_extent_pages(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004745 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004746 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004747 if (!eb->pages[i])
4748 goto err;
4749 }
4750 set_extent_buffer_uptodate(eb);
4751 btrfs_set_header_nritems(eb, 0);
Nikolay Borisovb0132a32018-06-27 16:38:24 +03004752 set_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004753
4754 return eb;
4755err:
4756 for (; i > 0; i--)
4757 __free_page(eb->pages[i - 1]);
4758 __free_extent_buffer(eb);
4759 return NULL;
4760}
4761
Omar Sandoval0f331222015-09-29 20:50:31 -07004762struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004763 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004764{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004765 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004766}
4767
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004768static void check_buffer_tree_ref(struct extent_buffer *eb)
4769{
Chris Mason242e18c2013-01-29 17:49:37 -05004770 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004771 /* the ref bit is tricky. We have to make sure it is set
4772 * if we have the buffer dirty. Otherwise the
4773 * code to free a buffer can end up dropping a dirty
4774 * page
4775 *
4776 * Once the ref bit is set, it won't go away while the
4777 * buffer is dirty or in writeback, and it also won't
4778 * go away while we have the reference count on the
4779 * eb bumped.
4780 *
4781 * We can't just set the ref bit without bumping the
4782 * ref on the eb because free_extent_buffer might
4783 * see the ref bit and try to clear it. If this happens
4784 * free_extent_buffer might end up dropping our original
4785 * ref by mistake and freeing the page before we are able
4786 * to add one more ref.
4787 *
4788 * So bump the ref count first, then set the bit. If someone
4789 * beat us to it, drop the ref we added.
4790 */
Chris Mason242e18c2013-01-29 17:49:37 -05004791 refs = atomic_read(&eb->refs);
4792 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4793 return;
4794
Josef Bacik594831c2012-07-20 16:11:08 -04004795 spin_lock(&eb->refs_lock);
4796 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004797 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004798 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004799}
4800
Mel Gorman2457aec2014-06-04 16:10:31 -07004801static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4802 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004803{
David Sterbacc5e31a2018-03-01 18:20:27 +01004804 int num_pages, i;
Josef Bacik5df42352012-03-15 18:24:42 -04004805
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004806 check_buffer_tree_ref(eb);
4807
David Sterba65ad0102018-06-29 10:56:49 +02004808 num_pages = num_extent_pages(eb);
Josef Bacik5df42352012-03-15 18:24:42 -04004809 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004810 struct page *p = eb->pages[i];
4811
Mel Gorman2457aec2014-06-04 16:10:31 -07004812 if (p != accessed)
4813 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004814 }
4815}
4816
Josef Bacikf28491e2013-12-16 13:24:27 -05004817struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4818 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004819{
4820 struct extent_buffer *eb;
4821
4822 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004823 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004824 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004825 if (eb && atomic_inc_not_zero(&eb->refs)) {
4826 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004827 /*
4828 * Lock our eb's refs_lock to avoid races with
4829 * free_extent_buffer. When we get our eb it might be flagged
4830 * with EXTENT_BUFFER_STALE and another task running
4831 * free_extent_buffer might have seen that flag set,
4832 * eb->refs == 2, that the buffer isn't under IO (dirty and
4833 * writeback flags not set) and it's still in the tree (flag
4834 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4835 * of decrementing the extent buffer's reference count twice.
4836 * So here we could race and increment the eb's reference count,
4837 * clear its stale flag, mark it as dirty and drop our reference
4838 * before the other task finishes executing free_extent_buffer,
4839 * which would later result in an attempt to free an extent
4840 * buffer that is dirty.
4841 */
4842 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4843 spin_lock(&eb->refs_lock);
4844 spin_unlock(&eb->refs_lock);
4845 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004846 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004847 return eb;
4848 }
4849 rcu_read_unlock();
4850
4851 return NULL;
4852}
4853
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004854#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4855struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004856 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004857{
4858 struct extent_buffer *eb, *exists = NULL;
4859 int ret;
4860
4861 eb = find_extent_buffer(fs_info, start);
4862 if (eb)
4863 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004864 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004865 if (!eb)
4866 return NULL;
4867 eb->fs_info = fs_info;
4868again:
David Sterbae1860a72016-05-09 14:11:38 +02004869 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004870 if (ret)
4871 goto free_eb;
4872 spin_lock(&fs_info->buffer_lock);
4873 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004874 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004875 spin_unlock(&fs_info->buffer_lock);
4876 radix_tree_preload_end();
4877 if (ret == -EEXIST) {
4878 exists = find_extent_buffer(fs_info, start);
4879 if (exists)
4880 goto free_eb;
4881 else
4882 goto again;
4883 }
4884 check_buffer_tree_ref(eb);
4885 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4886
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004887 return eb;
4888free_eb:
4889 btrfs_release_extent_buffer(eb);
4890 return exists;
4891}
4892#endif
4893
Josef Bacikf28491e2013-12-16 13:24:27 -05004894struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004895 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004896{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004897 unsigned long len = fs_info->nodesize;
David Sterbacc5e31a2018-03-01 18:20:27 +01004898 int num_pages;
4899 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004900 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004901 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004902 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004903 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004904 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004905 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004906 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004907
Jeff Mahoneyda170662016-06-15 09:22:56 -04004908 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004909 btrfs_err(fs_info, "bad tree block start %llu", start);
4910 return ERR_PTR(-EINVAL);
4911 }
4912
Josef Bacikf28491e2013-12-16 13:24:27 -05004913 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004914 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004915 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004916
David Sterba23d79d82014-06-15 02:55:29 +02004917 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004918 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004919 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004920
David Sterba65ad0102018-06-29 10:56:49 +02004921 num_pages = num_extent_pages(eb);
Chris Mason727011e2010-08-06 13:21:20 -04004922 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004923 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004924 if (!p) {
4925 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004926 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004927 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004928
4929 spin_lock(&mapping->private_lock);
4930 if (PagePrivate(p)) {
4931 /*
4932 * We could have already allocated an eb for this page
4933 * and attached one so lets see if we can get a ref on
4934 * the existing eb, and if we can we know it's good and
4935 * we can just return that one, else we know we can just
4936 * overwrite page->private.
4937 */
4938 exists = (struct extent_buffer *)p->private;
4939 if (atomic_inc_not_zero(&exists->refs)) {
4940 spin_unlock(&mapping->private_lock);
4941 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004942 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004943 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004944 goto free_eb;
4945 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004946 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004947
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004948 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004949 * Do this so attach doesn't complain and we need to
4950 * drop the ref the old guy had.
4951 */
4952 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004953 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004954 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05004955 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004956 attach_extent_buffer_page(eb, p);
4957 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004958 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004959 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004960 if (!PageUptodate(p))
4961 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004962
4963 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03004964 * We can't unlock the pages just yet since the extent buffer
4965 * hasn't been properly inserted in the radix tree, this
4966 * opens a race with btree_releasepage which can free a page
4967 * while we are still filling in all pages for the buffer and
4968 * we could crash.
Chris Masoneb14ab82011-02-10 12:35:00 -05004969 */
Chris Masond1310b22008-01-24 16:13:08 -05004970 }
4971 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004972 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004973again:
David Sterbae1860a72016-05-09 14:11:38 +02004974 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07004975 if (ret) {
4976 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04004977 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004978 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004979
Josef Bacikf28491e2013-12-16 13:24:27 -05004980 spin_lock(&fs_info->buffer_lock);
4981 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004982 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05004983 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004984 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004985 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004986 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004987 if (exists)
4988 goto free_eb;
4989 else
Josef Bacik115391d2012-03-09 09:51:43 -05004990 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004991 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004992 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004993 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004994 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004995
4996 /*
Nikolay Borisovb16d0112018-07-04 10:24:52 +03004997 * Now it's safe to unlock the pages because any calls to
4998 * btree_releasepage will correctly detect that a page belongs to a
4999 * live buffer and won't free them prematurely.
Chris Masoneb14ab82011-02-10 12:35:00 -05005000 */
Nikolay Borisov28187ae2018-07-04 10:24:51 +03005001 for (i = 0; i < num_pages; i++)
5002 unlock_page(eb->pages[i]);
Chris Masond1310b22008-01-24 16:13:08 -05005003 return eb;
5004
Chris Mason6af118ce2008-07-22 11:18:07 -04005005free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005006 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005007 for (i = 0; i < num_pages; i++) {
5008 if (eb->pages[i])
5009 unlock_page(eb->pages[i]);
5010 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005011
Miao Xie897ca6e92010-10-26 20:57:29 -04005012 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005013 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005014}
Chris Masond1310b22008-01-24 16:13:08 -05005015
Josef Bacik3083ee22012-03-09 16:01:49 -05005016static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5017{
5018 struct extent_buffer *eb =
5019 container_of(head, struct extent_buffer, rcu_head);
5020
5021 __free_extent_buffer(eb);
5022}
5023
David Sterbaf7a52a42013-04-26 14:56:29 +00005024static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005025{
Nikolay Borisov07e21c42018-06-27 16:38:23 +03005026 lockdep_assert_held(&eb->refs_lock);
5027
Josef Bacik3083ee22012-03-09 16:01:49 -05005028 WARN_ON(atomic_read(&eb->refs) == 0);
5029 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005030 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005031 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005032
Jan Schmidt815a51c2012-05-16 17:00:02 +02005033 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005034
Josef Bacikf28491e2013-12-16 13:24:27 -05005035 spin_lock(&fs_info->buffer_lock);
5036 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005037 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005038 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005039 } else {
5040 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005041 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005042
5043 /* Should be safe to release our pages at this point */
David Sterba55ac0132018-07-19 17:24:32 +02005044 btrfs_release_extent_buffer_pages(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005045#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Nikolay Borisovb0132a32018-06-27 16:38:24 +03005046 if (unlikely(test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags))) {
Josef Bacikbcb7e442015-03-16 17:38:02 -04005047 __free_extent_buffer(eb);
5048 return 1;
5049 }
5050#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005051 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005052 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005053 }
5054 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005055
5056 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005057}
5058
Chris Masond1310b22008-01-24 16:13:08 -05005059void free_extent_buffer(struct extent_buffer *eb)
5060{
Chris Mason242e18c2013-01-29 17:49:37 -05005061 int refs;
5062 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005063 if (!eb)
5064 return;
5065
Chris Mason242e18c2013-01-29 17:49:37 -05005066 while (1) {
5067 refs = atomic_read(&eb->refs);
Nikolay Borisov46cc7752018-10-15 17:04:01 +03005068 if ((!test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) && refs <= 3)
5069 || (test_bit(EXTENT_BUFFER_UNMAPPED, &eb->bflags) &&
5070 refs == 1))
Chris Mason242e18c2013-01-29 17:49:37 -05005071 break;
5072 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5073 if (old == refs)
5074 return;
5075 }
5076
Josef Bacik3083ee22012-03-09 16:01:49 -05005077 spin_lock(&eb->refs_lock);
5078 if (atomic_read(&eb->refs) == 2 &&
5079 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005080 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005081 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5082 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005083
Josef Bacik3083ee22012-03-09 16:01:49 -05005084 /*
5085 * I know this is terrible, but it's temporary until we stop tracking
5086 * the uptodate bits and such for the extent buffers.
5087 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005088 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005089}
Chris Masond1310b22008-01-24 16:13:08 -05005090
Josef Bacik3083ee22012-03-09 16:01:49 -05005091void free_extent_buffer_stale(struct extent_buffer *eb)
5092{
5093 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005094 return;
5095
Josef Bacik3083ee22012-03-09 16:01:49 -05005096 spin_lock(&eb->refs_lock);
5097 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5098
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005099 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005100 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5101 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005102 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005103}
5104
Chris Mason1d4284b2012-03-28 20:31:37 -04005105void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005106{
David Sterbacc5e31a2018-03-01 18:20:27 +01005107 int i;
5108 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005109 struct page *page;
5110
David Sterba65ad0102018-06-29 10:56:49 +02005111 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005112
5113 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005114 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005115 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005116 continue;
5117
Chris Masona61e6f22008-07-22 11:18:08 -04005118 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005119 WARN_ON(!PagePrivate(page));
5120
Chris Masond1310b22008-01-24 16:13:08 -05005121 clear_page_dirty_for_io(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005122 xa_lock_irq(&page->mapping->i_pages);
Matthew Wilcox0a943c62017-12-04 10:37:22 -05005123 if (!PageDirty(page))
5124 __xa_clear_mark(&page->mapping->i_pages,
5125 page_index(page), PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07005126 xa_unlock_irq(&page->mapping->i_pages);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005127 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005128 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005129 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005130 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005131}
Chris Masond1310b22008-01-24 16:13:08 -05005132
Liu Boabb57ef2018-09-14 01:44:42 +08005133bool set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005134{
David Sterbacc5e31a2018-03-01 18:20:27 +01005135 int i;
5136 int num_pages;
Liu Boabb57ef2018-09-14 01:44:42 +08005137 bool was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005138
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005139 check_buffer_tree_ref(eb);
5140
Chris Masonb9473432009-03-13 11:00:37 -04005141 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005142
David Sterba65ad0102018-06-29 10:56:49 +02005143 num_pages = num_extent_pages(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05005144 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005145 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5146
Liu Boabb57ef2018-09-14 01:44:42 +08005147 if (!was_dirty)
5148 for (i = 0; i < num_pages; i++)
5149 set_page_dirty(eb->pages[i]);
Liu Bo51995c32018-09-14 01:46:08 +08005150
5151#ifdef CONFIG_BTRFS_DEBUG
5152 for (i = 0; i < num_pages; i++)
5153 ASSERT(PageDirty(eb->pages[i]));
5154#endif
5155
Chris Masonb9473432009-03-13 11:00:37 -04005156 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005157}
Chris Masond1310b22008-01-24 16:13:08 -05005158
David Sterba69ba3922015-12-03 13:08:59 +01005159void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005160{
David Sterbacc5e31a2018-03-01 18:20:27 +01005161 int i;
Chris Mason1259ab72008-05-12 13:39:03 -04005162 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005163 int num_pages;
Chris Mason1259ab72008-05-12 13:39:03 -04005164
Chris Masonb4ce94d2009-02-04 09:25:08 -05005165 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005166 num_pages = num_extent_pages(eb);
Chris Mason1259ab72008-05-12 13:39:03 -04005167 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005168 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005169 if (page)
5170 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005171 }
Chris Mason1259ab72008-05-12 13:39:03 -04005172}
5173
David Sterba09c25a82015-12-03 13:08:59 +01005174void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005175{
David Sterbacc5e31a2018-03-01 18:20:27 +01005176 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005177 struct page *page;
David Sterbacc5e31a2018-03-01 18:20:27 +01005178 int num_pages;
Chris Masond1310b22008-01-24 16:13:08 -05005179
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005180 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
David Sterba65ad0102018-06-29 10:56:49 +02005181 num_pages = num_extent_pages(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005182 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005183 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005184 SetPageUptodate(page);
5185 }
Chris Masond1310b22008-01-24 16:13:08 -05005186}
Chris Masond1310b22008-01-24 16:13:08 -05005187
Chris Masond1310b22008-01-24 16:13:08 -05005188int read_extent_buffer_pages(struct extent_io_tree *tree,
David Sterba6af49db2017-06-23 04:09:57 +02005189 struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005190{
David Sterbacc5e31a2018-03-01 18:20:27 +01005191 int i;
Chris Masond1310b22008-01-24 16:13:08 -05005192 struct page *page;
5193 int err;
5194 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005195 int locked_pages = 0;
5196 int all_uptodate = 1;
David Sterbacc5e31a2018-03-01 18:20:27 +01005197 int num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005198 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005199 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005200 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005201
Chris Masonb4ce94d2009-02-04 09:25:08 -05005202 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005203 return 0;
5204
David Sterba65ad0102018-06-29 10:56:49 +02005205 num_pages = num_extent_pages(eb);
Josef Bacik8436ea912016-09-02 15:40:03 -04005206 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005207 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005208 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005209 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005210 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005211 } else {
5212 lock_page(page);
5213 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005214 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005215 }
5216 /*
5217 * We need to firstly lock all pages to make sure that
5218 * the uptodate bit of our pages won't be affected by
5219 * clear_extent_buffer_uptodate().
5220 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005221 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005222 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005223 if (!PageUptodate(page)) {
5224 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005225 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005226 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005227 }
Liu Bo2571e732016-08-03 12:33:01 -07005228
Chris Masonce9adaa2008-04-09 16:28:12 -04005229 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005230 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005231 goto unlock_exit;
5232 }
5233
Filipe Manana656f30d2014-09-26 12:25:56 +01005234 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005235 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005236 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005237 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005238 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005239
Chris Masonce9adaa2008-04-09 16:28:12 -04005240 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005241 if (ret) {
5242 atomic_dec(&eb->io_pages);
5243 unlock_page(page);
5244 continue;
5245 }
5246
Chris Masonf1885912008-04-09 16:28:12 -04005247 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005248 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005249 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005250 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005251 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005252 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005253 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005254 /*
5255 * We use &bio in above __extent_read_full_page,
5256 * so we ensure that if it returns error, the
5257 * current page fails to add itself to bio and
5258 * it's been unlocked.
5259 *
5260 * We must dec io_pages by ourselves.
5261 */
5262 atomic_dec(&eb->io_pages);
5263 }
Chris Masond1310b22008-01-24 16:13:08 -05005264 } else {
5265 unlock_page(page);
5266 }
5267 }
5268
Jeff Mahoney355808c2011-10-03 23:23:14 -04005269 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005270 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005271 if (err)
5272 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005273 }
Chris Masona86c12c2008-02-07 10:50:54 -05005274
Arne Jansenbb82ab82011-06-10 14:06:53 +02005275 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005276 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005277
Josef Bacik8436ea912016-09-02 15:40:03 -04005278 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005279 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005280 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005281 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005282 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005283 }
Chris Masond3977122009-01-05 21:25:51 -05005284
Chris Masond1310b22008-01-24 16:13:08 -05005285 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005286
5287unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005288 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005289 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005290 page = eb->pages[locked_pages];
5291 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005292 }
5293 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005294}
Chris Masond1310b22008-01-24 16:13:08 -05005295
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005296void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5297 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005298{
5299 size_t cur;
5300 size_t offset;
5301 struct page *page;
5302 char *kaddr;
5303 char *dst = (char *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005304 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005305 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005306
Liu Bof716abd2017-08-09 11:10:16 -06005307 if (start + len > eb->len) {
5308 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5309 eb->start, eb->len, start, len);
5310 memset(dst, 0, len);
5311 return;
5312 }
Chris Masond1310b22008-01-24 16:13:08 -05005313
Johannes Thumshirn70730172018-12-05 15:23:03 +01005314 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005315
Chris Masond3977122009-01-05 21:25:51 -05005316 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005317 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005318
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005319 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005320 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005321 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005322
5323 dst += cur;
5324 len -= cur;
5325 offset = 0;
5326 i++;
5327 }
5328}
Chris Masond1310b22008-01-24 16:13:08 -05005329
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005330int read_extent_buffer_to_user(const struct extent_buffer *eb,
5331 void __user *dstv,
5332 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005333{
5334 size_t cur;
5335 size_t offset;
5336 struct page *page;
5337 char *kaddr;
5338 char __user *dst = (char __user *)dstv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005339 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005340 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005341 int ret = 0;
5342
5343 WARN_ON(start > eb->len);
5344 WARN_ON(start + len > eb->start + eb->len);
5345
Johannes Thumshirn70730172018-12-05 15:23:03 +01005346 offset = offset_in_page(start_offset + start);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005347
5348 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005349 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005350
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005351 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005352 kaddr = page_address(page);
5353 if (copy_to_user(dst, kaddr + offset, cur)) {
5354 ret = -EFAULT;
5355 break;
5356 }
5357
5358 dst += cur;
5359 len -= cur;
5360 offset = 0;
5361 i++;
5362 }
5363
5364 return ret;
5365}
5366
Liu Bo415b35a2016-06-17 19:16:21 -07005367/*
5368 * return 0 if the item is found within a page.
5369 * return 1 if the item spans two pages.
5370 * return -EINVAL otherwise.
5371 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005372int map_private_extent_buffer(const struct extent_buffer *eb,
5373 unsigned long start, unsigned long min_len,
5374 char **map, unsigned long *map_start,
5375 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005376{
Johannes Thumshirncc2c39d2018-11-28 09:54:54 +01005377 size_t offset;
Chris Masond1310b22008-01-24 16:13:08 -05005378 char *kaddr;
5379 struct page *p;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005380 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005381 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005382 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005383 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005384
Liu Bof716abd2017-08-09 11:10:16 -06005385 if (start + min_len > eb->len) {
5386 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5387 eb->start, eb->len, start, min_len);
5388 return -EINVAL;
5389 }
5390
Chris Masond1310b22008-01-24 16:13:08 -05005391 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005392 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005393
5394 if (i == 0) {
5395 offset = start_offset;
5396 *map_start = 0;
5397 } else {
5398 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005399 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005400 }
Chris Masond3977122009-01-05 21:25:51 -05005401
David Sterbafb85fc92014-07-31 01:03:53 +02005402 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005403 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005404 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005405 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005406 return 0;
5407}
Chris Masond1310b22008-01-24 16:13:08 -05005408
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005409int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5410 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005411{
5412 size_t cur;
5413 size_t offset;
5414 struct page *page;
5415 char *kaddr;
5416 char *ptr = (char *)ptrv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005417 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005418 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005419 int ret = 0;
5420
5421 WARN_ON(start > eb->len);
5422 WARN_ON(start + len > eb->start + eb->len);
5423
Johannes Thumshirn70730172018-12-05 15:23:03 +01005424 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005425
Chris Masond3977122009-01-05 21:25:51 -05005426 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005427 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005428
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005429 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005430
Chris Masona6591712011-07-19 12:04:14 -04005431 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005432 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005433 if (ret)
5434 break;
5435
5436 ptr += cur;
5437 len -= cur;
5438 offset = 0;
5439 i++;
5440 }
5441 return ret;
5442}
Chris Masond1310b22008-01-24 16:13:08 -05005443
David Sterbaf157bf72016-11-09 17:43:38 +01005444void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5445 const void *srcv)
5446{
5447 char *kaddr;
5448
5449 WARN_ON(!PageUptodate(eb->pages[0]));
5450 kaddr = page_address(eb->pages[0]);
5451 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5452 BTRFS_FSID_SIZE);
5453}
5454
5455void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5456{
5457 char *kaddr;
5458
5459 WARN_ON(!PageUptodate(eb->pages[0]));
5460 kaddr = page_address(eb->pages[0]);
5461 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5462 BTRFS_FSID_SIZE);
5463}
5464
Chris Masond1310b22008-01-24 16:13:08 -05005465void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5466 unsigned long start, unsigned long len)
5467{
5468 size_t cur;
5469 size_t offset;
5470 struct page *page;
5471 char *kaddr;
5472 char *src = (char *)srcv;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005473 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005474 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005475
5476 WARN_ON(start > eb->len);
5477 WARN_ON(start + len > eb->start + eb->len);
5478
Johannes Thumshirn70730172018-12-05 15:23:03 +01005479 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005480
Chris Masond3977122009-01-05 21:25:51 -05005481 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005482 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005483 WARN_ON(!PageUptodate(page));
5484
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005485 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005486 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005487 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005488
5489 src += cur;
5490 len -= cur;
5491 offset = 0;
5492 i++;
5493 }
5494}
Chris Masond1310b22008-01-24 16:13:08 -05005495
David Sterbab159fa22016-11-08 18:09:03 +01005496void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5497 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005498{
5499 size_t cur;
5500 size_t offset;
5501 struct page *page;
5502 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005503 size_t start_offset = offset_in_page(eb->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005504 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005505
5506 WARN_ON(start > eb->len);
5507 WARN_ON(start + len > eb->start + eb->len);
5508
Johannes Thumshirn70730172018-12-05 15:23:03 +01005509 offset = offset_in_page(start_offset + start);
Chris Masond1310b22008-01-24 16:13:08 -05005510
Chris Masond3977122009-01-05 21:25:51 -05005511 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005512 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005513 WARN_ON(!PageUptodate(page));
5514
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005515 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005516 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005517 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005518
5519 len -= cur;
5520 offset = 0;
5521 i++;
5522 }
5523}
Chris Masond1310b22008-01-24 16:13:08 -05005524
David Sterba58e80122016-11-08 18:30:31 +01005525void copy_extent_buffer_full(struct extent_buffer *dst,
5526 struct extent_buffer *src)
5527{
5528 int i;
David Sterbacc5e31a2018-03-01 18:20:27 +01005529 int num_pages;
David Sterba58e80122016-11-08 18:30:31 +01005530
5531 ASSERT(dst->len == src->len);
5532
David Sterba65ad0102018-06-29 10:56:49 +02005533 num_pages = num_extent_pages(dst);
David Sterba58e80122016-11-08 18:30:31 +01005534 for (i = 0; i < num_pages; i++)
5535 copy_page(page_address(dst->pages[i]),
5536 page_address(src->pages[i]));
5537}
5538
Chris Masond1310b22008-01-24 16:13:08 -05005539void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5540 unsigned long dst_offset, unsigned long src_offset,
5541 unsigned long len)
5542{
5543 u64 dst_len = dst->len;
5544 size_t cur;
5545 size_t offset;
5546 struct page *page;
5547 char *kaddr;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005548 size_t start_offset = offset_in_page(dst->start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005549 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005550
5551 WARN_ON(src->len != dst_len);
5552
Johannes Thumshirn70730172018-12-05 15:23:03 +01005553 offset = offset_in_page(start_offset + dst_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005554
Chris Masond3977122009-01-05 21:25:51 -05005555 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005556 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005557 WARN_ON(!PageUptodate(page));
5558
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005559 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005560
Chris Masona6591712011-07-19 12:04:14 -04005561 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005562 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005563
5564 src_offset += cur;
5565 len -= cur;
5566 offset = 0;
5567 i++;
5568 }
5569}
Chris Masond1310b22008-01-24 16:13:08 -05005570
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005571/*
5572 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5573 * given bit number
5574 * @eb: the extent buffer
5575 * @start: offset of the bitmap item in the extent buffer
5576 * @nr: bit number
5577 * @page_index: return index of the page in the extent buffer that contains the
5578 * given bit number
5579 * @page_offset: return offset into the page given by page_index
5580 *
5581 * This helper hides the ugliness of finding the byte in an extent buffer which
5582 * contains a given bit.
5583 */
5584static inline void eb_bitmap_offset(struct extent_buffer *eb,
5585 unsigned long start, unsigned long nr,
5586 unsigned long *page_index,
5587 size_t *page_offset)
5588{
Johannes Thumshirn70730172018-12-05 15:23:03 +01005589 size_t start_offset = offset_in_page(eb->start);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005590 size_t byte_offset = BIT_BYTE(nr);
5591 size_t offset;
5592
5593 /*
5594 * The byte we want is the offset of the extent buffer + the offset of
5595 * the bitmap item in the extent buffer + the offset of the byte in the
5596 * bitmap item.
5597 */
5598 offset = start_offset + start + byte_offset;
5599
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005600 *page_index = offset >> PAGE_SHIFT;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005601 *page_offset = offset_in_page(offset);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005602}
5603
5604/**
5605 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5606 * @eb: the extent buffer
5607 * @start: offset of the bitmap item in the extent buffer
5608 * @nr: bit number to test
5609 */
5610int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5611 unsigned long nr)
5612{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005613 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005614 struct page *page;
5615 unsigned long i;
5616 size_t offset;
5617
5618 eb_bitmap_offset(eb, start, nr, &i, &offset);
5619 page = eb->pages[i];
5620 WARN_ON(!PageUptodate(page));
5621 kaddr = page_address(page);
5622 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5623}
5624
5625/**
5626 * extent_buffer_bitmap_set - set an area of a bitmap
5627 * @eb: the extent buffer
5628 * @start: offset of the bitmap item in the extent buffer
5629 * @pos: bit number of the first bit
5630 * @len: number of bits to set
5631 */
5632void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5633 unsigned long pos, unsigned long len)
5634{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005635 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005636 struct page *page;
5637 unsigned long i;
5638 size_t offset;
5639 const unsigned int size = pos + len;
5640 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005641 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005642
5643 eb_bitmap_offset(eb, start, pos, &i, &offset);
5644 page = eb->pages[i];
5645 WARN_ON(!PageUptodate(page));
5646 kaddr = page_address(page);
5647
5648 while (len >= bits_to_set) {
5649 kaddr[offset] |= mask_to_set;
5650 len -= bits_to_set;
5651 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005652 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005653 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005654 offset = 0;
5655 page = eb->pages[++i];
5656 WARN_ON(!PageUptodate(page));
5657 kaddr = page_address(page);
5658 }
5659 }
5660 if (len) {
5661 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5662 kaddr[offset] |= mask_to_set;
5663 }
5664}
5665
5666
5667/**
5668 * extent_buffer_bitmap_clear - clear an area of a bitmap
5669 * @eb: the extent buffer
5670 * @start: offset of the bitmap item in the extent buffer
5671 * @pos: bit number of the first bit
5672 * @len: number of bits to clear
5673 */
5674void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5675 unsigned long pos, unsigned long len)
5676{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005677 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005678 struct page *page;
5679 unsigned long i;
5680 size_t offset;
5681 const unsigned int size = pos + len;
5682 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005683 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005684
5685 eb_bitmap_offset(eb, start, pos, &i, &offset);
5686 page = eb->pages[i];
5687 WARN_ON(!PageUptodate(page));
5688 kaddr = page_address(page);
5689
5690 while (len >= bits_to_clear) {
5691 kaddr[offset] &= ~mask_to_clear;
5692 len -= bits_to_clear;
5693 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005694 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005695 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005696 offset = 0;
5697 page = eb->pages[++i];
5698 WARN_ON(!PageUptodate(page));
5699 kaddr = page_address(page);
5700 }
5701 }
5702 if (len) {
5703 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5704 kaddr[offset] &= ~mask_to_clear;
5705 }
5706}
5707
Sergei Trofimovich33872062011-04-11 21:52:52 +00005708static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5709{
5710 unsigned long distance = (src > dst) ? src - dst : dst - src;
5711 return distance < len;
5712}
5713
Chris Masond1310b22008-01-24 16:13:08 -05005714static void copy_pages(struct page *dst_page, struct page *src_page,
5715 unsigned long dst_off, unsigned long src_off,
5716 unsigned long len)
5717{
Chris Masona6591712011-07-19 12:04:14 -04005718 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005719 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005720 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005721
Sergei Trofimovich33872062011-04-11 21:52:52 +00005722 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005723 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005724 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005725 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005726 if (areas_overlap(src_off, dst_off, len))
5727 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005728 }
Chris Masond1310b22008-01-24 16:13:08 -05005729
Chris Mason727011e2010-08-06 13:21:20 -04005730 if (must_memmove)
5731 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5732 else
5733 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005734}
5735
5736void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5737 unsigned long src_offset, unsigned long len)
5738{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005739 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005740 size_t cur;
5741 size_t dst_off_in_page;
5742 size_t src_off_in_page;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005743 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005744 unsigned long dst_i;
5745 unsigned long src_i;
5746
5747 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005748 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005749 "memmove bogus src_offset %lu move len %lu dst len %lu",
5750 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005751 BUG_ON(1);
5752 }
5753 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005754 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005755 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5756 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005757 BUG_ON(1);
5758 }
5759
Chris Masond3977122009-01-05 21:25:51 -05005760 while (len > 0) {
Johannes Thumshirn70730172018-12-05 15:23:03 +01005761 dst_off_in_page = offset_in_page(start_offset + dst_offset);
5762 src_off_in_page = offset_in_page(start_offset + src_offset);
Chris Masond1310b22008-01-24 16:13:08 -05005763
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005764 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5765 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005766
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005767 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005768 src_off_in_page));
5769 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005770 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005771
David Sterbafb85fc92014-07-31 01:03:53 +02005772 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005773 dst_off_in_page, src_off_in_page, cur);
5774
5775 src_offset += cur;
5776 dst_offset += cur;
5777 len -= cur;
5778 }
5779}
Chris Masond1310b22008-01-24 16:13:08 -05005780
5781void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5782 unsigned long src_offset, unsigned long len)
5783{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005784 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005785 size_t cur;
5786 size_t dst_off_in_page;
5787 size_t src_off_in_page;
5788 unsigned long dst_end = dst_offset + len - 1;
5789 unsigned long src_end = src_offset + len - 1;
Johannes Thumshirn70730172018-12-05 15:23:03 +01005790 size_t start_offset = offset_in_page(dst->start);
Chris Masond1310b22008-01-24 16:13:08 -05005791 unsigned long dst_i;
5792 unsigned long src_i;
5793
5794 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005795 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005796 "memmove bogus src_offset %lu move len %lu len %lu",
5797 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005798 BUG_ON(1);
5799 }
5800 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005801 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005802 "memmove bogus dst_offset %lu move len %lu len %lu",
5803 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005804 BUG_ON(1);
5805 }
Chris Mason727011e2010-08-06 13:21:20 -04005806 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005807 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5808 return;
5809 }
Chris Masond3977122009-01-05 21:25:51 -05005810 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005811 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5812 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005813
Johannes Thumshirn70730172018-12-05 15:23:03 +01005814 dst_off_in_page = offset_in_page(start_offset + dst_end);
5815 src_off_in_page = offset_in_page(start_offset + src_end);
Chris Masond1310b22008-01-24 16:13:08 -05005816
5817 cur = min_t(unsigned long, len, src_off_in_page + 1);
5818 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005819 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005820 dst_off_in_page - cur + 1,
5821 src_off_in_page - cur + 1, cur);
5822
5823 dst_end -= cur;
5824 src_end -= cur;
5825 len -= cur;
5826 }
5827}
Chris Mason6af118ce2008-07-22 11:18:07 -04005828
David Sterbaf7a52a42013-04-26 14:56:29 +00005829int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005830{
Chris Mason6af118ce2008-07-22 11:18:07 -04005831 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005832
Miao Xie19fe0a82010-10-26 20:57:29 -04005833 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005834 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005835 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005836 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005837 spin_lock(&page->mapping->private_lock);
5838 if (!PagePrivate(page)) {
5839 spin_unlock(&page->mapping->private_lock);
5840 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005841 }
5842
Josef Bacik3083ee22012-03-09 16:01:49 -05005843 eb = (struct extent_buffer *)page->private;
5844 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005845
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005846 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005847 * This is a little awful but should be ok, we need to make sure that
5848 * the eb doesn't disappear out from under us while we're looking at
5849 * this page.
5850 */
5851 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005852 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005853 spin_unlock(&eb->refs_lock);
5854 spin_unlock(&page->mapping->private_lock);
5855 return 0;
5856 }
5857 spin_unlock(&page->mapping->private_lock);
5858
Josef Bacik3083ee22012-03-09 16:01:49 -05005859 /*
5860 * If tree ref isn't set then we know the ref on this eb is a real ref,
5861 * so just return, this page will likely be freed soon anyway.
5862 */
5863 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5864 spin_unlock(&eb->refs_lock);
5865 return 0;
5866 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005867
David Sterbaf7a52a42013-04-26 14:56:29 +00005868 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005869}