blob: 6cd3da16f1149a9243c25c6d562b99f0acdc9d10 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Chris Masond1310b22008-01-24 16:13:08 -05002#include <linux/bitops.h>
3#include <linux/slab.h>
4#include <linux/bio.h>
5#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05006#include <linux/pagemap.h>
7#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05008#include <linux/spinlock.h>
9#include <linux/blkdev.h>
10#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050011#include <linux/writeback.h>
12#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070013#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060014#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050015#include "extent_io.h"
16#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040017#include "ctree.h"
18#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020019#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010020#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040021#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040022#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080023#include "backref.h"
David Sterba6af49db2017-06-23 04:09:57 +020024#include "disk-io.h"
Chris Masond1310b22008-01-24 16:13:08 -050025
Chris Masond1310b22008-01-24 16:13:08 -050026static struct kmem_cache *extent_state_cache;
27static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040028static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050029
Filipe Manana27a35072014-07-06 20:09:59 +010030static inline bool extent_state_in_tree(const struct extent_state *state)
31{
32 return !RB_EMPTY_NODE(&state->rb_node);
33}
34
Eric Sandeen6d49ba12013-04-22 16:12:31 +000035#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050036static LIST_HEAD(buffers);
37static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040038
Chris Masond3977122009-01-05 21:25:51 -050039static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000040
41static inline
42void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
43{
44 unsigned long flags;
45
46 spin_lock_irqsave(&leak_lock, flags);
47 list_add(new, head);
48 spin_unlock_irqrestore(&leak_lock, flags);
49}
50
51static inline
52void btrfs_leak_debug_del(struct list_head *entry)
53{
54 unsigned long flags;
55
56 spin_lock_irqsave(&leak_lock, flags);
57 list_del(entry);
58 spin_unlock_irqrestore(&leak_lock, flags);
59}
60
61static inline
62void btrfs_leak_debug_check(void)
63{
64 struct extent_state *state;
65 struct extent_buffer *eb;
66
67 while (!list_empty(&states)) {
68 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010069 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010070 state->start, state->end, state->state,
71 extent_state_in_tree(state),
Elena Reshetovab7ac31b2017-03-03 10:55:19 +020072 refcount_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000073 list_del(&state->leak_list);
74 kmem_cache_free(extent_state_cache, state);
75 }
76
77 while (!list_empty(&buffers)) {
78 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Jeff Mahoney62e85572016-09-20 10:05:01 -040079 pr_err("BTRFS: buffer leak start %llu len %lu refs %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020080 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000081 list_del(&eb->leak_list);
82 kmem_cache_free(extent_buffer_cache, eb);
83 }
84}
David Sterba8d599ae2013-04-30 15:22:23 +000085
Josef Bacika5dee372013-12-13 10:02:44 -050086#define btrfs_debug_check_extent_io_range(tree, start, end) \
87 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000088static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050089 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000090{
Josef Bacikc6100a42017-05-05 11:57:13 -040091 if (tree->ops && tree->ops->check_extent_io_range)
92 tree->ops->check_extent_io_range(tree->private_data, caller,
93 start, end);
David Sterba8d599ae2013-04-30 15:22:23 +000094}
Eric Sandeen6d49ba12013-04-22 16:12:31 +000095#else
96#define btrfs_leak_debug_add(new, head) do {} while (0)
97#define btrfs_leak_debug_del(entry) do {} while (0)
98#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +000099#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400100#endif
Chris Masond1310b22008-01-24 16:13:08 -0500101
Chris Masond1310b22008-01-24 16:13:08 -0500102#define BUFFER_LRU_MAX 64
103
104struct tree_entry {
105 u64 start;
106 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500107 struct rb_node rb_node;
108};
109
110struct extent_page_data {
111 struct bio *bio;
112 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -0500113 /* tells writepage not to lock the state bits for this range
114 * it still does the unlocking
115 */
Chris Masonffbd5172009-04-20 15:50:09 -0400116 unsigned int extent_locked:1;
117
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600118 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400119 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500120};
121
Qu Wenruod38ed272015-10-12 14:53:37 +0800122static void add_extent_changeset(struct extent_state *state, unsigned bits,
123 struct extent_changeset *changeset,
124 int set)
125{
126 int ret;
127
128 if (!changeset)
129 return;
130 if (set && (state->state & bits) == bits)
131 return;
Qu Wenruofefdc552015-10-12 15:35:38 +0800132 if (!set && (state->state & bits) == 0)
133 return;
Qu Wenruod38ed272015-10-12 14:53:37 +0800134 changeset->bytes_changed += state->end - state->start + 1;
David Sterba53d32352017-02-13 13:42:29 +0100135 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800136 GFP_ATOMIC);
137 /* ENOMEM */
138 BUG_ON(ret < 0);
139}
140
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400141static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400142static inline struct btrfs_fs_info *
143tree_fs_info(struct extent_io_tree *tree)
144{
Josef Bacikc6100a42017-05-05 11:57:13 -0400145 if (tree->ops)
146 return tree->ops->tree_fs_info(tree->private_data);
147 return NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400148}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400149
Chris Masond1310b22008-01-24 16:13:08 -0500150int __init extent_io_init(void)
151{
David Sterba837e1972012-09-07 03:00:48 -0600152 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200153 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300154 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500155 if (!extent_state_cache)
156 return -ENOMEM;
157
David Sterba837e1972012-09-07 03:00:48 -0600158 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200159 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300160 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500161 if (!extent_buffer_cache)
162 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400163
164 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
NeilBrown011067b2017-06-18 14:38:57 +1000165 offsetof(struct btrfs_io_bio, bio),
166 BIOSET_NEED_BVECS);
Chris Mason9be33952013-05-17 18:30:14 -0400167 if (!btrfs_bioset)
168 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700169
170 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
171 goto free_bioset;
172
Chris Masond1310b22008-01-24 16:13:08 -0500173 return 0;
174
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700175free_bioset:
176 bioset_free(btrfs_bioset);
177 btrfs_bioset = NULL;
178
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
189void extent_io_exit(void)
190{
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);
Chris Mason9be33952013-05-17 18:30:14 -0400200 if (btrfs_bioset)
201 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500202}
203
204void extent_io_tree_init(struct extent_io_tree *tree,
Josef Bacikc6100a42017-05-05 11:57:13 -0400205 void *private_data)
Chris Masond1310b22008-01-24 16:13:08 -0500206{
Eric Paris6bef4d32010-02-23 19:43:04 +0000207 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500208 tree->ops = NULL;
209 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500210 spin_lock_init(&tree->lock);
Josef Bacikc6100a42017-05-05 11:57:13 -0400211 tree->private_data = private_data;
Chris Masond1310b22008-01-24 16:13:08 -0500212}
Chris Masond1310b22008-01-24 16:13:08 -0500213
Christoph Hellwigb2950862008-12-02 09:54:17 -0500214static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500215{
216 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500217
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100218 /*
219 * The given mask might be not appropriate for the slab allocator,
220 * drop the unsupported bits
221 */
222 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500223 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400224 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500225 return state;
226 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100227 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100228 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000229 btrfs_leak_debug_add(&state->leak_list, &states);
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200230 refcount_set(&state->refs, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500231 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100232 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500233 return state;
234}
Chris Masond1310b22008-01-24 16:13:08 -0500235
Chris Mason4845e442010-05-25 20:56:50 -0400236void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500237{
Chris Masond1310b22008-01-24 16:13:08 -0500238 if (!state)
239 return;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200240 if (refcount_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100241 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000242 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100243 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500244 kmem_cache_free(extent_state_cache, state);
245 }
246}
Chris Masond1310b22008-01-24 16:13:08 -0500247
Filipe Mananaf2071b22014-02-12 15:05:53 +0000248static struct rb_node *tree_insert(struct rb_root *root,
249 struct rb_node *search_start,
250 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000251 struct rb_node *node,
252 struct rb_node ***p_in,
253 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500254{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000255 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500256 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500257 struct tree_entry *entry;
258
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000259 if (p_in && parent_in) {
260 p = *p_in;
261 parent = *parent_in;
262 goto do_insert;
263 }
264
Filipe Mananaf2071b22014-02-12 15:05:53 +0000265 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500266 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500267 parent = *p;
268 entry = rb_entry(parent, struct tree_entry, rb_node);
269
270 if (offset < entry->start)
271 p = &(*p)->rb_left;
272 else if (offset > entry->end)
273 p = &(*p)->rb_right;
274 else
275 return parent;
276 }
277
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000278do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500279 rb_link_node(node, parent, p);
280 rb_insert_color(node, root);
281 return NULL;
282}
283
Chris Mason80ea96b2008-02-01 14:51:59 -0500284static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000285 struct rb_node **prev_ret,
286 struct rb_node **next_ret,
287 struct rb_node ***p_ret,
288 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500289{
Chris Mason80ea96b2008-02-01 14:51:59 -0500290 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000291 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500292 struct rb_node *prev = NULL;
293 struct rb_node *orig_prev = NULL;
294 struct tree_entry *entry;
295 struct tree_entry *prev_entry = NULL;
296
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000297 while (*n) {
298 prev = *n;
299 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500300 prev_entry = entry;
301
302 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000303 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500304 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000305 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500306 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000307 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500308 }
309
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000310 if (p_ret)
311 *p_ret = n;
312 if (parent_ret)
313 *parent_ret = prev;
314
Chris Masond1310b22008-01-24 16:13:08 -0500315 if (prev_ret) {
316 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500317 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500318 prev = rb_next(prev);
319 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
320 }
321 *prev_ret = prev;
322 prev = orig_prev;
323 }
324
325 if (next_ret) {
326 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500327 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500328 prev = rb_prev(prev);
329 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
330 }
331 *next_ret = prev;
332 }
333 return NULL;
334}
335
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000336static inline struct rb_node *
337tree_search_for_insert(struct extent_io_tree *tree,
338 u64 offset,
339 struct rb_node ***p_ret,
340 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500341{
Chris Mason70dec802008-01-29 09:59:12 -0500342 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500343 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500344
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000345 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500346 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500347 return prev;
348 return ret;
349}
350
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000351static inline struct rb_node *tree_search(struct extent_io_tree *tree,
352 u64 offset)
353{
354 return tree_search_for_insert(tree, offset, NULL, NULL);
355}
356
Josef Bacik9ed74f22009-09-11 16:12:44 -0400357static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
358 struct extent_state *other)
359{
360 if (tree->ops && tree->ops->merge_extent_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400361 tree->ops->merge_extent_hook(tree->private_data, new, other);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400362}
363
Chris Masond1310b22008-01-24 16:13:08 -0500364/*
365 * utility function to look for merge candidates inside a given range.
366 * Any extents with matching state are merged together into a single
367 * extent in the tree. Extents with EXTENT_IO in their state field
368 * are not merged because the end_io handlers need to be able to do
369 * operations on them without sleeping (or doing allocations/splits).
370 *
371 * This should be called with the tree lock held.
372 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000373static void merge_state(struct extent_io_tree *tree,
374 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500375{
376 struct extent_state *other;
377 struct rb_node *other_node;
378
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400379 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000380 return;
Chris Masond1310b22008-01-24 16:13:08 -0500381
382 other_node = rb_prev(&state->rb_node);
383 if (other_node) {
384 other = rb_entry(other_node, struct extent_state, rb_node);
385 if (other->end == state->start - 1 &&
386 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400387 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500388 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500389 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100390 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500391 free_extent_state(other);
392 }
393 }
394 other_node = rb_next(&state->rb_node);
395 if (other_node) {
396 other = rb_entry(other_node, struct extent_state, rb_node);
397 if (other->start == state->end + 1 &&
398 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400399 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400400 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400401 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100402 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400403 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500404 }
405 }
Chris Masond1310b22008-01-24 16:13:08 -0500406}
407
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000408static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100409 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500410{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000411 if (tree->ops && tree->ops->set_bit_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400412 tree->ops->set_bit_hook(tree->private_data, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500413}
414
415static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100416 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500417{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400418 if (tree->ops && tree->ops->clear_bit_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400419 tree->ops->clear_bit_hook(tree->private_data, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500420}
421
Xiao Guangrong3150b692011-07-14 03:19:08 +0000422static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800423 struct extent_state *state, unsigned *bits,
424 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000425
Chris Masond1310b22008-01-24 16:13:08 -0500426/*
427 * insert an extent_state struct into the tree. 'bits' are set on the
428 * struct before it is inserted.
429 *
430 * This may return -EEXIST if the extent is already there, in which case the
431 * state struct is freed.
432 *
433 * The tree lock is not taken internally. This is a utility function and
434 * probably isn't what you want to call (see set/clear_extent_bit).
435 */
436static int insert_state(struct extent_io_tree *tree,
437 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000438 struct rb_node ***p,
439 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800440 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500441{
442 struct rb_node *node;
443
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000444 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500445 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200446 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500447 state->start = start;
448 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400449
Qu Wenruod38ed272015-10-12 14:53:37 +0800450 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000451
Filipe Mananaf2071b22014-02-12 15:05:53 +0000452 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500453 if (node) {
454 struct extent_state *found;
455 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400456 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200457 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500458 return -EEXIST;
459 }
460 merge_state(tree, state);
461 return 0;
462}
463
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000464static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400465 u64 split)
466{
467 if (tree->ops && tree->ops->split_extent_hook)
Josef Bacikc6100a42017-05-05 11:57:13 -0400468 tree->ops->split_extent_hook(tree->private_data, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400469}
470
Chris Masond1310b22008-01-24 16:13:08 -0500471/*
472 * split a given extent state struct in two, inserting the preallocated
473 * struct 'prealloc' as the newly created second half. 'split' indicates an
474 * offset inside 'orig' where it should be split.
475 *
476 * Before calling,
477 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
478 * are two extent state structs in the tree:
479 * prealloc: [orig->start, split - 1]
480 * orig: [ split, orig->end ]
481 *
482 * The tree locks are not taken by this function. They need to be held
483 * by the caller.
484 */
485static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
486 struct extent_state *prealloc, u64 split)
487{
488 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400489
490 split_cb(tree, orig, split);
491
Chris Masond1310b22008-01-24 16:13:08 -0500492 prealloc->start = orig->start;
493 prealloc->end = split - 1;
494 prealloc->state = orig->state;
495 orig->start = split;
496
Filipe Mananaf2071b22014-02-12 15:05:53 +0000497 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
498 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500499 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500500 free_extent_state(prealloc);
501 return -EEXIST;
502 }
503 return 0;
504}
505
Li Zefancdc6a392012-03-12 16:39:48 +0800506static struct extent_state *next_state(struct extent_state *state)
507{
508 struct rb_node *next = rb_next(&state->rb_node);
509 if (next)
510 return rb_entry(next, struct extent_state, rb_node);
511 else
512 return NULL;
513}
514
Chris Masond1310b22008-01-24 16:13:08 -0500515/*
516 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800517 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500518 *
519 * If no bits are set on the state struct after clearing things, the
520 * struct is freed and removed from the tree
521 */
Li Zefancdc6a392012-03-12 16:39:48 +0800522static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
523 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800524 unsigned *bits, int wake,
525 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500526{
Li Zefancdc6a392012-03-12 16:39:48 +0800527 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100528 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500529
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400530 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500531 u64 range = state->end - state->start + 1;
532 WARN_ON(range > tree->dirty_bytes);
533 tree->dirty_bytes -= range;
534 }
Chris Mason291d6732008-01-29 15:55:23 -0500535 clear_state_cb(tree, state, bits);
Qu Wenruofefdc552015-10-12 15:35:38 +0800536 add_extent_changeset(state, bits_to_clear, changeset, 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400537 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500538 if (wake)
539 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400540 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800541 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100542 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500543 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100544 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500545 free_extent_state(state);
546 } else {
547 WARN_ON(1);
548 }
549 } else {
550 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800551 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500552 }
Li Zefancdc6a392012-03-12 16:39:48 +0800553 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500554}
555
Xiao Guangrong82337672011-04-20 06:44:57 +0000556static struct extent_state *
557alloc_extent_state_atomic(struct extent_state *prealloc)
558{
559 if (!prealloc)
560 prealloc = alloc_extent_state(GFP_ATOMIC);
561
562 return prealloc;
563}
564
Eric Sandeen48a3b632013-04-25 20:41:01 +0000565static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400566{
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400567 btrfs_panic(tree_fs_info(tree), err,
568 "Locking error: Extent tree was modified by another thread while locked.");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400569}
570
Chris Masond1310b22008-01-24 16:13:08 -0500571/*
572 * clear some bits on a range in the tree. This may require splitting
573 * or inserting elements in the tree, so the gfp mask is used to
574 * indicate which allocations or sleeping are allowed.
575 *
576 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
577 * the given range from the tree regardless of state (ie for truncate).
578 *
579 * the range [start, end] is inclusive.
580 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100581 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500582 */
David Sterba66b0c882017-10-31 16:30:47 +0100583int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Qu Wenruofefdc552015-10-12 15:35:38 +0800584 unsigned bits, int wake, int delete,
585 struct extent_state **cached_state,
586 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500587{
588 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400589 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500590 struct extent_state *prealloc = NULL;
591 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400592 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500593 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000594 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500595
Josef Bacika5dee372013-12-13 10:02:44 -0500596 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000597
Josef Bacik7ee9e442013-06-21 16:37:03 -0400598 if (bits & EXTENT_DELALLOC)
599 bits |= EXTENT_NORESERVE;
600
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400601 if (delete)
602 bits |= ~EXTENT_CTLBITS;
603 bits |= EXTENT_FIRST_DELALLOC;
604
Josef Bacik2ac55d42010-02-03 19:33:23 +0000605 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
606 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500607again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800608 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000609 /*
610 * Don't care for allocation failure here because we might end
611 * up not needing the pre-allocated extent state at all, which
612 * is the case if we only have in the tree extent states that
613 * cover our input range and don't cover too any other range.
614 * If we end up needing a new extent state we allocate it later.
615 */
Chris Masond1310b22008-01-24 16:13:08 -0500616 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500617 }
618
Chris Masoncad321a2008-12-17 14:51:42 -0500619 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400620 if (cached_state) {
621 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000622
623 if (clear) {
624 *cached_state = NULL;
625 cached_state = NULL;
626 }
627
Filipe Manana27a35072014-07-06 20:09:59 +0100628 if (cached && extent_state_in_tree(cached) &&
629 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000630 if (clear)
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200631 refcount_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400632 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400633 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400634 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000635 if (clear)
636 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400637 }
Chris Masond1310b22008-01-24 16:13:08 -0500638 /*
639 * this search will find the extents that end after
640 * our range starts
641 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500642 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500643 if (!node)
644 goto out;
645 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400646hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500647 if (state->start > end)
648 goto out;
649 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400650 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500651
Liu Bo04493142012-02-16 18:34:37 +0800652 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800653 if (!(state->state & bits)) {
654 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800655 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800656 }
Liu Bo04493142012-02-16 18:34:37 +0800657
Chris Masond1310b22008-01-24 16:13:08 -0500658 /*
659 * | ---- desired range ---- |
660 * | state | or
661 * | ------------- state -------------- |
662 *
663 * We need to split the extent we found, and may flip
664 * bits on second half.
665 *
666 * If the extent we found extends past our range, we
667 * just split and search again. It'll get split again
668 * the next time though.
669 *
670 * If the extent we found is inside our range, we clear
671 * the desired bit on it.
672 */
673
674 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000675 prealloc = alloc_extent_state_atomic(prealloc);
676 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500677 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400678 if (err)
679 extent_io_tree_panic(tree, err);
680
Chris Masond1310b22008-01-24 16:13:08 -0500681 prealloc = NULL;
682 if (err)
683 goto out;
684 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800685 state = clear_state_bit(tree, state, &bits, wake,
686 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800687 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500688 }
689 goto search_again;
690 }
691 /*
692 * | ---- desired range ---- |
693 * | state |
694 * We need to split the extent, and clear the bit
695 * on the first half
696 */
697 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000698 prealloc = alloc_extent_state_atomic(prealloc);
699 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500700 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400701 if (err)
702 extent_io_tree_panic(tree, err);
703
Chris Masond1310b22008-01-24 16:13:08 -0500704 if (wake)
705 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400706
Qu Wenruofefdc552015-10-12 15:35:38 +0800707 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400708
Chris Masond1310b22008-01-24 16:13:08 -0500709 prealloc = NULL;
710 goto out;
711 }
Chris Mason42daec22009-09-23 19:51:09 -0400712
Qu Wenruofefdc552015-10-12 15:35:38 +0800713 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800714next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400715 if (last_end == (u64)-1)
716 goto out;
717 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800718 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800719 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500720
721search_again:
722 if (start > end)
723 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500724 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800725 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500726 cond_resched();
727 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200728
729out:
730 spin_unlock(&tree->lock);
731 if (prealloc)
732 free_extent_state(prealloc);
733
734 return 0;
735
Chris Masond1310b22008-01-24 16:13:08 -0500736}
Chris Masond1310b22008-01-24 16:13:08 -0500737
Jeff Mahoney143bede2012-03-01 14:56:26 +0100738static void wait_on_state(struct extent_io_tree *tree,
739 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500740 __releases(tree->lock)
741 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500742{
743 DEFINE_WAIT(wait);
744 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500745 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500746 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500747 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500748 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500749}
750
751/*
752 * waits for one or more bits to clear on a range in the state tree.
753 * The range [start, end] is inclusive.
754 * The tree lock is taken by this function
755 */
David Sterba41074882013-04-29 13:38:46 +0000756static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
757 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500758{
759 struct extent_state *state;
760 struct rb_node *node;
761
Josef Bacika5dee372013-12-13 10:02:44 -0500762 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000763
Chris Masoncad321a2008-12-17 14:51:42 -0500764 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500765again:
766 while (1) {
767 /*
768 * this search will find all the extents that end after
769 * our range starts
770 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500771 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100772process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500773 if (!node)
774 break;
775
776 state = rb_entry(node, struct extent_state, rb_node);
777
778 if (state->start > end)
779 goto out;
780
781 if (state->state & bits) {
782 start = state->start;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200783 refcount_inc(&state->refs);
Chris Masond1310b22008-01-24 16:13:08 -0500784 wait_on_state(tree, state);
785 free_extent_state(state);
786 goto again;
787 }
788 start = state->end + 1;
789
790 if (start > end)
791 break;
792
Filipe Mananac50d3e72014-03-31 14:53:25 +0100793 if (!cond_resched_lock(&tree->lock)) {
794 node = rb_next(node);
795 goto process_node;
796 }
Chris Masond1310b22008-01-24 16:13:08 -0500797 }
798out:
Chris Masoncad321a2008-12-17 14:51:42 -0500799 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500800}
Chris Masond1310b22008-01-24 16:13:08 -0500801
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000802static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500803 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800804 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500805{
David Sterba9ee49a042015-01-14 19:52:13 +0100806 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400807
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000808 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400809 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500810 u64 range = state->end - state->start + 1;
811 tree->dirty_bytes += range;
812 }
Qu Wenruod38ed272015-10-12 14:53:37 +0800813 add_extent_changeset(state, bits_to_set, changeset, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400814 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500815}
816
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100817static void cache_state_if_flags(struct extent_state *state,
818 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100819 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400820{
821 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100822 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400823 *cached_ptr = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +0200824 refcount_inc(&state->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400825 }
826 }
827}
828
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100829static void cache_state(struct extent_state *state,
830 struct extent_state **cached_ptr)
831{
832 return cache_state_if_flags(state, cached_ptr,
833 EXTENT_IOBITS | EXTENT_BOUNDARY);
834}
835
Chris Masond1310b22008-01-24 16:13:08 -0500836/*
Chris Mason1edbb732009-09-02 13:24:36 -0400837 * set some bits on a range in the tree. This may require allocations or
838 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500839 *
Chris Mason1edbb732009-09-02 13:24:36 -0400840 * If any of the exclusive bits are set, this will fail with -EEXIST if some
841 * part of the range already has the desired bits set. The start of the
842 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500843 *
Chris Mason1edbb732009-09-02 13:24:36 -0400844 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500845 */
Chris Mason1edbb732009-09-02 13:24:36 -0400846
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100847static int __must_check
848__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100849 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000850 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800851 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500852{
853 struct extent_state *state;
854 struct extent_state *prealloc = NULL;
855 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000856 struct rb_node **p;
857 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500858 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500859 u64 last_start;
860 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400861
Josef Bacika5dee372013-12-13 10:02:44 -0500862 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000863
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400864 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500865again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800866 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200867 /*
868 * Don't care for allocation failure here because we might end
869 * up not needing the pre-allocated extent state at all, which
870 * is the case if we only have in the tree extent states that
871 * cover our input range and don't cover too any other range.
872 * If we end up needing a new extent state we allocate it later.
873 */
Chris Masond1310b22008-01-24 16:13:08 -0500874 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500875 }
876
Chris Masoncad321a2008-12-17 14:51:42 -0500877 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400878 if (cached_state && *cached_state) {
879 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400880 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100881 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400882 node = &state->rb_node;
883 goto hit_next;
884 }
885 }
Chris Masond1310b22008-01-24 16:13:08 -0500886 /*
887 * this search will find all the extents that end after
888 * our range starts.
889 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000890 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500891 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000892 prealloc = alloc_extent_state_atomic(prealloc);
893 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000894 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800895 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400896 if (err)
897 extent_io_tree_panic(tree, err);
898
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000899 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500900 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500901 goto out;
902 }
Chris Masond1310b22008-01-24 16:13:08 -0500903 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400904hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500905 last_start = state->start;
906 last_end = state->end;
907
908 /*
909 * | ---- desired range ---- |
910 * | state |
911 *
912 * Just lock what we found and keep going
913 */
914 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400915 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500916 *failed_start = state->start;
917 err = -EEXIST;
918 goto out;
919 }
Chris Mason42daec22009-09-23 19:51:09 -0400920
Qu Wenruod38ed272015-10-12 14:53:37 +0800921 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400922 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500923 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400924 if (last_end == (u64)-1)
925 goto out;
926 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800927 state = next_state(state);
928 if (start < end && state && state->start == start &&
929 !need_resched())
930 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500931 goto search_again;
932 }
933
934 /*
935 * | ---- desired range ---- |
936 * | state |
937 * or
938 * | ------------- state -------------- |
939 *
940 * We need to split the extent we found, and may flip bits on
941 * second half.
942 *
943 * If the extent we found extends past our
944 * range, we just split and search again. It'll get split
945 * again the next time though.
946 *
947 * If the extent we found is inside our range, we set the
948 * desired bit on it.
949 */
950 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400951 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500952 *failed_start = start;
953 err = -EEXIST;
954 goto out;
955 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000956
957 prealloc = alloc_extent_state_atomic(prealloc);
958 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500959 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400960 if (err)
961 extent_io_tree_panic(tree, err);
962
Chris Masond1310b22008-01-24 16:13:08 -0500963 prealloc = NULL;
964 if (err)
965 goto out;
966 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800967 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400968 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500969 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400970 if (last_end == (u64)-1)
971 goto out;
972 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800973 state = next_state(state);
974 if (start < end && state && state->start == start &&
975 !need_resched())
976 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500977 }
978 goto search_again;
979 }
980 /*
981 * | ---- desired range ---- |
982 * | state | or | state |
983 *
984 * There's a hole, we need to insert something in it and
985 * ignore the extent we found.
986 */
987 if (state->start > start) {
988 u64 this_end;
989 if (end < last_start)
990 this_end = end;
991 else
Chris Masond3977122009-01-05 21:25:51 -0500992 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000993
994 prealloc = alloc_extent_state_atomic(prealloc);
995 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000996
997 /*
998 * Avoid to free 'prealloc' if it can be merged with
999 * the later extent.
1000 */
Chris Masond1310b22008-01-24 16:13:08 -05001001 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001002 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001003 if (err)
1004 extent_io_tree_panic(tree, err);
1005
Chris Mason2c64c532009-09-02 15:04:12 -04001006 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001007 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001008 start = this_end + 1;
1009 goto search_again;
1010 }
1011 /*
1012 * | ---- desired range ---- |
1013 * | state |
1014 * We need to split the extent, and set the bit
1015 * on the first half
1016 */
1017 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001018 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001019 *failed_start = start;
1020 err = -EEXIST;
1021 goto out;
1022 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001023
1024 prealloc = alloc_extent_state_atomic(prealloc);
1025 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001026 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001027 if (err)
1028 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001029
Qu Wenruod38ed272015-10-12 14:53:37 +08001030 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001031 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001032 merge_state(tree, prealloc);
1033 prealloc = NULL;
1034 goto out;
1035 }
1036
David Sterbab5a4ba12016-04-27 01:02:15 +02001037search_again:
1038 if (start > end)
1039 goto out;
1040 spin_unlock(&tree->lock);
1041 if (gfpflags_allow_blocking(mask))
1042 cond_resched();
1043 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001044
1045out:
Chris Masoncad321a2008-12-17 14:51:42 -05001046 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001047 if (prealloc)
1048 free_extent_state(prealloc);
1049
1050 return err;
1051
Chris Masond1310b22008-01-24 16:13:08 -05001052}
Chris Masond1310b22008-01-24 16:13:08 -05001053
David Sterba41074882013-04-29 13:38:46 +00001054int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001055 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001056 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001057{
1058 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001059 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001060}
1061
1062
Josef Bacik462d6fa2011-09-26 13:56:12 -04001063/**
Liu Bo10983f22012-07-11 15:26:19 +08001064 * convert_extent_bit - convert all bits in a given range from one bit to
1065 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001066 * @tree: the io tree to search
1067 * @start: the start offset in bytes
1068 * @end: the end offset in bytes (inclusive)
1069 * @bits: the bits to set in this range
1070 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001071 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001072 *
1073 * This will go through and set bits for the given range. If any states exist
1074 * already in this range they are set with the given bit and cleared of the
1075 * clear_bits. This is only meant to be used by things that are mergeable, ie
1076 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1077 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001078 *
1079 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001080 */
1081int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001082 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001083 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001084{
1085 struct extent_state *state;
1086 struct extent_state *prealloc = NULL;
1087 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001088 struct rb_node **p;
1089 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001090 int err = 0;
1091 u64 last_start;
1092 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001093 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001094
Josef Bacika5dee372013-12-13 10:02:44 -05001095 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001096
Josef Bacik462d6fa2011-09-26 13:56:12 -04001097again:
David Sterba210aa272016-04-26 23:54:39 +02001098 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001099 /*
1100 * Best effort, don't worry if extent state allocation fails
1101 * here for the first iteration. We might have a cached state
1102 * that matches exactly the target range, in which case no
1103 * extent state allocations are needed. We'll only know this
1104 * after locking the tree.
1105 */
David Sterba210aa272016-04-26 23:54:39 +02001106 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001107 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001108 return -ENOMEM;
1109 }
1110
1111 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001112 if (cached_state && *cached_state) {
1113 state = *cached_state;
1114 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001115 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001116 node = &state->rb_node;
1117 goto hit_next;
1118 }
1119 }
1120
Josef Bacik462d6fa2011-09-26 13:56:12 -04001121 /*
1122 * this search will find all the extents that end after
1123 * our range starts.
1124 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001125 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001126 if (!node) {
1127 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001128 if (!prealloc) {
1129 err = -ENOMEM;
1130 goto out;
1131 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001132 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001133 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001134 if (err)
1135 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001136 cache_state(prealloc, cached_state);
1137 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001138 goto out;
1139 }
1140 state = rb_entry(node, struct extent_state, rb_node);
1141hit_next:
1142 last_start = state->start;
1143 last_end = state->end;
1144
1145 /*
1146 * | ---- desired range ---- |
1147 * | state |
1148 *
1149 * Just lock what we found and keep going
1150 */
1151 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001152 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001153 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001154 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001155 if (last_end == (u64)-1)
1156 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001157 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001158 if (start < end && state && state->start == start &&
1159 !need_resched())
1160 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001161 goto search_again;
1162 }
1163
1164 /*
1165 * | ---- desired range ---- |
1166 * | state |
1167 * or
1168 * | ------------- state -------------- |
1169 *
1170 * We need to split the extent we found, and may flip bits on
1171 * second half.
1172 *
1173 * If the extent we found extends past our
1174 * range, we just split and search again. It'll get split
1175 * again the next time though.
1176 *
1177 * If the extent we found is inside our range, we set the
1178 * desired bit on it.
1179 */
1180 if (state->start < start) {
1181 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001182 if (!prealloc) {
1183 err = -ENOMEM;
1184 goto out;
1185 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001186 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001187 if (err)
1188 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001189 prealloc = NULL;
1190 if (err)
1191 goto out;
1192 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001193 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001194 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001195 state = clear_state_bit(tree, state, &clear_bits, 0,
1196 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001197 if (last_end == (u64)-1)
1198 goto out;
1199 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001200 if (start < end && state && state->start == start &&
1201 !need_resched())
1202 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001203 }
1204 goto search_again;
1205 }
1206 /*
1207 * | ---- desired range ---- |
1208 * | state | or | state |
1209 *
1210 * There's a hole, we need to insert something in it and
1211 * ignore the extent we found.
1212 */
1213 if (state->start > start) {
1214 u64 this_end;
1215 if (end < last_start)
1216 this_end = end;
1217 else
1218 this_end = last_start - 1;
1219
1220 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001221 if (!prealloc) {
1222 err = -ENOMEM;
1223 goto out;
1224 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001225
1226 /*
1227 * Avoid to free 'prealloc' if it can be merged with
1228 * the later extent.
1229 */
1230 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001231 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001232 if (err)
1233 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001234 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001235 prealloc = NULL;
1236 start = this_end + 1;
1237 goto search_again;
1238 }
1239 /*
1240 * | ---- desired range ---- |
1241 * | state |
1242 * We need to split the extent, and set the bit
1243 * on the first half
1244 */
1245 if (state->start <= end && state->end > end) {
1246 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001247 if (!prealloc) {
1248 err = -ENOMEM;
1249 goto out;
1250 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001251
1252 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001253 if (err)
1254 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001255
Qu Wenruod38ed272015-10-12 14:53:37 +08001256 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001257 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001258 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001259 prealloc = NULL;
1260 goto out;
1261 }
1262
Josef Bacik462d6fa2011-09-26 13:56:12 -04001263search_again:
1264 if (start > end)
1265 goto out;
1266 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001267 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001268 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001269 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001270
1271out:
1272 spin_unlock(&tree->lock);
1273 if (prealloc)
1274 free_extent_state(prealloc);
1275
1276 return err;
1277}
1278
Chris Masond1310b22008-01-24 16:13:08 -05001279/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001280int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001281 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001282{
1283 /*
1284 * We don't support EXTENT_LOCKED yet, as current changeset will
1285 * record any bits changed, so for EXTENT_LOCKED case, it will
1286 * either fail with -EEXIST or changeset will record the whole
1287 * range.
1288 */
1289 BUG_ON(bits & EXTENT_LOCKED);
1290
David Sterba2c53b912016-04-26 23:54:39 +02001291 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001292 changeset);
1293}
1294
Qu Wenruofefdc552015-10-12 15:35:38 +08001295int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1296 unsigned bits, int wake, int delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001297 struct extent_state **cached)
Qu Wenruofefdc552015-10-12 15:35:38 +08001298{
1299 return __clear_extent_bit(tree, start, end, bits, wake, delete,
David Sterbaae0f1622017-10-31 16:37:52 +01001300 cached, GFP_NOFS, NULL);
Qu Wenruofefdc552015-10-12 15:35:38 +08001301}
1302
Qu Wenruofefdc552015-10-12 15:35:38 +08001303int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001304 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001305{
1306 /*
1307 * Don't support EXTENT_LOCKED case, same reason as
1308 * set_record_extent_bits().
1309 */
1310 BUG_ON(bits & EXTENT_LOCKED);
1311
David Sterbaf734c442016-04-26 23:54:39 +02001312 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001313 changeset);
1314}
1315
Chris Masond352ac62008-09-29 15:18:18 -04001316/*
1317 * either insert or lock state struct between start and end use mask to tell
1318 * us if waiting is desired.
1319 */
Chris Mason1edbb732009-09-02 13:24:36 -04001320int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001321 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001322{
1323 int err;
1324 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001325
Chris Masond1310b22008-01-24 16:13:08 -05001326 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001327 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001328 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001329 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001330 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001331 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1332 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001333 } else
Chris Masond1310b22008-01-24 16:13:08 -05001334 break;
Chris Masond1310b22008-01-24 16:13:08 -05001335 WARN_ON(start > end);
1336 }
1337 return err;
1338}
Chris Masond1310b22008-01-24 16:13:08 -05001339
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001340int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001341{
1342 int err;
1343 u64 failed_start;
1344
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001345 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001346 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001347 if (err == -EEXIST) {
1348 if (failed_start > start)
1349 clear_extent_bit(tree, start, failed_start - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001350 EXTENT_LOCKED, 1, 0, NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001351 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001352 }
Josef Bacik25179202008-10-29 14:49:05 -04001353 return 1;
1354}
Josef Bacik25179202008-10-29 14:49:05 -04001355
David Sterbabd1fa4f2015-12-03 13:08:59 +01001356void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001357{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001358 unsigned long index = start >> PAGE_SHIFT;
1359 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001360 struct page *page;
1361
1362 while (index <= end_index) {
1363 page = find_get_page(inode->i_mapping, index);
1364 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1365 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001366 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001367 index++;
1368 }
Chris Mason4adaa612013-03-26 13:07:00 -04001369}
1370
David Sterbaf6311572015-12-03 13:08:59 +01001371void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001372{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001373 unsigned long index = start >> PAGE_SHIFT;
1374 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001375 struct page *page;
1376
1377 while (index <= end_index) {
1378 page = find_get_page(inode->i_mapping, index);
1379 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001380 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001381 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001382 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001383 index++;
1384 }
Chris Mason4adaa612013-03-26 13:07:00 -04001385}
1386
Chris Masond1310b22008-01-24 16:13:08 -05001387/*
Chris Masond1310b22008-01-24 16:13:08 -05001388 * helper function to set both pages and extents in the tree writeback
1389 */
David Sterba35de6db2015-12-03 13:08:59 +01001390static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001391{
Josef Bacikc6100a42017-05-05 11:57:13 -04001392 tree->ops->set_range_writeback(tree->private_data, start, end);
Chris Masond1310b22008-01-24 16:13:08 -05001393}
Chris Masond1310b22008-01-24 16:13:08 -05001394
Chris Masond352ac62008-09-29 15:18:18 -04001395/* find the first state struct with 'bits' set after 'start', and
1396 * return it. tree->lock must be held. NULL will returned if
1397 * nothing was found after 'start'
1398 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001399static struct extent_state *
1400find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001401 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001402{
1403 struct rb_node *node;
1404 struct extent_state *state;
1405
1406 /*
1407 * this search will find all the extents that end after
1408 * our range starts.
1409 */
1410 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001411 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001412 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001413
Chris Masond3977122009-01-05 21:25:51 -05001414 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001415 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001416 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001417 return state;
Chris Masond3977122009-01-05 21:25:51 -05001418
Chris Masond7fc6402008-02-18 12:12:38 -05001419 node = rb_next(node);
1420 if (!node)
1421 break;
1422 }
1423out:
1424 return NULL;
1425}
Chris Masond7fc6402008-02-18 12:12:38 -05001426
Chris Masond352ac62008-09-29 15:18:18 -04001427/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001428 * find the first offset in the io tree with 'bits' set. zero is
1429 * returned if we find something, and *start_ret and *end_ret are
1430 * set to reflect the state struct that was found.
1431 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001432 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001433 */
1434int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001435 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001436 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001437{
1438 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001439 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001440 int ret = 1;
1441
1442 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001443 if (cached_state && *cached_state) {
1444 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001445 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001446 n = rb_next(&state->rb_node);
1447 while (n) {
1448 state = rb_entry(n, struct extent_state,
1449 rb_node);
1450 if (state->state & bits)
1451 goto got_it;
1452 n = rb_next(n);
1453 }
1454 free_extent_state(*cached_state);
1455 *cached_state = NULL;
1456 goto out;
1457 }
1458 free_extent_state(*cached_state);
1459 *cached_state = NULL;
1460 }
1461
Xiao Guangrong69261c42011-07-14 03:19:45 +00001462 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001463got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001464 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001465 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001466 *start_ret = state->start;
1467 *end_ret = state->end;
1468 ret = 0;
1469 }
Josef Bacike6138872012-09-27 17:07:30 -04001470out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001471 spin_unlock(&tree->lock);
1472 return ret;
1473}
1474
1475/*
Chris Masond352ac62008-09-29 15:18:18 -04001476 * find a contiguous range of bytes in the file marked as delalloc, not
1477 * more than 'max_bytes'. start and end are used to return the range,
1478 *
1479 * 1 is returned if we find something, 0 if nothing was in the tree
1480 */
Chris Masonc8b97812008-10-29 14:49:59 -04001481static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001482 u64 *start, u64 *end, u64 max_bytes,
1483 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001484{
1485 struct rb_node *node;
1486 struct extent_state *state;
1487 u64 cur_start = *start;
1488 u64 found = 0;
1489 u64 total_bytes = 0;
1490
Chris Masoncad321a2008-12-17 14:51:42 -05001491 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001492
Chris Masond1310b22008-01-24 16:13:08 -05001493 /*
1494 * this search will find all the extents that end after
1495 * our range starts.
1496 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001497 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001498 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001499 if (!found)
1500 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001501 goto out;
1502 }
1503
Chris Masond3977122009-01-05 21:25:51 -05001504 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001505 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001506 if (found && (state->start != cur_start ||
1507 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001508 goto out;
1509 }
1510 if (!(state->state & EXTENT_DELALLOC)) {
1511 if (!found)
1512 *end = state->end;
1513 goto out;
1514 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001515 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001516 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001517 *cached_state = state;
Elena Reshetovab7ac31b2017-03-03 10:55:19 +02001518 refcount_inc(&state->refs);
Josef Bacikc2a128d2010-02-02 21:19:11 +00001519 }
Chris Masond1310b22008-01-24 16:13:08 -05001520 found++;
1521 *end = state->end;
1522 cur_start = state->end + 1;
1523 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001524 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001525 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001526 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001527 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001528 break;
1529 }
1530out:
Chris Masoncad321a2008-12-17 14:51:42 -05001531 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001532 return found;
1533}
1534
Liu Boda2c7002017-02-10 16:41:05 +01001535static int __process_pages_contig(struct address_space *mapping,
1536 struct page *locked_page,
1537 pgoff_t start_index, pgoff_t end_index,
1538 unsigned long page_ops, pgoff_t *index_ret);
1539
Jeff Mahoney143bede2012-03-01 14:56:26 +01001540static noinline void __unlock_for_delalloc(struct inode *inode,
1541 struct page *locked_page,
1542 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001543{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001544 unsigned long index = start >> PAGE_SHIFT;
1545 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001546
Liu Bo76c00212017-02-10 16:42:14 +01001547 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001548 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001549 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001550
Liu Bo76c00212017-02-10 16:42:14 +01001551 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1552 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001553}
1554
1555static noinline int lock_delalloc_pages(struct inode *inode,
1556 struct page *locked_page,
1557 u64 delalloc_start,
1558 u64 delalloc_end)
1559{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001560 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001561 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001562 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001563 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001564
Liu Bo76c00212017-02-10 16:42:14 +01001565 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001566 if (index == locked_page->index && index == end_index)
1567 return 0;
1568
Liu Bo76c00212017-02-10 16:42:14 +01001569 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1570 end_index, PAGE_LOCK, &index_ret);
1571 if (ret == -EAGAIN)
1572 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1573 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001574 return ret;
1575}
1576
1577/*
1578 * find a contiguous range of bytes in the file marked as delalloc, not
1579 * more than 'max_bytes'. start and end are used to return the range,
1580 *
1581 * 1 is returned if we find something, 0 if nothing was in the tree
1582 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001583STATIC u64 find_lock_delalloc_range(struct inode *inode,
1584 struct extent_io_tree *tree,
1585 struct page *locked_page, u64 *start,
1586 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001587{
1588 u64 delalloc_start;
1589 u64 delalloc_end;
1590 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001591 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001592 int ret;
1593 int loops = 0;
1594
1595again:
1596 /* step one, find a bunch of delalloc bytes starting at start */
1597 delalloc_start = *start;
1598 delalloc_end = 0;
1599 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001600 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001601 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001602 *start = delalloc_start;
1603 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001604 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001605 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001606 }
1607
1608 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001609 * start comes from the offset of locked_page. We have to lock
1610 * pages in order, so we can't process delalloc bytes before
1611 * locked_page
1612 */
Chris Masond3977122009-01-05 21:25:51 -05001613 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001614 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001615
1616 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001617 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001618 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001619 if (delalloc_end + 1 - delalloc_start > max_bytes)
1620 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001621
Chris Masonc8b97812008-10-29 14:49:59 -04001622 /* step two, lock all the pages after the page that has start */
1623 ret = lock_delalloc_pages(inode, locked_page,
1624 delalloc_start, delalloc_end);
1625 if (ret == -EAGAIN) {
1626 /* some of the pages are gone, lets avoid looping by
1627 * shortening the size of the delalloc range we're searching
1628 */
Chris Mason9655d292009-09-02 15:22:30 -04001629 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001630 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001631 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001632 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001633 loops = 1;
1634 goto again;
1635 } else {
1636 found = 0;
1637 goto out_failed;
1638 }
1639 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001640 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001641
1642 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001643 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001644
1645 /* then test to make sure it is all still delalloc */
1646 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001647 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001648 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001649 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1650 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001651 __unlock_for_delalloc(inode, locked_page,
1652 delalloc_start, delalloc_end);
1653 cond_resched();
1654 goto again;
1655 }
Chris Mason9655d292009-09-02 15:22:30 -04001656 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001657 *start = delalloc_start;
1658 *end = delalloc_end;
1659out_failed:
1660 return found;
1661}
1662
Liu Boda2c7002017-02-10 16:41:05 +01001663static int __process_pages_contig(struct address_space *mapping,
1664 struct page *locked_page,
1665 pgoff_t start_index, pgoff_t end_index,
1666 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001667{
Liu Bo873695b2017-02-02 17:49:22 -08001668 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001669 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001670 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001671 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001672 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001673 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001674 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001675
Liu Boda2c7002017-02-10 16:41:05 +01001676 if (page_ops & PAGE_LOCK) {
1677 ASSERT(page_ops == PAGE_LOCK);
1678 ASSERT(index_ret && *index_ret == start_index);
1679 }
1680
Filipe Manana704de492014-10-06 22:14:22 +01001681 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001682 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001683
Chris Masond3977122009-01-05 21:25:51 -05001684 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001685 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001686 min_t(unsigned long,
1687 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001688 if (ret == 0) {
1689 /*
1690 * Only if we're going to lock these pages,
1691 * can we find nothing at @index.
1692 */
1693 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001694 err = -EAGAIN;
1695 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001696 }
Chris Mason8b62b722009-09-02 16:53:46 -04001697
Liu Boda2c7002017-02-10 16:41:05 +01001698 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001699 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001700 SetPagePrivate2(pages[i]);
1701
Chris Masonc8b97812008-10-29 14:49:59 -04001702 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001703 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001704 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001705 continue;
1706 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001707 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001708 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001709 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001710 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001711 if (page_ops & PAGE_SET_ERROR)
1712 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001713 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001714 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001715 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001716 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001717 if (page_ops & PAGE_LOCK) {
1718 lock_page(pages[i]);
1719 if (!PageDirty(pages[i]) ||
1720 pages[i]->mapping != mapping) {
1721 unlock_page(pages[i]);
1722 put_page(pages[i]);
1723 err = -EAGAIN;
1724 goto out;
1725 }
1726 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001727 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001728 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001729 }
1730 nr_pages -= ret;
1731 index += ret;
1732 cond_resched();
1733 }
Liu Boda2c7002017-02-10 16:41:05 +01001734out:
1735 if (err && index_ret)
1736 *index_ret = start_index + pages_locked - 1;
1737 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001738}
Chris Masonc8b97812008-10-29 14:49:59 -04001739
Liu Bo873695b2017-02-02 17:49:22 -08001740void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1741 u64 delalloc_end, struct page *locked_page,
1742 unsigned clear_bits,
1743 unsigned long page_ops)
1744{
1745 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001746 NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001747
1748 __process_pages_contig(inode->i_mapping, locked_page,
1749 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001750 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001751}
1752
Chris Masond352ac62008-09-29 15:18:18 -04001753/*
1754 * count the number of bytes in the tree that have a given bit(s)
1755 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1756 * cached. The total number found is returned.
1757 */
Chris Masond1310b22008-01-24 16:13:08 -05001758u64 count_range_bits(struct extent_io_tree *tree,
1759 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001760 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001761{
1762 struct rb_node *node;
1763 struct extent_state *state;
1764 u64 cur_start = *start;
1765 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001766 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001767 int found = 0;
1768
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301769 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001770 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001771
Chris Masoncad321a2008-12-17 14:51:42 -05001772 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001773 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1774 total_bytes = tree->dirty_bytes;
1775 goto out;
1776 }
1777 /*
1778 * this search will find all the extents that end after
1779 * our range starts.
1780 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001781 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001782 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001783 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001784
Chris Masond3977122009-01-05 21:25:51 -05001785 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001786 state = rb_entry(node, struct extent_state, rb_node);
1787 if (state->start > search_end)
1788 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001789 if (contig && found && state->start > last + 1)
1790 break;
1791 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001792 total_bytes += min(search_end, state->end) + 1 -
1793 max(cur_start, state->start);
1794 if (total_bytes >= max_bytes)
1795 break;
1796 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001797 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001798 found = 1;
1799 }
Chris Masonec29ed52011-02-23 16:23:20 -05001800 last = state->end;
1801 } else if (contig && found) {
1802 break;
Chris Masond1310b22008-01-24 16:13:08 -05001803 }
1804 node = rb_next(node);
1805 if (!node)
1806 break;
1807 }
1808out:
Chris Masoncad321a2008-12-17 14:51:42 -05001809 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001810 return total_bytes;
1811}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001812
Chris Masond352ac62008-09-29 15:18:18 -04001813/*
1814 * set the private field for a given byte offset in the tree. If there isn't
1815 * an extent_state there already, this does nothing.
1816 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001817static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001818 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001819{
1820 struct rb_node *node;
1821 struct extent_state *state;
1822 int ret = 0;
1823
Chris Masoncad321a2008-12-17 14:51:42 -05001824 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001825 /*
1826 * this search will find all the extents that end after
1827 * our range starts.
1828 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001829 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001830 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001831 ret = -ENOENT;
1832 goto out;
1833 }
1834 state = rb_entry(node, struct extent_state, rb_node);
1835 if (state->start != start) {
1836 ret = -ENOENT;
1837 goto out;
1838 }
David Sterba47dc1962016-02-11 13:24:13 +01001839 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001840out:
Chris Masoncad321a2008-12-17 14:51:42 -05001841 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001842 return ret;
1843}
1844
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001845static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001846 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001847{
1848 struct rb_node *node;
1849 struct extent_state *state;
1850 int ret = 0;
1851
Chris Masoncad321a2008-12-17 14:51:42 -05001852 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001853 /*
1854 * this search will find all the extents that end after
1855 * our range starts.
1856 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001857 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001858 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001859 ret = -ENOENT;
1860 goto out;
1861 }
1862 state = rb_entry(node, struct extent_state, rb_node);
1863 if (state->start != start) {
1864 ret = -ENOENT;
1865 goto out;
1866 }
David Sterba47dc1962016-02-11 13:24:13 +01001867 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001868out:
Chris Masoncad321a2008-12-17 14:51:42 -05001869 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001870 return ret;
1871}
1872
1873/*
1874 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001875 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001876 * has the bits set. Otherwise, 1 is returned if any bit in the
1877 * range is found set.
1878 */
1879int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001880 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001881{
1882 struct extent_state *state = NULL;
1883 struct rb_node *node;
1884 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001885
Chris Masoncad321a2008-12-17 14:51:42 -05001886 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001887 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001888 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001889 node = &cached->rb_node;
1890 else
1891 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001892 while (node && start <= end) {
1893 state = rb_entry(node, struct extent_state, rb_node);
1894
1895 if (filled && state->start > start) {
1896 bitset = 0;
1897 break;
1898 }
1899
1900 if (state->start > end)
1901 break;
1902
1903 if (state->state & bits) {
1904 bitset = 1;
1905 if (!filled)
1906 break;
1907 } else if (filled) {
1908 bitset = 0;
1909 break;
1910 }
Chris Mason46562ce2009-09-23 20:23:16 -04001911
1912 if (state->end == (u64)-1)
1913 break;
1914
Chris Masond1310b22008-01-24 16:13:08 -05001915 start = state->end + 1;
1916 if (start > end)
1917 break;
1918 node = rb_next(node);
1919 if (!node) {
1920 if (filled)
1921 bitset = 0;
1922 break;
1923 }
1924 }
Chris Masoncad321a2008-12-17 14:51:42 -05001925 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001926 return bitset;
1927}
Chris Masond1310b22008-01-24 16:13:08 -05001928
1929/*
1930 * helper function to set a given page up to date if all the
1931 * extents in the tree for that page are up to date
1932 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001933static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001934{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001935 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001936 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001937 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001938 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001939}
1940
Josef Bacik7870d082017-05-05 11:57:15 -04001941int free_io_failure(struct extent_io_tree *failure_tree,
1942 struct extent_io_tree *io_tree,
1943 struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001944{
1945 int ret;
1946 int err = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001947
David Sterba47dc1962016-02-11 13:24:13 +01001948 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001949 ret = clear_extent_bits(failure_tree, rec->start,
1950 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001951 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001952 if (ret)
1953 err = ret;
1954
Josef Bacik7870d082017-05-05 11:57:15 -04001955 ret = clear_extent_bits(io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001956 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001957 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001958 if (ret && !err)
1959 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001960
1961 kfree(rec);
1962 return err;
1963}
1964
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001965/*
1966 * this bypasses the standard btrfs submit functions deliberately, as
1967 * the standard behavior is to write all copies in a raid setup. here we only
1968 * want to write the one bad copy. so we do the mapping for ourselves and issue
1969 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001970 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001971 * actually prevents the read that triggered the error from finishing.
1972 * currently, there can be no more than two copies of every data bit. thus,
1973 * exactly one rewrite is required.
1974 */
Josef Bacik6ec656b2017-05-05 11:57:14 -04001975int repair_io_failure(struct btrfs_fs_info *fs_info, u64 ino, u64 start,
1976 u64 length, u64 logical, struct page *page,
1977 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001978{
1979 struct bio *bio;
1980 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001981 u64 map_length = 0;
1982 u64 sector;
1983 struct btrfs_bio *bbio = NULL;
1984 int ret;
1985
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001986 ASSERT(!(fs_info->sb->s_flags & SB_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001987 BUG_ON(!mirror_num);
1988
David Sterbac5e4c3d2017-06-12 17:29:41 +02001989 bio = btrfs_io_bio_alloc(1);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001990 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001991 map_length = length;
1992
Filipe Mananab5de8d02016-05-27 22:21:27 +01001993 /*
1994 * Avoid races with device replace and make sure our bbio has devices
1995 * associated to its stripes that don't go away while we are doing the
1996 * read repair operation.
1997 */
1998 btrfs_bio_counter_inc_blocked(fs_info);
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03001999 if (btrfs_is_parity_mirror(fs_info, logical, length)) {
Liu Boc7253282017-03-29 10:53:58 -07002000 /*
2001 * Note that we don't use BTRFS_MAP_WRITE because it's supposed
2002 * to update all raid stripes, but here we just want to correct
2003 * bad stripe, thus BTRFS_MAP_READ is abused to only get the bad
2004 * stripe's dev and sector.
2005 */
2006 ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, logical,
2007 &map_length, &bbio, 0);
2008 if (ret) {
2009 btrfs_bio_counter_dec(fs_info);
2010 bio_put(bio);
2011 return -EIO;
2012 }
2013 ASSERT(bbio->mirror_num == 1);
2014 } else {
2015 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
2016 &map_length, &bbio, mirror_num);
2017 if (ret) {
2018 btrfs_bio_counter_dec(fs_info);
2019 bio_put(bio);
2020 return -EIO;
2021 }
2022 BUG_ON(mirror_num != bbio->mirror_num);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002023 }
Liu Boc7253282017-03-29 10:53:58 -07002024
2025 sector = bbio->stripes[bbio->mirror_num - 1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002026 bio->bi_iter.bi_sector = sector;
Liu Boc7253282017-03-29 10:53:58 -07002027 dev = bbio->stripes[bbio->mirror_num - 1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002028 btrfs_put_bbio(bbio);
Anand Jainebbede42017-12-04 12:54:52 +08002029 if (!dev || !dev->bdev ||
2030 !test_bit(BTRFS_DEV_STATE_WRITEABLE, &dev->dev_state)) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002031 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002032 bio_put(bio);
2033 return -EIO;
2034 }
Christoph Hellwig74d46992017-08-23 19:10:32 +02002035 bio_set_dev(bio, dev->bdev);
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002036 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002037 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002038
Mike Christie4e49ea42016-06-05 14:31:41 -05002039 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002040 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002041 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002042 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002043 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002044 return -EIO;
2045 }
2046
David Sterbab14af3b2015-10-08 10:43:10 +02002047 btrfs_info_rl_in_rcu(fs_info,
2048 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Josef Bacik6ec656b2017-05-05 11:57:14 -04002049 ino, start,
Miao Xie1203b682014-09-12 18:44:01 +08002050 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002051 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002052 bio_put(bio);
2053 return 0;
2054}
2055
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002056int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2057 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002058{
Josef Bacikea466792012-03-26 21:57:36 -04002059 u64 start = eb->start;
2060 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002061 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002062
David Howellsbc98a422017-07-17 08:45:34 +01002063 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002064 return -EROFS;
2065
Josef Bacikea466792012-03-26 21:57:36 -04002066 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002067 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002068
Josef Bacik6ec656b2017-05-05 11:57:14 -04002069 ret = repair_io_failure(fs_info, 0, start, PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002070 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002071 if (ret)
2072 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002073 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002074 }
2075
2076 return ret;
2077}
2078
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002079/*
2080 * each time an IO finishes, we do a fast check in the IO failure tree
2081 * to see if we need to process or clean up an io_failure_record
2082 */
Josef Bacik7870d082017-05-05 11:57:15 -04002083int clean_io_failure(struct btrfs_fs_info *fs_info,
2084 struct extent_io_tree *failure_tree,
2085 struct extent_io_tree *io_tree, u64 start,
2086 struct page *page, u64 ino, unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002087{
2088 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002089 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002090 struct extent_state *state;
2091 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002092 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002093
2094 private = 0;
Josef Bacik7870d082017-05-05 11:57:15 -04002095 ret = count_range_bits(failure_tree, &private, (u64)-1, 1,
2096 EXTENT_DIRTY, 0);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002097 if (!ret)
2098 return 0;
2099
Josef Bacik7870d082017-05-05 11:57:15 -04002100 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002101 if (ret)
2102 return 0;
2103
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 BUG_ON(!failrec->this_mirror);
2105
2106 if (failrec->in_validation) {
2107 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002108 btrfs_debug(fs_info,
2109 "clean_io_failure: freeing dummy error at %llu",
2110 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002111 goto out;
2112 }
David Howellsbc98a422017-07-17 08:45:34 +01002113 if (sb_rdonly(fs_info->sb))
Ilya Dryomov908960c2013-11-03 19:06:39 +02002114 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002115
Josef Bacik7870d082017-05-05 11:57:15 -04002116 spin_lock(&io_tree->lock);
2117 state = find_first_extent_bit_state(io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002118 failrec->start,
2119 EXTENT_LOCKED);
Josef Bacik7870d082017-05-05 11:57:15 -04002120 spin_unlock(&io_tree->lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002121
Miao Xie883d0de2013-07-25 19:22:35 +08002122 if (state && state->start <= failrec->start &&
2123 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002124 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2125 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002126 if (num_copies > 1) {
Josef Bacik7870d082017-05-05 11:57:15 -04002127 repair_io_failure(fs_info, ino, start, failrec->len,
2128 failrec->logical, page, pg_offset,
2129 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002130 }
2131 }
2132
2133out:
Josef Bacik7870d082017-05-05 11:57:15 -04002134 free_io_failure(failure_tree, io_tree, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002135
Miao Xie454ff3d2014-09-12 18:43:58 +08002136 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002137}
2138
Miao Xief6124962014-09-12 18:44:04 +08002139/*
2140 * Can be called when
2141 * - hold extent lock
2142 * - under ordered extent
2143 * - the inode is freeing
2144 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002145void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002146{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002147 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002148 struct io_failure_record *failrec;
2149 struct extent_state *state, *next;
2150
2151 if (RB_EMPTY_ROOT(&failure_tree->state))
2152 return;
2153
2154 spin_lock(&failure_tree->lock);
2155 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2156 while (state) {
2157 if (state->start > end)
2158 break;
2159
2160 ASSERT(state->end <= end);
2161
2162 next = next_state(state);
2163
David Sterba47dc1962016-02-11 13:24:13 +01002164 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002165 free_extent_state(state);
2166 kfree(failrec);
2167
2168 state = next;
2169 }
2170 spin_unlock(&failure_tree->lock);
2171}
2172
Miao Xie2fe63032014-09-12 18:43:59 +08002173int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002174 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002175{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002176 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002177 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002178 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002179 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2180 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2181 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002182 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002183 u64 logical;
2184
David Sterba47dc1962016-02-11 13:24:13 +01002185 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002186 if (ret) {
2187 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2188 if (!failrec)
2189 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002190
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002191 failrec->start = start;
2192 failrec->len = end - start + 1;
2193 failrec->this_mirror = 0;
2194 failrec->bio_flags = 0;
2195 failrec->in_validation = 0;
2196
2197 read_lock(&em_tree->lock);
2198 em = lookup_extent_mapping(em_tree, start, failrec->len);
2199 if (!em) {
2200 read_unlock(&em_tree->lock);
2201 kfree(failrec);
2202 return -EIO;
2203 }
2204
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002205 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002206 free_extent_map(em);
2207 em = NULL;
2208 }
2209 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002210 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002211 kfree(failrec);
2212 return -EIO;
2213 }
Miao Xie2fe63032014-09-12 18:43:59 +08002214
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002215 logical = start - em->start;
2216 logical = em->block_start + logical;
2217 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2218 logical = em->block_start;
2219 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2220 extent_set_compress_type(&failrec->bio_flags,
2221 em->compress_type);
2222 }
Miao Xie2fe63032014-09-12 18:43:59 +08002223
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002224 btrfs_debug(fs_info,
2225 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2226 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002227
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002228 failrec->logical = logical;
2229 free_extent_map(em);
2230
2231 /* set the bits in the private failure tree */
2232 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002233 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002234 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002235 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002236 /* set the bits in the inode's tree */
2237 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002238 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002239 if (ret < 0) {
2240 kfree(failrec);
2241 return ret;
2242 }
2243 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002244 btrfs_debug(fs_info,
2245 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2246 failrec->logical, failrec->start, failrec->len,
2247 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002248 /*
2249 * when data can be on disk more than twice, add to failrec here
2250 * (e.g. with a list for failed_mirror) to make
2251 * clean_io_failure() clean all those errors at once.
2252 */
2253 }
Miao Xie2fe63032014-09-12 18:43:59 +08002254
2255 *failrec_ret = failrec;
2256
2257 return 0;
2258}
2259
Liu Boc3cfb652017-07-13 15:00:50 -07002260bool btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
Miao Xie2fe63032014-09-12 18:43:59 +08002261 struct io_failure_record *failrec, int failed_mirror)
2262{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002263 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002264 int num_copies;
2265
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002266 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002267 if (num_copies == 1) {
2268 /*
2269 * we only have a single copy of the data, so don't bother with
2270 * all the retry and error correction code that follows. no
2271 * matter what the error is, it is very likely to persist.
2272 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002273 btrfs_debug(fs_info,
2274 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2275 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002276 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002277 }
2278
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002279 /*
2280 * there are two premises:
2281 * a) deliver good data to the caller
2282 * b) correct the bad sectors on disk
2283 */
2284 if (failed_bio->bi_vcnt > 1) {
2285 /*
2286 * to fulfill b), we need to know the exact failing sectors, as
2287 * we don't want to rewrite any more than the failed ones. thus,
2288 * we need separate read requests for the failed bio
2289 *
2290 * if the following BUG_ON triggers, our validation request got
2291 * merged. we need separate requests for our algorithm to work.
2292 */
2293 BUG_ON(failrec->in_validation);
2294 failrec->in_validation = 1;
2295 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002296 } else {
2297 /*
2298 * we're ready to fulfill a) and b) alongside. get a good copy
2299 * of the failed sector and if we succeed, we have setup
2300 * everything for repair_io_failure to do the rest for us.
2301 */
2302 if (failrec->in_validation) {
2303 BUG_ON(failrec->this_mirror != failed_mirror);
2304 failrec->in_validation = 0;
2305 failrec->this_mirror = 0;
2306 }
2307 failrec->failed_mirror = failed_mirror;
2308 failrec->this_mirror++;
2309 if (failrec->this_mirror == failed_mirror)
2310 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002311 }
2312
Miao Xiefacc8a222013-07-25 19:22:34 +08002313 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002314 btrfs_debug(fs_info,
2315 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2316 num_copies, failrec->this_mirror, failed_mirror);
Liu Boc3cfb652017-07-13 15:00:50 -07002317 return false;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002318 }
2319
Liu Boc3cfb652017-07-13 15:00:50 -07002320 return true;
Miao Xie2fe63032014-09-12 18:43:59 +08002321}
2322
2323
2324struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2325 struct io_failure_record *failrec,
2326 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002327 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002328{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002329 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002330 struct bio *bio;
2331 struct btrfs_io_bio *btrfs_failed_bio;
2332 struct btrfs_io_bio *btrfs_bio;
2333
David Sterbac5e4c3d2017-06-12 17:29:41 +02002334 bio = btrfs_io_bio_alloc(1);
Miao Xie2fe63032014-09-12 18:43:59 +08002335 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002336 bio->bi_iter.bi_sector = failrec->logical >> 9;
Christoph Hellwig74d46992017-08-23 19:10:32 +02002337 bio_set_dev(bio, fs_info->fs_devices->latest_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07002338 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002339 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002340
Miao Xiefacc8a222013-07-25 19:22:34 +08002341 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2342 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002343 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2344
2345 btrfs_bio = btrfs_io_bio(bio);
2346 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002347 icsum *= csum_size;
2348 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002349 csum_size);
2350 }
2351
Miao Xie2fe63032014-09-12 18:43:59 +08002352 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002353
Miao Xie2fe63032014-09-12 18:43:59 +08002354 return bio;
2355}
2356
2357/*
2358 * this is a generic handler for readpage errors (default
2359 * readpage_io_failed_hook). if other copies exist, read those and write back
2360 * good data to the failed position. does not investigate in remapping the
2361 * failed extent elsewhere, hoping the device will be smart enough to do this as
2362 * needed
2363 */
2364
2365static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2366 struct page *page, u64 start, u64 end,
2367 int failed_mirror)
2368{
2369 struct io_failure_record *failrec;
2370 struct inode *inode = page->mapping->host;
2371 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002372 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Miao Xie2fe63032014-09-12 18:43:59 +08002373 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002374 int read_mode = 0;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002375 blk_status_t status;
Miao Xie2fe63032014-09-12 18:43:59 +08002376 int ret;
2377
Mike Christie1f7ad752016-06-05 14:31:51 -05002378 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002379
2380 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2381 if (ret)
2382 return ret;
2383
Liu Boc3cfb652017-07-13 15:00:50 -07002384 if (!btrfs_check_repairable(inode, failed_bio, failrec,
2385 failed_mirror)) {
Josef Bacik7870d082017-05-05 11:57:15 -04002386 free_io_failure(failure_tree, tree, failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002387 return -EIO;
2388 }
2389
2390 if (failed_bio->bi_vcnt > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002391 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002392
2393 phy_offset >>= inode->i_sb->s_blocksize_bits;
2394 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2395 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002396 (int)phy_offset, failed_bio->bi_end_io,
2397 NULL);
Mike Christie1f7ad752016-06-05 14:31:51 -05002398 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie2fe63032014-09-12 18:43:59 +08002399
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002400 btrfs_debug(btrfs_sb(inode->i_sb),
2401 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2402 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002403
Linus Torvalds8c27cb32017-07-05 16:41:23 -07002404 status = tree->ops->submit_bio_hook(tree->private_data, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002405 failrec->bio_flags, 0);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002406 if (status) {
Josef Bacik7870d082017-05-05 11:57:15 -04002407 free_io_failure(failure_tree, tree, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002408 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002409 ret = blk_status_to_errno(status);
Miao Xie6c387ab2014-09-12 18:43:57 +08002410 }
2411
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002412 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002413}
2414
Chris Masond1310b22008-01-24 16:13:08 -05002415/* lots and lots of room for performance fixes in the end_bio funcs */
2416
David Sterbab5227c02015-12-03 13:08:59 +01002417void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002418{
2419 int uptodate = (err == 0);
2420 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002421 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002422
2423 tree = &BTRFS_I(page->mapping->host)->io_tree;
2424
David Sterbac3988d62017-02-17 15:18:32 +01002425 if (tree->ops && tree->ops->writepage_end_io_hook)
2426 tree->ops->writepage_end_io_hook(page, start, end, NULL,
2427 uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002428
Jeff Mahoney87826df2012-02-15 16:23:57 +01002429 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002430 ClearPageUptodate(page);
2431 SetPageError(page);
Colin Ian Kingbff5baf2017-05-09 18:14:01 +01002432 ret = err < 0 ? err : -EIO;
Liu Bo5dca6ee2014-05-12 12:47:36 +08002433 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002434 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002435}
2436
Chris Masond1310b22008-01-24 16:13:08 -05002437/*
2438 * after a writepage IO is done, we need to:
2439 * clear the uptodate bits on error
2440 * clear the writeback bits in the extent tree for this IO
2441 * end_page_writeback if the page has no more pending IO
2442 *
2443 * Scheduling is not allowed, so the extent state tree is expected
2444 * to have one and only one object corresponding to this IO.
2445 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002446static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002447{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002448 int error = blk_status_to_errno(bio->bi_status);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002449 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002450 u64 start;
2451 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002452 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002453
David Sterbac09abff2017-07-13 18:10:07 +02002454 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002455 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002456 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002457 struct inode *inode = page->mapping->host;
2458 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002459
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002460 /* We always issue full-page reads, but if some block
2461 * in a page fails to read, blk_update_request() will
2462 * advance bv_offset and adjust bv_len to compensate.
2463 * Print a warning for nonzero offsets, and an error
2464 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002465 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2466 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002467 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002468 "partial page write in btrfs with offset %u and length %u",
2469 bvec->bv_offset, bvec->bv_len);
2470 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002471 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002472 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002473 bvec->bv_offset, bvec->bv_len);
2474 }
Chris Masond1310b22008-01-24 16:13:08 -05002475
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002476 start = page_offset(page);
2477 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002478
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002479 end_extent_writepage(page, error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002480 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002481 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002482
Chris Masond1310b22008-01-24 16:13:08 -05002483 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002484}
2485
Miao Xie883d0de2013-07-25 19:22:35 +08002486static void
2487endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2488 int uptodate)
2489{
2490 struct extent_state *cached = NULL;
2491 u64 end = start + len - 1;
2492
2493 if (uptodate && tree->track_uptodate)
2494 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2495 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2496}
2497
Chris Masond1310b22008-01-24 16:13:08 -05002498/*
2499 * after a readpage IO is done, we need to:
2500 * clear the uptodate bits on error
2501 * set the uptodate bits if things worked
2502 * set the page up to date if all extents in the tree are uptodate
2503 * clear the lock bit in the extent tree
2504 * unlock the page if there are no other extents locked for it
2505 *
2506 * Scheduling is not allowed, so the extent state tree is expected
2507 * to have one and only one object corresponding to this IO.
2508 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002509static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002510{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002511 struct bio_vec *bvec;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002512 int uptodate = !bio->bi_status;
Miao Xiefacc8a222013-07-25 19:22:34 +08002513 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacik7870d082017-05-05 11:57:15 -04002514 struct extent_io_tree *tree, *failure_tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002515 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002516 u64 start;
2517 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002518 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002519 u64 extent_start = 0;
2520 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002521 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002522 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002523 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002524
David Sterbac09abff2017-07-13 18:10:07 +02002525 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08002526 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002527 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002528 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002529 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen507903b2011-04-06 10:02:20 +00002530
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002531 btrfs_debug(fs_info,
2532 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002533 (u64)bio->bi_iter.bi_sector, bio->bi_status,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002534 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002535 tree = &BTRFS_I(inode)->io_tree;
Josef Bacik7870d082017-05-05 11:57:15 -04002536 failure_tree = &BTRFS_I(inode)->io_failure_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002537
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002538 /* We always issue full-page reads, but if some block
2539 * in a page fails to read, blk_update_request() will
2540 * advance bv_offset and adjust bv_len to compensate.
2541 * Print a warning for nonzero offsets, and an error
2542 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002543 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2544 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002545 btrfs_err(fs_info,
2546 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002547 bvec->bv_offset, bvec->bv_len);
2548 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002549 btrfs_info(fs_info,
2550 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002551 bvec->bv_offset, bvec->bv_len);
2552 }
Chris Masond1310b22008-01-24 16:13:08 -05002553
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002554 start = page_offset(page);
2555 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002556 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002557
Chris Mason9be33952013-05-17 18:30:14 -04002558 mirror = io_bio->mirror_num;
David Sterba20c98012017-02-17 15:59:35 +01002559 if (likely(uptodate && tree->ops)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002560 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2561 page, start, end,
2562 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002563 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002564 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002565 else
Josef Bacik7870d082017-05-05 11:57:15 -04002566 clean_io_failure(BTRFS_I(inode)->root->fs_info,
2567 failure_tree, tree, start,
2568 page,
2569 btrfs_ino(BTRFS_I(inode)), 0);
Chris Masond1310b22008-01-24 16:13:08 -05002570 }
Josef Bacikea466792012-03-26 21:57:36 -04002571
Miao Xief2a09da2013-07-25 19:22:33 +08002572 if (likely(uptodate))
2573 goto readpage_ok;
2574
David Sterba20a7db82017-02-17 16:24:29 +01002575 if (tree->ops) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002576 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Liu Bo9d0d1c82017-03-24 15:04:50 -07002577 if (ret == -EAGAIN) {
2578 /*
2579 * Data inode's readpage_io_failed_hook() always
2580 * returns -EAGAIN.
2581 *
2582 * The generic bio_readpage_error handles errors
2583 * the following way: If possible, new read
2584 * requests are created and submitted and will
2585 * end up in end_bio_extent_readpage as well (if
2586 * we're lucky, not in the !uptodate case). In
2587 * that case it returns 0 and we just go on with
2588 * the next page in our bio. If it can't handle
2589 * the error it will return -EIO and we remain
2590 * responsible for that page.
2591 */
2592 ret = bio_readpage_error(bio, offset, page,
2593 start, end, mirror);
2594 if (ret == 0) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002595 uptodate = !bio->bi_status;
Liu Bo9d0d1c82017-03-24 15:04:50 -07002596 offset += len;
2597 continue;
2598 }
Chris Mason7e383262008-04-09 16:28:12 -04002599 }
Liu Bo9d0d1c82017-03-24 15:04:50 -07002600
2601 /*
2602 * metadata's readpage_io_failed_hook() always returns
2603 * -EIO and fixes nothing. -EIO is also returned if
2604 * data inode error could not be fixed.
2605 */
2606 ASSERT(ret == -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002607 }
Miao Xief2a09da2013-07-25 19:22:33 +08002608readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002609 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002610 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002611 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002612 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002613
2614 /* Zero out the end if this page straddles i_size */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002615 off = i_size & (PAGE_SIZE-1);
Liu Boa583c022014-08-19 23:32:22 +08002616 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002617 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002618 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002619 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002620 ClearPageUptodate(page);
2621 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002622 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002623 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002624 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002625
2626 if (unlikely(!uptodate)) {
2627 if (extent_len) {
2628 endio_readpage_release_extent(tree,
2629 extent_start,
2630 extent_len, 1);
2631 extent_start = 0;
2632 extent_len = 0;
2633 }
2634 endio_readpage_release_extent(tree, start,
2635 end - start + 1, 0);
2636 } else if (!extent_len) {
2637 extent_start = start;
2638 extent_len = end + 1 - start;
2639 } else if (extent_start + extent_len == start) {
2640 extent_len += end + 1 - start;
2641 } else {
2642 endio_readpage_release_extent(tree, extent_start,
2643 extent_len, uptodate);
2644 extent_start = start;
2645 extent_len = end + 1 - start;
2646 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002647 }
Chris Masond1310b22008-01-24 16:13:08 -05002648
Miao Xie883d0de2013-07-25 19:22:35 +08002649 if (extent_len)
2650 endio_readpage_release_extent(tree, extent_start, extent_len,
2651 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002652 if (io_bio->end_io)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002653 io_bio->end_io(io_bio, blk_status_to_errno(bio->bi_status));
Chris Masond1310b22008-01-24 16:13:08 -05002654 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002655}
2656
Chris Mason9be33952013-05-17 18:30:14 -04002657/*
David Sterba184f9992017-06-12 17:29:39 +02002658 * Initialize the members up to but not including 'bio'. Use after allocating a
2659 * new bio by bio_alloc_bioset as it does not initialize the bytes outside of
2660 * 'bio' because use of __GFP_ZERO is not supported.
Chris Mason9be33952013-05-17 18:30:14 -04002661 */
David Sterba184f9992017-06-12 17:29:39 +02002662static inline void btrfs_io_bio_init(struct btrfs_io_bio *btrfs_bio)
Chris Masond1310b22008-01-24 16:13:08 -05002663{
David Sterba184f9992017-06-12 17:29:39 +02002664 memset(btrfs_bio, 0, offsetof(struct btrfs_io_bio, bio));
2665}
2666
2667/*
David Sterba6e707bc2017-06-02 17:26:26 +02002668 * The following helpers allocate a bio. As it's backed by a bioset, it'll
2669 * never fail. We're returning a bio right now but you can call btrfs_io_bio
2670 * for the appropriate container_of magic
Chris Masond1310b22008-01-24 16:13:08 -05002671 */
David Sterbac821e7f32017-06-02 18:35:36 +02002672struct bio *btrfs_bio_alloc(struct block_device *bdev, u64 first_byte)
Chris Masond1310b22008-01-24 16:13:08 -05002673{
2674 struct bio *bio;
2675
David Sterba9f2179a2017-06-02 17:55:44 +02002676 bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, btrfs_bioset);
Christoph Hellwig74d46992017-08-23 19:10:32 +02002677 bio_set_dev(bio, bdev);
David Sterbac821e7f32017-06-02 18:35:36 +02002678 bio->bi_iter.bi_sector = first_byte >> 9;
David Sterba184f9992017-06-12 17:29:39 +02002679 btrfs_io_bio_init(btrfs_io_bio(bio));
Chris Masond1310b22008-01-24 16:13:08 -05002680 return bio;
2681}
2682
David Sterba8b6c1d52017-06-02 17:48:13 +02002683struct bio *btrfs_bio_clone(struct bio *bio)
Chris Mason9be33952013-05-17 18:30:14 -04002684{
Miao Xie23ea8e52014-09-12 18:43:54 +08002685 struct btrfs_io_bio *btrfs_bio;
2686 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002687
David Sterba6e707bc2017-06-02 17:26:26 +02002688 /* Bio allocation backed by a bioset does not fail */
David Sterba8b6c1d52017-06-02 17:48:13 +02002689 new = bio_clone_fast(bio, GFP_NOFS, btrfs_bioset);
David Sterba6e707bc2017-06-02 17:26:26 +02002690 btrfs_bio = btrfs_io_bio(new);
David Sterba184f9992017-06-12 17:29:39 +02002691 btrfs_io_bio_init(btrfs_bio);
David Sterba6e707bc2017-06-02 17:26:26 +02002692 btrfs_bio->iter = bio->bi_iter;
Miao Xie23ea8e52014-09-12 18:43:54 +08002693 return new;
2694}
Chris Mason9be33952013-05-17 18:30:14 -04002695
David Sterbac5e4c3d2017-06-12 17:29:41 +02002696struct bio *btrfs_io_bio_alloc(unsigned int nr_iovecs)
Chris Mason9be33952013-05-17 18:30:14 -04002697{
Miao Xiefacc8a222013-07-25 19:22:34 +08002698 struct bio *bio;
2699
David Sterba6e707bc2017-06-02 17:26:26 +02002700 /* Bio allocation backed by a bioset does not fail */
David Sterbac5e4c3d2017-06-12 17:29:41 +02002701 bio = bio_alloc_bioset(GFP_NOFS, nr_iovecs, btrfs_bioset);
David Sterba184f9992017-06-12 17:29:39 +02002702 btrfs_io_bio_init(btrfs_io_bio(bio));
Miao Xiefacc8a222013-07-25 19:22:34 +08002703 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002704}
2705
Liu Boe4770942017-05-16 10:57:14 -07002706struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size)
Liu Bo2f8e9142017-05-15 17:43:31 -07002707{
2708 struct bio *bio;
2709 struct btrfs_io_bio *btrfs_bio;
2710
2711 /* this will never fail when it's backed by a bioset */
Liu Boe4770942017-05-16 10:57:14 -07002712 bio = bio_clone_fast(orig, GFP_NOFS, btrfs_bioset);
Liu Bo2f8e9142017-05-15 17:43:31 -07002713 ASSERT(bio);
2714
2715 btrfs_bio = btrfs_io_bio(bio);
David Sterba184f9992017-06-12 17:29:39 +02002716 btrfs_io_bio_init(btrfs_bio);
Liu Bo2f8e9142017-05-15 17:43:31 -07002717
2718 bio_trim(bio, offset >> 9, size >> 9);
Liu Bo17347ce2017-05-15 15:33:27 -07002719 btrfs_bio->iter = bio->bi_iter;
Liu Bo2f8e9142017-05-15 17:43:31 -07002720 return bio;
2721}
Chris Mason9be33952013-05-17 18:30:14 -04002722
Mike Christie1f7ad752016-06-05 14:31:51 -05002723static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2724 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002725{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002726 blk_status_t ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002727 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2728 struct page *page = bvec->bv_page;
2729 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002730 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002731
Miao Xie4eee4fa2012-12-21 09:17:45 +00002732 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002733
David Woodhouse902b22f2008-08-20 08:51:49 -04002734 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002735 bio_get(bio);
2736
David Sterba20c98012017-02-17 15:59:35 +01002737 if (tree->ops)
Josef Bacikc6100a42017-05-05 11:57:13 -04002738 ret = tree->ops->submit_bio_hook(tree->private_data, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002739 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002740 else
Mike Christie4e49ea42016-06-05 14:31:41 -05002741 btrfsic_submit_bio(bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002742
Chris Masond1310b22008-01-24 16:13:08 -05002743 bio_put(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02002744 return blk_status_to_errno(ret);
Chris Masond1310b22008-01-24 16:13:08 -05002745}
2746
Mike Christie1f7ad752016-06-05 14:31:51 -05002747static int merge_bio(struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002748 unsigned long offset, size_t size, struct bio *bio,
2749 unsigned long bio_flags)
2750{
2751 int ret = 0;
David Sterba20c98012017-02-17 15:59:35 +01002752 if (tree->ops)
Mike Christie81a75f672016-06-05 14:31:54 -05002753 ret = tree->ops->merge_bio_hook(page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002754 bio_flags);
Jeff Mahoney3444a972011-10-03 23:23:13 -04002755 return ret;
2756
2757}
2758
David Sterba4b81ba42017-06-06 19:14:26 +02002759/*
2760 * @opf: bio REQ_OP_* and REQ_* flags as one value
2761 */
2762static int submit_extent_page(unsigned int opf, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002763 struct writeback_control *wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02002764 struct page *page, u64 offset,
David Sterba6c5a4e22017-10-04 17:10:34 +02002765 size_t size, unsigned long pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -05002766 struct block_device *bdev,
2767 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002768 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002769 int mirror_num,
2770 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002771 unsigned long bio_flags,
2772 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002773{
2774 int ret = 0;
2775 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002776 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002777 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002778 size_t page_size = min_t(size_t, size, PAGE_SIZE);
David Sterba6273b7f2017-10-04 17:30:11 +02002779 sector_t sector = offset >> 9;
Chris Masond1310b22008-01-24 16:13:08 -05002780
2781 if (bio_ret && *bio_ret) {
2782 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002783 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002784 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002785 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002786 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002787
2788 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002789 force_bio_submit ||
David Sterba6c5a4e22017-10-04 17:10:34 +02002790 merge_bio(tree, page, pg_offset, page_size, bio, bio_flags) ||
2791 bio_add_page(bio, page, page_size, pg_offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002792 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002793 if (ret < 0) {
2794 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002795 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002796 }
Chris Masond1310b22008-01-24 16:13:08 -05002797 bio = NULL;
2798 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002799 if (wbc)
2800 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002801 return 0;
2802 }
2803 }
Chris Masonc8b97812008-10-29 14:49:59 -04002804
David Sterba6273b7f2017-10-04 17:30:11 +02002805 bio = btrfs_bio_alloc(bdev, offset);
David Sterba6c5a4e22017-10-04 17:10:34 +02002806 bio_add_page(bio, page, page_size, pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002807 bio->bi_end_io = end_io_func;
2808 bio->bi_private = tree;
Jens Axboee6959b92017-06-27 11:51:28 -06002809 bio->bi_write_hint = page->mapping->host->i_write_hint;
David Sterba4b81ba42017-06-06 19:14:26 +02002810 bio->bi_opf = opf;
Chris Masonda2f0f72015-07-02 13:57:22 -07002811 if (wbc) {
2812 wbc_init_bio(wbc, bio);
2813 wbc_account_io(wbc, page, page_size);
2814 }
Chris Mason70dec802008-01-29 09:59:12 -05002815
Chris Masond3977122009-01-05 21:25:51 -05002816 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002817 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002818 else
Mike Christie1f7ad752016-06-05 14:31:51 -05002819 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002820
2821 return ret;
2822}
2823
Eric Sandeen48a3b632013-04-25 20:41:01 +00002824static void attach_extent_buffer_page(struct extent_buffer *eb,
2825 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002826{
2827 if (!PagePrivate(page)) {
2828 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002829 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002830 set_page_private(page, (unsigned long)eb);
2831 } else {
2832 WARN_ON(page->private != (unsigned long)eb);
2833 }
2834}
2835
Chris Masond1310b22008-01-24 16:13:08 -05002836void set_page_extent_mapped(struct page *page)
2837{
2838 if (!PagePrivate(page)) {
2839 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002840 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002841 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002842 }
2843}
2844
Miao Xie125bac012013-07-25 19:22:37 +08002845static struct extent_map *
2846__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2847 u64 start, u64 len, get_extent_t *get_extent,
2848 struct extent_map **em_cached)
2849{
2850 struct extent_map *em;
2851
2852 if (em_cached && *em_cached) {
2853 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002854 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002855 start < extent_map_end(em)) {
Elena Reshetova490b54d2017-03-03 10:55:12 +02002856 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002857 return em;
2858 }
2859
2860 free_extent_map(em);
2861 *em_cached = NULL;
2862 }
2863
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +02002864 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002865 if (em_cached && !IS_ERR_OR_NULL(em)) {
2866 BUG_ON(*em_cached);
Elena Reshetova490b54d2017-03-03 10:55:12 +02002867 refcount_inc(&em->refs);
Miao Xie125bac012013-07-25 19:22:37 +08002868 *em_cached = em;
2869 }
2870 return em;
2871}
Chris Masond1310b22008-01-24 16:13:08 -05002872/*
2873 * basic readpage implementation. Locked extent state structs are inserted
2874 * into the tree that are removed when the IO is done (by the end_io
2875 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002876 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002877 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002878 */
Miao Xie99740902013-07-25 19:22:36 +08002879static int __do_readpage(struct extent_io_tree *tree,
2880 struct page *page,
2881 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002882 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002883 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02002884 unsigned long *bio_flags, unsigned int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002885 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002886{
2887 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002888 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002889 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002890 u64 end;
2891 u64 cur = start;
2892 u64 extent_offset;
2893 u64 last_byte = i_size_read(inode);
2894 u64 block_start;
2895 u64 cur_end;
Chris Masond1310b22008-01-24 16:13:08 -05002896 struct extent_map *em;
2897 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002898 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002899 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002900 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002901 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002902 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002903 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002904 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002905
2906 set_page_extent_mapped(page);
2907
Miao Xie99740902013-07-25 19:22:36 +08002908 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002909 if (!PageUptodate(page)) {
2910 if (cleancache_get_page(page) == 0) {
2911 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002912 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002913 goto out;
2914 }
2915 }
2916
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002917 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002918 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002919 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002920
2921 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002922 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002923 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002924 memset(userpage + zero_offset, 0, iosize);
2925 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002926 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002927 }
2928 }
Chris Masond1310b22008-01-24 16:13:08 -05002929 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002930 bool force_bio_submit = false;
David Sterba6273b7f2017-10-04 17:30:11 +02002931 u64 offset;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002932
Chris Masond1310b22008-01-24 16:13:08 -05002933 if (cur >= last_byte) {
2934 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002935 struct extent_state *cached = NULL;
2936
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002937 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002938 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002939 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002940 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002941 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002942 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002943 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002944 unlock_extent_cached(tree, cur,
2945 cur + iosize - 1,
2946 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002947 break;
2948 }
Miao Xie125bac012013-07-25 19:22:37 +08002949 em = __get_extent_map(inode, page, pg_offset, cur,
2950 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002951 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002952 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00002953 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002954 break;
2955 }
Chris Masond1310b22008-01-24 16:13:08 -05002956 extent_offset = cur - em->start;
2957 BUG_ON(extent_map_end(em) <= cur);
2958 BUG_ON(end < cur);
2959
Li Zefan261507a02010-12-17 14:21:50 +08002960 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002961 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002962 extent_set_compress_type(&this_bio_flag,
2963 em->compress_type);
2964 }
Chris Masonc8b97812008-10-29 14:49:59 -04002965
Chris Masond1310b22008-01-24 16:13:08 -05002966 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2967 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002968 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002969 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2970 disk_io_size = em->block_len;
David Sterba6273b7f2017-10-04 17:30:11 +02002971 offset = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002972 } else {
David Sterba6273b7f2017-10-04 17:30:11 +02002973 offset = em->block_start + extent_offset;
Chris Masonc8b97812008-10-29 14:49:59 -04002974 disk_io_size = iosize;
2975 }
Chris Masond1310b22008-01-24 16:13:08 -05002976 bdev = em->bdev;
2977 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002978 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2979 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002980
2981 /*
2982 * If we have a file range that points to a compressed extent
2983 * and it's followed by a consecutive file range that points to
2984 * to the same compressed extent (possibly with a different
2985 * offset and/or length, so it either points to the whole extent
2986 * or only part of it), we must make sure we do not submit a
2987 * single bio to populate the pages for the 2 ranges because
2988 * this makes the compressed extent read zero out the pages
2989 * belonging to the 2nd range. Imagine the following scenario:
2990 *
2991 * File layout
2992 * [0 - 8K] [8K - 24K]
2993 * | |
2994 * | |
2995 * points to extent X, points to extent X,
2996 * offset 4K, length of 8K offset 0, length 16K
2997 *
2998 * [extent X, compressed length = 4K uncompressed length = 16K]
2999 *
3000 * If the bio to read the compressed extent covers both ranges,
3001 * it will decompress extent X into the pages belonging to the
3002 * first range and then it will stop, zeroing out the remaining
3003 * pages that belong to the other range that points to extent X.
3004 * So here we make sure we submit 2 bios, one for the first
3005 * range and another one for the third range. Both will target
3006 * the same physical extent from disk, but we can't currently
3007 * make the compressed bio endio callback populate the pages
3008 * for both ranges because each compressed bio is tightly
3009 * coupled with a single extent map, and each range can have
3010 * an extent map with a different offset value relative to the
3011 * uncompressed data of our extent and different lengths. This
3012 * is a corner case so we prioritize correctness over
3013 * non-optimal behavior (submitting 2 bios for the same extent).
3014 */
3015 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3016 prev_em_start && *prev_em_start != (u64)-1 &&
3017 *prev_em_start != em->orig_start)
3018 force_bio_submit = true;
3019
3020 if (prev_em_start)
3021 *prev_em_start = em->orig_start;
3022
Chris Masond1310b22008-01-24 16:13:08 -05003023 free_extent_map(em);
3024 em = NULL;
3025
3026 /* we've found a hole, just zero and go on */
3027 if (block_start == EXTENT_MAP_HOLE) {
3028 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003029 struct extent_state *cached = NULL;
3030
Cong Wang7ac687d2011-11-25 23:14:28 +08003031 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003032 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003033 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003034 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003035
3036 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003037 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003038 unlock_extent_cached(tree, cur,
3039 cur + iosize - 1,
3040 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003041 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003042 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003043 continue;
3044 }
3045 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003046 if (test_range_bit(tree, cur, cur_end,
3047 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003048 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003049 unlock_extent(tree, cur, cur + iosize - 1);
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 continue;
3053 }
Chris Mason70dec802008-01-29 09:59:12 -05003054 /* we have an inline extent but it didn't get marked up
3055 * to date. Error out
3056 */
3057 if (block_start == EXTENT_MAP_INLINE) {
3058 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003059 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003060 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003061 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003062 continue;
3063 }
Chris Masond1310b22008-01-24 16:13:08 -05003064
David Sterba4b81ba42017-06-06 19:14:26 +02003065 ret = submit_extent_page(REQ_OP_READ | read_flags, tree, NULL,
David Sterba6273b7f2017-10-04 17:30:11 +02003066 page, offset, disk_io_size,
3067 pg_offset, bdev, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003068 end_bio_extent_readpage, mirror_num,
3069 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003070 this_bio_flag,
3071 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003072 if (!ret) {
3073 nr++;
3074 *bio_flags = this_bio_flag;
3075 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003076 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003077 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003078 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003079 }
Chris Masond1310b22008-01-24 16:13:08 -05003080 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003081 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003082 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003083out:
Chris Masond1310b22008-01-24 16:13:08 -05003084 if (!nr) {
3085 if (!PageError(page))
3086 SetPageUptodate(page);
3087 unlock_page(page);
3088 }
Liu Bobaf863b2016-07-11 10:39:07 -07003089 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003090}
3091
Miao Xie99740902013-07-25 19:22:36 +08003092static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3093 struct page *pages[], int nr_pages,
3094 u64 start, u64 end,
Miao Xie125bac012013-07-25 19:22:37 +08003095 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003096 struct bio **bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003097 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003098 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003099{
3100 struct inode *inode;
3101 struct btrfs_ordered_extent *ordered;
3102 int index;
3103
3104 inode = pages[0]->mapping->host;
3105 while (1) {
3106 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003107 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003108 end - start + 1);
3109 if (!ordered)
3110 break;
3111 unlock_extent(tree, start, end);
3112 btrfs_start_ordered_extent(inode, ordered, 1);
3113 btrfs_put_ordered_extent(ordered);
3114 }
3115
3116 for (index = 0; index < nr_pages; index++) {
David Sterba4ef77692017-06-23 04:09:57 +02003117 __do_readpage(tree, pages[index], btrfs_get_extent, em_cached,
3118 bio, 0, bio_flags, 0, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003119 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003120 }
3121}
3122
3123static void __extent_readpages(struct extent_io_tree *tree,
3124 struct page *pages[],
David Sterbae4d17ef2017-06-23 04:09:57 +02003125 int nr_pages,
Miao Xie125bac012013-07-25 19:22:37 +08003126 struct extent_map **em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003127 struct bio **bio, unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003128 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003129{
Stefan Behrens35a36212013-08-14 18:12:25 +02003130 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003131 u64 end = 0;
3132 u64 page_start;
3133 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003134 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003135
3136 for (index = 0; index < nr_pages; index++) {
3137 page_start = page_offset(pages[index]);
3138 if (!end) {
3139 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003140 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003141 first_index = index;
3142 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003143 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003144 } else {
3145 __do_contiguous_readpages(tree, &pages[first_index],
3146 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003147 end, em_cached,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003148 bio, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003149 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003150 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003151 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003152 first_index = index;
3153 }
3154 }
3155
3156 if (end)
3157 __do_contiguous_readpages(tree, &pages[first_index],
3158 index - first_index, start,
David Sterba4ef77692017-06-23 04:09:57 +02003159 end, em_cached, bio,
Nikolay Borisovd3fac6b2017-10-24 11:50:39 +03003160 bio_flags, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003161}
3162
3163static int __extent_read_full_page(struct extent_io_tree *tree,
3164 struct page *page,
3165 get_extent_t *get_extent,
3166 struct bio **bio, int mirror_num,
David Sterbaf1c77c52017-06-06 19:03:49 +02003167 unsigned long *bio_flags,
3168 unsigned int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003169{
3170 struct inode *inode = page->mapping->host;
3171 struct btrfs_ordered_extent *ordered;
3172 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003173 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003174 int ret;
3175
3176 while (1) {
3177 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003178 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003179 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003180 if (!ordered)
3181 break;
3182 unlock_extent(tree, start, end);
3183 btrfs_start_ordered_extent(inode, ordered, 1);
3184 btrfs_put_ordered_extent(ordered);
3185 }
3186
Miao Xie125bac012013-07-25 19:22:37 +08003187 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003188 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003189 return ret;
3190}
3191
Chris Masond1310b22008-01-24 16:13:08 -05003192int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003193 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003194{
3195 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003196 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003197 int ret;
3198
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003199 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003200 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003201 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003202 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003203 return ret;
3204}
Chris Masond1310b22008-01-24 16:13:08 -05003205
David Sterba3d4b9492017-02-10 19:33:41 +01003206static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003207 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003208{
3209 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003210}
3211
Chris Masond1310b22008-01-24 16:13:08 -05003212/*
Chris Mason40f76582014-05-21 13:35:51 -07003213 * helper for __extent_writepage, doing all of the delayed allocation setup.
3214 *
3215 * This returns 1 if our fill_delalloc function did all the work required
3216 * to write the page (copy into inline extent). In this case the IO has
3217 * been started and the page is already unlocked.
3218 *
3219 * This returns 0 if all went well (page still locked)
3220 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003221 */
Chris Mason40f76582014-05-21 13:35:51 -07003222static noinline_for_stack int writepage_delalloc(struct inode *inode,
3223 struct page *page, struct writeback_control *wbc,
3224 struct extent_page_data *epd,
3225 u64 delalloc_start,
3226 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003227{
Chris Mason40f76582014-05-21 13:35:51 -07003228 struct extent_io_tree *tree = epd->tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003229 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003230 u64 nr_delalloc;
3231 u64 delalloc_to_write = 0;
3232 u64 delalloc_end = 0;
3233 int ret;
3234 int page_started = 0;
3235
3236 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3237 return 0;
3238
3239 while (delalloc_end < page_end) {
3240 nr_delalloc = find_lock_delalloc_range(inode, tree,
3241 page,
3242 &delalloc_start,
3243 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003244 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003245 if (nr_delalloc == 0) {
3246 delalloc_start = delalloc_end + 1;
3247 continue;
3248 }
3249 ret = tree->ops->fill_delalloc(inode, page,
3250 delalloc_start,
3251 delalloc_end,
3252 &page_started,
Liu Bof82b7352017-10-23 23:18:16 -06003253 nr_written, wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003254 /* File system has been set read-only */
3255 if (ret) {
3256 SetPageError(page);
3257 /* fill_delalloc should be return < 0 for error
3258 * but just in case, we use > 0 here meaning the
3259 * IO is started, so we don't want to return > 0
3260 * unless things are going well.
3261 */
3262 ret = ret < 0 ? ret : -EIO;
3263 goto done;
3264 }
3265 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003266 * delalloc_end is already one less than the total length, so
3267 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003268 */
3269 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003270 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003271 delalloc_start = delalloc_end + 1;
3272 }
3273 if (wbc->nr_to_write < delalloc_to_write) {
3274 int thresh = 8192;
3275
3276 if (delalloc_to_write < thresh * 2)
3277 thresh = delalloc_to_write;
3278 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3279 thresh);
3280 }
3281
3282 /* did the fill delalloc function already unlock and start
3283 * the IO?
3284 */
3285 if (page_started) {
3286 /*
3287 * we've unlocked the page, so we can't update
3288 * the mapping's writeback index, just update
3289 * nr_to_write.
3290 */
3291 wbc->nr_to_write -= *nr_written;
3292 return 1;
3293 }
3294
3295 ret = 0;
3296
3297done:
3298 return ret;
3299}
3300
3301/*
3302 * helper for __extent_writepage. This calls the writepage start hooks,
3303 * and does the loop to map the page into extents and bios.
3304 *
3305 * We return 1 if the IO is started and the page is unlocked,
3306 * 0 if all went well (page still locked)
3307 * < 0 if there were errors (page still locked)
3308 */
3309static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3310 struct page *page,
3311 struct writeback_control *wbc,
3312 struct extent_page_data *epd,
3313 loff_t i_size,
3314 unsigned long nr_written,
David Sterbaf1c77c52017-06-06 19:03:49 +02003315 unsigned int write_flags, int *nr_ret)
Chris Mason40f76582014-05-21 13:35:51 -07003316{
Chris Masond1310b22008-01-24 16:13:08 -05003317 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003318 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003319 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003320 u64 end;
3321 u64 cur = start;
3322 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003323 u64 block_start;
3324 u64 iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003325 struct extent_map *em;
3326 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003327 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003328 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003329 int ret = 0;
3330 int nr = 0;
3331 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003332
Chris Mason247e7432008-07-17 12:53:51 -04003333 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003334 ret = tree->ops->writepage_start_hook(page, start,
3335 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003336 if (ret) {
3337 /* Fixup worker will requeue */
3338 if (ret == -EBUSY)
3339 wbc->pages_skipped++;
3340 else
3341 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003342
David Sterba3d4b9492017-02-10 19:33:41 +01003343 update_nr_written(wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003344 unlock_page(page);
Liu Bobcf93482017-01-25 17:15:54 -08003345 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003346 }
3347 }
3348
Chris Mason11c83492009-04-20 15:50:09 -04003349 /*
3350 * we don't want to touch the inode after unlocking the page,
3351 * so we update the mapping writeback index now
3352 */
David Sterba3d4b9492017-02-10 19:33:41 +01003353 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003354
Chris Masond1310b22008-01-24 16:13:08 -05003355 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003356 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003357 if (tree->ops && tree->ops->writepage_end_io_hook)
3358 tree->ops->writepage_end_io_hook(page, start,
3359 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003360 goto done;
3361 }
3362
Chris Masond1310b22008-01-24 16:13:08 -05003363 blocksize = inode->i_sb->s_blocksize;
3364
3365 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003366 u64 em_end;
David Sterba6273b7f2017-10-04 17:30:11 +02003367 u64 offset;
David Sterba58409ed2016-05-04 11:46:10 +02003368
Chris Mason40f76582014-05-21 13:35:51 -07003369 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003370 if (tree->ops && tree->ops->writepage_end_io_hook)
3371 tree->ops->writepage_end_io_hook(page, cur,
3372 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003373 break;
3374 }
David Sterba3c98c622017-06-23 04:01:08 +02003375 em = btrfs_get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003376 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003377 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003378 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003379 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003380 break;
3381 }
3382
3383 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003384 em_end = extent_map_end(em);
3385 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003386 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003387 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003388 iosize = ALIGN(iosize, blocksize);
David Sterba6273b7f2017-10-04 17:30:11 +02003389 offset = em->block_start + extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003390 bdev = em->bdev;
3391 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003392 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003393 free_extent_map(em);
3394 em = NULL;
3395
Chris Masonc8b97812008-10-29 14:49:59 -04003396 /*
3397 * compressed and inline extents are written through other
3398 * paths in the FS
3399 */
3400 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003401 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003402 /*
3403 * end_io notification does not happen here for
3404 * compressed extents
3405 */
3406 if (!compressed && tree->ops &&
3407 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003408 tree->ops->writepage_end_io_hook(page, cur,
3409 cur + iosize - 1,
3410 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003411 else if (compressed) {
3412 /* we don't want to end_page_writeback on
3413 * a compressed extent. this happens
3414 * elsewhere
3415 */
3416 nr++;
3417 }
3418
3419 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003420 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003421 continue;
3422 }
Chris Masonc8b97812008-10-29 14:49:59 -04003423
David Sterba58409ed2016-05-04 11:46:10 +02003424 set_range_writeback(tree, cur, cur + iosize - 1);
3425 if (!PageWriteback(page)) {
3426 btrfs_err(BTRFS_I(inode)->root->fs_info,
3427 "page %lu not writeback, cur %llu end %llu",
3428 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003429 }
David Sterba58409ed2016-05-04 11:46:10 +02003430
David Sterba4b81ba42017-06-06 19:14:26 +02003431 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003432 page, offset, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003433 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003434 end_bio_extent_writepage,
3435 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003436 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003437 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003438 if (PageWriteback(page))
3439 end_page_writeback(page);
3440 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003441
Chris Masond1310b22008-01-24 16:13:08 -05003442 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003443 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003444 nr++;
3445 }
3446done:
Chris Mason40f76582014-05-21 13:35:51 -07003447 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003448 return ret;
3449}
3450
3451/*
3452 * the writepage semantics are similar to regular writepage. extent
3453 * records are inserted to lock ranges in the tree, and as dirty areas
3454 * are found, they are marked writeback. Then the lock bits are removed
3455 * and the end_io handler clears the writeback ranges
3456 */
3457static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3458 void *data)
3459{
3460 struct inode *inode = page->mapping->host;
3461 struct extent_page_data *epd = data;
3462 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003463 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003464 int ret;
3465 int nr = 0;
3466 size_t pg_offset = 0;
3467 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003468 unsigned long end_index = i_size >> PAGE_SHIFT;
David Sterbaf1c77c52017-06-06 19:03:49 +02003469 unsigned int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003470 unsigned long nr_written = 0;
3471
Liu Boff40adf2017-08-24 18:19:48 -06003472 write_flags = wbc_to_write_flags(wbc);
Chris Mason40f76582014-05-21 13:35:51 -07003473
3474 trace___extent_writepage(page, inode, wbc);
3475
3476 WARN_ON(!PageLocked(page));
3477
3478 ClearPageError(page);
3479
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003480 pg_offset = i_size & (PAGE_SIZE - 1);
Chris Mason40f76582014-05-21 13:35:51 -07003481 if (page->index > end_index ||
3482 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003483 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003484 unlock_page(page);
3485 return 0;
3486 }
3487
3488 if (page->index == end_index) {
3489 char *userpage;
3490
3491 userpage = kmap_atomic(page);
3492 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003493 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003494 kunmap_atomic(userpage);
3495 flush_dcache_page(page);
3496 }
3497
3498 pg_offset = 0;
3499
3500 set_page_extent_mapped(page);
3501
3502 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3503 if (ret == 1)
3504 goto done_unlocked;
3505 if (ret)
3506 goto done;
3507
3508 ret = __extent_writepage_io(inode, page, wbc, epd,
3509 i_size, nr_written, write_flags, &nr);
3510 if (ret == 1)
3511 goto done_unlocked;
3512
3513done:
Chris Masond1310b22008-01-24 16:13:08 -05003514 if (nr == 0) {
3515 /* make sure the mapping tag for page dirty gets cleared */
3516 set_page_writeback(page);
3517 end_page_writeback(page);
3518 }
Filipe Manana61391d52014-05-09 17:17:40 +01003519 if (PageError(page)) {
3520 ret = ret < 0 ? ret : -EIO;
3521 end_extent_writepage(page, ret, start, page_end);
3522 }
Chris Masond1310b22008-01-24 16:13:08 -05003523 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003524 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003525
Chris Mason11c83492009-04-20 15:50:09 -04003526done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003527 return 0;
3528}
3529
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003530void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003531{
NeilBrown74316202014-07-07 15:16:04 +10003532 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3533 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003534}
3535
Chris Mason0e378df2014-05-19 20:55:27 -07003536static noinline_for_stack int
3537lock_extent_buffer_for_io(struct extent_buffer *eb,
3538 struct btrfs_fs_info *fs_info,
3539 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003540{
3541 unsigned long i, num_pages;
3542 int flush = 0;
3543 int ret = 0;
3544
3545 if (!btrfs_try_tree_write_lock(eb)) {
3546 flush = 1;
3547 flush_write_bio(epd);
3548 btrfs_tree_lock(eb);
3549 }
3550
3551 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3552 btrfs_tree_unlock(eb);
3553 if (!epd->sync_io)
3554 return 0;
3555 if (!flush) {
3556 flush_write_bio(epd);
3557 flush = 1;
3558 }
Chris Masona098d8e2012-03-21 12:09:56 -04003559 while (1) {
3560 wait_on_extent_buffer_writeback(eb);
3561 btrfs_tree_lock(eb);
3562 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3563 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003564 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003565 }
3566 }
3567
Josef Bacik51561ff2012-07-20 16:25:24 -04003568 /*
3569 * We need to do this to prevent races in people who check if the eb is
3570 * under IO since we can end up having no IO bits set for a short period
3571 * of time.
3572 */
3573 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003574 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3575 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003576 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003577 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Nikolay Borisov104b4e52017-06-20 21:01:20 +03003578 percpu_counter_add_batch(&fs_info->dirty_metadata_bytes,
3579 -eb->len,
3580 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003581 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003582 } else {
3583 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003584 }
3585
3586 btrfs_tree_unlock(eb);
3587
3588 if (!ret)
3589 return ret;
3590
3591 num_pages = num_extent_pages(eb->start, eb->len);
3592 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003593 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003594
3595 if (!trylock_page(p)) {
3596 if (!flush) {
3597 flush_write_bio(epd);
3598 flush = 1;
3599 }
3600 lock_page(p);
3601 }
3602 }
3603
3604 return ret;
3605}
3606
3607static void end_extent_buffer_writeback(struct extent_buffer *eb)
3608{
3609 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003610 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003611 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3612}
3613
Filipe Manana656f30d2014-09-26 12:25:56 +01003614static void set_btree_ioerr(struct page *page)
3615{
3616 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003617
3618 SetPageError(page);
3619 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3620 return;
3621
3622 /*
3623 * If writeback for a btree extent that doesn't belong to a log tree
3624 * failed, increment the counter transaction->eb_write_errors.
3625 * We do this because while the transaction is running and before it's
3626 * committing (when we call filemap_fdata[write|wait]_range against
3627 * the btree inode), we might have
3628 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3629 * returns an error or an error happens during writeback, when we're
3630 * committing the transaction we wouldn't know about it, since the pages
3631 * can be no longer dirty nor marked anymore for writeback (if a
3632 * subsequent modification to the extent buffer didn't happen before the
3633 * transaction commit), which makes filemap_fdata[write|wait]_range not
3634 * able to find the pages tagged with SetPageError at transaction
3635 * commit time. So if this happens we must abort the transaction,
3636 * otherwise we commit a super block with btree roots that point to
3637 * btree nodes/leafs whose content on disk is invalid - either garbage
3638 * or the content of some node/leaf from a past generation that got
3639 * cowed or deleted and is no longer valid.
3640 *
3641 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3642 * not be enough - we need to distinguish between log tree extents vs
3643 * non-log tree extents, and the next filemap_fdatawait_range() call
3644 * will catch and clear such errors in the mapping - and that call might
3645 * be from a log sync and not from a transaction commit. Also, checking
3646 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3647 * not done and would not be reliable - the eb might have been released
3648 * from memory and reading it back again means that flag would not be
3649 * set (since it's a runtime flag, not persisted on disk).
3650 *
3651 * Using the flags below in the btree inode also makes us achieve the
3652 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3653 * writeback for all dirty pages and before filemap_fdatawait_range()
3654 * is called, the writeback for all dirty pages had already finished
3655 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3656 * filemap_fdatawait_range() would return success, as it could not know
3657 * that writeback errors happened (the pages were no longer tagged for
3658 * writeback).
3659 */
3660 switch (eb->log_index) {
3661 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003662 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003663 break;
3664 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003665 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003666 break;
3667 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003668 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003669 break;
3670 default:
3671 BUG(); /* unexpected, logic error */
3672 }
3673}
3674
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003675static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003676{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003677 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003678 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003679 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003680
David Sterbac09abff2017-07-13 18:10:07 +02003681 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -08003682 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003683 struct page *page = bvec->bv_page;
3684
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003685 eb = (struct extent_buffer *)page->private;
3686 BUG_ON(!eb);
3687 done = atomic_dec_and_test(&eb->io_pages);
3688
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02003689 if (bio->bi_status ||
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003690 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003691 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003692 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003693 }
3694
3695 end_page_writeback(page);
3696
3697 if (!done)
3698 continue;
3699
3700 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003701 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003702
3703 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003704}
3705
Chris Mason0e378df2014-05-19 20:55:27 -07003706static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003707 struct btrfs_fs_info *fs_info,
3708 struct writeback_control *wbc,
3709 struct extent_page_data *epd)
3710{
3711 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003712 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003713 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003714 u32 nritems;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003715 unsigned long i, num_pages;
Liu Bo851cd172016-09-23 13:44:44 -07003716 unsigned long start, end;
Liu Boff40adf2017-08-24 18:19:48 -06003717 unsigned int write_flags = wbc_to_write_flags(wbc) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003718 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003719
Filipe Manana656f30d2014-09-26 12:25:56 +01003720 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003721 num_pages = num_extent_pages(eb->start, eb->len);
3722 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003723
Liu Bo851cd172016-09-23 13:44:44 -07003724 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3725 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003726 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003727 end = btrfs_node_key_ptr_offset(nritems);
3728
David Sterbab159fa22016-11-08 18:09:03 +01003729 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003730 } else {
3731 /*
3732 * leaf:
3733 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3734 */
3735 start = btrfs_item_nr_offset(nritems);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003736 end = BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003737 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003738 }
3739
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003740 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003741 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003742
3743 clear_page_dirty_for_io(p);
3744 set_page_writeback(p);
David Sterba4b81ba42017-06-06 19:14:26 +02003745 ret = submit_extent_page(REQ_OP_WRITE | write_flags, tree, wbc,
David Sterba6273b7f2017-10-04 17:30:11 +02003746 p, offset, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003747 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003748 end_bio_extent_buffer_writepage,
Liu Bo18fdc672017-09-13 12:18:22 -06003749 0, 0, 0, false);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003750 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003751 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003752 if (PageWriteback(p))
3753 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003754 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3755 end_extent_buffer_writeback(eb);
3756 ret = -EIO;
3757 break;
3758 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003759 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003760 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003761 unlock_page(p);
3762 }
3763
3764 if (unlikely(ret)) {
3765 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003766 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003767 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003768 unlock_page(p);
3769 }
3770 }
3771
3772 return ret;
3773}
3774
3775int btree_write_cache_pages(struct address_space *mapping,
3776 struct writeback_control *wbc)
3777{
3778 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3779 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3780 struct extent_buffer *eb, *prev_eb = NULL;
3781 struct extent_page_data epd = {
3782 .bio = NULL,
3783 .tree = tree,
3784 .extent_locked = 0,
3785 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3786 };
3787 int ret = 0;
3788 int done = 0;
3789 int nr_to_write_done = 0;
3790 struct pagevec pvec;
3791 int nr_pages;
3792 pgoff_t index;
3793 pgoff_t end; /* Inclusive */
3794 int scanned = 0;
3795 int tag;
3796
Mel Gorman86679822017-11-15 17:37:52 -08003797 pagevec_init(&pvec);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003798 if (wbc->range_cyclic) {
3799 index = mapping->writeback_index; /* Start from prev offset */
3800 end = -1;
3801 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003802 index = wbc->range_start >> PAGE_SHIFT;
3803 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003804 scanned = 1;
3805 }
3806 if (wbc->sync_mode == WB_SYNC_ALL)
3807 tag = PAGECACHE_TAG_TOWRITE;
3808 else
3809 tag = PAGECACHE_TAG_DIRTY;
3810retry:
3811 if (wbc->sync_mode == WB_SYNC_ALL)
3812 tag_pages_for_writeback(mapping, index, end);
3813 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara4006f432017-11-15 17:34:37 -08003814 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08003815 tag))) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003816 unsigned i;
3817
3818 scanned = 1;
3819 for (i = 0; i < nr_pages; i++) {
3820 struct page *page = pvec.pages[i];
3821
3822 if (!PagePrivate(page))
3823 continue;
3824
Josef Bacikb5bae262012-09-14 13:43:01 -04003825 spin_lock(&mapping->private_lock);
3826 if (!PagePrivate(page)) {
3827 spin_unlock(&mapping->private_lock);
3828 continue;
3829 }
3830
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003831 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003832
3833 /*
3834 * Shouldn't happen and normally this would be a BUG_ON
3835 * but no sense in crashing the users box for something
3836 * we can survive anyway.
3837 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303838 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003839 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003840 continue;
3841 }
3842
Josef Bacikb5bae262012-09-14 13:43:01 -04003843 if (eb == prev_eb) {
3844 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003845 continue;
3846 }
3847
Josef Bacikb5bae262012-09-14 13:43:01 -04003848 ret = atomic_inc_not_zero(&eb->refs);
3849 spin_unlock(&mapping->private_lock);
3850 if (!ret)
3851 continue;
3852
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003853 prev_eb = eb;
3854 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3855 if (!ret) {
3856 free_extent_buffer(eb);
3857 continue;
3858 }
3859
3860 ret = write_one_eb(eb, fs_info, wbc, &epd);
3861 if (ret) {
3862 done = 1;
3863 free_extent_buffer(eb);
3864 break;
3865 }
3866 free_extent_buffer(eb);
3867
3868 /*
3869 * the filesystem may choose to bump up nr_to_write.
3870 * We have to make sure to honor the new nr_to_write
3871 * at any time
3872 */
3873 nr_to_write_done = wbc->nr_to_write <= 0;
3874 }
3875 pagevec_release(&pvec);
3876 cond_resched();
3877 }
3878 if (!scanned && !done) {
3879 /*
3880 * We hit the last page and there is more work to be done: wrap
3881 * back to the start of the file
3882 */
3883 scanned = 1;
3884 index = 0;
3885 goto retry;
3886 }
3887 flush_write_bio(&epd);
3888 return ret;
3889}
3890
Chris Masond1310b22008-01-24 16:13:08 -05003891/**
Chris Mason4bef0842008-09-08 11:18:08 -04003892 * 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 -05003893 * @mapping: address space structure to write
3894 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3895 * @writepage: function called for each page
3896 * @data: data passed to writepage function
3897 *
3898 * If a page is already under I/O, write_cache_pages() skips it, even
3899 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3900 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3901 * and msync() need to guarantee that all the data which was dirty at the time
3902 * the call was made get new I/O started against them. If wbc->sync_mode is
3903 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3904 * existing IO to complete.
3905 */
David Sterba4242b642017-02-10 19:38:24 +01003906static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003907 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003908 writepage_t writepage, void *data,
3909 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003910{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003911 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003912 int ret = 0;
3913 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003914 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003915 struct pagevec pvec;
3916 int nr_pages;
3917 pgoff_t index;
3918 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003919 pgoff_t done_index;
3920 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003921 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003922 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003923
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003924 /*
3925 * We have to hold onto the inode so that ordered extents can do their
3926 * work when the IO finishes. The alternative to this is failing to add
3927 * an ordered extent if the igrab() fails there and that is a huge pain
3928 * to deal with, so instead just hold onto the inode throughout the
3929 * writepages operation. If it fails here we are freeing up the inode
3930 * anyway and we'd rather not waste our time writing out stuff that is
3931 * going to be truncated anyway.
3932 */
3933 if (!igrab(inode))
3934 return 0;
3935
Mel Gorman86679822017-11-15 17:37:52 -08003936 pagevec_init(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05003937 if (wbc->range_cyclic) {
3938 index = mapping->writeback_index; /* Start from prev offset */
3939 end = -1;
3940 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003941 index = wbc->range_start >> PAGE_SHIFT;
3942 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003943 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3944 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003945 scanned = 1;
3946 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003947 if (wbc->sync_mode == WB_SYNC_ALL)
3948 tag = PAGECACHE_TAG_TOWRITE;
3949 else
3950 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003951retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003952 if (wbc->sync_mode == WB_SYNC_ALL)
3953 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003954 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003955 while (!done && !nr_to_write_done && (index <= end) &&
Jan Kara67fd7072017-11-15 17:35:19 -08003956 (nr_pages = pagevec_lookup_range_tag(&pvec, mapping,
3957 &index, end, tag))) {
Chris Masond1310b22008-01-24 16:13:08 -05003958 unsigned i;
3959
3960 scanned = 1;
3961 for (i = 0; i < nr_pages; i++) {
3962 struct page *page = pvec.pages[i];
3963
Liu Boa91326672016-03-07 16:56:21 -08003964 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003965 /*
3966 * At this point we hold neither mapping->tree_lock nor
3967 * lock on the page itself: the page may be truncated or
3968 * invalidated (changing page->mapping to NULL), or even
3969 * swizzled back from swapper_space to tmpfs file
3970 * mapping
3971 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003972 if (!trylock_page(page)) {
3973 flush_fn(data);
3974 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003975 }
Chris Masond1310b22008-01-24 16:13:08 -05003976
3977 if (unlikely(page->mapping != mapping)) {
3978 unlock_page(page);
3979 continue;
3980 }
3981
Chris Masond2c3f4f2008-11-19 12:44:22 -05003982 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003983 if (PageWriteback(page))
3984 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003985 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003986 }
Chris Masond1310b22008-01-24 16:13:08 -05003987
3988 if (PageWriteback(page) ||
3989 !clear_page_dirty_for_io(page)) {
3990 unlock_page(page);
3991 continue;
3992 }
3993
3994 ret = (*writepage)(page, wbc, data);
3995
3996 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3997 unlock_page(page);
3998 ret = 0;
3999 }
Liu Boa91326672016-03-07 16:56:21 -08004000 if (ret < 0) {
4001 /*
4002 * done_index is set past this page,
4003 * so media errors will not choke
4004 * background writeout for the entire
4005 * file. This has consequences for
4006 * range_cyclic semantics (ie. it may
4007 * not be suitable for data integrity
4008 * writeout).
4009 */
4010 done_index = page->index + 1;
4011 done = 1;
4012 break;
4013 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004014
4015 /*
4016 * the filesystem may choose to bump up nr_to_write.
4017 * We have to make sure to honor the new nr_to_write
4018 * at any time
4019 */
4020 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004021 }
4022 pagevec_release(&pvec);
4023 cond_resched();
4024 }
Liu Bo894b36e2016-03-07 16:56:22 -08004025 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004026 /*
4027 * We hit the last page and there is more work to be done: wrap
4028 * back to the start of the file
4029 */
4030 scanned = 1;
4031 index = 0;
4032 goto retry;
4033 }
Liu Boa91326672016-03-07 16:56:21 -08004034
4035 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4036 mapping->writeback_index = done_index;
4037
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004038 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004039 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004040}
Chris Masond1310b22008-01-24 16:13:08 -05004041
Chris Masonffbd5172009-04-20 15:50:09 -04004042static void flush_epd_write_bio(struct extent_page_data *epd)
4043{
4044 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004045 int ret;
4046
Liu Bo18fdc672017-09-13 12:18:22 -06004047 ret = submit_one_bio(epd->bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004048 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004049 epd->bio = NULL;
4050 }
4051}
4052
Chris Masond2c3f4f2008-11-19 12:44:22 -05004053static noinline void flush_write_bio(void *data)
4054{
4055 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004056 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004057}
4058
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004059int extent_write_full_page(struct page *page, struct writeback_control *wbc)
Chris Masond1310b22008-01-24 16:13:08 -05004060{
4061 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004062 struct extent_page_data epd = {
4063 .bio = NULL,
Nikolay Borisov0a9b0e52017-12-08 15:55:59 +02004064 .tree = &BTRFS_I(page->mapping->host)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -05004065 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004066 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004067 };
Chris Masond1310b22008-01-24 16:13:08 -05004068
Chris Masond1310b22008-01-24 16:13:08 -05004069 ret = __extent_writepage(page, wbc, &epd);
4070
Chris Masonffbd5172009-04-20 15:50:09 -04004071 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004072 return ret;
4073}
Chris Masond1310b22008-01-24 16:13:08 -05004074
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004075int extent_write_locked_range(struct inode *inode, u64 start, u64 end,
4076 int mode)
Chris Mason771ed682008-11-06 22:02:51 -05004077{
4078 int ret = 0;
4079 struct address_space *mapping = inode->i_mapping;
Nikolay Borisov5e3ee232017-12-08 15:55:58 +02004080 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Mason771ed682008-11-06 22:02:51 -05004081 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004082 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4083 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004084
4085 struct extent_page_data epd = {
4086 .bio = NULL,
4087 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004088 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004089 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05004090 };
4091 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004092 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004093 .nr_to_write = nr_pages * 2,
4094 .range_start = start,
4095 .range_end = end + 1,
4096 };
4097
Chris Masond3977122009-01-05 21:25:51 -05004098 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004099 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004100 if (clear_page_dirty_for_io(page))
4101 ret = __extent_writepage(page, &wbc_writepages, &epd);
4102 else {
4103 if (tree->ops && tree->ops->writepage_end_io_hook)
4104 tree->ops->writepage_end_io_hook(page, start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004105 start + PAGE_SIZE - 1,
Chris Mason771ed682008-11-06 22:02:51 -05004106 NULL, 1);
4107 unlock_page(page);
4108 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004109 put_page(page);
4110 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004111 }
4112
Chris Masonffbd5172009-04-20 15:50:09 -04004113 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004114 return ret;
4115}
Chris Masond1310b22008-01-24 16:13:08 -05004116
4117int extent_writepages(struct extent_io_tree *tree,
4118 struct address_space *mapping,
Chris Masond1310b22008-01-24 16:13:08 -05004119 struct writeback_control *wbc)
4120{
4121 int ret = 0;
4122 struct extent_page_data epd = {
4123 .bio = NULL,
4124 .tree = tree,
Chris Mason771ed682008-11-06 22:02:51 -05004125 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004126 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05004127 };
4128
David Sterba4242b642017-02-10 19:38:24 +01004129 ret = extent_write_cache_pages(mapping, wbc, __extent_writepage, &epd,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004130 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004131 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004132 return ret;
4133}
Chris Masond1310b22008-01-24 16:13:08 -05004134
4135int extent_readpages(struct extent_io_tree *tree,
4136 struct address_space *mapping,
David Sterba09325842017-06-23 04:09:57 +02004137 struct list_head *pages, unsigned nr_pages)
Chris Masond1310b22008-01-24 16:13:08 -05004138{
4139 struct bio *bio = NULL;
4140 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004141 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004142 struct page *pagepool[16];
4143 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004144 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004145 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004146 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004147
Chris Masond1310b22008-01-24 16:13:08 -05004148 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004149 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004150
4151 prefetchw(&page->flags);
4152 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004153 if (add_to_page_cache_lru(page, mapping,
Michal Hocko8a5c7432016-07-26 15:24:53 -07004154 page->index,
4155 readahead_gfp_mask(mapping))) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004156 put_page(page);
Liu Bo67c96842012-07-20 21:43:09 -06004157 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004158 }
Liu Bo67c96842012-07-20 21:43:09 -06004159
4160 pagepool[nr++] = page;
4161 if (nr < ARRAY_SIZE(pagepool))
4162 continue;
David Sterbae4d17ef2017-06-23 04:09:57 +02004163 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
4164 &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004165 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004166 }
Miao Xie99740902013-07-25 19:22:36 +08004167 if (nr)
David Sterbae4d17ef2017-06-23 04:09:57 +02004168 __extent_readpages(tree, pagepool, nr, &em_cached, &bio,
4169 &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004170
Miao Xie125bac012013-07-25 19:22:37 +08004171 if (em_cached)
4172 free_extent_map(em_cached);
4173
Chris Masond1310b22008-01-24 16:13:08 -05004174 BUG_ON(!list_empty(pages));
4175 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004176 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004177 return 0;
4178}
Chris Masond1310b22008-01-24 16:13:08 -05004179
4180/*
4181 * basic invalidatepage code, this waits on any locked or writeback
4182 * ranges corresponding to the page, and then deletes any extent state
4183 * records from the tree
4184 */
4185int extent_invalidatepage(struct extent_io_tree *tree,
4186 struct page *page, unsigned long offset)
4187{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004188 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004189 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004190 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004191 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4192
Qu Wenruofda28322013-02-26 08:10:22 +00004193 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004194 if (start > end)
4195 return 0;
4196
David Sterbaff13db42015-12-03 14:30:40 +01004197 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004198 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004199 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004200 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4201 EXTENT_DO_ACCOUNTING,
David Sterbaae0f1622017-10-31 16:37:52 +01004202 1, 1, &cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05004203 return 0;
4204}
Chris Masond1310b22008-01-24 16:13:08 -05004205
4206/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004207 * a helper for releasepage, this tests for areas of the page that
4208 * are locked or under IO and drops the related state bits if it is safe
4209 * to drop the page.
4210 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004211static int try_release_extent_state(struct extent_map_tree *map,
4212 struct extent_io_tree *tree,
4213 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004214{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004215 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004216 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004217 int ret = 1;
4218
Chris Mason211f90e2008-07-18 11:56:15 -04004219 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004220 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004221 ret = 0;
4222 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004223 /*
4224 * at this point we can safely clear everything except the
4225 * locked bit and the nodatasum bit
4226 */
David Sterba66b0c882017-10-31 16:30:47 +01004227 ret = __clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004228 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
David Sterba66b0c882017-10-31 16:30:47 +01004229 0, 0, NULL, mask, NULL);
Chris Masone3f24cc2011-02-14 12:52:08 -05004230
4231 /* if clear_extent_bit failed for enomem reasons,
4232 * we can't allow the release to continue.
4233 */
4234 if (ret < 0)
4235 ret = 0;
4236 else
4237 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004238 }
4239 return ret;
4240}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004241
4242/*
Chris Masond1310b22008-01-24 16:13:08 -05004243 * a helper for releasepage. As long as there are no locked extents
4244 * in the range corresponding to the page, both state records and extent
4245 * map records are removed
4246 */
4247int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004248 struct extent_io_tree *tree, struct page *page,
4249 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004250{
4251 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004252 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004253 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004254
Mel Gormand0164ad2015-11-06 16:28:21 -08004255 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004256 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004257 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004258 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004259 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004260 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004261 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004262 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004263 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004264 break;
4265 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004266 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4267 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004268 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004269 free_extent_map(em);
4270 break;
4271 }
4272 if (!test_range_bit(tree, em->start,
4273 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004274 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004275 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004276 remove_extent_mapping(map, em);
4277 /* once for the rb tree */
4278 free_extent_map(em);
4279 }
4280 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004281 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004282
4283 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004284 free_extent_map(em);
4285 }
Chris Masond1310b22008-01-24 16:13:08 -05004286 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004287 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004288}
Chris Masond1310b22008-01-24 16:13:08 -05004289
Chris Masonec29ed52011-02-23 16:23:20 -05004290/*
4291 * helper function for fiemap, which doesn't want to see any holes.
4292 * This maps until we find something past 'last'
4293 */
4294static struct extent_map *get_extent_skip_holes(struct inode *inode,
David Sterbae3350e12017-06-23 04:09:57 +02004295 u64 offset, u64 last)
Chris Masonec29ed52011-02-23 16:23:20 -05004296{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004297 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004298 struct extent_map *em;
4299 u64 len;
4300
4301 if (offset >= last)
4302 return NULL;
4303
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304304 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004305 len = last - offset;
4306 if (len == 0)
4307 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004308 len = ALIGN(len, sectorsize);
David Sterbae3350e12017-06-23 04:09:57 +02004309 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0, offset,
4310 len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004311 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004312 return em;
4313
4314 /* if this isn't a hole return it */
Nikolay Borisov4a2d25c2017-11-23 10:51:43 +02004315 if (em->block_start != EXTENT_MAP_HOLE)
Chris Masonec29ed52011-02-23 16:23:20 -05004316 return em;
Chris Masonec29ed52011-02-23 16:23:20 -05004317
4318 /* this is a hole, advance to the next extent */
4319 offset = extent_map_end(em);
4320 free_extent_map(em);
4321 if (offset >= last)
4322 break;
4323 }
4324 return NULL;
4325}
4326
Qu Wenruo47518322017-04-07 10:43:15 +08004327/*
4328 * To cache previous fiemap extent
4329 *
4330 * Will be used for merging fiemap extent
4331 */
4332struct fiemap_cache {
4333 u64 offset;
4334 u64 phys;
4335 u64 len;
4336 u32 flags;
4337 bool cached;
4338};
4339
4340/*
4341 * Helper to submit fiemap extent.
4342 *
4343 * Will try to merge current fiemap extent specified by @offset, @phys,
4344 * @len and @flags with cached one.
4345 * And only when we fails to merge, cached one will be submitted as
4346 * fiemap extent.
4347 *
4348 * Return value is the same as fiemap_fill_next_extent().
4349 */
4350static int emit_fiemap_extent(struct fiemap_extent_info *fieinfo,
4351 struct fiemap_cache *cache,
4352 u64 offset, u64 phys, u64 len, u32 flags)
4353{
4354 int ret = 0;
4355
4356 if (!cache->cached)
4357 goto assign;
4358
4359 /*
4360 * Sanity check, extent_fiemap() should have ensured that new
4361 * fiemap extent won't overlap with cahced one.
4362 * Not recoverable.
4363 *
4364 * NOTE: Physical address can overlap, due to compression
4365 */
4366 if (cache->offset + cache->len > offset) {
4367 WARN_ON(1);
4368 return -EINVAL;
4369 }
4370
4371 /*
4372 * Only merges fiemap extents if
4373 * 1) Their logical addresses are continuous
4374 *
4375 * 2) Their physical addresses are continuous
4376 * So truly compressed (physical size smaller than logical size)
4377 * extents won't get merged with each other
4378 *
4379 * 3) Share same flags except FIEMAP_EXTENT_LAST
4380 * So regular extent won't get merged with prealloc extent
4381 */
4382 if (cache->offset + cache->len == offset &&
4383 cache->phys + cache->len == phys &&
4384 (cache->flags & ~FIEMAP_EXTENT_LAST) ==
4385 (flags & ~FIEMAP_EXTENT_LAST)) {
4386 cache->len += len;
4387 cache->flags |= flags;
4388 goto try_submit_last;
4389 }
4390
4391 /* Not mergeable, need to submit cached one */
4392 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4393 cache->len, cache->flags);
4394 cache->cached = false;
4395 if (ret)
4396 return ret;
4397assign:
4398 cache->cached = true;
4399 cache->offset = offset;
4400 cache->phys = phys;
4401 cache->len = len;
4402 cache->flags = flags;
4403try_submit_last:
4404 if (cache->flags & FIEMAP_EXTENT_LAST) {
4405 ret = fiemap_fill_next_extent(fieinfo, cache->offset,
4406 cache->phys, cache->len, cache->flags);
4407 cache->cached = false;
4408 }
4409 return ret;
4410}
4411
4412/*
Qu Wenruo848c23b2017-06-22 10:01:21 +08004413 * Emit last fiemap cache
Qu Wenruo47518322017-04-07 10:43:15 +08004414 *
Qu Wenruo848c23b2017-06-22 10:01:21 +08004415 * The last fiemap cache may still be cached in the following case:
4416 * 0 4k 8k
4417 * |<- Fiemap range ->|
4418 * |<------------ First extent ----------->|
4419 *
4420 * In this case, the first extent range will be cached but not emitted.
4421 * So we must emit it before ending extent_fiemap().
Qu Wenruo47518322017-04-07 10:43:15 +08004422 */
Qu Wenruo848c23b2017-06-22 10:01:21 +08004423static int emit_last_fiemap_cache(struct btrfs_fs_info *fs_info,
4424 struct fiemap_extent_info *fieinfo,
4425 struct fiemap_cache *cache)
Qu Wenruo47518322017-04-07 10:43:15 +08004426{
4427 int ret;
4428
4429 if (!cache->cached)
4430 return 0;
4431
Qu Wenruo47518322017-04-07 10:43:15 +08004432 ret = fiemap_fill_next_extent(fieinfo, cache->offset, cache->phys,
4433 cache->len, cache->flags);
4434 cache->cached = false;
4435 if (ret > 0)
4436 ret = 0;
4437 return ret;
4438}
4439
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004440int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
David Sterba2135fb92017-06-23 04:09:57 +02004441 __u64 start, __u64 len)
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004442{
Josef Bacik975f84f2010-11-23 19:36:57 +00004443 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004444 u64 off = start;
4445 u64 max = start + len;
4446 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004447 u32 found_type;
4448 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004449 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004450 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004451 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004452 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004453 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004454 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004455 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004456 struct btrfs_root *root = BTRFS_I(inode)->root;
Qu Wenruo47518322017-04-07 10:43:15 +08004457 struct fiemap_cache cache = { 0 };
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004458 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004459 u64 em_start = 0;
4460 u64 em_len = 0;
4461 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004462
4463 if (len == 0)
4464 return -EINVAL;
4465
Josef Bacik975f84f2010-11-23 19:36:57 +00004466 path = btrfs_alloc_path();
4467 if (!path)
4468 return -ENOMEM;
4469 path->leave_spinning = 1;
4470
Jeff Mahoneyda170662016-06-15 09:22:56 -04004471 start = round_down(start, btrfs_inode_sectorsize(inode));
4472 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004473
Chris Masonec29ed52011-02-23 16:23:20 -05004474 /*
4475 * lookup the last file extent. We're not using i_size here
4476 * because there might be preallocation past i_size
4477 */
David Sterbaf85b7372017-01-20 14:54:07 +01004478 ret = btrfs_lookup_file_extent(NULL, root, path,
4479 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004480 if (ret < 0) {
4481 btrfs_free_path(path);
4482 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004483 } else {
4484 WARN_ON(!ret);
4485 if (ret == 1)
4486 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004487 }
Liu Bo2d324f52016-05-17 17:21:48 -07004488
Josef Bacik975f84f2010-11-23 19:36:57 +00004489 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004490 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004491 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004492
Chris Masonec29ed52011-02-23 16:23:20 -05004493 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004494 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004495 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004496 /* have to trust i_size as the end */
4497 last = (u64)-1;
4498 last_for_get_extent = isize;
4499 } else {
4500 /*
4501 * remember the start of the last extent. There are a
4502 * bunch of different factors that go into the length of the
4503 * extent, so its much less complex to remember where it started
4504 */
4505 last = found_key.offset;
4506 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004507 }
Liu Bofe09e162013-09-22 12:54:23 +08004508 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004509
Chris Masonec29ed52011-02-23 16:23:20 -05004510 /*
4511 * we might have some extents allocated but more delalloc past those
4512 * extents. so, we trust isize unless the start of the last extent is
4513 * beyond isize
4514 */
4515 if (last < isize) {
4516 last = (u64)-1;
4517 last_for_get_extent = isize;
4518 }
4519
David Sterbaff13db42015-12-03 14:30:40 +01004520 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004521 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004522
David Sterbae3350e12017-06-23 04:09:57 +02004523 em = get_extent_skip_holes(inode, start, last_for_get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004524 if (!em)
4525 goto out;
4526 if (IS_ERR(em)) {
4527 ret = PTR_ERR(em);
4528 goto out;
4529 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004530
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004531 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004532 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004533
Chris Masonea8efc72011-03-08 11:54:40 -05004534 /* break if the extent we found is outside the range */
4535 if (em->start >= max || extent_map_end(em) < off)
4536 break;
4537
4538 /*
4539 * get_extent may return an extent that starts before our
4540 * requested range. We have to make sure the ranges
4541 * we return to fiemap always move forward and don't
4542 * overlap, so adjust the offsets here
4543 */
4544 em_start = max(em->start, off);
4545
4546 /*
4547 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004548 * for adjusting the disk offset below. Only do this if the
4549 * extent isn't compressed since our in ram offset may be past
4550 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004551 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004552 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4553 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004554 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004555 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004556 disko = 0;
4557 flags = 0;
4558
Chris Masonea8efc72011-03-08 11:54:40 -05004559 /*
4560 * bump off for our next call to get_extent
4561 */
4562 off = extent_map_end(em);
4563 if (off >= max)
4564 end = 1;
4565
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004566 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004567 end = 1;
4568 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004569 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004570 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4571 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004572 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004573 flags |= (FIEMAP_EXTENT_DELALLOC |
4574 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004575 } else if (fieinfo->fi_extents_max) {
4576 u64 bytenr = em->block_start -
4577 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004578
Chris Masonea8efc72011-03-08 11:54:40 -05004579 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004580
4581 /*
4582 * As btrfs supports shared space, this information
4583 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004584 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4585 * then we're just getting a count and we can skip the
4586 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004587 */
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06004588 ret = btrfs_check_shared(root,
4589 btrfs_ino(BTRFS_I(inode)),
4590 bytenr);
Josef Bacikdc046b12014-09-10 16:20:45 -04004591 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004592 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004593 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004594 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004595 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004596 }
4597 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4598 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004599 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4600 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004601
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004602 free_extent_map(em);
4603 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004604 if ((em_start >= last) || em_len == (u64)-1 ||
4605 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004606 flags |= FIEMAP_EXTENT_LAST;
4607 end = 1;
4608 }
4609
Chris Masonec29ed52011-02-23 16:23:20 -05004610 /* now scan forward to see if this is really the last extent. */
David Sterbae3350e12017-06-23 04:09:57 +02004611 em = get_extent_skip_holes(inode, off, last_for_get_extent);
Chris Masonec29ed52011-02-23 16:23:20 -05004612 if (IS_ERR(em)) {
4613 ret = PTR_ERR(em);
4614 goto out;
4615 }
4616 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004617 flags |= FIEMAP_EXTENT_LAST;
4618 end = 1;
4619 }
Qu Wenruo47518322017-04-07 10:43:15 +08004620 ret = emit_fiemap_extent(fieinfo, &cache, em_start, disko,
4621 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004622 if (ret) {
4623 if (ret == 1)
4624 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004625 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004626 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004627 }
4628out_free:
Qu Wenruo47518322017-04-07 10:43:15 +08004629 if (!ret)
Qu Wenruo848c23b2017-06-22 10:01:21 +08004630 ret = emit_last_fiemap_cache(root->fs_info, fieinfo, &cache);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004631 free_extent_map(em);
4632out:
Liu Bofe09e162013-09-22 12:54:23 +08004633 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004634 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004635 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004636 return ret;
4637}
4638
Chris Mason727011e2010-08-06 13:21:20 -04004639static void __free_extent_buffer(struct extent_buffer *eb)
4640{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004641 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004642 kmem_cache_free(extent_buffer_cache, eb);
4643}
4644
Josef Bacika26e8c92014-03-28 17:07:27 -04004645int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004646{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004647 return (atomic_read(&eb->io_pages) ||
4648 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4649 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004650}
4651
Miao Xie897ca6e92010-10-26 20:57:29 -04004652/*
4653 * Helper for releasing extent buffer page.
4654 */
David Sterbaa50924e2014-07-31 00:51:36 +02004655static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004656{
4657 unsigned long index;
4658 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004659 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004660
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004661 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004662
David Sterbaa50924e2014-07-31 00:51:36 +02004663 index = num_extent_pages(eb->start, eb->len);
4664 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004665 return;
4666
4667 do {
4668 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004669 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004670 if (!page)
4671 continue;
4672 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004673 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004674 /*
4675 * We do this since we'll remove the pages after we've
4676 * removed the eb from the radix tree, so we could race
4677 * and have this page now attached to the new eb. So
4678 * only clear page_private if it's still connected to
4679 * this eb.
4680 */
4681 if (PagePrivate(page) &&
4682 page->private == (unsigned long)eb) {
4683 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4684 BUG_ON(PageDirty(page));
4685 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004686 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004687 * We need to make sure we haven't be attached
4688 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004689 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004690 ClearPagePrivate(page);
4691 set_page_private(page, 0);
4692 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004693 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004694 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004695
4696 if (mapped)
4697 spin_unlock(&page->mapping->private_lock);
4698
Nicholas D Steeves01327612016-05-19 21:18:45 -04004699 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004700 put_page(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004701 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004702}
4703
4704/*
4705 * Helper for releasing the extent buffer.
4706 */
4707static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4708{
David Sterbaa50924e2014-07-31 00:51:36 +02004709 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004710 __free_extent_buffer(eb);
4711}
4712
Josef Bacikf28491e2013-12-16 13:24:27 -05004713static struct extent_buffer *
4714__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004715 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004716{
4717 struct extent_buffer *eb = NULL;
4718
Michal Hockod1b5c562015-08-19 14:17:40 +02004719 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004720 eb->start = start;
4721 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004722 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004723 eb->bflags = 0;
4724 rwlock_init(&eb->lock);
4725 atomic_set(&eb->write_locks, 0);
4726 atomic_set(&eb->read_locks, 0);
4727 atomic_set(&eb->blocking_readers, 0);
4728 atomic_set(&eb->blocking_writers, 0);
4729 atomic_set(&eb->spinning_readers, 0);
4730 atomic_set(&eb->spinning_writers, 0);
4731 eb->lock_nested = 0;
4732 init_waitqueue_head(&eb->write_lock_wq);
4733 init_waitqueue_head(&eb->read_lock_wq);
4734
4735 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4736
4737 spin_lock_init(&eb->refs_lock);
4738 atomic_set(&eb->refs, 1);
4739 atomic_set(&eb->io_pages, 0);
4740
4741 /*
4742 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4743 */
4744 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4745 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4746 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4747
4748 return eb;
4749}
4750
4751struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4752{
4753 unsigned long i;
4754 struct page *p;
4755 struct extent_buffer *new;
4756 unsigned long num_pages = num_extent_pages(src->start, src->len);
4757
David Sterba3f556f72014-06-15 03:20:26 +02004758 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004759 if (new == NULL)
4760 return NULL;
4761
4762 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004763 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004764 if (!p) {
4765 btrfs_release_extent_buffer(new);
4766 return NULL;
4767 }
4768 attach_extent_buffer_page(new, p);
4769 WARN_ON(PageDirty(p));
4770 SetPageUptodate(p);
4771 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004772 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004773 }
4774
Josef Bacikdb7f3432013-08-07 14:54:37 -04004775 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4776 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4777
4778 return new;
4779}
4780
Omar Sandoval0f331222015-09-29 20:50:31 -07004781struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4782 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004783{
4784 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004785 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004786 unsigned long i;
4787
Omar Sandoval0f331222015-09-29 20:50:31 -07004788 num_pages = num_extent_pages(start, len);
David Sterba3f556f72014-06-15 03:20:26 +02004789
4790 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004791 if (!eb)
4792 return NULL;
4793
4794 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004795 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004796 if (!eb->pages[i])
4797 goto err;
4798 }
4799 set_extent_buffer_uptodate(eb);
4800 btrfs_set_header_nritems(eb, 0);
4801 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4802
4803 return eb;
4804err:
4805 for (; i > 0; i--)
4806 __free_page(eb->pages[i - 1]);
4807 __free_extent_buffer(eb);
4808 return NULL;
4809}
4810
Omar Sandoval0f331222015-09-29 20:50:31 -07004811struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004812 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004813{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004814 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004815}
4816
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004817static void check_buffer_tree_ref(struct extent_buffer *eb)
4818{
Chris Mason242e18c2013-01-29 17:49:37 -05004819 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004820 /* the ref bit is tricky. We have to make sure it is set
4821 * if we have the buffer dirty. Otherwise the
4822 * code to free a buffer can end up dropping a dirty
4823 * page
4824 *
4825 * Once the ref bit is set, it won't go away while the
4826 * buffer is dirty or in writeback, and it also won't
4827 * go away while we have the reference count on the
4828 * eb bumped.
4829 *
4830 * We can't just set the ref bit without bumping the
4831 * ref on the eb because free_extent_buffer might
4832 * see the ref bit and try to clear it. If this happens
4833 * free_extent_buffer might end up dropping our original
4834 * ref by mistake and freeing the page before we are able
4835 * to add one more ref.
4836 *
4837 * So bump the ref count first, then set the bit. If someone
4838 * beat us to it, drop the ref we added.
4839 */
Chris Mason242e18c2013-01-29 17:49:37 -05004840 refs = atomic_read(&eb->refs);
4841 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4842 return;
4843
Josef Bacik594831c2012-07-20 16:11:08 -04004844 spin_lock(&eb->refs_lock);
4845 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004846 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004847 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004848}
4849
Mel Gorman2457aec2014-06-04 16:10:31 -07004850static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4851 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004852{
4853 unsigned long num_pages, i;
4854
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004855 check_buffer_tree_ref(eb);
4856
Josef Bacik5df42352012-03-15 18:24:42 -04004857 num_pages = num_extent_pages(eb->start, eb->len);
4858 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004859 struct page *p = eb->pages[i];
4860
Mel Gorman2457aec2014-06-04 16:10:31 -07004861 if (p != accessed)
4862 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004863 }
4864}
4865
Josef Bacikf28491e2013-12-16 13:24:27 -05004866struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4867 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004868{
4869 struct extent_buffer *eb;
4870
4871 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004872 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004873 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004874 if (eb && atomic_inc_not_zero(&eb->refs)) {
4875 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004876 /*
4877 * Lock our eb's refs_lock to avoid races with
4878 * free_extent_buffer. When we get our eb it might be flagged
4879 * with EXTENT_BUFFER_STALE and another task running
4880 * free_extent_buffer might have seen that flag set,
4881 * eb->refs == 2, that the buffer isn't under IO (dirty and
4882 * writeback flags not set) and it's still in the tree (flag
4883 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4884 * of decrementing the extent buffer's reference count twice.
4885 * So here we could race and increment the eb's reference count,
4886 * clear its stale flag, mark it as dirty and drop our reference
4887 * before the other task finishes executing free_extent_buffer,
4888 * which would later result in an attempt to free an extent
4889 * buffer that is dirty.
4890 */
4891 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4892 spin_lock(&eb->refs_lock);
4893 spin_unlock(&eb->refs_lock);
4894 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004895 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004896 return eb;
4897 }
4898 rcu_read_unlock();
4899
4900 return NULL;
4901}
4902
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004903#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4904struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004905 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004906{
4907 struct extent_buffer *eb, *exists = NULL;
4908 int ret;
4909
4910 eb = find_extent_buffer(fs_info, start);
4911 if (eb)
4912 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004913 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004914 if (!eb)
4915 return NULL;
4916 eb->fs_info = fs_info;
4917again:
David Sterbae1860a72016-05-09 14:11:38 +02004918 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004919 if (ret)
4920 goto free_eb;
4921 spin_lock(&fs_info->buffer_lock);
4922 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004923 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004924 spin_unlock(&fs_info->buffer_lock);
4925 radix_tree_preload_end();
4926 if (ret == -EEXIST) {
4927 exists = find_extent_buffer(fs_info, start);
4928 if (exists)
4929 goto free_eb;
4930 else
4931 goto again;
4932 }
4933 check_buffer_tree_ref(eb);
4934 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4935
4936 /*
4937 * We will free dummy extent buffer's if they come into
4938 * free_extent_buffer with a ref count of 2, but if we are using this we
4939 * want the buffers to stay in memory until we're done with them, so
4940 * bump the ref count again.
4941 */
4942 atomic_inc(&eb->refs);
4943 return eb;
4944free_eb:
4945 btrfs_release_extent_buffer(eb);
4946 return exists;
4947}
4948#endif
4949
Josef Bacikf28491e2013-12-16 13:24:27 -05004950struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004951 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004952{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004953 unsigned long len = fs_info->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004954 unsigned long num_pages = num_extent_pages(start, len);
4955 unsigned long i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004956 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004957 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004958 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004959 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004960 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004961 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004962 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004963
Jeff Mahoneyda170662016-06-15 09:22:56 -04004964 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004965 btrfs_err(fs_info, "bad tree block start %llu", start);
4966 return ERR_PTR(-EINVAL);
4967 }
4968
Josef Bacikf28491e2013-12-16 13:24:27 -05004969 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004970 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004971 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004972
David Sterba23d79d82014-06-15 02:55:29 +02004973 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004974 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004975 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004976
Chris Mason727011e2010-08-06 13:21:20 -04004977 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004978 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004979 if (!p) {
4980 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004981 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004982 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004983
4984 spin_lock(&mapping->private_lock);
4985 if (PagePrivate(p)) {
4986 /*
4987 * We could have already allocated an eb for this page
4988 * and attached one so lets see if we can get a ref on
4989 * the existing eb, and if we can we know it's good and
4990 * we can just return that one, else we know we can just
4991 * overwrite page->private.
4992 */
4993 exists = (struct extent_buffer *)p->private;
4994 if (atomic_inc_not_zero(&exists->refs)) {
4995 spin_unlock(&mapping->private_lock);
4996 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004997 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004998 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004999 goto free_eb;
5000 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005001 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005002
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005003 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005004 * Do this so attach doesn't complain and we need to
5005 * drop the ref the old guy had.
5006 */
5007 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005008 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005009 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05005010 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005011 attach_extent_buffer_page(eb, p);
5012 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005013 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005014 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005015 if (!PageUptodate(p))
5016 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005017
5018 /*
5019 * see below about how we avoid a nasty race with release page
5020 * and why we unlock later
5021 */
Chris Masond1310b22008-01-24 16:13:08 -05005022 }
5023 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005024 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005025again:
David Sterbae1860a72016-05-09 14:11:38 +02005026 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005027 if (ret) {
5028 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005029 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005030 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005031
Josef Bacikf28491e2013-12-16 13:24:27 -05005032 spin_lock(&fs_info->buffer_lock);
5033 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005034 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005035 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005036 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005037 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005038 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005039 if (exists)
5040 goto free_eb;
5041 else
Josef Bacik115391d2012-03-09 09:51:43 -05005042 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005043 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005044 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005045 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005046 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005047
5048 /*
5049 * there is a race where release page may have
5050 * tried to find this extent buffer in the radix
5051 * but failed. It will tell the VM it is safe to
5052 * reclaim the, and it will clear the page private bit.
5053 * We must make sure to set the page private bit properly
5054 * after the extent buffer is in the radix tree so
5055 * it doesn't get lost
5056 */
Chris Mason727011e2010-08-06 13:21:20 -04005057 SetPageChecked(eb->pages[0]);
5058 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005059 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005060 ClearPageChecked(p);
5061 unlock_page(p);
5062 }
5063 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005064 return eb;
5065
Chris Mason6af118ce2008-07-22 11:18:07 -04005066free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005067 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005068 for (i = 0; i < num_pages; i++) {
5069 if (eb->pages[i])
5070 unlock_page(eb->pages[i]);
5071 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005072
Miao Xie897ca6e92010-10-26 20:57:29 -04005073 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005074 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005075}
Chris Masond1310b22008-01-24 16:13:08 -05005076
Josef Bacik3083ee22012-03-09 16:01:49 -05005077static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5078{
5079 struct extent_buffer *eb =
5080 container_of(head, struct extent_buffer, rcu_head);
5081
5082 __free_extent_buffer(eb);
5083}
5084
Josef Bacik3083ee22012-03-09 16:01:49 -05005085/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005086static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005087{
5088 WARN_ON(atomic_read(&eb->refs) == 0);
5089 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005090 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005091 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005092
Jan Schmidt815a51c2012-05-16 17:00:02 +02005093 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005094
Josef Bacikf28491e2013-12-16 13:24:27 -05005095 spin_lock(&fs_info->buffer_lock);
5096 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005097 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005098 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005099 } else {
5100 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005101 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005102
5103 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005104 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005105#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5106 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5107 __free_extent_buffer(eb);
5108 return 1;
5109 }
5110#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005111 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005112 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005113 }
5114 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005115
5116 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005117}
5118
Chris Masond1310b22008-01-24 16:13:08 -05005119void free_extent_buffer(struct extent_buffer *eb)
5120{
Chris Mason242e18c2013-01-29 17:49:37 -05005121 int refs;
5122 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005123 if (!eb)
5124 return;
5125
Chris Mason242e18c2013-01-29 17:49:37 -05005126 while (1) {
5127 refs = atomic_read(&eb->refs);
5128 if (refs <= 3)
5129 break;
5130 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5131 if (old == refs)
5132 return;
5133 }
5134
Josef Bacik3083ee22012-03-09 16:01:49 -05005135 spin_lock(&eb->refs_lock);
5136 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005137 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5138 atomic_dec(&eb->refs);
5139
5140 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005141 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005142 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005143 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5144 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005145
Josef Bacik3083ee22012-03-09 16:01:49 -05005146 /*
5147 * I know this is terrible, but it's temporary until we stop tracking
5148 * the uptodate bits and such for the extent buffers.
5149 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005150 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005151}
Chris Masond1310b22008-01-24 16:13:08 -05005152
Josef Bacik3083ee22012-03-09 16:01:49 -05005153void free_extent_buffer_stale(struct extent_buffer *eb)
5154{
5155 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005156 return;
5157
Josef Bacik3083ee22012-03-09 16:01:49 -05005158 spin_lock(&eb->refs_lock);
5159 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5160
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005161 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005162 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5163 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005164 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005165}
5166
Chris Mason1d4284b2012-03-28 20:31:37 -04005167void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005168{
Chris Masond1310b22008-01-24 16:13:08 -05005169 unsigned long i;
5170 unsigned long num_pages;
5171 struct page *page;
5172
Chris Masond1310b22008-01-24 16:13:08 -05005173 num_pages = num_extent_pages(eb->start, eb->len);
5174
5175 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005176 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005177 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005178 continue;
5179
Chris Masona61e6f22008-07-22 11:18:08 -04005180 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005181 WARN_ON(!PagePrivate(page));
5182
Chris Masond1310b22008-01-24 16:13:08 -05005183 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005184 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005185 if (!PageDirty(page)) {
5186 radix_tree_tag_clear(&page->mapping->page_tree,
5187 page_index(page),
5188 PAGECACHE_TAG_DIRTY);
5189 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005190 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005191 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005192 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005193 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005194 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005195}
Chris Masond1310b22008-01-24 16:13:08 -05005196
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005197int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005198{
5199 unsigned long i;
5200 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005201 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005202
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005203 check_buffer_tree_ref(eb);
5204
Chris Masonb9473432009-03-13 11:00:37 -04005205 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005206
Chris Masond1310b22008-01-24 16:13:08 -05005207 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005208 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005209 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5210
Chris Masonb9473432009-03-13 11:00:37 -04005211 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005212 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005213 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005214}
Chris Masond1310b22008-01-24 16:13:08 -05005215
David Sterba69ba3922015-12-03 13:08:59 +01005216void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005217{
5218 unsigned long i;
5219 struct page *page;
5220 unsigned long num_pages;
5221
Chris Masonb4ce94d2009-02-04 09:25:08 -05005222 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005223 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005224 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005225 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005226 if (page)
5227 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005228 }
Chris Mason1259ab72008-05-12 13:39:03 -04005229}
5230
David Sterba09c25a82015-12-03 13:08:59 +01005231void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005232{
5233 unsigned long i;
5234 struct page *page;
5235 unsigned long num_pages;
5236
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005237 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005238 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005239 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005240 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005241 SetPageUptodate(page);
5242 }
Chris Masond1310b22008-01-24 16:13:08 -05005243}
Chris Masond1310b22008-01-24 16:13:08 -05005244
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005245int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005246{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005247 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005248}
Chris Masond1310b22008-01-24 16:13:08 -05005249
5250int read_extent_buffer_pages(struct extent_io_tree *tree,
David Sterba6af49db2017-06-23 04:09:57 +02005251 struct extent_buffer *eb, int wait, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005252{
5253 unsigned long i;
Chris Masond1310b22008-01-24 16:13:08 -05005254 struct page *page;
5255 int err;
5256 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005257 int locked_pages = 0;
5258 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005259 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005260 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005261 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005262 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005263
Chris Masonb4ce94d2009-02-04 09:25:08 -05005264 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005265 return 0;
5266
Chris Masond1310b22008-01-24 16:13:08 -05005267 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik8436ea912016-09-02 15:40:03 -04005268 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005269 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005270 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005271 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005272 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005273 } else {
5274 lock_page(page);
5275 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005276 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005277 }
5278 /*
5279 * We need to firstly lock all pages to make sure that
5280 * the uptodate bit of our pages won't be affected by
5281 * clear_extent_buffer_uptodate().
5282 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005283 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005284 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005285 if (!PageUptodate(page)) {
5286 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005287 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005288 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005289 }
Liu Bo2571e732016-08-03 12:33:01 -07005290
Chris Masonce9adaa2008-04-09 16:28:12 -04005291 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005292 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005293 goto unlock_exit;
5294 }
5295
Filipe Manana656f30d2014-09-26 12:25:56 +01005296 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005297 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005298 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005299 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005300 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005301
Chris Masonce9adaa2008-04-09 16:28:12 -04005302 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005303 if (ret) {
5304 atomic_dec(&eb->io_pages);
5305 unlock_page(page);
5306 continue;
5307 }
5308
Chris Masonf1885912008-04-09 16:28:12 -04005309 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005310 err = __extent_read_full_page(tree, page,
David Sterba6af49db2017-06-23 04:09:57 +02005311 btree_get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005312 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005313 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005314 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005315 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005316 /*
5317 * We use &bio in above __extent_read_full_page,
5318 * so we ensure that if it returns error, the
5319 * current page fails to add itself to bio and
5320 * it's been unlocked.
5321 *
5322 * We must dec io_pages by ourselves.
5323 */
5324 atomic_dec(&eb->io_pages);
5325 }
Chris Masond1310b22008-01-24 16:13:08 -05005326 } else {
5327 unlock_page(page);
5328 }
5329 }
5330
Jeff Mahoney355808c2011-10-03 23:23:14 -04005331 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005332 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005333 if (err)
5334 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005335 }
Chris Masona86c12c2008-02-07 10:50:54 -05005336
Arne Jansenbb82ab82011-06-10 14:06:53 +02005337 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005338 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005339
Josef Bacik8436ea912016-09-02 15:40:03 -04005340 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005341 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005342 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005343 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005344 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005345 }
Chris Masond3977122009-01-05 21:25:51 -05005346
Chris Masond1310b22008-01-24 16:13:08 -05005347 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005348
5349unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005350 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005351 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005352 page = eb->pages[locked_pages];
5353 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005354 }
5355 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005356}
Chris Masond1310b22008-01-24 16:13:08 -05005357
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005358void read_extent_buffer(const struct extent_buffer *eb, void *dstv,
5359 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005360{
5361 size_t cur;
5362 size_t offset;
5363 struct page *page;
5364 char *kaddr;
5365 char *dst = (char *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005366 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5367 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005368
Liu Bof716abd2017-08-09 11:10:16 -06005369 if (start + len > eb->len) {
5370 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5371 eb->start, eb->len, start, len);
5372 memset(dst, 0, len);
5373 return;
5374 }
Chris Masond1310b22008-01-24 16:13:08 -05005375
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005376 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005377
Chris Masond3977122009-01-05 21:25:51 -05005378 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005379 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005380
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005381 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005382 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005383 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005384
5385 dst += cur;
5386 len -= cur;
5387 offset = 0;
5388 i++;
5389 }
5390}
Chris Masond1310b22008-01-24 16:13:08 -05005391
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005392int read_extent_buffer_to_user(const struct extent_buffer *eb,
5393 void __user *dstv,
5394 unsigned long start, unsigned long len)
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005395{
5396 size_t cur;
5397 size_t offset;
5398 struct page *page;
5399 char *kaddr;
5400 char __user *dst = (char __user *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005401 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5402 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005403 int ret = 0;
5404
5405 WARN_ON(start > eb->len);
5406 WARN_ON(start + len > eb->start + eb->len);
5407
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005408 offset = (start_offset + start) & (PAGE_SIZE - 1);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005409
5410 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005411 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005412
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005413 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005414 kaddr = page_address(page);
5415 if (copy_to_user(dst, kaddr + offset, cur)) {
5416 ret = -EFAULT;
5417 break;
5418 }
5419
5420 dst += cur;
5421 len -= cur;
5422 offset = 0;
5423 i++;
5424 }
5425
5426 return ret;
5427}
5428
Liu Bo415b35a2016-06-17 19:16:21 -07005429/*
5430 * return 0 if the item is found within a page.
5431 * return 1 if the item spans two pages.
5432 * return -EINVAL otherwise.
5433 */
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005434int map_private_extent_buffer(const struct extent_buffer *eb,
5435 unsigned long start, unsigned long min_len,
5436 char **map, unsigned long *map_start,
5437 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005438{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005439 size_t offset = start & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005440 char *kaddr;
5441 struct page *p;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005442 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5443 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005444 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005445 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005446
Liu Bof716abd2017-08-09 11:10:16 -06005447 if (start + min_len > eb->len) {
5448 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
5449 eb->start, eb->len, start, min_len);
5450 return -EINVAL;
5451 }
5452
Chris Masond1310b22008-01-24 16:13:08 -05005453 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005454 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005455
5456 if (i == 0) {
5457 offset = start_offset;
5458 *map_start = 0;
5459 } else {
5460 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005461 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005462 }
Chris Masond3977122009-01-05 21:25:51 -05005463
David Sterbafb85fc92014-07-31 01:03:53 +02005464 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005465 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005466 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005467 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005468 return 0;
5469}
Chris Masond1310b22008-01-24 16:13:08 -05005470
Jeff Mahoney1cbb1f42017-06-28 21:56:53 -06005471int memcmp_extent_buffer(const struct extent_buffer *eb, const void *ptrv,
5472 unsigned long start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005473{
5474 size_t cur;
5475 size_t offset;
5476 struct page *page;
5477 char *kaddr;
5478 char *ptr = (char *)ptrv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005479 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5480 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005481 int ret = 0;
5482
5483 WARN_ON(start > eb->len);
5484 WARN_ON(start + len > eb->start + eb->len);
5485
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005486 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005487
Chris Masond3977122009-01-05 21:25:51 -05005488 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005489 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005490
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005491 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005492
Chris Masona6591712011-07-19 12:04:14 -04005493 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005494 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005495 if (ret)
5496 break;
5497
5498 ptr += cur;
5499 len -= cur;
5500 offset = 0;
5501 i++;
5502 }
5503 return ret;
5504}
Chris Masond1310b22008-01-24 16:13:08 -05005505
David Sterbaf157bf72016-11-09 17:43:38 +01005506void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5507 const void *srcv)
5508{
5509 char *kaddr;
5510
5511 WARN_ON(!PageUptodate(eb->pages[0]));
5512 kaddr = page_address(eb->pages[0]);
5513 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5514 BTRFS_FSID_SIZE);
5515}
5516
5517void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5518{
5519 char *kaddr;
5520
5521 WARN_ON(!PageUptodate(eb->pages[0]));
5522 kaddr = page_address(eb->pages[0]);
5523 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5524 BTRFS_FSID_SIZE);
5525}
5526
Chris Masond1310b22008-01-24 16:13:08 -05005527void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5528 unsigned long start, unsigned long len)
5529{
5530 size_t cur;
5531 size_t offset;
5532 struct page *page;
5533 char *kaddr;
5534 char *src = (char *)srcv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005535 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5536 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005537
5538 WARN_ON(start > eb->len);
5539 WARN_ON(start + len > eb->start + eb->len);
5540
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005541 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005542
Chris Masond3977122009-01-05 21:25:51 -05005543 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005544 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005545 WARN_ON(!PageUptodate(page));
5546
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005547 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005548 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005549 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005550
5551 src += cur;
5552 len -= cur;
5553 offset = 0;
5554 i++;
5555 }
5556}
Chris Masond1310b22008-01-24 16:13:08 -05005557
David Sterbab159fa22016-11-08 18:09:03 +01005558void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5559 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005560{
5561 size_t cur;
5562 size_t offset;
5563 struct page *page;
5564 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005565 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5566 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005567
5568 WARN_ON(start > eb->len);
5569 WARN_ON(start + len > eb->start + eb->len);
5570
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005571 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005572
Chris Masond3977122009-01-05 21:25:51 -05005573 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005574 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005575 WARN_ON(!PageUptodate(page));
5576
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005577 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005578 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005579 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005580
5581 len -= cur;
5582 offset = 0;
5583 i++;
5584 }
5585}
Chris Masond1310b22008-01-24 16:13:08 -05005586
David Sterba58e80122016-11-08 18:30:31 +01005587void copy_extent_buffer_full(struct extent_buffer *dst,
5588 struct extent_buffer *src)
5589{
5590 int i;
5591 unsigned num_pages;
5592
5593 ASSERT(dst->len == src->len);
5594
5595 num_pages = num_extent_pages(dst->start, dst->len);
5596 for (i = 0; i < num_pages; i++)
5597 copy_page(page_address(dst->pages[i]),
5598 page_address(src->pages[i]));
5599}
5600
Chris Masond1310b22008-01-24 16:13:08 -05005601void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5602 unsigned long dst_offset, unsigned long src_offset,
5603 unsigned long len)
5604{
5605 u64 dst_len = dst->len;
5606 size_t cur;
5607 size_t offset;
5608 struct page *page;
5609 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005610 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
5611 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005612
5613 WARN_ON(src->len != dst_len);
5614
5615 offset = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005616 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005617
Chris Masond3977122009-01-05 21:25:51 -05005618 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005619 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005620 WARN_ON(!PageUptodate(page));
5621
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005622 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005623
Chris Masona6591712011-07-19 12:04:14 -04005624 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005625 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005626
5627 src_offset += cur;
5628 len -= cur;
5629 offset = 0;
5630 i++;
5631 }
5632}
Chris Masond1310b22008-01-24 16:13:08 -05005633
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005634void le_bitmap_set(u8 *map, unsigned int start, int len)
5635{
5636 u8 *p = map + BIT_BYTE(start);
5637 const unsigned int size = start + len;
5638 int bits_to_set = BITS_PER_BYTE - (start % BITS_PER_BYTE);
5639 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(start);
5640
5641 while (len - bits_to_set >= 0) {
5642 *p |= mask_to_set;
5643 len -= bits_to_set;
5644 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005645 mask_to_set = ~0;
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005646 p++;
5647 }
5648 if (len) {
5649 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5650 *p |= mask_to_set;
5651 }
5652}
5653
5654void le_bitmap_clear(u8 *map, unsigned int start, int len)
5655{
5656 u8 *p = map + BIT_BYTE(start);
5657 const unsigned int size = start + len;
5658 int bits_to_clear = BITS_PER_BYTE - (start % BITS_PER_BYTE);
5659 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(start);
5660
5661 while (len - bits_to_clear >= 0) {
5662 *p &= ~mask_to_clear;
5663 len -= bits_to_clear;
5664 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005665 mask_to_clear = ~0;
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005666 p++;
5667 }
5668 if (len) {
5669 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5670 *p &= ~mask_to_clear;
5671 }
5672}
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005673
5674/*
5675 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5676 * given bit number
5677 * @eb: the extent buffer
5678 * @start: offset of the bitmap item in the extent buffer
5679 * @nr: bit number
5680 * @page_index: return index of the page in the extent buffer that contains the
5681 * given bit number
5682 * @page_offset: return offset into the page given by page_index
5683 *
5684 * This helper hides the ugliness of finding the byte in an extent buffer which
5685 * contains a given bit.
5686 */
5687static inline void eb_bitmap_offset(struct extent_buffer *eb,
5688 unsigned long start, unsigned long nr,
5689 unsigned long *page_index,
5690 size_t *page_offset)
5691{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005692 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005693 size_t byte_offset = BIT_BYTE(nr);
5694 size_t offset;
5695
5696 /*
5697 * The byte we want is the offset of the extent buffer + the offset of
5698 * the bitmap item in the extent buffer + the offset of the byte in the
5699 * bitmap item.
5700 */
5701 offset = start_offset + start + byte_offset;
5702
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005703 *page_index = offset >> PAGE_SHIFT;
5704 *page_offset = offset & (PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005705}
5706
5707/**
5708 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5709 * @eb: the extent buffer
5710 * @start: offset of the bitmap item in the extent buffer
5711 * @nr: bit number to test
5712 */
5713int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5714 unsigned long nr)
5715{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005716 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005717 struct page *page;
5718 unsigned long i;
5719 size_t offset;
5720
5721 eb_bitmap_offset(eb, start, nr, &i, &offset);
5722 page = eb->pages[i];
5723 WARN_ON(!PageUptodate(page));
5724 kaddr = page_address(page);
5725 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5726}
5727
5728/**
5729 * extent_buffer_bitmap_set - set an area of a bitmap
5730 * @eb: the extent buffer
5731 * @start: offset of the bitmap item in the extent buffer
5732 * @pos: bit number of the first bit
5733 * @len: number of bits to set
5734 */
5735void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5736 unsigned long pos, unsigned long len)
5737{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005738 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005739 struct page *page;
5740 unsigned long i;
5741 size_t offset;
5742 const unsigned int size = pos + len;
5743 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005744 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005745
5746 eb_bitmap_offset(eb, start, pos, &i, &offset);
5747 page = eb->pages[i];
5748 WARN_ON(!PageUptodate(page));
5749 kaddr = page_address(page);
5750
5751 while (len >= bits_to_set) {
5752 kaddr[offset] |= mask_to_set;
5753 len -= bits_to_set;
5754 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005755 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005756 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005757 offset = 0;
5758 page = eb->pages[++i];
5759 WARN_ON(!PageUptodate(page));
5760 kaddr = page_address(page);
5761 }
5762 }
5763 if (len) {
5764 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5765 kaddr[offset] |= mask_to_set;
5766 }
5767}
5768
5769
5770/**
5771 * extent_buffer_bitmap_clear - clear an area of a bitmap
5772 * @eb: the extent buffer
5773 * @start: offset of the bitmap item in the extent buffer
5774 * @pos: bit number of the first bit
5775 * @len: number of bits to clear
5776 */
5777void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5778 unsigned long pos, unsigned long len)
5779{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005780 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005781 struct page *page;
5782 unsigned long i;
5783 size_t offset;
5784 const unsigned int size = pos + len;
5785 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005786 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005787
5788 eb_bitmap_offset(eb, start, pos, &i, &offset);
5789 page = eb->pages[i];
5790 WARN_ON(!PageUptodate(page));
5791 kaddr = page_address(page);
5792
5793 while (len >= bits_to_clear) {
5794 kaddr[offset] &= ~mask_to_clear;
5795 len -= bits_to_clear;
5796 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005797 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005798 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005799 offset = 0;
5800 page = eb->pages[++i];
5801 WARN_ON(!PageUptodate(page));
5802 kaddr = page_address(page);
5803 }
5804 }
5805 if (len) {
5806 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5807 kaddr[offset] &= ~mask_to_clear;
5808 }
5809}
5810
Sergei Trofimovich33872062011-04-11 21:52:52 +00005811static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5812{
5813 unsigned long distance = (src > dst) ? src - dst : dst - src;
5814 return distance < len;
5815}
5816
Chris Masond1310b22008-01-24 16:13:08 -05005817static void copy_pages(struct page *dst_page, struct page *src_page,
5818 unsigned long dst_off, unsigned long src_off,
5819 unsigned long len)
5820{
Chris Masona6591712011-07-19 12:04:14 -04005821 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005822 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005823 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005824
Sergei Trofimovich33872062011-04-11 21:52:52 +00005825 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005826 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005827 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005828 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005829 if (areas_overlap(src_off, dst_off, len))
5830 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005831 }
Chris Masond1310b22008-01-24 16:13:08 -05005832
Chris Mason727011e2010-08-06 13:21:20 -04005833 if (must_memmove)
5834 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5835 else
5836 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005837}
5838
5839void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5840 unsigned long src_offset, unsigned long len)
5841{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005842 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005843 size_t cur;
5844 size_t dst_off_in_page;
5845 size_t src_off_in_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005846 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005847 unsigned long dst_i;
5848 unsigned long src_i;
5849
5850 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005851 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005852 "memmove bogus src_offset %lu move len %lu dst len %lu",
5853 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005854 BUG_ON(1);
5855 }
5856 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005857 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005858 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5859 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005860 BUG_ON(1);
5861 }
5862
Chris Masond3977122009-01-05 21:25:51 -05005863 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005864 dst_off_in_page = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005865 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005866 src_off_in_page = (start_offset + src_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005867 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005868
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005869 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5870 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005871
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005872 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005873 src_off_in_page));
5874 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005875 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005876
David Sterbafb85fc92014-07-31 01:03:53 +02005877 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005878 dst_off_in_page, src_off_in_page, cur);
5879
5880 src_offset += cur;
5881 dst_offset += cur;
5882 len -= cur;
5883 }
5884}
Chris Masond1310b22008-01-24 16:13:08 -05005885
5886void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5887 unsigned long src_offset, unsigned long len)
5888{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005889 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005890 size_t cur;
5891 size_t dst_off_in_page;
5892 size_t src_off_in_page;
5893 unsigned long dst_end = dst_offset + len - 1;
5894 unsigned long src_end = src_offset + len - 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005895 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005896 unsigned long dst_i;
5897 unsigned long src_i;
5898
5899 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005900 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005901 "memmove bogus src_offset %lu move len %lu len %lu",
5902 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005903 BUG_ON(1);
5904 }
5905 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005906 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005907 "memmove bogus dst_offset %lu move len %lu len %lu",
5908 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005909 BUG_ON(1);
5910 }
Chris Mason727011e2010-08-06 13:21:20 -04005911 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005912 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5913 return;
5914 }
Chris Masond3977122009-01-05 21:25:51 -05005915 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005916 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5917 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005918
5919 dst_off_in_page = (start_offset + dst_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005920 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005921 src_off_in_page = (start_offset + src_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005922 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005923
5924 cur = min_t(unsigned long, len, src_off_in_page + 1);
5925 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005926 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005927 dst_off_in_page - cur + 1,
5928 src_off_in_page - cur + 1, cur);
5929
5930 dst_end -= cur;
5931 src_end -= cur;
5932 len -= cur;
5933 }
5934}
Chris Mason6af118ce2008-07-22 11:18:07 -04005935
David Sterbaf7a52a42013-04-26 14:56:29 +00005936int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005937{
Chris Mason6af118ce2008-07-22 11:18:07 -04005938 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005939
Miao Xie19fe0a82010-10-26 20:57:29 -04005940 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005941 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005942 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005943 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005944 spin_lock(&page->mapping->private_lock);
5945 if (!PagePrivate(page)) {
5946 spin_unlock(&page->mapping->private_lock);
5947 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005948 }
5949
Josef Bacik3083ee22012-03-09 16:01:49 -05005950 eb = (struct extent_buffer *)page->private;
5951 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005952
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005953 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005954 * This is a little awful but should be ok, we need to make sure that
5955 * the eb doesn't disappear out from under us while we're looking at
5956 * this page.
5957 */
5958 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005959 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005960 spin_unlock(&eb->refs_lock);
5961 spin_unlock(&page->mapping->private_lock);
5962 return 0;
5963 }
5964 spin_unlock(&page->mapping->private_lock);
5965
Josef Bacik3083ee22012-03-09 16:01:49 -05005966 /*
5967 * If tree ref isn't set then we know the ref on this eb is a real ref,
5968 * so just return, this page will likely be freed soon anyway.
5969 */
5970 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5971 spin_unlock(&eb->refs_lock);
5972 return 0;
5973 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005974
David Sterbaf7a52a42013-04-26 14:56:29 +00005975 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005976}