blob: 5bb7ced20695022653dbab42da77cd9b9ef93339 [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/bitops.h>
2#include <linux/slab.h>
3#include <linux/bio.h>
4#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05005#include <linux/pagemap.h>
6#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/spinlock.h>
8#include <linux/blkdev.h>
9#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050010#include <linux/writeback.h>
11#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070012#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060013#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050014#include "extent_io.h"
15#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040016#include "ctree.h"
17#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020018#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010019#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040020#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040021#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080022#include "backref.h"
Lu Fengqiafce7722016-06-13 09:36:46 +080023#include "transaction.h"
Chris Masond1310b22008-01-24 16:13:08 -050024
Chris Masond1310b22008-01-24 16:13:08 -050025static struct kmem_cache *extent_state_cache;
26static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040027static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050028
Filipe Manana27a35072014-07-06 20:09:59 +010029static inline bool extent_state_in_tree(const struct extent_state *state)
30{
31 return !RB_EMPTY_NODE(&state->rb_node);
32}
33
Eric Sandeen6d49ba12013-04-22 16:12:31 +000034#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050035static LIST_HEAD(buffers);
36static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040037
Chris Masond3977122009-01-05 21:25:51 -050038static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000039
40static inline
41void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
42{
43 unsigned long flags;
44
45 spin_lock_irqsave(&leak_lock, flags);
46 list_add(new, head);
47 spin_unlock_irqrestore(&leak_lock, flags);
48}
49
50static inline
51void btrfs_leak_debug_del(struct list_head *entry)
52{
53 unsigned long flags;
54
55 spin_lock_irqsave(&leak_lock, flags);
56 list_del(entry);
57 spin_unlock_irqrestore(&leak_lock, flags);
58}
59
60static inline
61void btrfs_leak_debug_check(void)
62{
63 struct extent_state *state;
64 struct extent_buffer *eb;
65
66 while (!list_empty(&states)) {
67 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010068 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010069 state->start, state->end, state->state,
70 extent_state_in_tree(state),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020071 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000072 list_del(&state->leak_list);
73 kmem_cache_free(extent_state_cache, state);
74 }
75
76 while (!list_empty(&buffers)) {
77 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Jeff Mahoney62e85572016-09-20 10:05:01 -040078 pr_err("BTRFS: buffer leak start %llu len %lu refs %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020079 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000080 list_del(&eb->leak_list);
81 kmem_cache_free(extent_buffer_cache, eb);
82 }
83}
David Sterba8d599ae2013-04-30 15:22:23 +000084
Josef Bacika5dee372013-12-13 10:02:44 -050085#define btrfs_debug_check_extent_io_range(tree, start, end) \
86 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000087static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050088 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000089{
Josef Bacika5dee372013-12-13 10:02:44 -050090 struct inode *inode;
91 u64 isize;
David Sterba8d599ae2013-04-30 15:22:23 +000092
Josef Bacika5dee372013-12-13 10:02:44 -050093 if (!tree->mapping)
94 return;
95
96 inode = tree->mapping->host;
97 isize = i_size_read(inode);
David Sterba8d599ae2013-04-30 15:22:23 +000098 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
David Sterba94647322015-10-08 11:01:36 +020099 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
100 "%s: ino %llu isize %llu odd range [%llu,%llu]",
David Sterbaf85b7372017-01-20 14:54:07 +0100101 caller, btrfs_ino(BTRFS_I(inode)), isize, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000102 }
103}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000104#else
105#define btrfs_leak_debug_add(new, head) do {} while (0)
106#define btrfs_leak_debug_del(entry) do {} while (0)
107#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000108#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400109#endif
Chris Masond1310b22008-01-24 16:13:08 -0500110
Chris Masond1310b22008-01-24 16:13:08 -0500111#define BUFFER_LRU_MAX 64
112
113struct tree_entry {
114 u64 start;
115 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500116 struct rb_node rb_node;
117};
118
119struct extent_page_data {
120 struct bio *bio;
121 struct extent_io_tree *tree;
122 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -0400123 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500124
125 /* tells writepage not to lock the state bits for this range
126 * it still does the unlocking
127 */
Chris Masonffbd5172009-04-20 15:50:09 -0400128 unsigned int extent_locked:1;
129
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600130 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400131 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500132};
133
Qu Wenruod38ed272015-10-12 14:53:37 +0800134static void add_extent_changeset(struct extent_state *state, unsigned bits,
135 struct extent_changeset *changeset,
136 int set)
137{
138 int ret;
139
140 if (!changeset)
141 return;
142 if (set && (state->state & bits) == bits)
143 return;
Qu Wenruofefdc552015-10-12 15:35:38 +0800144 if (!set && (state->state & bits) == 0)
145 return;
Qu Wenruod38ed272015-10-12 14:53:37 +0800146 changeset->bytes_changed += state->end - state->start + 1;
147 ret = ulist_add(changeset->range_changed, state->start, state->end,
148 GFP_ATOMIC);
149 /* ENOMEM */
150 BUG_ON(ret < 0);
151}
152
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400153static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400154static inline struct btrfs_fs_info *
155tree_fs_info(struct extent_io_tree *tree)
156{
Josef Bacika5dee372013-12-13 10:02:44 -0500157 if (!tree->mapping)
158 return NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400159 return btrfs_sb(tree->mapping->host->i_sb);
160}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400161
Chris Masond1310b22008-01-24 16:13:08 -0500162int __init extent_io_init(void)
163{
David Sterba837e1972012-09-07 03:00:48 -0600164 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200165 sizeof(struct extent_state), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300166 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500167 if (!extent_state_cache)
168 return -ENOMEM;
169
David Sterba837e1972012-09-07 03:00:48 -0600170 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200171 sizeof(struct extent_buffer), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300172 SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500173 if (!extent_buffer_cache)
174 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400175
176 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
177 offsetof(struct btrfs_io_bio, bio));
178 if (!btrfs_bioset)
179 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700180
181 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
182 goto free_bioset;
183
Chris Masond1310b22008-01-24 16:13:08 -0500184 return 0;
185
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700186free_bioset:
187 bioset_free(btrfs_bioset);
188 btrfs_bioset = NULL;
189
Chris Mason9be33952013-05-17 18:30:14 -0400190free_buffer_cache:
191 kmem_cache_destroy(extent_buffer_cache);
192 extent_buffer_cache = NULL;
193
Chris Masond1310b22008-01-24 16:13:08 -0500194free_state_cache:
195 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400196 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500197 return -ENOMEM;
198}
199
200void extent_io_exit(void)
201{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000202 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000203
204 /*
205 * Make sure all delayed rcu free are flushed before we
206 * destroy caches.
207 */
208 rcu_barrier();
Kinglong Mee5598e902016-01-29 21:36:35 +0800209 kmem_cache_destroy(extent_state_cache);
210 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400211 if (btrfs_bioset)
212 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500213}
214
215void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200216 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500217{
Eric Paris6bef4d32010-02-23 19:43:04 +0000218 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500219 tree->ops = NULL;
220 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500221 spin_lock_init(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500222 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500223}
Chris Masond1310b22008-01-24 16:13:08 -0500224
Christoph Hellwigb2950862008-12-02 09:54:17 -0500225static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500226{
227 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500228
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100229 /*
230 * The given mask might be not appropriate for the slab allocator,
231 * drop the unsupported bits
232 */
233 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500234 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400235 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500236 return state;
237 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100238 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100239 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000240 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500241 atomic_set(&state->refs, 1);
242 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100243 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500244 return state;
245}
Chris Masond1310b22008-01-24 16:13:08 -0500246
Chris Mason4845e442010-05-25 20:56:50 -0400247void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500248{
Chris Masond1310b22008-01-24 16:13:08 -0500249 if (!state)
250 return;
251 if (atomic_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100252 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000253 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100254 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500255 kmem_cache_free(extent_state_cache, state);
256 }
257}
Chris Masond1310b22008-01-24 16:13:08 -0500258
Filipe Mananaf2071b22014-02-12 15:05:53 +0000259static struct rb_node *tree_insert(struct rb_root *root,
260 struct rb_node *search_start,
261 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000262 struct rb_node *node,
263 struct rb_node ***p_in,
264 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500265{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000266 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500267 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500268 struct tree_entry *entry;
269
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000270 if (p_in && parent_in) {
271 p = *p_in;
272 parent = *parent_in;
273 goto do_insert;
274 }
275
Filipe Mananaf2071b22014-02-12 15:05:53 +0000276 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500277 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500278 parent = *p;
279 entry = rb_entry(parent, struct tree_entry, rb_node);
280
281 if (offset < entry->start)
282 p = &(*p)->rb_left;
283 else if (offset > entry->end)
284 p = &(*p)->rb_right;
285 else
286 return parent;
287 }
288
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000289do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500290 rb_link_node(node, parent, p);
291 rb_insert_color(node, root);
292 return NULL;
293}
294
Chris Mason80ea96b2008-02-01 14:51:59 -0500295static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000296 struct rb_node **prev_ret,
297 struct rb_node **next_ret,
298 struct rb_node ***p_ret,
299 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500300{
Chris Mason80ea96b2008-02-01 14:51:59 -0500301 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000302 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500303 struct rb_node *prev = NULL;
304 struct rb_node *orig_prev = NULL;
305 struct tree_entry *entry;
306 struct tree_entry *prev_entry = NULL;
307
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000308 while (*n) {
309 prev = *n;
310 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500311 prev_entry = entry;
312
313 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000314 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500315 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000316 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500317 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000318 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500319 }
320
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000321 if (p_ret)
322 *p_ret = n;
323 if (parent_ret)
324 *parent_ret = prev;
325
Chris Masond1310b22008-01-24 16:13:08 -0500326 if (prev_ret) {
327 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500328 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500329 prev = rb_next(prev);
330 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
331 }
332 *prev_ret = prev;
333 prev = orig_prev;
334 }
335
336 if (next_ret) {
337 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500338 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500339 prev = rb_prev(prev);
340 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
341 }
342 *next_ret = prev;
343 }
344 return NULL;
345}
346
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000347static inline struct rb_node *
348tree_search_for_insert(struct extent_io_tree *tree,
349 u64 offset,
350 struct rb_node ***p_ret,
351 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500352{
Chris Mason70dec802008-01-29 09:59:12 -0500353 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500354 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500355
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000356 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500357 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500358 return prev;
359 return ret;
360}
361
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000362static inline struct rb_node *tree_search(struct extent_io_tree *tree,
363 u64 offset)
364{
365 return tree_search_for_insert(tree, offset, NULL, NULL);
366}
367
Josef Bacik9ed74f22009-09-11 16:12:44 -0400368static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
369 struct extent_state *other)
370{
371 if (tree->ops && tree->ops->merge_extent_hook)
372 tree->ops->merge_extent_hook(tree->mapping->host, new,
373 other);
374}
375
Chris Masond1310b22008-01-24 16:13:08 -0500376/*
377 * utility function to look for merge candidates inside a given range.
378 * Any extents with matching state are merged together into a single
379 * extent in the tree. Extents with EXTENT_IO in their state field
380 * are not merged because the end_io handlers need to be able to do
381 * operations on them without sleeping (or doing allocations/splits).
382 *
383 * This should be called with the tree lock held.
384 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000385static void merge_state(struct extent_io_tree *tree,
386 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500387{
388 struct extent_state *other;
389 struct rb_node *other_node;
390
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400391 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000392 return;
Chris Masond1310b22008-01-24 16:13:08 -0500393
394 other_node = rb_prev(&state->rb_node);
395 if (other_node) {
396 other = rb_entry(other_node, struct extent_state, rb_node);
397 if (other->end == state->start - 1 &&
398 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400399 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500400 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500401 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100402 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500403 free_extent_state(other);
404 }
405 }
406 other_node = rb_next(&state->rb_node);
407 if (other_node) {
408 other = rb_entry(other_node, struct extent_state, rb_node);
409 if (other->start == state->end + 1 &&
410 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400411 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400412 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400413 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100414 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400415 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500416 }
417 }
Chris Masond1310b22008-01-24 16:13:08 -0500418}
419
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000420static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100421 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500422{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000423 if (tree->ops && tree->ops->set_bit_hook)
424 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500425}
426
427static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100428 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500429{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400430 if (tree->ops && tree->ops->clear_bit_hook)
431 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500432}
433
Xiao Guangrong3150b692011-07-14 03:19:08 +0000434static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800435 struct extent_state *state, unsigned *bits,
436 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000437
Chris Masond1310b22008-01-24 16:13:08 -0500438/*
439 * insert an extent_state struct into the tree. 'bits' are set on the
440 * struct before it is inserted.
441 *
442 * This may return -EEXIST if the extent is already there, in which case the
443 * state struct is freed.
444 *
445 * The tree lock is not taken internally. This is a utility function and
446 * probably isn't what you want to call (see set/clear_extent_bit).
447 */
448static int insert_state(struct extent_io_tree *tree,
449 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000450 struct rb_node ***p,
451 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800452 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500453{
454 struct rb_node *node;
455
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000456 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500457 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200458 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500459 state->start = start;
460 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400461
Qu Wenruod38ed272015-10-12 14:53:37 +0800462 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000463
Filipe Mananaf2071b22014-02-12 15:05:53 +0000464 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500465 if (node) {
466 struct extent_state *found;
467 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400468 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200469 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500470 return -EEXIST;
471 }
472 merge_state(tree, state);
473 return 0;
474}
475
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000476static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400477 u64 split)
478{
479 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000480 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400481}
482
Chris Masond1310b22008-01-24 16:13:08 -0500483/*
484 * split a given extent state struct in two, inserting the preallocated
485 * struct 'prealloc' as the newly created second half. 'split' indicates an
486 * offset inside 'orig' where it should be split.
487 *
488 * Before calling,
489 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
490 * are two extent state structs in the tree:
491 * prealloc: [orig->start, split - 1]
492 * orig: [ split, orig->end ]
493 *
494 * The tree locks are not taken by this function. They need to be held
495 * by the caller.
496 */
497static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
498 struct extent_state *prealloc, u64 split)
499{
500 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400501
502 split_cb(tree, orig, split);
503
Chris Masond1310b22008-01-24 16:13:08 -0500504 prealloc->start = orig->start;
505 prealloc->end = split - 1;
506 prealloc->state = orig->state;
507 orig->start = split;
508
Filipe Mananaf2071b22014-02-12 15:05:53 +0000509 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
510 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500511 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500512 free_extent_state(prealloc);
513 return -EEXIST;
514 }
515 return 0;
516}
517
Li Zefancdc6a392012-03-12 16:39:48 +0800518static struct extent_state *next_state(struct extent_state *state)
519{
520 struct rb_node *next = rb_next(&state->rb_node);
521 if (next)
522 return rb_entry(next, struct extent_state, rb_node);
523 else
524 return NULL;
525}
526
Chris Masond1310b22008-01-24 16:13:08 -0500527/*
528 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800529 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500530 *
531 * If no bits are set on the state struct after clearing things, the
532 * struct is freed and removed from the tree
533 */
Li Zefancdc6a392012-03-12 16:39:48 +0800534static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
535 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800536 unsigned *bits, int wake,
537 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500538{
Li Zefancdc6a392012-03-12 16:39:48 +0800539 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100540 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500541
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400542 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500543 u64 range = state->end - state->start + 1;
544 WARN_ON(range > tree->dirty_bytes);
545 tree->dirty_bytes -= range;
546 }
Chris Mason291d6732008-01-29 15:55:23 -0500547 clear_state_cb(tree, state, bits);
Qu Wenruofefdc552015-10-12 15:35:38 +0800548 add_extent_changeset(state, bits_to_clear, changeset, 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400549 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500550 if (wake)
551 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400552 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800553 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100554 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500555 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100556 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500557 free_extent_state(state);
558 } else {
559 WARN_ON(1);
560 }
561 } else {
562 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800563 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500564 }
Li Zefancdc6a392012-03-12 16:39:48 +0800565 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500566}
567
Xiao Guangrong82337672011-04-20 06:44:57 +0000568static struct extent_state *
569alloc_extent_state_atomic(struct extent_state *prealloc)
570{
571 if (!prealloc)
572 prealloc = alloc_extent_state(GFP_ATOMIC);
573
574 return prealloc;
575}
576
Eric Sandeen48a3b632013-04-25 20:41:01 +0000577static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400578{
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400579 btrfs_panic(tree_fs_info(tree), err,
580 "Locking error: Extent tree was modified by another thread while locked.");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400581}
582
Chris Masond1310b22008-01-24 16:13:08 -0500583/*
584 * clear some bits on a range in the tree. This may require splitting
585 * or inserting elements in the tree, so the gfp mask is used to
586 * indicate which allocations or sleeping are allowed.
587 *
588 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
589 * the given range from the tree regardless of state (ie for truncate).
590 *
591 * the range [start, end] is inclusive.
592 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100593 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500594 */
Qu Wenruofefdc552015-10-12 15:35:38 +0800595static int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
596 unsigned bits, int wake, int delete,
597 struct extent_state **cached_state,
598 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500599{
600 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400601 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500602 struct extent_state *prealloc = NULL;
603 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400604 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500605 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000606 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500607
Josef Bacika5dee372013-12-13 10:02:44 -0500608 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000609
Josef Bacik7ee9e442013-06-21 16:37:03 -0400610 if (bits & EXTENT_DELALLOC)
611 bits |= EXTENT_NORESERVE;
612
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400613 if (delete)
614 bits |= ~EXTENT_CTLBITS;
615 bits |= EXTENT_FIRST_DELALLOC;
616
Josef Bacik2ac55d42010-02-03 19:33:23 +0000617 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
618 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500619again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800620 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000621 /*
622 * Don't care for allocation failure here because we might end
623 * up not needing the pre-allocated extent state at all, which
624 * is the case if we only have in the tree extent states that
625 * cover our input range and don't cover too any other range.
626 * If we end up needing a new extent state we allocate it later.
627 */
Chris Masond1310b22008-01-24 16:13:08 -0500628 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500629 }
630
Chris Masoncad321a2008-12-17 14:51:42 -0500631 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400632 if (cached_state) {
633 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000634
635 if (clear) {
636 *cached_state = NULL;
637 cached_state = NULL;
638 }
639
Filipe Manana27a35072014-07-06 20:09:59 +0100640 if (cached && extent_state_in_tree(cached) &&
641 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000642 if (clear)
643 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400644 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400645 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400646 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000647 if (clear)
648 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400649 }
Chris Masond1310b22008-01-24 16:13:08 -0500650 /*
651 * this search will find the extents that end after
652 * our range starts
653 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500654 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500655 if (!node)
656 goto out;
657 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400658hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500659 if (state->start > end)
660 goto out;
661 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400662 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500663
Liu Bo04493142012-02-16 18:34:37 +0800664 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800665 if (!(state->state & bits)) {
666 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800667 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800668 }
Liu Bo04493142012-02-16 18:34:37 +0800669
Chris Masond1310b22008-01-24 16:13:08 -0500670 /*
671 * | ---- desired range ---- |
672 * | state | or
673 * | ------------- state -------------- |
674 *
675 * We need to split the extent we found, and may flip
676 * bits on second half.
677 *
678 * If the extent we found extends past our range, we
679 * just split and search again. It'll get split again
680 * the next time though.
681 *
682 * If the extent we found is inside our range, we clear
683 * the desired bit on it.
684 */
685
686 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000687 prealloc = alloc_extent_state_atomic(prealloc);
688 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500689 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400690 if (err)
691 extent_io_tree_panic(tree, err);
692
Chris Masond1310b22008-01-24 16:13:08 -0500693 prealloc = NULL;
694 if (err)
695 goto out;
696 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800697 state = clear_state_bit(tree, state, &bits, wake,
698 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800699 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500700 }
701 goto search_again;
702 }
703 /*
704 * | ---- desired range ---- |
705 * | state |
706 * We need to split the extent, and clear the bit
707 * on the first half
708 */
709 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000710 prealloc = alloc_extent_state_atomic(prealloc);
711 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500712 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400713 if (err)
714 extent_io_tree_panic(tree, err);
715
Chris Masond1310b22008-01-24 16:13:08 -0500716 if (wake)
717 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400718
Qu Wenruofefdc552015-10-12 15:35:38 +0800719 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400720
Chris Masond1310b22008-01-24 16:13:08 -0500721 prealloc = NULL;
722 goto out;
723 }
Chris Mason42daec22009-09-23 19:51:09 -0400724
Qu Wenruofefdc552015-10-12 15:35:38 +0800725 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800726next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400727 if (last_end == (u64)-1)
728 goto out;
729 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800730 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800731 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500732
733search_again:
734 if (start > end)
735 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500736 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800737 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500738 cond_resched();
739 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200740
741out:
742 spin_unlock(&tree->lock);
743 if (prealloc)
744 free_extent_state(prealloc);
745
746 return 0;
747
Chris Masond1310b22008-01-24 16:13:08 -0500748}
Chris Masond1310b22008-01-24 16:13:08 -0500749
Jeff Mahoney143bede2012-03-01 14:56:26 +0100750static void wait_on_state(struct extent_io_tree *tree,
751 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500752 __releases(tree->lock)
753 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500754{
755 DEFINE_WAIT(wait);
756 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500757 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500758 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500759 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500760 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500761}
762
763/*
764 * waits for one or more bits to clear on a range in the state tree.
765 * The range [start, end] is inclusive.
766 * The tree lock is taken by this function
767 */
David Sterba41074882013-04-29 13:38:46 +0000768static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
769 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500770{
771 struct extent_state *state;
772 struct rb_node *node;
773
Josef Bacika5dee372013-12-13 10:02:44 -0500774 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000775
Chris Masoncad321a2008-12-17 14:51:42 -0500776 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500777again:
778 while (1) {
779 /*
780 * this search will find all the extents that end after
781 * our range starts
782 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500783 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100784process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500785 if (!node)
786 break;
787
788 state = rb_entry(node, struct extent_state, rb_node);
789
790 if (state->start > end)
791 goto out;
792
793 if (state->state & bits) {
794 start = state->start;
795 atomic_inc(&state->refs);
796 wait_on_state(tree, state);
797 free_extent_state(state);
798 goto again;
799 }
800 start = state->end + 1;
801
802 if (start > end)
803 break;
804
Filipe Mananac50d3e72014-03-31 14:53:25 +0100805 if (!cond_resched_lock(&tree->lock)) {
806 node = rb_next(node);
807 goto process_node;
808 }
Chris Masond1310b22008-01-24 16:13:08 -0500809 }
810out:
Chris Masoncad321a2008-12-17 14:51:42 -0500811 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500812}
Chris Masond1310b22008-01-24 16:13:08 -0500813
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000814static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500815 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800816 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500817{
David Sterba9ee49a042015-01-14 19:52:13 +0100818 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400819
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000820 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400821 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500822 u64 range = state->end - state->start + 1;
823 tree->dirty_bytes += range;
824 }
Qu Wenruod38ed272015-10-12 14:53:37 +0800825 add_extent_changeset(state, bits_to_set, changeset, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400826 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500827}
828
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100829static void cache_state_if_flags(struct extent_state *state,
830 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100831 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400832{
833 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100834 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400835 *cached_ptr = state;
836 atomic_inc(&state->refs);
837 }
838 }
839}
840
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100841static void cache_state(struct extent_state *state,
842 struct extent_state **cached_ptr)
843{
844 return cache_state_if_flags(state, cached_ptr,
845 EXTENT_IOBITS | EXTENT_BOUNDARY);
846}
847
Chris Masond1310b22008-01-24 16:13:08 -0500848/*
Chris Mason1edbb732009-09-02 13:24:36 -0400849 * set some bits on a range in the tree. This may require allocations or
850 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500851 *
Chris Mason1edbb732009-09-02 13:24:36 -0400852 * If any of the exclusive bits are set, this will fail with -EEXIST if some
853 * part of the range already has the desired bits set. The start of the
854 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500855 *
Chris Mason1edbb732009-09-02 13:24:36 -0400856 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500857 */
Chris Mason1edbb732009-09-02 13:24:36 -0400858
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100859static int __must_check
860__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100861 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000862 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800863 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500864{
865 struct extent_state *state;
866 struct extent_state *prealloc = NULL;
867 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000868 struct rb_node **p;
869 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500870 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500871 u64 last_start;
872 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400873
Josef Bacika5dee372013-12-13 10:02:44 -0500874 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000875
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400876 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500877again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800878 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200879 /*
880 * Don't care for allocation failure here because we might end
881 * up not needing the pre-allocated extent state at all, which
882 * is the case if we only have in the tree extent states that
883 * cover our input range and don't cover too any other range.
884 * If we end up needing a new extent state we allocate it later.
885 */
Chris Masond1310b22008-01-24 16:13:08 -0500886 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500887 }
888
Chris Masoncad321a2008-12-17 14:51:42 -0500889 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400890 if (cached_state && *cached_state) {
891 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400892 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100893 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400894 node = &state->rb_node;
895 goto hit_next;
896 }
897 }
Chris Masond1310b22008-01-24 16:13:08 -0500898 /*
899 * this search will find all the extents that end after
900 * our range starts.
901 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000902 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500903 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000904 prealloc = alloc_extent_state_atomic(prealloc);
905 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000906 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800907 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400908 if (err)
909 extent_io_tree_panic(tree, err);
910
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000911 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500912 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500913 goto out;
914 }
Chris Masond1310b22008-01-24 16:13:08 -0500915 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400916hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500917 last_start = state->start;
918 last_end = state->end;
919
920 /*
921 * | ---- desired range ---- |
922 * | state |
923 *
924 * Just lock what we found and keep going
925 */
926 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400927 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500928 *failed_start = state->start;
929 err = -EEXIST;
930 goto out;
931 }
Chris Mason42daec22009-09-23 19:51:09 -0400932
Qu Wenruod38ed272015-10-12 14:53:37 +0800933 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400934 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500935 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400936 if (last_end == (u64)-1)
937 goto out;
938 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800939 state = next_state(state);
940 if (start < end && state && state->start == start &&
941 !need_resched())
942 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500943 goto search_again;
944 }
945
946 /*
947 * | ---- desired range ---- |
948 * | state |
949 * or
950 * | ------------- state -------------- |
951 *
952 * We need to split the extent we found, and may flip bits on
953 * second half.
954 *
955 * If the extent we found extends past our
956 * range, we just split and search again. It'll get split
957 * again the next time though.
958 *
959 * If the extent we found is inside our range, we set the
960 * desired bit on it.
961 */
962 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400963 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500964 *failed_start = start;
965 err = -EEXIST;
966 goto out;
967 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000968
969 prealloc = alloc_extent_state_atomic(prealloc);
970 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500971 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400972 if (err)
973 extent_io_tree_panic(tree, err);
974
Chris Masond1310b22008-01-24 16:13:08 -0500975 prealloc = NULL;
976 if (err)
977 goto out;
978 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800979 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400980 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500981 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400982 if (last_end == (u64)-1)
983 goto out;
984 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800985 state = next_state(state);
986 if (start < end && state && state->start == start &&
987 !need_resched())
988 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500989 }
990 goto search_again;
991 }
992 /*
993 * | ---- desired range ---- |
994 * | state | or | state |
995 *
996 * There's a hole, we need to insert something in it and
997 * ignore the extent we found.
998 */
999 if (state->start > start) {
1000 u64 this_end;
1001 if (end < last_start)
1002 this_end = end;
1003 else
Chris Masond3977122009-01-05 21:25:51 -05001004 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +00001005
1006 prealloc = alloc_extent_state_atomic(prealloc);
1007 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001008
1009 /*
1010 * Avoid to free 'prealloc' if it can be merged with
1011 * the later extent.
1012 */
Chris Masond1310b22008-01-24 16:13:08 -05001013 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001014 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001015 if (err)
1016 extent_io_tree_panic(tree, err);
1017
Chris Mason2c64c532009-09-02 15:04:12 -04001018 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001019 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001020 start = this_end + 1;
1021 goto search_again;
1022 }
1023 /*
1024 * | ---- desired range ---- |
1025 * | state |
1026 * We need to split the extent, and set the bit
1027 * on the first half
1028 */
1029 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001030 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001031 *failed_start = start;
1032 err = -EEXIST;
1033 goto out;
1034 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001035
1036 prealloc = alloc_extent_state_atomic(prealloc);
1037 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001038 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001039 if (err)
1040 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001041
Qu Wenruod38ed272015-10-12 14:53:37 +08001042 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001043 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001044 merge_state(tree, prealloc);
1045 prealloc = NULL;
1046 goto out;
1047 }
1048
David Sterbab5a4ba12016-04-27 01:02:15 +02001049search_again:
1050 if (start > end)
1051 goto out;
1052 spin_unlock(&tree->lock);
1053 if (gfpflags_allow_blocking(mask))
1054 cond_resched();
1055 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001056
1057out:
Chris Masoncad321a2008-12-17 14:51:42 -05001058 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001059 if (prealloc)
1060 free_extent_state(prealloc);
1061
1062 return err;
1063
Chris Masond1310b22008-01-24 16:13:08 -05001064}
Chris Masond1310b22008-01-24 16:13:08 -05001065
David Sterba41074882013-04-29 13:38:46 +00001066int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001067 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001068 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001069{
1070 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001071 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001072}
1073
1074
Josef Bacik462d6fa2011-09-26 13:56:12 -04001075/**
Liu Bo10983f22012-07-11 15:26:19 +08001076 * convert_extent_bit - convert all bits in a given range from one bit to
1077 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001078 * @tree: the io tree to search
1079 * @start: the start offset in bytes
1080 * @end: the end offset in bytes (inclusive)
1081 * @bits: the bits to set in this range
1082 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001083 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001084 *
1085 * This will go through and set bits for the given range. If any states exist
1086 * already in this range they are set with the given bit and cleared of the
1087 * clear_bits. This is only meant to be used by things that are mergeable, ie
1088 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1089 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001090 *
1091 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001092 */
1093int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001094 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001095 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001096{
1097 struct extent_state *state;
1098 struct extent_state *prealloc = NULL;
1099 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001100 struct rb_node **p;
1101 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102 int err = 0;
1103 u64 last_start;
1104 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001105 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001106
Josef Bacika5dee372013-12-13 10:02:44 -05001107 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001108
Josef Bacik462d6fa2011-09-26 13:56:12 -04001109again:
David Sterba210aa272016-04-26 23:54:39 +02001110 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001111 /*
1112 * Best effort, don't worry if extent state allocation fails
1113 * here for the first iteration. We might have a cached state
1114 * that matches exactly the target range, in which case no
1115 * extent state allocations are needed. We'll only know this
1116 * after locking the tree.
1117 */
David Sterba210aa272016-04-26 23:54:39 +02001118 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001119 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001120 return -ENOMEM;
1121 }
1122
1123 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001124 if (cached_state && *cached_state) {
1125 state = *cached_state;
1126 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001127 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001128 node = &state->rb_node;
1129 goto hit_next;
1130 }
1131 }
1132
Josef Bacik462d6fa2011-09-26 13:56:12 -04001133 /*
1134 * this search will find all the extents that end after
1135 * our range starts.
1136 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001137 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001138 if (!node) {
1139 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001140 if (!prealloc) {
1141 err = -ENOMEM;
1142 goto out;
1143 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001144 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001145 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001146 if (err)
1147 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001148 cache_state(prealloc, cached_state);
1149 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001150 goto out;
1151 }
1152 state = rb_entry(node, struct extent_state, rb_node);
1153hit_next:
1154 last_start = state->start;
1155 last_end = state->end;
1156
1157 /*
1158 * | ---- desired range ---- |
1159 * | state |
1160 *
1161 * Just lock what we found and keep going
1162 */
1163 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001164 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001165 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001166 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001167 if (last_end == (u64)-1)
1168 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001169 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001170 if (start < end && state && state->start == start &&
1171 !need_resched())
1172 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001173 goto search_again;
1174 }
1175
1176 /*
1177 * | ---- desired range ---- |
1178 * | state |
1179 * or
1180 * | ------------- state -------------- |
1181 *
1182 * We need to split the extent we found, and may flip bits on
1183 * second half.
1184 *
1185 * If the extent we found extends past our
1186 * range, we just split and search again. It'll get split
1187 * again the next time though.
1188 *
1189 * If the extent we found is inside our range, we set the
1190 * desired bit on it.
1191 */
1192 if (state->start < start) {
1193 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001194 if (!prealloc) {
1195 err = -ENOMEM;
1196 goto out;
1197 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001198 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001199 if (err)
1200 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001201 prealloc = NULL;
1202 if (err)
1203 goto out;
1204 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001205 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001206 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001207 state = clear_state_bit(tree, state, &clear_bits, 0,
1208 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001209 if (last_end == (u64)-1)
1210 goto out;
1211 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001212 if (start < end && state && state->start == start &&
1213 !need_resched())
1214 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001215 }
1216 goto search_again;
1217 }
1218 /*
1219 * | ---- desired range ---- |
1220 * | state | or | state |
1221 *
1222 * There's a hole, we need to insert something in it and
1223 * ignore the extent we found.
1224 */
1225 if (state->start > start) {
1226 u64 this_end;
1227 if (end < last_start)
1228 this_end = end;
1229 else
1230 this_end = last_start - 1;
1231
1232 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001233 if (!prealloc) {
1234 err = -ENOMEM;
1235 goto out;
1236 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001237
1238 /*
1239 * Avoid to free 'prealloc' if it can be merged with
1240 * the later extent.
1241 */
1242 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001243 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001244 if (err)
1245 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001246 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001247 prealloc = NULL;
1248 start = this_end + 1;
1249 goto search_again;
1250 }
1251 /*
1252 * | ---- desired range ---- |
1253 * | state |
1254 * We need to split the extent, and set the bit
1255 * on the first half
1256 */
1257 if (state->start <= end && state->end > end) {
1258 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001259 if (!prealloc) {
1260 err = -ENOMEM;
1261 goto out;
1262 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001263
1264 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001265 if (err)
1266 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001267
Qu Wenruod38ed272015-10-12 14:53:37 +08001268 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001269 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001270 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001271 prealloc = NULL;
1272 goto out;
1273 }
1274
Josef Bacik462d6fa2011-09-26 13:56:12 -04001275search_again:
1276 if (start > end)
1277 goto out;
1278 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001279 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001280 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001281 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001282
1283out:
1284 spin_unlock(&tree->lock);
1285 if (prealloc)
1286 free_extent_state(prealloc);
1287
1288 return err;
1289}
1290
Chris Masond1310b22008-01-24 16:13:08 -05001291/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001292int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001293 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001294{
1295 /*
1296 * We don't support EXTENT_LOCKED yet, as current changeset will
1297 * record any bits changed, so for EXTENT_LOCKED case, it will
1298 * either fail with -EEXIST or changeset will record the whole
1299 * range.
1300 */
1301 BUG_ON(bits & EXTENT_LOCKED);
1302
David Sterba2c53b912016-04-26 23:54:39 +02001303 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001304 changeset);
1305}
1306
Qu Wenruofefdc552015-10-12 15:35:38 +08001307int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1308 unsigned bits, int wake, int delete,
1309 struct extent_state **cached, gfp_t mask)
1310{
1311 return __clear_extent_bit(tree, start, end, bits, wake, delete,
1312 cached, mask, NULL);
1313}
1314
Qu Wenruofefdc552015-10-12 15:35:38 +08001315int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001316 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001317{
1318 /*
1319 * Don't support EXTENT_LOCKED case, same reason as
1320 * set_record_extent_bits().
1321 */
1322 BUG_ON(bits & EXTENT_LOCKED);
1323
David Sterbaf734c442016-04-26 23:54:39 +02001324 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001325 changeset);
1326}
1327
Chris Masond352ac62008-09-29 15:18:18 -04001328/*
1329 * either insert or lock state struct between start and end use mask to tell
1330 * us if waiting is desired.
1331 */
Chris Mason1edbb732009-09-02 13:24:36 -04001332int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001333 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001334{
1335 int err;
1336 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001337
Chris Masond1310b22008-01-24 16:13:08 -05001338 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001339 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001340 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001341 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001342 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001343 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1344 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001345 } else
Chris Masond1310b22008-01-24 16:13:08 -05001346 break;
Chris Masond1310b22008-01-24 16:13:08 -05001347 WARN_ON(start > end);
1348 }
1349 return err;
1350}
Chris Masond1310b22008-01-24 16:13:08 -05001351
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001352int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001353{
1354 int err;
1355 u64 failed_start;
1356
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001357 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001358 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001359 if (err == -EEXIST) {
1360 if (failed_start > start)
1361 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001362 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001363 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001364 }
Josef Bacik25179202008-10-29 14:49:05 -04001365 return 1;
1366}
Josef Bacik25179202008-10-29 14:49:05 -04001367
David Sterbabd1fa4f2015-12-03 13:08:59 +01001368void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001369{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001370 unsigned long index = start >> PAGE_SHIFT;
1371 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001372 struct page *page;
1373
1374 while (index <= end_index) {
1375 page = find_get_page(inode->i_mapping, index);
1376 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1377 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001378 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001379 index++;
1380 }
Chris Mason4adaa612013-03-26 13:07:00 -04001381}
1382
David Sterbaf6311572015-12-03 13:08:59 +01001383void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001384{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001385 unsigned long index = start >> PAGE_SHIFT;
1386 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001387 struct page *page;
1388
1389 while (index <= end_index) {
1390 page = find_get_page(inode->i_mapping, index);
1391 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001392 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001393 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001394 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001395 index++;
1396 }
Chris Mason4adaa612013-03-26 13:07:00 -04001397}
1398
Chris Masond1310b22008-01-24 16:13:08 -05001399/*
Chris Masond1310b22008-01-24 16:13:08 -05001400 * helper function to set both pages and extents in the tree writeback
1401 */
David Sterba35de6db2015-12-03 13:08:59 +01001402static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001403{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001404 unsigned long index = start >> PAGE_SHIFT;
1405 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05001406 struct page *page;
1407
1408 while (index <= end_index) {
1409 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001410 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001411 set_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001412 put_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05001413 index++;
1414 }
Chris Masond1310b22008-01-24 16:13:08 -05001415}
Chris Masond1310b22008-01-24 16:13:08 -05001416
Chris Masond352ac62008-09-29 15:18:18 -04001417/* find the first state struct with 'bits' set after 'start', and
1418 * return it. tree->lock must be held. NULL will returned if
1419 * nothing was found after 'start'
1420 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001421static struct extent_state *
1422find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001423 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001424{
1425 struct rb_node *node;
1426 struct extent_state *state;
1427
1428 /*
1429 * this search will find all the extents that end after
1430 * our range starts.
1431 */
1432 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001433 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001434 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001435
Chris Masond3977122009-01-05 21:25:51 -05001436 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001437 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001438 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001439 return state;
Chris Masond3977122009-01-05 21:25:51 -05001440
Chris Masond7fc6402008-02-18 12:12:38 -05001441 node = rb_next(node);
1442 if (!node)
1443 break;
1444 }
1445out:
1446 return NULL;
1447}
Chris Masond7fc6402008-02-18 12:12:38 -05001448
Chris Masond352ac62008-09-29 15:18:18 -04001449/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001450 * find the first offset in the io tree with 'bits' set. zero is
1451 * returned if we find something, and *start_ret and *end_ret are
1452 * set to reflect the state struct that was found.
1453 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001454 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001455 */
1456int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001457 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001458 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001459{
1460 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001461 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001462 int ret = 1;
1463
1464 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001465 if (cached_state && *cached_state) {
1466 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001467 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001468 n = rb_next(&state->rb_node);
1469 while (n) {
1470 state = rb_entry(n, struct extent_state,
1471 rb_node);
1472 if (state->state & bits)
1473 goto got_it;
1474 n = rb_next(n);
1475 }
1476 free_extent_state(*cached_state);
1477 *cached_state = NULL;
1478 goto out;
1479 }
1480 free_extent_state(*cached_state);
1481 *cached_state = NULL;
1482 }
1483
Xiao Guangrong69261c42011-07-14 03:19:45 +00001484 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001485got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001486 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001487 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001488 *start_ret = state->start;
1489 *end_ret = state->end;
1490 ret = 0;
1491 }
Josef Bacike6138872012-09-27 17:07:30 -04001492out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001493 spin_unlock(&tree->lock);
1494 return ret;
1495}
1496
1497/*
Chris Masond352ac62008-09-29 15:18:18 -04001498 * find a contiguous range of bytes in the file marked as delalloc, not
1499 * more than 'max_bytes'. start and end are used to return the range,
1500 *
1501 * 1 is returned if we find something, 0 if nothing was in the tree
1502 */
Chris Masonc8b97812008-10-29 14:49:59 -04001503static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001504 u64 *start, u64 *end, u64 max_bytes,
1505 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001506{
1507 struct rb_node *node;
1508 struct extent_state *state;
1509 u64 cur_start = *start;
1510 u64 found = 0;
1511 u64 total_bytes = 0;
1512
Chris Masoncad321a2008-12-17 14:51:42 -05001513 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001514
Chris Masond1310b22008-01-24 16:13:08 -05001515 /*
1516 * this search will find all the extents that end after
1517 * our range starts.
1518 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001519 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001520 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001521 if (!found)
1522 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001523 goto out;
1524 }
1525
Chris Masond3977122009-01-05 21:25:51 -05001526 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001527 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001528 if (found && (state->start != cur_start ||
1529 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001530 goto out;
1531 }
1532 if (!(state->state & EXTENT_DELALLOC)) {
1533 if (!found)
1534 *end = state->end;
1535 goto out;
1536 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001537 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001538 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001539 *cached_state = state;
1540 atomic_inc(&state->refs);
1541 }
Chris Masond1310b22008-01-24 16:13:08 -05001542 found++;
1543 *end = state->end;
1544 cur_start = state->end + 1;
1545 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001546 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001547 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001548 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001549 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001550 break;
1551 }
1552out:
Chris Masoncad321a2008-12-17 14:51:42 -05001553 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001554 return found;
1555}
1556
Liu Boda2c7002017-02-10 16:41:05 +01001557static int __process_pages_contig(struct address_space *mapping,
1558 struct page *locked_page,
1559 pgoff_t start_index, pgoff_t end_index,
1560 unsigned long page_ops, pgoff_t *index_ret);
1561
Jeff Mahoney143bede2012-03-01 14:56:26 +01001562static noinline void __unlock_for_delalloc(struct inode *inode,
1563 struct page *locked_page,
1564 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001565{
1566 int ret;
1567 struct page *pages[16];
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001568 unsigned long index = start >> PAGE_SHIFT;
1569 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001570 unsigned long nr_pages = end_index - index + 1;
1571 int i;
1572
1573 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001574 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001575
Chris Masond3977122009-01-05 21:25:51 -05001576 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001577 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001578 min_t(unsigned long, nr_pages,
1579 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001580 for (i = 0; i < ret; i++) {
1581 if (pages[i] != locked_page)
1582 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001583 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001584 }
1585 nr_pages -= ret;
1586 index += ret;
1587 cond_resched();
1588 }
Chris Masonc8b97812008-10-29 14:49:59 -04001589}
1590
1591static noinline int lock_delalloc_pages(struct inode *inode,
1592 struct page *locked_page,
1593 u64 delalloc_start,
1594 u64 delalloc_end)
1595{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001596 unsigned long index = delalloc_start >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001597 unsigned long start_index = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001598 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001599 unsigned long pages_locked = 0;
1600 struct page *pages[16];
1601 unsigned long nrpages;
1602 int ret;
1603 int i;
1604
1605 /* the caller is responsible for locking the start index */
1606 if (index == locked_page->index && index == end_index)
1607 return 0;
1608
1609 /* skip the page at the start index */
1610 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001611 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001612 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001613 min_t(unsigned long,
1614 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001615 if (ret == 0) {
1616 ret = -EAGAIN;
1617 goto done;
1618 }
1619 /* now we have an array of pages, lock them all */
1620 for (i = 0; i < ret; i++) {
1621 /*
1622 * the caller is taking responsibility for
1623 * locked_page
1624 */
Chris Mason771ed682008-11-06 22:02:51 -05001625 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001626 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001627 if (!PageDirty(pages[i]) ||
1628 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001629 ret = -EAGAIN;
1630 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001631 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001632 goto done;
1633 }
1634 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001635 put_page(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001636 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001637 }
Chris Masonc8b97812008-10-29 14:49:59 -04001638 nrpages -= ret;
1639 index += ret;
1640 cond_resched();
1641 }
1642 ret = 0;
1643done:
1644 if (ret && pages_locked) {
1645 __unlock_for_delalloc(inode, locked_page,
1646 delalloc_start,
1647 ((u64)(start_index + pages_locked - 1)) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001648 PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001649 }
1650 return ret;
1651}
1652
1653/*
1654 * find a contiguous range of bytes in the file marked as delalloc, not
1655 * more than 'max_bytes'. start and end are used to return the range,
1656 *
1657 * 1 is returned if we find something, 0 if nothing was in the tree
1658 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001659STATIC u64 find_lock_delalloc_range(struct inode *inode,
1660 struct extent_io_tree *tree,
1661 struct page *locked_page, u64 *start,
1662 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001663{
1664 u64 delalloc_start;
1665 u64 delalloc_end;
1666 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001667 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001668 int ret;
1669 int loops = 0;
1670
1671again:
1672 /* step one, find a bunch of delalloc bytes starting at start */
1673 delalloc_start = *start;
1674 delalloc_end = 0;
1675 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001676 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001677 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001678 *start = delalloc_start;
1679 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001680 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001681 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001682 }
1683
1684 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001685 * start comes from the offset of locked_page. We have to lock
1686 * pages in order, so we can't process delalloc bytes before
1687 * locked_page
1688 */
Chris Masond3977122009-01-05 21:25:51 -05001689 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001690 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001691
1692 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001693 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001694 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001695 if (delalloc_end + 1 - delalloc_start > max_bytes)
1696 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001697
Chris Masonc8b97812008-10-29 14:49:59 -04001698 /* step two, lock all the pages after the page that has start */
1699 ret = lock_delalloc_pages(inode, locked_page,
1700 delalloc_start, delalloc_end);
1701 if (ret == -EAGAIN) {
1702 /* some of the pages are gone, lets avoid looping by
1703 * shortening the size of the delalloc range we're searching
1704 */
Chris Mason9655d292009-09-02 15:22:30 -04001705 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001706 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001707 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001708 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001709 loops = 1;
1710 goto again;
1711 } else {
1712 found = 0;
1713 goto out_failed;
1714 }
1715 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001716 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001717
1718 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001719 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001720
1721 /* then test to make sure it is all still delalloc */
1722 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001723 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001724 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001725 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1726 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001727 __unlock_for_delalloc(inode, locked_page,
1728 delalloc_start, delalloc_end);
1729 cond_resched();
1730 goto again;
1731 }
Chris Mason9655d292009-09-02 15:22:30 -04001732 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001733 *start = delalloc_start;
1734 *end = delalloc_end;
1735out_failed:
1736 return found;
1737}
1738
Liu Boda2c7002017-02-10 16:41:05 +01001739static int __process_pages_contig(struct address_space *mapping,
1740 struct page *locked_page,
1741 pgoff_t start_index, pgoff_t end_index,
1742 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001743{
Liu Bo873695b2017-02-02 17:49:22 -08001744 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001745 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001746 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001747 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001748 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001749 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001750 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001751
Liu Boda2c7002017-02-10 16:41:05 +01001752 if (page_ops & PAGE_LOCK) {
1753 ASSERT(page_ops == PAGE_LOCK);
1754 ASSERT(index_ret && *index_ret == start_index);
1755 }
1756
Filipe Manana704de492014-10-06 22:14:22 +01001757 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001758 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001759
Chris Masond3977122009-01-05 21:25:51 -05001760 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001761 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001762 min_t(unsigned long,
1763 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001764 if (ret == 0) {
1765 /*
1766 * Only if we're going to lock these pages,
1767 * can we find nothing at @index.
1768 */
1769 ASSERT(page_ops & PAGE_LOCK);
1770 return ret;
1771 }
Chris Mason8b62b722009-09-02 16:53:46 -04001772
Liu Boda2c7002017-02-10 16:41:05 +01001773 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001774 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001775 SetPagePrivate2(pages[i]);
1776
Chris Masonc8b97812008-10-29 14:49:59 -04001777 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001778 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001779 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001780 continue;
1781 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001782 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001783 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001784 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001785 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001786 if (page_ops & PAGE_SET_ERROR)
1787 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001788 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001789 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001790 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001791 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001792 if (page_ops & PAGE_LOCK) {
1793 lock_page(pages[i]);
1794 if (!PageDirty(pages[i]) ||
1795 pages[i]->mapping != mapping) {
1796 unlock_page(pages[i]);
1797 put_page(pages[i]);
1798 err = -EAGAIN;
1799 goto out;
1800 }
1801 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001802 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001803 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001804 }
1805 nr_pages -= ret;
1806 index += ret;
1807 cond_resched();
1808 }
Liu Boda2c7002017-02-10 16:41:05 +01001809out:
1810 if (err && index_ret)
1811 *index_ret = start_index + pages_locked - 1;
1812 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001813}
Chris Masonc8b97812008-10-29 14:49:59 -04001814
Liu Bo873695b2017-02-02 17:49:22 -08001815void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1816 u64 delalloc_end, struct page *locked_page,
1817 unsigned clear_bits,
1818 unsigned long page_ops)
1819{
1820 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
1821 NULL, GFP_NOFS);
1822
1823 __process_pages_contig(inode->i_mapping, locked_page,
1824 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001825 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001826}
1827
Chris Masond352ac62008-09-29 15:18:18 -04001828/*
1829 * count the number of bytes in the tree that have a given bit(s)
1830 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1831 * cached. The total number found is returned.
1832 */
Chris Masond1310b22008-01-24 16:13:08 -05001833u64 count_range_bits(struct extent_io_tree *tree,
1834 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001835 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001836{
1837 struct rb_node *node;
1838 struct extent_state *state;
1839 u64 cur_start = *start;
1840 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001841 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001842 int found = 0;
1843
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301844 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001845 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001846
Chris Masoncad321a2008-12-17 14:51:42 -05001847 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001848 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1849 total_bytes = tree->dirty_bytes;
1850 goto out;
1851 }
1852 /*
1853 * this search will find all the extents that end after
1854 * our range starts.
1855 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001856 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001857 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001858 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001859
Chris Masond3977122009-01-05 21:25:51 -05001860 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001861 state = rb_entry(node, struct extent_state, rb_node);
1862 if (state->start > search_end)
1863 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001864 if (contig && found && state->start > last + 1)
1865 break;
1866 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001867 total_bytes += min(search_end, state->end) + 1 -
1868 max(cur_start, state->start);
1869 if (total_bytes >= max_bytes)
1870 break;
1871 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001872 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001873 found = 1;
1874 }
Chris Masonec29ed52011-02-23 16:23:20 -05001875 last = state->end;
1876 } else if (contig && found) {
1877 break;
Chris Masond1310b22008-01-24 16:13:08 -05001878 }
1879 node = rb_next(node);
1880 if (!node)
1881 break;
1882 }
1883out:
Chris Masoncad321a2008-12-17 14:51:42 -05001884 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001885 return total_bytes;
1886}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001887
Chris Masond352ac62008-09-29 15:18:18 -04001888/*
1889 * set the private field for a given byte offset in the tree. If there isn't
1890 * an extent_state there already, this does nothing.
1891 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001892static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001893 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001894{
1895 struct rb_node *node;
1896 struct extent_state *state;
1897 int ret = 0;
1898
Chris Masoncad321a2008-12-17 14:51:42 -05001899 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001900 /*
1901 * this search will find all the extents that end after
1902 * our range starts.
1903 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001904 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001905 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001906 ret = -ENOENT;
1907 goto out;
1908 }
1909 state = rb_entry(node, struct extent_state, rb_node);
1910 if (state->start != start) {
1911 ret = -ENOENT;
1912 goto out;
1913 }
David Sterba47dc1962016-02-11 13:24:13 +01001914 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001915out:
Chris Masoncad321a2008-12-17 14:51:42 -05001916 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001917 return ret;
1918}
1919
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001920static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001921 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001922{
1923 struct rb_node *node;
1924 struct extent_state *state;
1925 int ret = 0;
1926
Chris Masoncad321a2008-12-17 14:51:42 -05001927 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001928 /*
1929 * this search will find all the extents that end after
1930 * our range starts.
1931 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001932 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001933 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001934 ret = -ENOENT;
1935 goto out;
1936 }
1937 state = rb_entry(node, struct extent_state, rb_node);
1938 if (state->start != start) {
1939 ret = -ENOENT;
1940 goto out;
1941 }
David Sterba47dc1962016-02-11 13:24:13 +01001942 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001943out:
Chris Masoncad321a2008-12-17 14:51:42 -05001944 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001945 return ret;
1946}
1947
1948/*
1949 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001950 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001951 * has the bits set. Otherwise, 1 is returned if any bit in the
1952 * range is found set.
1953 */
1954int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001955 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001956{
1957 struct extent_state *state = NULL;
1958 struct rb_node *node;
1959 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001960
Chris Masoncad321a2008-12-17 14:51:42 -05001961 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001962 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001963 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001964 node = &cached->rb_node;
1965 else
1966 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001967 while (node && start <= end) {
1968 state = rb_entry(node, struct extent_state, rb_node);
1969
1970 if (filled && state->start > start) {
1971 bitset = 0;
1972 break;
1973 }
1974
1975 if (state->start > end)
1976 break;
1977
1978 if (state->state & bits) {
1979 bitset = 1;
1980 if (!filled)
1981 break;
1982 } else if (filled) {
1983 bitset = 0;
1984 break;
1985 }
Chris Mason46562ce2009-09-23 20:23:16 -04001986
1987 if (state->end == (u64)-1)
1988 break;
1989
Chris Masond1310b22008-01-24 16:13:08 -05001990 start = state->end + 1;
1991 if (start > end)
1992 break;
1993 node = rb_next(node);
1994 if (!node) {
1995 if (filled)
1996 bitset = 0;
1997 break;
1998 }
1999 }
Chris Masoncad321a2008-12-17 14:51:42 -05002000 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002001 return bitset;
2002}
Chris Masond1310b22008-01-24 16:13:08 -05002003
2004/*
2005 * helper function to set a given page up to date if all the
2006 * extents in the tree for that page are up to date
2007 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002008static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002009{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002010 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002011 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002012 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002013 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002014}
2015
Miao Xie8b110e32014-09-12 18:44:03 +08002016int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002017{
2018 int ret;
2019 int err = 0;
2020 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2021
David Sterba47dc1962016-02-11 13:24:13 +01002022 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002023 ret = clear_extent_bits(failure_tree, rec->start,
2024 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002025 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002026 if (ret)
2027 err = ret;
2028
David Woodhouse53b381b2013-01-29 18:40:14 -05002029 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
2030 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02002031 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05002032 if (ret && !err)
2033 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002034
2035 kfree(rec);
2036 return err;
2037}
2038
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002039/*
2040 * this bypasses the standard btrfs submit functions deliberately, as
2041 * the standard behavior is to write all copies in a raid setup. here we only
2042 * want to write the one bad copy. so we do the mapping for ourselves and issue
2043 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002044 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002045 * actually prevents the read that triggered the error from finishing.
2046 * currently, there can be no more than two copies of every data bit. thus,
2047 * exactly one rewrite is required.
2048 */
Miao Xie1203b682014-09-12 18:44:01 +08002049int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2050 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002051{
Miao Xie1203b682014-09-12 18:44:01 +08002052 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002053 struct bio *bio;
2054 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002055 u64 map_length = 0;
2056 u64 sector;
2057 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002058 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002059 int ret;
2060
Ilya Dryomov908960c2013-11-03 19:06:39 +02002061 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002062 BUG_ON(!mirror_num);
2063
David Woodhouse53b381b2013-01-29 18:40:14 -05002064 /* we can't repair anything in raid56 yet */
2065 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2066 return 0;
2067
Chris Mason9be33952013-05-17 18:30:14 -04002068 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002069 if (!bio)
2070 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002071 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002072 map_length = length;
2073
Filipe Mananab5de8d02016-05-27 22:21:27 +01002074 /*
2075 * Avoid races with device replace and make sure our bbio has devices
2076 * associated to its stripes that don't go away while we are doing the
2077 * read repair operation.
2078 */
2079 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002080 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002081 &map_length, &bbio, mirror_num);
2082 if (ret) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002083 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002084 bio_put(bio);
2085 return -EIO;
2086 }
2087 BUG_ON(mirror_num != bbio->mirror_num);
2088 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002089 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002090 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002091 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002092 if (!dev || !dev->bdev || !dev->writeable) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002093 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002094 bio_put(bio);
2095 return -EIO;
2096 }
2097 bio->bi_bdev = dev->bdev;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002098 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002099 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002100
Mike Christie4e49ea42016-06-05 14:31:41 -05002101 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002102 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002103 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002105 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002106 return -EIO;
2107 }
2108
David Sterbab14af3b2015-10-08 10:43:10 +02002109 btrfs_info_rl_in_rcu(fs_info,
2110 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002111 btrfs_ino(BTRFS_I(inode)), start,
Miao Xie1203b682014-09-12 18:44:01 +08002112 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002113 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002114 bio_put(bio);
2115 return 0;
2116}
2117
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002118int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2119 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002120{
Josef Bacikea466792012-03-26 21:57:36 -04002121 u64 start = eb->start;
2122 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002123 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002124
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002125 if (fs_info->sb->s_flags & MS_RDONLY)
Ilya Dryomov908960c2013-11-03 19:06:39 +02002126 return -EROFS;
2127
Josef Bacikea466792012-03-26 21:57:36 -04002128 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002129 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002130
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002131 ret = repair_io_failure(fs_info->btree_inode, start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002132 PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002133 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002134 if (ret)
2135 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002136 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002137 }
2138
2139 return ret;
2140}
2141
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002142/*
2143 * each time an IO finishes, we do a fast check in the IO failure tree
2144 * to see if we need to process or clean up an io_failure_record
2145 */
Miao Xie8b110e32014-09-12 18:44:03 +08002146int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2147 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002148{
2149 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002150 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002151 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002152 struct extent_state *state;
2153 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002154 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002155
2156 private = 0;
2157 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2158 (u64)-1, 1, EXTENT_DIRTY, 0);
2159 if (!ret)
2160 return 0;
2161
David Sterba47dc1962016-02-11 13:24:13 +01002162 ret = get_state_failrec(&BTRFS_I(inode)->io_failure_tree, start,
2163 &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002164 if (ret)
2165 return 0;
2166
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002167 BUG_ON(!failrec->this_mirror);
2168
2169 if (failrec->in_validation) {
2170 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002171 btrfs_debug(fs_info,
2172 "clean_io_failure: freeing dummy error at %llu",
2173 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002174 goto out;
2175 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002176 if (fs_info->sb->s_flags & MS_RDONLY)
2177 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002178
2179 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2180 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2181 failrec->start,
2182 EXTENT_LOCKED);
2183 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2184
Miao Xie883d0de2013-07-25 19:22:35 +08002185 if (state && state->start <= failrec->start &&
2186 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002187 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2188 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002189 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002190 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002191 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002192 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002193 }
2194 }
2195
2196out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002197 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002198
Miao Xie454ff3d2014-09-12 18:43:58 +08002199 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002200}
2201
Miao Xief6124962014-09-12 18:44:04 +08002202/*
2203 * Can be called when
2204 * - hold extent lock
2205 * - under ordered extent
2206 * - the inode is freeing
2207 */
2208void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2209{
2210 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2211 struct io_failure_record *failrec;
2212 struct extent_state *state, *next;
2213
2214 if (RB_EMPTY_ROOT(&failure_tree->state))
2215 return;
2216
2217 spin_lock(&failure_tree->lock);
2218 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2219 while (state) {
2220 if (state->start > end)
2221 break;
2222
2223 ASSERT(state->end <= end);
2224
2225 next = next_state(state);
2226
David Sterba47dc1962016-02-11 13:24:13 +01002227 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002228 free_extent_state(state);
2229 kfree(failrec);
2230
2231 state = next;
2232 }
2233 spin_unlock(&failure_tree->lock);
2234}
2235
Miao Xie2fe63032014-09-12 18:43:59 +08002236int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002237 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002238{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002239 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002240 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002241 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002242 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2243 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2244 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002245 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002246 u64 logical;
2247
David Sterba47dc1962016-02-11 13:24:13 +01002248 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002249 if (ret) {
2250 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2251 if (!failrec)
2252 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002253
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002254 failrec->start = start;
2255 failrec->len = end - start + 1;
2256 failrec->this_mirror = 0;
2257 failrec->bio_flags = 0;
2258 failrec->in_validation = 0;
2259
2260 read_lock(&em_tree->lock);
2261 em = lookup_extent_mapping(em_tree, start, failrec->len);
2262 if (!em) {
2263 read_unlock(&em_tree->lock);
2264 kfree(failrec);
2265 return -EIO;
2266 }
2267
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002268 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002269 free_extent_map(em);
2270 em = NULL;
2271 }
2272 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002273 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002274 kfree(failrec);
2275 return -EIO;
2276 }
Miao Xie2fe63032014-09-12 18:43:59 +08002277
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002278 logical = start - em->start;
2279 logical = em->block_start + logical;
2280 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2281 logical = em->block_start;
2282 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2283 extent_set_compress_type(&failrec->bio_flags,
2284 em->compress_type);
2285 }
Miao Xie2fe63032014-09-12 18:43:59 +08002286
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002287 btrfs_debug(fs_info,
2288 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2289 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002290
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002291 failrec->logical = logical;
2292 free_extent_map(em);
2293
2294 /* set the bits in the private failure tree */
2295 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002296 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002297 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002298 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002299 /* set the bits in the inode's tree */
2300 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002301 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002302 if (ret < 0) {
2303 kfree(failrec);
2304 return ret;
2305 }
2306 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002307 btrfs_debug(fs_info,
2308 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2309 failrec->logical, failrec->start, failrec->len,
2310 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002311 /*
2312 * when data can be on disk more than twice, add to failrec here
2313 * (e.g. with a list for failed_mirror) to make
2314 * clean_io_failure() clean all those errors at once.
2315 */
2316 }
Miao Xie2fe63032014-09-12 18:43:59 +08002317
2318 *failrec_ret = failrec;
2319
2320 return 0;
2321}
2322
2323int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2324 struct io_failure_record *failrec, int failed_mirror)
2325{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002326 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002327 int num_copies;
2328
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002329 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002330 if (num_copies == 1) {
2331 /*
2332 * we only have a single copy of the data, so don't bother with
2333 * all the retry and error correction code that follows. no
2334 * matter what the error is, it is very likely to persist.
2335 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002336 btrfs_debug(fs_info,
2337 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2338 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002339 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002340 }
2341
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002342 /*
2343 * there are two premises:
2344 * a) deliver good data to the caller
2345 * b) correct the bad sectors on disk
2346 */
2347 if (failed_bio->bi_vcnt > 1) {
2348 /*
2349 * to fulfill b), we need to know the exact failing sectors, as
2350 * we don't want to rewrite any more than the failed ones. thus,
2351 * we need separate read requests for the failed bio
2352 *
2353 * if the following BUG_ON triggers, our validation request got
2354 * merged. we need separate requests for our algorithm to work.
2355 */
2356 BUG_ON(failrec->in_validation);
2357 failrec->in_validation = 1;
2358 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002359 } else {
2360 /*
2361 * we're ready to fulfill a) and b) alongside. get a good copy
2362 * of the failed sector and if we succeed, we have setup
2363 * everything for repair_io_failure to do the rest for us.
2364 */
2365 if (failrec->in_validation) {
2366 BUG_ON(failrec->this_mirror != failed_mirror);
2367 failrec->in_validation = 0;
2368 failrec->this_mirror = 0;
2369 }
2370 failrec->failed_mirror = failed_mirror;
2371 failrec->this_mirror++;
2372 if (failrec->this_mirror == failed_mirror)
2373 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002374 }
2375
Miao Xiefacc8a222013-07-25 19:22:34 +08002376 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002377 btrfs_debug(fs_info,
2378 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2379 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002380 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002381 }
2382
Miao Xie2fe63032014-09-12 18:43:59 +08002383 return 1;
2384}
2385
2386
2387struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2388 struct io_failure_record *failrec,
2389 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002390 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002391{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002392 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002393 struct bio *bio;
2394 struct btrfs_io_bio *btrfs_failed_bio;
2395 struct btrfs_io_bio *btrfs_bio;
2396
Chris Mason9be33952013-05-17 18:30:14 -04002397 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002398 if (!bio)
2399 return NULL;
2400
2401 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002402 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002403 bio->bi_bdev = fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002404 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002405 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002406
Miao Xiefacc8a222013-07-25 19:22:34 +08002407 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2408 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002409 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2410
2411 btrfs_bio = btrfs_io_bio(bio);
2412 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002413 icsum *= csum_size;
2414 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002415 csum_size);
2416 }
2417
Miao Xie2fe63032014-09-12 18:43:59 +08002418 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002419
Miao Xie2fe63032014-09-12 18:43:59 +08002420 return bio;
2421}
2422
2423/*
2424 * this is a generic handler for readpage errors (default
2425 * readpage_io_failed_hook). if other copies exist, read those and write back
2426 * good data to the failed position. does not investigate in remapping the
2427 * failed extent elsewhere, hoping the device will be smart enough to do this as
2428 * needed
2429 */
2430
2431static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2432 struct page *page, u64 start, u64 end,
2433 int failed_mirror)
2434{
2435 struct io_failure_record *failrec;
2436 struct inode *inode = page->mapping->host;
2437 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2438 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002439 int read_mode = 0;
Miao Xie2fe63032014-09-12 18:43:59 +08002440 int ret;
2441
Mike Christie1f7ad752016-06-05 14:31:51 -05002442 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002443
2444 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2445 if (ret)
2446 return ret;
2447
2448 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2449 if (!ret) {
2450 free_io_failure(inode, failrec);
2451 return -EIO;
2452 }
2453
2454 if (failed_bio->bi_vcnt > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002455 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002456
2457 phy_offset >>= inode->i_sb->s_blocksize_bits;
2458 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2459 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002460 (int)phy_offset, failed_bio->bi_end_io,
2461 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002462 if (!bio) {
2463 free_io_failure(inode, failrec);
2464 return -EIO;
2465 }
Mike Christie1f7ad752016-06-05 14:31:51 -05002466 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie2fe63032014-09-12 18:43:59 +08002467
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002468 btrfs_debug(btrfs_sb(inode->i_sb),
2469 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2470 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002471
Mike Christie81a75f62016-06-05 14:31:54 -05002472 ret = tree->ops->submit_bio_hook(inode, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002473 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002474 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002475 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002476 bio_put(bio);
2477 }
2478
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002479 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002480}
2481
Chris Masond1310b22008-01-24 16:13:08 -05002482/* lots and lots of room for performance fixes in the end_bio funcs */
2483
David Sterbab5227c02015-12-03 13:08:59 +01002484void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002485{
2486 int uptodate = (err == 0);
2487 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002488 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002489
2490 tree = &BTRFS_I(page->mapping->host)->io_tree;
2491
2492 if (tree->ops && tree->ops->writepage_end_io_hook) {
2493 ret = tree->ops->writepage_end_io_hook(page, start,
2494 end, NULL, uptodate);
2495 if (ret)
2496 uptodate = 0;
2497 }
2498
Jeff Mahoney87826df2012-02-15 16:23:57 +01002499 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002500 ClearPageUptodate(page);
2501 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002502 ret = ret < 0 ? ret : -EIO;
2503 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002504 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002505}
2506
Chris Masond1310b22008-01-24 16:13:08 -05002507/*
2508 * after a writepage IO is done, we need to:
2509 * clear the uptodate bits on error
2510 * clear the writeback bits in the extent tree for this IO
2511 * end_page_writeback if the page has no more pending IO
2512 *
2513 * Scheduling is not allowed, so the extent state tree is expected
2514 * to have one and only one object corresponding to this IO.
2515 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002516static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002517{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002518 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002519 u64 start;
2520 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002521 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002522
Kent Overstreet2c30c712013-11-07 12:20:26 -08002523 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002524 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002525 struct inode *inode = page->mapping->host;
2526 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002527
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002528 /* We always issue full-page reads, but if some block
2529 * in a page fails to read, blk_update_request() will
2530 * advance bv_offset and adjust bv_len to compensate.
2531 * Print a warning for nonzero offsets, and an error
2532 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002533 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2534 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002535 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002536 "partial page write in btrfs with offset %u and length %u",
2537 bvec->bv_offset, bvec->bv_len);
2538 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002539 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002540 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002541 bvec->bv_offset, bvec->bv_len);
2542 }
Chris Masond1310b22008-01-24 16:13:08 -05002543
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002544 start = page_offset(page);
2545 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002546
David Sterbab5227c02015-12-03 13:08:59 +01002547 end_extent_writepage(page, bio->bi_error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002548 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002549 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002550
Chris Masond1310b22008-01-24 16:13:08 -05002551 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002552}
2553
Miao Xie883d0de2013-07-25 19:22:35 +08002554static void
2555endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2556 int uptodate)
2557{
2558 struct extent_state *cached = NULL;
2559 u64 end = start + len - 1;
2560
2561 if (uptodate && tree->track_uptodate)
2562 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2563 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2564}
2565
Chris Masond1310b22008-01-24 16:13:08 -05002566/*
2567 * after a readpage IO is done, we need to:
2568 * clear the uptodate bits on error
2569 * set the uptodate bits if things worked
2570 * set the page up to date if all extents in the tree are uptodate
2571 * clear the lock bit in the extent tree
2572 * unlock the page if there are no other extents locked for it
2573 *
2574 * Scheduling is not allowed, so the extent state tree is expected
2575 * to have one and only one object corresponding to this IO.
2576 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002577static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002578{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002579 struct bio_vec *bvec;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002580 int uptodate = !bio->bi_error;
Miao Xiefacc8a222013-07-25 19:22:34 +08002581 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002582 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002583 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002584 u64 start;
2585 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002586 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002587 u64 extent_start = 0;
2588 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002589 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002590 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002591 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002592
Kent Overstreet2c30c712013-11-07 12:20:26 -08002593 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002594 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002595 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002596 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen507903b2011-04-06 10:02:20 +00002597
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002598 btrfs_debug(fs_info,
2599 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
2600 (u64)bio->bi_iter.bi_sector, bio->bi_error,
2601 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002602 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002603
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002604 /* We always issue full-page reads, but if some block
2605 * in a page fails to read, blk_update_request() will
2606 * advance bv_offset and adjust bv_len to compensate.
2607 * Print a warning for nonzero offsets, and an error
2608 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002609 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2610 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002611 btrfs_err(fs_info,
2612 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002613 bvec->bv_offset, bvec->bv_len);
2614 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002615 btrfs_info(fs_info,
2616 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002617 bvec->bv_offset, bvec->bv_len);
2618 }
Chris Masond1310b22008-01-24 16:13:08 -05002619
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002620 start = page_offset(page);
2621 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002622 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002623
Chris Mason9be33952013-05-17 18:30:14 -04002624 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002625 if (likely(uptodate && tree->ops &&
2626 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002627 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2628 page, start, end,
2629 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002630 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002631 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002632 else
Miao Xie1203b682014-09-12 18:44:01 +08002633 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002634 }
Josef Bacikea466792012-03-26 21:57:36 -04002635
Miao Xief2a09da2013-07-25 19:22:33 +08002636 if (likely(uptodate))
2637 goto readpage_ok;
2638
2639 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002640 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002641 if (!ret && !bio->bi_error)
Josef Bacikea466792012-03-26 21:57:36 -04002642 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002643 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002644 /*
2645 * The generic bio_readpage_error handles errors the
2646 * following way: If possible, new read requests are
2647 * created and submitted and will end up in
2648 * end_bio_extent_readpage as well (if we're lucky, not
2649 * in the !uptodate case). In that case it returns 0 and
2650 * we just go on with the next page in our bio. If it
2651 * can't handle the error it will return -EIO and we
2652 * remain responsible for that page.
2653 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002654 ret = bio_readpage_error(bio, offset, page, start, end,
2655 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002656 if (ret == 0) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002657 uptodate = !bio->bi_error;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002658 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002659 continue;
2660 }
2661 }
Miao Xief2a09da2013-07-25 19:22:33 +08002662readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002663 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002664 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002665 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002666 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002667
2668 /* Zero out the end if this page straddles i_size */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002669 off = i_size & (PAGE_SIZE-1);
Liu Boa583c022014-08-19 23:32:22 +08002670 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002671 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002672 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002673 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002674 ClearPageUptodate(page);
2675 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002676 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002677 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002678 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002679
2680 if (unlikely(!uptodate)) {
2681 if (extent_len) {
2682 endio_readpage_release_extent(tree,
2683 extent_start,
2684 extent_len, 1);
2685 extent_start = 0;
2686 extent_len = 0;
2687 }
2688 endio_readpage_release_extent(tree, start,
2689 end - start + 1, 0);
2690 } else if (!extent_len) {
2691 extent_start = start;
2692 extent_len = end + 1 - start;
2693 } else if (extent_start + extent_len == start) {
2694 extent_len += end + 1 - start;
2695 } else {
2696 endio_readpage_release_extent(tree, extent_start,
2697 extent_len, uptodate);
2698 extent_start = start;
2699 extent_len = end + 1 - start;
2700 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002701 }
Chris Masond1310b22008-01-24 16:13:08 -05002702
Miao Xie883d0de2013-07-25 19:22:35 +08002703 if (extent_len)
2704 endio_readpage_release_extent(tree, extent_start, extent_len,
2705 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002706 if (io_bio->end_io)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002707 io_bio->end_io(io_bio, bio->bi_error);
Chris Masond1310b22008-01-24 16:13:08 -05002708 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002709}
2710
Chris Mason9be33952013-05-17 18:30:14 -04002711/*
2712 * this allocates from the btrfs_bioset. We're returning a bio right now
2713 * but you can call btrfs_io_bio for the appropriate container_of magic
2714 */
Miao Xie88f794e2010-11-22 03:02:55 +00002715struct bio *
2716btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2717 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002718{
Miao Xiefacc8a222013-07-25 19:22:34 +08002719 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002720 struct bio *bio;
2721
Chris Mason9be33952013-05-17 18:30:14 -04002722 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002723
2724 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002725 while (!bio && (nr_vecs /= 2)) {
2726 bio = bio_alloc_bioset(gfp_flags,
2727 nr_vecs, btrfs_bioset);
2728 }
Chris Masond1310b22008-01-24 16:13:08 -05002729 }
2730
2731 if (bio) {
2732 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002733 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002734 btrfs_bio = btrfs_io_bio(bio);
2735 btrfs_bio->csum = NULL;
2736 btrfs_bio->csum_allocated = NULL;
2737 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002738 }
2739 return bio;
2740}
2741
Chris Mason9be33952013-05-17 18:30:14 -04002742struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2743{
Miao Xie23ea8e52014-09-12 18:43:54 +08002744 struct btrfs_io_bio *btrfs_bio;
2745 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002746
Miao Xie23ea8e52014-09-12 18:43:54 +08002747 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2748 if (new) {
2749 btrfs_bio = btrfs_io_bio(new);
2750 btrfs_bio->csum = NULL;
2751 btrfs_bio->csum_allocated = NULL;
2752 btrfs_bio->end_io = NULL;
2753 }
2754 return new;
2755}
Chris Mason9be33952013-05-17 18:30:14 -04002756
2757/* this also allocates from the btrfs_bioset */
2758struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2759{
Miao Xiefacc8a222013-07-25 19:22:34 +08002760 struct btrfs_io_bio *btrfs_bio;
2761 struct bio *bio;
2762
2763 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2764 if (bio) {
2765 btrfs_bio = btrfs_io_bio(bio);
2766 btrfs_bio->csum = NULL;
2767 btrfs_bio->csum_allocated = NULL;
2768 btrfs_bio->end_io = NULL;
2769 }
2770 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002771}
2772
2773
Mike Christie1f7ad752016-06-05 14:31:51 -05002774static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2775 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002776{
Chris Masond1310b22008-01-24 16:13:08 -05002777 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002778 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2779 struct page *page = bvec->bv_page;
2780 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002781 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002782
Miao Xie4eee4fa2012-12-21 09:17:45 +00002783 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002784
David Woodhouse902b22f2008-08-20 08:51:49 -04002785 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002786 bio_get(bio);
2787
Chris Mason065631f2008-02-20 12:07:25 -05002788 if (tree->ops && tree->ops->submit_bio_hook)
Mike Christie81a75f62016-06-05 14:31:54 -05002789 ret = tree->ops->submit_bio_hook(page->mapping->host, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002790 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002791 else
Mike Christie4e49ea42016-06-05 14:31:41 -05002792 btrfsic_submit_bio(bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002793
Chris Masond1310b22008-01-24 16:13:08 -05002794 bio_put(bio);
2795 return ret;
2796}
2797
Mike Christie1f7ad752016-06-05 14:31:51 -05002798static int merge_bio(struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002799 unsigned long offset, size_t size, struct bio *bio,
2800 unsigned long bio_flags)
2801{
2802 int ret = 0;
2803 if (tree->ops && tree->ops->merge_bio_hook)
Mike Christie81a75f62016-06-05 14:31:54 -05002804 ret = tree->ops->merge_bio_hook(page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002805 bio_flags);
Jeff Mahoney3444a972011-10-03 23:23:13 -04002806 return ret;
2807
2808}
2809
Mike Christie1f7ad752016-06-05 14:31:51 -05002810static int submit_extent_page(int op, int op_flags, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002811 struct writeback_control *wbc,
Chris Masond1310b22008-01-24 16:13:08 -05002812 struct page *page, sector_t sector,
2813 size_t size, unsigned long offset,
2814 struct block_device *bdev,
2815 struct bio **bio_ret,
2816 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002817 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002818 int mirror_num,
2819 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002820 unsigned long bio_flags,
2821 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002822{
2823 int ret = 0;
2824 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002825 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002826 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002827 size_t page_size = min_t(size_t, size, PAGE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002828
2829 if (bio_ret && *bio_ret) {
2830 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002831 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002832 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002833 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002834 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002835
2836 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002837 force_bio_submit ||
Mike Christie1f7ad752016-06-05 14:31:51 -05002838 merge_bio(tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002839 bio_add_page(bio, page, page_size, offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002840 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002841 if (ret < 0) {
2842 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002843 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002844 }
Chris Masond1310b22008-01-24 16:13:08 -05002845 bio = NULL;
2846 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002847 if (wbc)
2848 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002849 return 0;
2850 }
2851 }
Chris Masonc8b97812008-10-29 14:49:59 -04002852
Kent Overstreetb54ffb72015-05-19 14:31:01 +02002853 bio = btrfs_bio_alloc(bdev, sector, BIO_MAX_PAGES,
2854 GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002855 if (!bio)
2856 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002857
Chris Masonc8b97812008-10-29 14:49:59 -04002858 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002859 bio->bi_end_io = end_io_func;
2860 bio->bi_private = tree;
Mike Christie1f7ad752016-06-05 14:31:51 -05002861 bio_set_op_attrs(bio, op, op_flags);
Chris Masonda2f0f72015-07-02 13:57:22 -07002862 if (wbc) {
2863 wbc_init_bio(wbc, bio);
2864 wbc_account_io(wbc, page, page_size);
2865 }
Chris Mason70dec802008-01-29 09:59:12 -05002866
Chris Masond3977122009-01-05 21:25:51 -05002867 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002868 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002869 else
Mike Christie1f7ad752016-06-05 14:31:51 -05002870 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002871
2872 return ret;
2873}
2874
Eric Sandeen48a3b632013-04-25 20:41:01 +00002875static void attach_extent_buffer_page(struct extent_buffer *eb,
2876 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002877{
2878 if (!PagePrivate(page)) {
2879 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002880 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002881 set_page_private(page, (unsigned long)eb);
2882 } else {
2883 WARN_ON(page->private != (unsigned long)eb);
2884 }
2885}
2886
Chris Masond1310b22008-01-24 16:13:08 -05002887void set_page_extent_mapped(struct page *page)
2888{
2889 if (!PagePrivate(page)) {
2890 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002891 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002892 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002893 }
2894}
2895
Miao Xie125bac012013-07-25 19:22:37 +08002896static struct extent_map *
2897__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2898 u64 start, u64 len, get_extent_t *get_extent,
2899 struct extent_map **em_cached)
2900{
2901 struct extent_map *em;
2902
2903 if (em_cached && *em_cached) {
2904 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002905 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002906 start < extent_map_end(em)) {
2907 atomic_inc(&em->refs);
2908 return em;
2909 }
2910
2911 free_extent_map(em);
2912 *em_cached = NULL;
2913 }
2914
2915 em = get_extent(inode, page, pg_offset, start, len, 0);
2916 if (em_cached && !IS_ERR_OR_NULL(em)) {
2917 BUG_ON(*em_cached);
2918 atomic_inc(&em->refs);
2919 *em_cached = em;
2920 }
2921 return em;
2922}
Chris Masond1310b22008-01-24 16:13:08 -05002923/*
2924 * basic readpage implementation. Locked extent state structs are inserted
2925 * into the tree that are removed when the IO is done (by the end_io
2926 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002927 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002928 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002929 */
Miao Xie99740902013-07-25 19:22:36 +08002930static int __do_readpage(struct extent_io_tree *tree,
2931 struct page *page,
2932 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002933 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002934 struct bio **bio, int mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05002935 unsigned long *bio_flags, int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002936 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002937{
2938 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002939 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002940 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002941 u64 end;
2942 u64 cur = start;
2943 u64 extent_offset;
2944 u64 last_byte = i_size_read(inode);
2945 u64 block_start;
2946 u64 cur_end;
2947 sector_t sector;
2948 struct extent_map *em;
2949 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002950 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002951 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002952 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002953 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002954 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002955 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002956 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002957
2958 set_page_extent_mapped(page);
2959
Miao Xie99740902013-07-25 19:22:36 +08002960 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002961 if (!PageUptodate(page)) {
2962 if (cleancache_get_page(page) == 0) {
2963 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002964 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002965 goto out;
2966 }
2967 }
2968
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002969 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002970 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002971 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002972
2973 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002974 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002975 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002976 memset(userpage + zero_offset, 0, iosize);
2977 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002978 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002979 }
2980 }
Chris Masond1310b22008-01-24 16:13:08 -05002981 while (cur <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002982 unsigned long pnr = (last_byte >> PAGE_SHIFT) + 1;
Filipe Manana005efed2015-09-14 09:09:31 +01002983 bool force_bio_submit = false;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002984
Chris Masond1310b22008-01-24 16:13:08 -05002985 if (cur >= last_byte) {
2986 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002987 struct extent_state *cached = NULL;
2988
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002989 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002990 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002991 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002992 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002993 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002994 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002995 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002996 unlock_extent_cached(tree, cur,
2997 cur + iosize - 1,
2998 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002999 break;
3000 }
Miao Xie125bac012013-07-25 19:22:37 +08003001 em = __get_extent_map(inode, page, pg_offset, cur,
3002 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003003 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003004 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003005 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003006 break;
3007 }
Chris Masond1310b22008-01-24 16:13:08 -05003008 extent_offset = cur - em->start;
3009 BUG_ON(extent_map_end(em) <= cur);
3010 BUG_ON(end < cur);
3011
Li Zefan261507a02010-12-17 14:21:50 +08003012 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003013 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003014 extent_set_compress_type(&this_bio_flag,
3015 em->compress_type);
3016 }
Chris Masonc8b97812008-10-29 14:49:59 -04003017
Chris Masond1310b22008-01-24 16:13:08 -05003018 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3019 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003020 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003021 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3022 disk_io_size = em->block_len;
3023 sector = em->block_start >> 9;
3024 } else {
3025 sector = (em->block_start + extent_offset) >> 9;
3026 disk_io_size = iosize;
3027 }
Chris Masond1310b22008-01-24 16:13:08 -05003028 bdev = em->bdev;
3029 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003030 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3031 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003032
3033 /*
3034 * If we have a file range that points to a compressed extent
3035 * and it's followed by a consecutive file range that points to
3036 * to the same compressed extent (possibly with a different
3037 * offset and/or length, so it either points to the whole extent
3038 * or only part of it), we must make sure we do not submit a
3039 * single bio to populate the pages for the 2 ranges because
3040 * this makes the compressed extent read zero out the pages
3041 * belonging to the 2nd range. Imagine the following scenario:
3042 *
3043 * File layout
3044 * [0 - 8K] [8K - 24K]
3045 * | |
3046 * | |
3047 * points to extent X, points to extent X,
3048 * offset 4K, length of 8K offset 0, length 16K
3049 *
3050 * [extent X, compressed length = 4K uncompressed length = 16K]
3051 *
3052 * If the bio to read the compressed extent covers both ranges,
3053 * it will decompress extent X into the pages belonging to the
3054 * first range and then it will stop, zeroing out the remaining
3055 * pages that belong to the other range that points to extent X.
3056 * So here we make sure we submit 2 bios, one for the first
3057 * range and another one for the third range. Both will target
3058 * the same physical extent from disk, but we can't currently
3059 * make the compressed bio endio callback populate the pages
3060 * for both ranges because each compressed bio is tightly
3061 * coupled with a single extent map, and each range can have
3062 * an extent map with a different offset value relative to the
3063 * uncompressed data of our extent and different lengths. This
3064 * is a corner case so we prioritize correctness over
3065 * non-optimal behavior (submitting 2 bios for the same extent).
3066 */
3067 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3068 prev_em_start && *prev_em_start != (u64)-1 &&
3069 *prev_em_start != em->orig_start)
3070 force_bio_submit = true;
3071
3072 if (prev_em_start)
3073 *prev_em_start = em->orig_start;
3074
Chris Masond1310b22008-01-24 16:13:08 -05003075 free_extent_map(em);
3076 em = NULL;
3077
3078 /* we've found a hole, just zero and go on */
3079 if (block_start == EXTENT_MAP_HOLE) {
3080 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003081 struct extent_state *cached = NULL;
3082
Cong Wang7ac687d2011-11-25 23:14:28 +08003083 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003084 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003085 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003086 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003087
3088 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003089 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003090 unlock_extent_cached(tree, cur,
3091 cur + iosize - 1,
3092 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003093 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003094 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003095 continue;
3096 }
3097 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003098 if (test_range_bit(tree, cur, cur_end,
3099 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003100 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003101 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003102 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003103 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003104 continue;
3105 }
Chris Mason70dec802008-01-29 09:59:12 -05003106 /* we have an inline extent but it didn't get marked up
3107 * to date. Error out
3108 */
3109 if (block_start == EXTENT_MAP_INLINE) {
3110 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003111 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003112 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003113 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003114 continue;
3115 }
Chris Masond1310b22008-01-24 16:13:08 -05003116
Josef Bacikc8f2f242013-02-11 11:33:00 -05003117 pnr -= page->index;
Mike Christie1f7ad752016-06-05 14:31:51 -05003118 ret = submit_extent_page(REQ_OP_READ, read_flags, tree, NULL,
3119 page, sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003120 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003121 end_bio_extent_readpage, mirror_num,
3122 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003123 this_bio_flag,
3124 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003125 if (!ret) {
3126 nr++;
3127 *bio_flags = this_bio_flag;
3128 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003129 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003130 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003131 goto out;
Josef Bacikedd33c92012-10-05 16:40:32 -04003132 }
Chris Masond1310b22008-01-24 16:13:08 -05003133 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003134 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003135 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003136out:
Chris Masond1310b22008-01-24 16:13:08 -05003137 if (!nr) {
3138 if (!PageError(page))
3139 SetPageUptodate(page);
3140 unlock_page(page);
3141 }
Liu Bobaf863b2016-07-11 10:39:07 -07003142 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003143}
3144
Miao Xie99740902013-07-25 19:22:36 +08003145static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3146 struct page *pages[], int nr_pages,
3147 u64 start, u64 end,
3148 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003149 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003150 struct bio **bio, int mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003151 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003152 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003153{
3154 struct inode *inode;
3155 struct btrfs_ordered_extent *ordered;
3156 int index;
3157
3158 inode = pages[0]->mapping->host;
3159 while (1) {
3160 lock_extent(tree, start, end);
3161 ordered = btrfs_lookup_ordered_range(inode, start,
3162 end - start + 1);
3163 if (!ordered)
3164 break;
3165 unlock_extent(tree, start, end);
3166 btrfs_start_ordered_extent(inode, ordered, 1);
3167 btrfs_put_ordered_extent(ordered);
3168 }
3169
3170 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003171 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003172 mirror_num, bio_flags, 0, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003173 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003174 }
3175}
3176
3177static void __extent_readpages(struct extent_io_tree *tree,
3178 struct page *pages[],
3179 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003180 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003181 struct bio **bio, int mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003182 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003183 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003184{
Stefan Behrens35a36212013-08-14 18:12:25 +02003185 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003186 u64 end = 0;
3187 u64 page_start;
3188 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003189 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003190
3191 for (index = 0; index < nr_pages; index++) {
3192 page_start = page_offset(pages[index]);
3193 if (!end) {
3194 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003195 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003196 first_index = index;
3197 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003198 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003199 } else {
3200 __do_contiguous_readpages(tree, &pages[first_index],
3201 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003202 end, get_extent, em_cached,
3203 bio, mirror_num, bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05003204 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003205 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003206 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003207 first_index = index;
3208 }
3209 }
3210
3211 if (end)
3212 __do_contiguous_readpages(tree, &pages[first_index],
3213 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003214 end, get_extent, em_cached, bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003215 mirror_num, bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003216 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003217}
3218
3219static int __extent_read_full_page(struct extent_io_tree *tree,
3220 struct page *page,
3221 get_extent_t *get_extent,
3222 struct bio **bio, int mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003223 unsigned long *bio_flags, int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003224{
3225 struct inode *inode = page->mapping->host;
3226 struct btrfs_ordered_extent *ordered;
3227 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003228 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003229 int ret;
3230
3231 while (1) {
3232 lock_extent(tree, start, end);
Chandan Rajendradbfdb6d2016-01-21 15:55:58 +05303233 ordered = btrfs_lookup_ordered_range(inode, start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003234 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003235 if (!ordered)
3236 break;
3237 unlock_extent(tree, start, end);
3238 btrfs_start_ordered_extent(inode, ordered, 1);
3239 btrfs_put_ordered_extent(ordered);
3240 }
3241
Miao Xie125bac012013-07-25 19:22:37 +08003242 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003243 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003244 return ret;
3245}
3246
Chris Masond1310b22008-01-24 16:13:08 -05003247int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003248 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003249{
3250 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003251 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003252 int ret;
3253
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003254 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003255 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003256 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003257 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003258 return ret;
3259}
Chris Masond1310b22008-01-24 16:13:08 -05003260
Liu Boa91326672016-03-07 16:56:21 -08003261static void update_nr_written(struct page *page, struct writeback_control *wbc,
3262 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003263{
3264 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003265}
3266
Chris Masond1310b22008-01-24 16:13:08 -05003267/*
Chris Mason40f76582014-05-21 13:35:51 -07003268 * helper for __extent_writepage, doing all of the delayed allocation setup.
3269 *
3270 * This returns 1 if our fill_delalloc function did all the work required
3271 * to write the page (copy into inline extent). In this case the IO has
3272 * been started and the page is already unlocked.
3273 *
3274 * This returns 0 if all went well (page still locked)
3275 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003276 */
Chris Mason40f76582014-05-21 13:35:51 -07003277static noinline_for_stack int writepage_delalloc(struct inode *inode,
3278 struct page *page, struct writeback_control *wbc,
3279 struct extent_page_data *epd,
3280 u64 delalloc_start,
3281 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003282{
Chris Mason40f76582014-05-21 13:35:51 -07003283 struct extent_io_tree *tree = epd->tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003284 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003285 u64 nr_delalloc;
3286 u64 delalloc_to_write = 0;
3287 u64 delalloc_end = 0;
3288 int ret;
3289 int page_started = 0;
3290
3291 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3292 return 0;
3293
3294 while (delalloc_end < page_end) {
3295 nr_delalloc = find_lock_delalloc_range(inode, tree,
3296 page,
3297 &delalloc_start,
3298 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003299 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003300 if (nr_delalloc == 0) {
3301 delalloc_start = delalloc_end + 1;
3302 continue;
3303 }
3304 ret = tree->ops->fill_delalloc(inode, page,
3305 delalloc_start,
3306 delalloc_end,
3307 &page_started,
3308 nr_written);
3309 /* File system has been set read-only */
3310 if (ret) {
3311 SetPageError(page);
3312 /* fill_delalloc should be return < 0 for error
3313 * but just in case, we use > 0 here meaning the
3314 * IO is started, so we don't want to return > 0
3315 * unless things are going well.
3316 */
3317 ret = ret < 0 ? ret : -EIO;
3318 goto done;
3319 }
3320 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003321 * delalloc_end is already one less than the total length, so
3322 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003323 */
3324 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003325 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003326 delalloc_start = delalloc_end + 1;
3327 }
3328 if (wbc->nr_to_write < delalloc_to_write) {
3329 int thresh = 8192;
3330
3331 if (delalloc_to_write < thresh * 2)
3332 thresh = delalloc_to_write;
3333 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3334 thresh);
3335 }
3336
3337 /* did the fill delalloc function already unlock and start
3338 * the IO?
3339 */
3340 if (page_started) {
3341 /*
3342 * we've unlocked the page, so we can't update
3343 * the mapping's writeback index, just update
3344 * nr_to_write.
3345 */
3346 wbc->nr_to_write -= *nr_written;
3347 return 1;
3348 }
3349
3350 ret = 0;
3351
3352done:
3353 return ret;
3354}
3355
3356/*
3357 * helper for __extent_writepage. This calls the writepage start hooks,
3358 * and does the loop to map the page into extents and bios.
3359 *
3360 * We return 1 if the IO is started and the page is unlocked,
3361 * 0 if all went well (page still locked)
3362 * < 0 if there were errors (page still locked)
3363 */
3364static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3365 struct page *page,
3366 struct writeback_control *wbc,
3367 struct extent_page_data *epd,
3368 loff_t i_size,
3369 unsigned long nr_written,
3370 int write_flags, int *nr_ret)
3371{
Chris Masond1310b22008-01-24 16:13:08 -05003372 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003373 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003374 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003375 u64 end;
3376 u64 cur = start;
3377 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003378 u64 block_start;
3379 u64 iosize;
3380 sector_t sector;
3381 struct extent_map *em;
3382 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003383 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003384 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003385 int ret = 0;
3386 int nr = 0;
3387 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003388
Chris Mason247e7432008-07-17 12:53:51 -04003389 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003390 ret = tree->ops->writepage_start_hook(page, start,
3391 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003392 if (ret) {
3393 /* Fixup worker will requeue */
3394 if (ret == -EBUSY)
3395 wbc->pages_skipped++;
3396 else
3397 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003398
Chris Mason11c83492009-04-20 15:50:09 -04003399 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003400 unlock_page(page);
Liu Bobcf93482017-01-25 17:15:54 -08003401 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003402 }
3403 }
3404
Chris Mason11c83492009-04-20 15:50:09 -04003405 /*
3406 * we don't want to touch the inode after unlocking the page,
3407 * so we update the mapping writeback index now
3408 */
3409 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003410
Chris Masond1310b22008-01-24 16:13:08 -05003411 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003412 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003413 if (tree->ops && tree->ops->writepage_end_io_hook)
3414 tree->ops->writepage_end_io_hook(page, start,
3415 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003416 goto done;
3417 }
3418
Chris Masond1310b22008-01-24 16:13:08 -05003419 blocksize = inode->i_sb->s_blocksize;
3420
3421 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003422 u64 em_end;
David Sterba58409ed2016-05-04 11:46:10 +02003423 unsigned long max_nr;
3424
Chris Mason40f76582014-05-21 13:35:51 -07003425 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003426 if (tree->ops && tree->ops->writepage_end_io_hook)
3427 tree->ops->writepage_end_io_hook(page, cur,
3428 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003429 break;
3430 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003431 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003432 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003433 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003434 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003435 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003436 break;
3437 }
3438
3439 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003440 em_end = extent_map_end(em);
3441 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003442 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003443 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003444 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003445 sector = (em->block_start + extent_offset) >> 9;
3446 bdev = em->bdev;
3447 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003448 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003449 free_extent_map(em);
3450 em = NULL;
3451
Chris Masonc8b97812008-10-29 14:49:59 -04003452 /*
3453 * compressed and inline extents are written through other
3454 * paths in the FS
3455 */
3456 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003457 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003458 /*
3459 * end_io notification does not happen here for
3460 * compressed extents
3461 */
3462 if (!compressed && tree->ops &&
3463 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003464 tree->ops->writepage_end_io_hook(page, cur,
3465 cur + iosize - 1,
3466 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003467 else if (compressed) {
3468 /* we don't want to end_page_writeback on
3469 * a compressed extent. this happens
3470 * elsewhere
3471 */
3472 nr++;
3473 }
3474
3475 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003476 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003477 continue;
3478 }
Chris Masonc8b97812008-10-29 14:49:59 -04003479
David Sterba58409ed2016-05-04 11:46:10 +02003480 max_nr = (i_size >> PAGE_SHIFT) + 1;
3481
3482 set_range_writeback(tree, cur, cur + iosize - 1);
3483 if (!PageWriteback(page)) {
3484 btrfs_err(BTRFS_I(inode)->root->fs_info,
3485 "page %lu not writeback, cur %llu end %llu",
3486 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003487 }
David Sterba58409ed2016-05-04 11:46:10 +02003488
Mike Christie1f7ad752016-06-05 14:31:51 -05003489 ret = submit_extent_page(REQ_OP_WRITE, write_flags, tree, wbc,
3490 page, sector, iosize, pg_offset,
David Sterba58409ed2016-05-04 11:46:10 +02003491 bdev, &epd->bio, max_nr,
3492 end_bio_extent_writepage,
3493 0, 0, 0, false);
3494 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003495 SetPageError(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04003496
Chris Masond1310b22008-01-24 16:13:08 -05003497 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003498 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003499 nr++;
3500 }
3501done:
Chris Mason40f76582014-05-21 13:35:51 -07003502 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003503 return ret;
3504}
3505
3506/*
3507 * the writepage semantics are similar to regular writepage. extent
3508 * records are inserted to lock ranges in the tree, and as dirty areas
3509 * are found, they are marked writeback. Then the lock bits are removed
3510 * and the end_io handler clears the writeback ranges
3511 */
3512static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3513 void *data)
3514{
3515 struct inode *inode = page->mapping->host;
3516 struct extent_page_data *epd = data;
3517 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003518 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003519 int ret;
3520 int nr = 0;
3521 size_t pg_offset = 0;
3522 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003523 unsigned long end_index = i_size >> PAGE_SHIFT;
Mike Christie1f7ad752016-06-05 14:31:51 -05003524 int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003525 unsigned long nr_written = 0;
3526
3527 if (wbc->sync_mode == WB_SYNC_ALL)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06003528 write_flags = REQ_SYNC;
Chris Mason40f76582014-05-21 13:35:51 -07003529
3530 trace___extent_writepage(page, inode, wbc);
3531
3532 WARN_ON(!PageLocked(page));
3533
3534 ClearPageError(page);
3535
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003536 pg_offset = i_size & (PAGE_SIZE - 1);
Chris Mason40f76582014-05-21 13:35:51 -07003537 if (page->index > end_index ||
3538 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003539 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003540 unlock_page(page);
3541 return 0;
3542 }
3543
3544 if (page->index == end_index) {
3545 char *userpage;
3546
3547 userpage = kmap_atomic(page);
3548 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003549 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003550 kunmap_atomic(userpage);
3551 flush_dcache_page(page);
3552 }
3553
3554 pg_offset = 0;
3555
3556 set_page_extent_mapped(page);
3557
3558 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3559 if (ret == 1)
3560 goto done_unlocked;
3561 if (ret)
3562 goto done;
3563
3564 ret = __extent_writepage_io(inode, page, wbc, epd,
3565 i_size, nr_written, write_flags, &nr);
3566 if (ret == 1)
3567 goto done_unlocked;
3568
3569done:
Chris Masond1310b22008-01-24 16:13:08 -05003570 if (nr == 0) {
3571 /* make sure the mapping tag for page dirty gets cleared */
3572 set_page_writeback(page);
3573 end_page_writeback(page);
3574 }
Filipe Manana61391d52014-05-09 17:17:40 +01003575 if (PageError(page)) {
3576 ret = ret < 0 ? ret : -EIO;
3577 end_extent_writepage(page, ret, start, page_end);
3578 }
Chris Masond1310b22008-01-24 16:13:08 -05003579 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003580 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003581
Chris Mason11c83492009-04-20 15:50:09 -04003582done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003583 return 0;
3584}
3585
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003586void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003587{
NeilBrown74316202014-07-07 15:16:04 +10003588 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3589 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003590}
3591
Chris Mason0e378df2014-05-19 20:55:27 -07003592static noinline_for_stack int
3593lock_extent_buffer_for_io(struct extent_buffer *eb,
3594 struct btrfs_fs_info *fs_info,
3595 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003596{
3597 unsigned long i, num_pages;
3598 int flush = 0;
3599 int ret = 0;
3600
3601 if (!btrfs_try_tree_write_lock(eb)) {
3602 flush = 1;
3603 flush_write_bio(epd);
3604 btrfs_tree_lock(eb);
3605 }
3606
3607 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3608 btrfs_tree_unlock(eb);
3609 if (!epd->sync_io)
3610 return 0;
3611 if (!flush) {
3612 flush_write_bio(epd);
3613 flush = 1;
3614 }
Chris Masona098d8e2012-03-21 12:09:56 -04003615 while (1) {
3616 wait_on_extent_buffer_writeback(eb);
3617 btrfs_tree_lock(eb);
3618 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3619 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003620 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003621 }
3622 }
3623
Josef Bacik51561ff2012-07-20 16:25:24 -04003624 /*
3625 * We need to do this to prevent races in people who check if the eb is
3626 * under IO since we can end up having no IO bits set for a short period
3627 * of time.
3628 */
3629 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003630 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3631 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003632 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003633 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003634 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3635 -eb->len,
3636 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003637 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003638 } else {
3639 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003640 }
3641
3642 btrfs_tree_unlock(eb);
3643
3644 if (!ret)
3645 return ret;
3646
3647 num_pages = num_extent_pages(eb->start, eb->len);
3648 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003649 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003650
3651 if (!trylock_page(p)) {
3652 if (!flush) {
3653 flush_write_bio(epd);
3654 flush = 1;
3655 }
3656 lock_page(p);
3657 }
3658 }
3659
3660 return ret;
3661}
3662
3663static void end_extent_buffer_writeback(struct extent_buffer *eb)
3664{
3665 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003666 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003667 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3668}
3669
Filipe Manana656f30d2014-09-26 12:25:56 +01003670static void set_btree_ioerr(struct page *page)
3671{
3672 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003673
3674 SetPageError(page);
3675 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3676 return;
3677
3678 /*
3679 * If writeback for a btree extent that doesn't belong to a log tree
3680 * failed, increment the counter transaction->eb_write_errors.
3681 * We do this because while the transaction is running and before it's
3682 * committing (when we call filemap_fdata[write|wait]_range against
3683 * the btree inode), we might have
3684 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3685 * returns an error or an error happens during writeback, when we're
3686 * committing the transaction we wouldn't know about it, since the pages
3687 * can be no longer dirty nor marked anymore for writeback (if a
3688 * subsequent modification to the extent buffer didn't happen before the
3689 * transaction commit), which makes filemap_fdata[write|wait]_range not
3690 * able to find the pages tagged with SetPageError at transaction
3691 * commit time. So if this happens we must abort the transaction,
3692 * otherwise we commit a super block with btree roots that point to
3693 * btree nodes/leafs whose content on disk is invalid - either garbage
3694 * or the content of some node/leaf from a past generation that got
3695 * cowed or deleted and is no longer valid.
3696 *
3697 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3698 * not be enough - we need to distinguish between log tree extents vs
3699 * non-log tree extents, and the next filemap_fdatawait_range() call
3700 * will catch and clear such errors in the mapping - and that call might
3701 * be from a log sync and not from a transaction commit. Also, checking
3702 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3703 * not done and would not be reliable - the eb might have been released
3704 * from memory and reading it back again means that flag would not be
3705 * set (since it's a runtime flag, not persisted on disk).
3706 *
3707 * Using the flags below in the btree inode also makes us achieve the
3708 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3709 * writeback for all dirty pages and before filemap_fdatawait_range()
3710 * is called, the writeback for all dirty pages had already finished
3711 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3712 * filemap_fdatawait_range() would return success, as it could not know
3713 * that writeback errors happened (the pages were no longer tagged for
3714 * writeback).
3715 */
3716 switch (eb->log_index) {
3717 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003718 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003719 break;
3720 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003721 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003722 break;
3723 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003724 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003725 break;
3726 default:
3727 BUG(); /* unexpected, logic error */
3728 }
3729}
3730
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003731static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003732{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003733 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003734 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003735 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003736
Kent Overstreet2c30c712013-11-07 12:20:26 -08003737 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003738 struct page *page = bvec->bv_page;
3739
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003740 eb = (struct extent_buffer *)page->private;
3741 BUG_ON(!eb);
3742 done = atomic_dec_and_test(&eb->io_pages);
3743
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003744 if (bio->bi_error ||
3745 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003746 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003747 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003748 }
3749
3750 end_page_writeback(page);
3751
3752 if (!done)
3753 continue;
3754
3755 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003756 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003757
3758 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003759}
3760
Chris Mason0e378df2014-05-19 20:55:27 -07003761static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003762 struct btrfs_fs_info *fs_info,
3763 struct writeback_control *wbc,
3764 struct extent_page_data *epd)
3765{
3766 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003767 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003768 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003769 u32 nritems;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003770 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003771 unsigned long bio_flags = 0;
Liu Bo851cd172016-09-23 13:44:44 -07003772 unsigned long start, end;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06003773 int write_flags = (epd->sync_io ? REQ_SYNC : 0) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003774 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003775
Filipe Manana656f30d2014-09-26 12:25:56 +01003776 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003777 num_pages = num_extent_pages(eb->start, eb->len);
3778 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003779 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3780 bio_flags = EXTENT_BIO_TREE_LOG;
3781
Liu Bo851cd172016-09-23 13:44:44 -07003782 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3783 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003784 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003785 end = btrfs_node_key_ptr_offset(nritems);
3786
David Sterbab159fa22016-11-08 18:09:03 +01003787 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003788 } else {
3789 /*
3790 * leaf:
3791 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3792 */
3793 start = btrfs_item_nr_offset(nritems);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003794 end = btrfs_leaf_data(eb) + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003795 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003796 }
3797
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003798 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003799 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003800
3801 clear_page_dirty_for_io(p);
3802 set_page_writeback(p);
Mike Christie1f7ad752016-06-05 14:31:51 -05003803 ret = submit_extent_page(REQ_OP_WRITE, write_flags, tree, wbc,
3804 p, offset >> 9, PAGE_SIZE, 0, bdev,
3805 &epd->bio, -1,
3806 end_bio_extent_buffer_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003807 0, epd->bio_flags, bio_flags, false);
Josef Bacikde0022b2012-09-25 14:25:58 -04003808 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003809 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003810 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003811 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003812 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3813 end_extent_buffer_writeback(eb);
3814 ret = -EIO;
3815 break;
3816 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003817 offset += PAGE_SIZE;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003818 update_nr_written(p, wbc, 1);
3819 unlock_page(p);
3820 }
3821
3822 if (unlikely(ret)) {
3823 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003824 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003825 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003826 unlock_page(p);
3827 }
3828 }
3829
3830 return ret;
3831}
3832
3833int btree_write_cache_pages(struct address_space *mapping,
3834 struct writeback_control *wbc)
3835{
3836 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3837 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3838 struct extent_buffer *eb, *prev_eb = NULL;
3839 struct extent_page_data epd = {
3840 .bio = NULL,
3841 .tree = tree,
3842 .extent_locked = 0,
3843 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003844 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003845 };
3846 int ret = 0;
3847 int done = 0;
3848 int nr_to_write_done = 0;
3849 struct pagevec pvec;
3850 int nr_pages;
3851 pgoff_t index;
3852 pgoff_t end; /* Inclusive */
3853 int scanned = 0;
3854 int tag;
3855
3856 pagevec_init(&pvec, 0);
3857 if (wbc->range_cyclic) {
3858 index = mapping->writeback_index; /* Start from prev offset */
3859 end = -1;
3860 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003861 index = wbc->range_start >> PAGE_SHIFT;
3862 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003863 scanned = 1;
3864 }
3865 if (wbc->sync_mode == WB_SYNC_ALL)
3866 tag = PAGECACHE_TAG_TOWRITE;
3867 else
3868 tag = PAGECACHE_TAG_DIRTY;
3869retry:
3870 if (wbc->sync_mode == WB_SYNC_ALL)
3871 tag_pages_for_writeback(mapping, index, end);
3872 while (!done && !nr_to_write_done && (index <= end) &&
3873 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3874 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3875 unsigned i;
3876
3877 scanned = 1;
3878 for (i = 0; i < nr_pages; i++) {
3879 struct page *page = pvec.pages[i];
3880
3881 if (!PagePrivate(page))
3882 continue;
3883
3884 if (!wbc->range_cyclic && page->index > end) {
3885 done = 1;
3886 break;
3887 }
3888
Josef Bacikb5bae262012-09-14 13:43:01 -04003889 spin_lock(&mapping->private_lock);
3890 if (!PagePrivate(page)) {
3891 spin_unlock(&mapping->private_lock);
3892 continue;
3893 }
3894
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003895 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003896
3897 /*
3898 * Shouldn't happen and normally this would be a BUG_ON
3899 * but no sense in crashing the users box for something
3900 * we can survive anyway.
3901 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303902 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003903 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003904 continue;
3905 }
3906
Josef Bacikb5bae262012-09-14 13:43:01 -04003907 if (eb == prev_eb) {
3908 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003909 continue;
3910 }
3911
Josef Bacikb5bae262012-09-14 13:43:01 -04003912 ret = atomic_inc_not_zero(&eb->refs);
3913 spin_unlock(&mapping->private_lock);
3914 if (!ret)
3915 continue;
3916
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003917 prev_eb = eb;
3918 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3919 if (!ret) {
3920 free_extent_buffer(eb);
3921 continue;
3922 }
3923
3924 ret = write_one_eb(eb, fs_info, wbc, &epd);
3925 if (ret) {
3926 done = 1;
3927 free_extent_buffer(eb);
3928 break;
3929 }
3930 free_extent_buffer(eb);
3931
3932 /*
3933 * the filesystem may choose to bump up nr_to_write.
3934 * We have to make sure to honor the new nr_to_write
3935 * at any time
3936 */
3937 nr_to_write_done = wbc->nr_to_write <= 0;
3938 }
3939 pagevec_release(&pvec);
3940 cond_resched();
3941 }
3942 if (!scanned && !done) {
3943 /*
3944 * We hit the last page and there is more work to be done: wrap
3945 * back to the start of the file
3946 */
3947 scanned = 1;
3948 index = 0;
3949 goto retry;
3950 }
3951 flush_write_bio(&epd);
3952 return ret;
3953}
3954
Chris Masond1310b22008-01-24 16:13:08 -05003955/**
Chris Mason4bef0842008-09-08 11:18:08 -04003956 * 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 -05003957 * @mapping: address space structure to write
3958 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3959 * @writepage: function called for each page
3960 * @data: data passed to writepage function
3961 *
3962 * If a page is already under I/O, write_cache_pages() skips it, even
3963 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3964 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3965 * and msync() need to guarantee that all the data which was dirty at the time
3966 * the call was made get new I/O started against them. If wbc->sync_mode is
3967 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3968 * existing IO to complete.
3969 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003970static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003971 struct address_space *mapping,
3972 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003973 writepage_t writepage, void *data,
3974 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003975{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003976 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003977 int ret = 0;
3978 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003979 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003980 struct pagevec pvec;
3981 int nr_pages;
3982 pgoff_t index;
3983 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003984 pgoff_t done_index;
3985 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003986 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003987 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003988
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003989 /*
3990 * We have to hold onto the inode so that ordered extents can do their
3991 * work when the IO finishes. The alternative to this is failing to add
3992 * an ordered extent if the igrab() fails there and that is a huge pain
3993 * to deal with, so instead just hold onto the inode throughout the
3994 * writepages operation. If it fails here we are freeing up the inode
3995 * anyway and we'd rather not waste our time writing out stuff that is
3996 * going to be truncated anyway.
3997 */
3998 if (!igrab(inode))
3999 return 0;
4000
Chris Masond1310b22008-01-24 16:13:08 -05004001 pagevec_init(&pvec, 0);
4002 if (wbc->range_cyclic) {
4003 index = mapping->writeback_index; /* Start from prev offset */
4004 end = -1;
4005 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004006 index = wbc->range_start >> PAGE_SHIFT;
4007 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08004008 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
4009 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004010 scanned = 1;
4011 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00004012 if (wbc->sync_mode == WB_SYNC_ALL)
4013 tag = PAGECACHE_TAG_TOWRITE;
4014 else
4015 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004016retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00004017 if (wbc->sync_mode == WB_SYNC_ALL)
4018 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08004019 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004020 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00004021 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
4022 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05004023 unsigned i;
4024
4025 scanned = 1;
4026 for (i = 0; i < nr_pages; i++) {
4027 struct page *page = pvec.pages[i];
4028
Liu Boa91326672016-03-07 16:56:21 -08004029 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05004030 /*
4031 * At this point we hold neither mapping->tree_lock nor
4032 * lock on the page itself: the page may be truncated or
4033 * invalidated (changing page->mapping to NULL), or even
4034 * swizzled back from swapper_space to tmpfs file
4035 * mapping
4036 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004037 if (!trylock_page(page)) {
4038 flush_fn(data);
4039 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004040 }
Chris Masond1310b22008-01-24 16:13:08 -05004041
4042 if (unlikely(page->mapping != mapping)) {
4043 unlock_page(page);
4044 continue;
4045 }
4046
4047 if (!wbc->range_cyclic && page->index > end) {
4048 done = 1;
4049 unlock_page(page);
4050 continue;
4051 }
4052
Chris Masond2c3f4f2008-11-19 12:44:22 -05004053 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05004054 if (PageWriteback(page))
4055 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05004056 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004057 }
Chris Masond1310b22008-01-24 16:13:08 -05004058
4059 if (PageWriteback(page) ||
4060 !clear_page_dirty_for_io(page)) {
4061 unlock_page(page);
4062 continue;
4063 }
4064
4065 ret = (*writepage)(page, wbc, data);
4066
4067 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4068 unlock_page(page);
4069 ret = 0;
4070 }
Liu Boa91326672016-03-07 16:56:21 -08004071 if (ret < 0) {
4072 /*
4073 * done_index is set past this page,
4074 * so media errors will not choke
4075 * background writeout for the entire
4076 * file. This has consequences for
4077 * range_cyclic semantics (ie. it may
4078 * not be suitable for data integrity
4079 * writeout).
4080 */
4081 done_index = page->index + 1;
4082 done = 1;
4083 break;
4084 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004085
4086 /*
4087 * the filesystem may choose to bump up nr_to_write.
4088 * We have to make sure to honor the new nr_to_write
4089 * at any time
4090 */
4091 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004092 }
4093 pagevec_release(&pvec);
4094 cond_resched();
4095 }
Liu Bo894b36e2016-03-07 16:56:22 -08004096 if (!scanned && !done) {
Chris Masond1310b22008-01-24 16:13:08 -05004097 /*
4098 * We hit the last page and there is more work to be done: wrap
4099 * back to the start of the file
4100 */
4101 scanned = 1;
4102 index = 0;
4103 goto retry;
4104 }
Liu Boa91326672016-03-07 16:56:21 -08004105
4106 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4107 mapping->writeback_index = done_index;
4108
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004109 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004110 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004111}
Chris Masond1310b22008-01-24 16:13:08 -05004112
Chris Masonffbd5172009-04-20 15:50:09 -04004113static void flush_epd_write_bio(struct extent_page_data *epd)
4114{
4115 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004116 int ret;
4117
Mike Christie1f7ad752016-06-05 14:31:51 -05004118 bio_set_op_attrs(epd->bio, REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -06004119 epd->sync_io ? REQ_SYNC : 0);
Jeff Mahoney355808c2011-10-03 23:23:14 -04004120
Mike Christie1f7ad752016-06-05 14:31:51 -05004121 ret = submit_one_bio(epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004122 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004123 epd->bio = NULL;
4124 }
4125}
4126
Chris Masond2c3f4f2008-11-19 12:44:22 -05004127static noinline void flush_write_bio(void *data)
4128{
4129 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004130 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004131}
4132
Chris Masond1310b22008-01-24 16:13:08 -05004133int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4134 get_extent_t *get_extent,
4135 struct writeback_control *wbc)
4136{
4137 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004138 struct extent_page_data epd = {
4139 .bio = NULL,
4140 .tree = tree,
4141 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004142 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004143 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004144 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004145 };
Chris Masond1310b22008-01-24 16:13:08 -05004146
Chris Masond1310b22008-01-24 16:13:08 -05004147 ret = __extent_writepage(page, wbc, &epd);
4148
Chris Masonffbd5172009-04-20 15:50:09 -04004149 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004150 return ret;
4151}
Chris Masond1310b22008-01-24 16:13:08 -05004152
Chris Mason771ed682008-11-06 22:02:51 -05004153int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4154 u64 start, u64 end, get_extent_t *get_extent,
4155 int mode)
4156{
4157 int ret = 0;
4158 struct address_space *mapping = inode->i_mapping;
4159 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004160 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4161 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004162
4163 struct extent_page_data epd = {
4164 .bio = NULL,
4165 .tree = tree,
4166 .get_extent = get_extent,
4167 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004168 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004169 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004170 };
4171 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004172 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004173 .nr_to_write = nr_pages * 2,
4174 .range_start = start,
4175 .range_end = end + 1,
4176 };
4177
Chris Masond3977122009-01-05 21:25:51 -05004178 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004179 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004180 if (clear_page_dirty_for_io(page))
4181 ret = __extent_writepage(page, &wbc_writepages, &epd);
4182 else {
4183 if (tree->ops && tree->ops->writepage_end_io_hook)
4184 tree->ops->writepage_end_io_hook(page, start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004185 start + PAGE_SIZE - 1,
Chris Mason771ed682008-11-06 22:02:51 -05004186 NULL, 1);
4187 unlock_page(page);
4188 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004189 put_page(page);
4190 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004191 }
4192
Chris Masonffbd5172009-04-20 15:50:09 -04004193 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004194 return ret;
4195}
Chris Masond1310b22008-01-24 16:13:08 -05004196
4197int extent_writepages(struct extent_io_tree *tree,
4198 struct address_space *mapping,
4199 get_extent_t *get_extent,
4200 struct writeback_control *wbc)
4201{
4202 int ret = 0;
4203 struct extent_page_data epd = {
4204 .bio = NULL,
4205 .tree = tree,
4206 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004207 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004208 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004209 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004210 };
4211
Chris Mason4bef0842008-09-08 11:18:08 -04004212 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004213 __extent_writepage, &epd,
4214 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004215 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004216 return ret;
4217}
Chris Masond1310b22008-01-24 16:13:08 -05004218
4219int extent_readpages(struct extent_io_tree *tree,
4220 struct address_space *mapping,
4221 struct list_head *pages, unsigned nr_pages,
4222 get_extent_t get_extent)
4223{
4224 struct bio *bio = NULL;
4225 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004226 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004227 struct page *pagepool[16];
4228 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004229 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004230 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004231 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004232
Chris Masond1310b22008-01-24 16:13:08 -05004233 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004234 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004235
4236 prefetchw(&page->flags);
4237 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004238 if (add_to_page_cache_lru(page, mapping,
Michal Hocko8a5c7432016-07-26 15:24:53 -07004239 page->index,
4240 readahead_gfp_mask(mapping))) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004241 put_page(page);
Liu Bo67c96842012-07-20 21:43:09 -06004242 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004243 }
Liu Bo67c96842012-07-20 21:43:09 -06004244
4245 pagepool[nr++] = page;
4246 if (nr < ARRAY_SIZE(pagepool))
4247 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004248 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Mike Christie1f7ad752016-06-05 14:31:51 -05004249 &bio, 0, &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004250 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004251 }
Miao Xie99740902013-07-25 19:22:36 +08004252 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004253 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Mike Christie1f7ad752016-06-05 14:31:51 -05004254 &bio, 0, &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004255
Miao Xie125bac012013-07-25 19:22:37 +08004256 if (em_cached)
4257 free_extent_map(em_cached);
4258
Chris Masond1310b22008-01-24 16:13:08 -05004259 BUG_ON(!list_empty(pages));
4260 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004261 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004262 return 0;
4263}
Chris Masond1310b22008-01-24 16:13:08 -05004264
4265/*
4266 * basic invalidatepage code, this waits on any locked or writeback
4267 * ranges corresponding to the page, and then deletes any extent state
4268 * records from the tree
4269 */
4270int extent_invalidatepage(struct extent_io_tree *tree,
4271 struct page *page, unsigned long offset)
4272{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004273 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004274 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004275 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004276 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4277
Qu Wenruofda28322013-02-26 08:10:22 +00004278 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004279 if (start > end)
4280 return 0;
4281
David Sterbaff13db42015-12-03 14:30:40 +01004282 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004283 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004284 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004285 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4286 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004287 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004288 return 0;
4289}
Chris Masond1310b22008-01-24 16:13:08 -05004290
4291/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004292 * a helper for releasepage, this tests for areas of the page that
4293 * are locked or under IO and drops the related state bits if it is safe
4294 * to drop the page.
4295 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004296static int try_release_extent_state(struct extent_map_tree *map,
4297 struct extent_io_tree *tree,
4298 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004299{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004300 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004301 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004302 int ret = 1;
4303
Chris Mason211f90e2008-07-18 11:56:15 -04004304 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004305 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004306 ret = 0;
4307 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004308 /*
4309 * at this point we can safely clear everything except the
4310 * locked bit and the nodatasum bit
4311 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004312 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004313 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4314 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004315
4316 /* if clear_extent_bit failed for enomem reasons,
4317 * we can't allow the release to continue.
4318 */
4319 if (ret < 0)
4320 ret = 0;
4321 else
4322 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004323 }
4324 return ret;
4325}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004326
4327/*
Chris Masond1310b22008-01-24 16:13:08 -05004328 * a helper for releasepage. As long as there are no locked extents
4329 * in the range corresponding to the page, both state records and extent
4330 * map records are removed
4331 */
4332int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004333 struct extent_io_tree *tree, struct page *page,
4334 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004335{
4336 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004337 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004338 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004339
Mel Gormand0164ad2015-11-06 16:28:21 -08004340 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004341 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004342 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004343 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004344 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004345 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004346 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004347 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004348 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004349 break;
4350 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004351 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4352 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004353 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004354 free_extent_map(em);
4355 break;
4356 }
4357 if (!test_range_bit(tree, em->start,
4358 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004359 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004360 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004361 remove_extent_mapping(map, em);
4362 /* once for the rb tree */
4363 free_extent_map(em);
4364 }
4365 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004366 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004367
4368 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004369 free_extent_map(em);
4370 }
Chris Masond1310b22008-01-24 16:13:08 -05004371 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004372 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004373}
Chris Masond1310b22008-01-24 16:13:08 -05004374
Chris Masonec29ed52011-02-23 16:23:20 -05004375/*
4376 * helper function for fiemap, which doesn't want to see any holes.
4377 * This maps until we find something past 'last'
4378 */
4379static struct extent_map *get_extent_skip_holes(struct inode *inode,
4380 u64 offset,
4381 u64 last,
4382 get_extent_t *get_extent)
4383{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004384 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004385 struct extent_map *em;
4386 u64 len;
4387
4388 if (offset >= last)
4389 return NULL;
4390
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304391 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004392 len = last - offset;
4393 if (len == 0)
4394 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004395 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004396 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004397 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004398 return em;
4399
4400 /* if this isn't a hole return it */
4401 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4402 em->block_start != EXTENT_MAP_HOLE) {
4403 return em;
4404 }
4405
4406 /* this is a hole, advance to the next extent */
4407 offset = extent_map_end(em);
4408 free_extent_map(em);
4409 if (offset >= last)
4410 break;
4411 }
4412 return NULL;
4413}
4414
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004415int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4416 __u64 start, __u64 len, get_extent_t *get_extent)
4417{
Josef Bacik975f84f2010-11-23 19:36:57 +00004418 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004419 u64 off = start;
4420 u64 max = start + len;
4421 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004422 u32 found_type;
4423 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004424 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004425 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004426 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004427 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004428 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004429 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004430 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004431 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004432 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004433 u64 em_start = 0;
4434 u64 em_len = 0;
4435 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004436
4437 if (len == 0)
4438 return -EINVAL;
4439
Josef Bacik975f84f2010-11-23 19:36:57 +00004440 path = btrfs_alloc_path();
4441 if (!path)
4442 return -ENOMEM;
4443 path->leave_spinning = 1;
4444
Jeff Mahoneyda170662016-06-15 09:22:56 -04004445 start = round_down(start, btrfs_inode_sectorsize(inode));
4446 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004447
Chris Masonec29ed52011-02-23 16:23:20 -05004448 /*
4449 * lookup the last file extent. We're not using i_size here
4450 * because there might be preallocation past i_size
4451 */
David Sterbaf85b7372017-01-20 14:54:07 +01004452 ret = btrfs_lookup_file_extent(NULL, root, path,
4453 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004454 if (ret < 0) {
4455 btrfs_free_path(path);
4456 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004457 } else {
4458 WARN_ON(!ret);
4459 if (ret == 1)
4460 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004461 }
Liu Bo2d324f52016-05-17 17:21:48 -07004462
Josef Bacik975f84f2010-11-23 19:36:57 +00004463 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004464 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004465 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004466
Chris Masonec29ed52011-02-23 16:23:20 -05004467 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004468 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004469 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004470 /* have to trust i_size as the end */
4471 last = (u64)-1;
4472 last_for_get_extent = isize;
4473 } else {
4474 /*
4475 * remember the start of the last extent. There are a
4476 * bunch of different factors that go into the length of the
4477 * extent, so its much less complex to remember where it started
4478 */
4479 last = found_key.offset;
4480 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004481 }
Liu Bofe09e162013-09-22 12:54:23 +08004482 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004483
Chris Masonec29ed52011-02-23 16:23:20 -05004484 /*
4485 * we might have some extents allocated but more delalloc past those
4486 * extents. so, we trust isize unless the start of the last extent is
4487 * beyond isize
4488 */
4489 if (last < isize) {
4490 last = (u64)-1;
4491 last_for_get_extent = isize;
4492 }
4493
David Sterbaff13db42015-12-03 14:30:40 +01004494 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004495 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004496
Josef Bacik4d479cf2011-11-17 11:34:31 -05004497 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004498 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004499 if (!em)
4500 goto out;
4501 if (IS_ERR(em)) {
4502 ret = PTR_ERR(em);
4503 goto out;
4504 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004505
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004506 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004507 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004508
Chris Masonea8efc72011-03-08 11:54:40 -05004509 /* break if the extent we found is outside the range */
4510 if (em->start >= max || extent_map_end(em) < off)
4511 break;
4512
4513 /*
4514 * get_extent may return an extent that starts before our
4515 * requested range. We have to make sure the ranges
4516 * we return to fiemap always move forward and don't
4517 * overlap, so adjust the offsets here
4518 */
4519 em_start = max(em->start, off);
4520
4521 /*
4522 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004523 * for adjusting the disk offset below. Only do this if the
4524 * extent isn't compressed since our in ram offset may be past
4525 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004526 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004527 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4528 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004529 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004530 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004531 disko = 0;
4532 flags = 0;
4533
Chris Masonea8efc72011-03-08 11:54:40 -05004534 /*
4535 * bump off for our next call to get_extent
4536 */
4537 off = extent_map_end(em);
4538 if (off >= max)
4539 end = 1;
4540
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004541 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004542 end = 1;
4543 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004544 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004545 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4546 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004547 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004548 flags |= (FIEMAP_EXTENT_DELALLOC |
4549 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004550 } else if (fieinfo->fi_extents_max) {
Lu Fengqiafce7722016-06-13 09:36:46 +08004551 struct btrfs_trans_handle *trans;
4552
Josef Bacikdc046b12014-09-10 16:20:45 -04004553 u64 bytenr = em->block_start -
4554 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004555
Chris Masonea8efc72011-03-08 11:54:40 -05004556 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004557
4558 /*
Lu Fengqiafce7722016-06-13 09:36:46 +08004559 * We need a trans handle to get delayed refs
4560 */
4561 trans = btrfs_join_transaction(root);
4562 /*
4563 * It's OK if we can't start a trans we can still check
4564 * from commit_root
4565 */
4566 if (IS_ERR(trans))
4567 trans = NULL;
4568
4569 /*
Liu Bofe09e162013-09-22 12:54:23 +08004570 * As btrfs supports shared space, this information
4571 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004572 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4573 * then we're just getting a count and we can skip the
4574 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004575 */
Lu Fengqiafce7722016-06-13 09:36:46 +08004576 ret = btrfs_check_shared(trans, root->fs_info,
David Sterbaf85b7372017-01-20 14:54:07 +01004577 root->objectid,
4578 btrfs_ino(BTRFS_I(inode)), bytenr);
Lu Fengqiafce7722016-06-13 09:36:46 +08004579 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004580 btrfs_end_transaction(trans);
Josef Bacikdc046b12014-09-10 16:20:45 -04004581 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004582 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004583 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004584 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004585 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004586 }
4587 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4588 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004589 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4590 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004591
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004592 free_extent_map(em);
4593 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004594 if ((em_start >= last) || em_len == (u64)-1 ||
4595 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004596 flags |= FIEMAP_EXTENT_LAST;
4597 end = 1;
4598 }
4599
Chris Masonec29ed52011-02-23 16:23:20 -05004600 /* now scan forward to see if this is really the last extent. */
4601 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4602 get_extent);
4603 if (IS_ERR(em)) {
4604 ret = PTR_ERR(em);
4605 goto out;
4606 }
4607 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004608 flags |= FIEMAP_EXTENT_LAST;
4609 end = 1;
4610 }
Chris Masonec29ed52011-02-23 16:23:20 -05004611 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4612 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004613 if (ret) {
4614 if (ret == 1)
4615 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004616 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004617 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004618 }
4619out_free:
4620 free_extent_map(em);
4621out:
Liu Bofe09e162013-09-22 12:54:23 +08004622 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004623 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004624 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004625 return ret;
4626}
4627
Chris Mason727011e2010-08-06 13:21:20 -04004628static void __free_extent_buffer(struct extent_buffer *eb)
4629{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004630 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004631 kmem_cache_free(extent_buffer_cache, eb);
4632}
4633
Josef Bacika26e8c92014-03-28 17:07:27 -04004634int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004635{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004636 return (atomic_read(&eb->io_pages) ||
4637 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4638 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004639}
4640
Miao Xie897ca6e92010-10-26 20:57:29 -04004641/*
4642 * Helper for releasing extent buffer page.
4643 */
David Sterbaa50924e2014-07-31 00:51:36 +02004644static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004645{
4646 unsigned long index;
4647 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004648 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004649
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004650 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004651
David Sterbaa50924e2014-07-31 00:51:36 +02004652 index = num_extent_pages(eb->start, eb->len);
4653 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004654 return;
4655
4656 do {
4657 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004658 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004659 if (!page)
4660 continue;
4661 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004662 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004663 /*
4664 * We do this since we'll remove the pages after we've
4665 * removed the eb from the radix tree, so we could race
4666 * and have this page now attached to the new eb. So
4667 * only clear page_private if it's still connected to
4668 * this eb.
4669 */
4670 if (PagePrivate(page) &&
4671 page->private == (unsigned long)eb) {
4672 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4673 BUG_ON(PageDirty(page));
4674 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004675 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004676 * We need to make sure we haven't be attached
4677 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004678 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004679 ClearPagePrivate(page);
4680 set_page_private(page, 0);
4681 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004682 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004683 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004684
4685 if (mapped)
4686 spin_unlock(&page->mapping->private_lock);
4687
Nicholas D Steeves01327612016-05-19 21:18:45 -04004688 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004689 put_page(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004690 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004691}
4692
4693/*
4694 * Helper for releasing the extent buffer.
4695 */
4696static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4697{
David Sterbaa50924e2014-07-31 00:51:36 +02004698 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004699 __free_extent_buffer(eb);
4700}
4701
Josef Bacikf28491e2013-12-16 13:24:27 -05004702static struct extent_buffer *
4703__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004704 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004705{
4706 struct extent_buffer *eb = NULL;
4707
Michal Hockod1b5c562015-08-19 14:17:40 +02004708 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004709 eb->start = start;
4710 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004711 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004712 eb->bflags = 0;
4713 rwlock_init(&eb->lock);
4714 atomic_set(&eb->write_locks, 0);
4715 atomic_set(&eb->read_locks, 0);
4716 atomic_set(&eb->blocking_readers, 0);
4717 atomic_set(&eb->blocking_writers, 0);
4718 atomic_set(&eb->spinning_readers, 0);
4719 atomic_set(&eb->spinning_writers, 0);
4720 eb->lock_nested = 0;
4721 init_waitqueue_head(&eb->write_lock_wq);
4722 init_waitqueue_head(&eb->read_lock_wq);
4723
4724 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4725
4726 spin_lock_init(&eb->refs_lock);
4727 atomic_set(&eb->refs, 1);
4728 atomic_set(&eb->io_pages, 0);
4729
4730 /*
4731 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4732 */
4733 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4734 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4735 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4736
4737 return eb;
4738}
4739
4740struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4741{
4742 unsigned long i;
4743 struct page *p;
4744 struct extent_buffer *new;
4745 unsigned long num_pages = num_extent_pages(src->start, src->len);
4746
David Sterba3f556f72014-06-15 03:20:26 +02004747 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004748 if (new == NULL)
4749 return NULL;
4750
4751 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004752 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004753 if (!p) {
4754 btrfs_release_extent_buffer(new);
4755 return NULL;
4756 }
4757 attach_extent_buffer_page(new, p);
4758 WARN_ON(PageDirty(p));
4759 SetPageUptodate(p);
4760 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004761 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004762 }
4763
Josef Bacikdb7f3432013-08-07 14:54:37 -04004764 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4765 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4766
4767 return new;
4768}
4769
Omar Sandoval0f331222015-09-29 20:50:31 -07004770struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4771 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004772{
4773 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004774 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004775 unsigned long i;
4776
Omar Sandoval0f331222015-09-29 20:50:31 -07004777 num_pages = num_extent_pages(start, len);
David Sterba3f556f72014-06-15 03:20:26 +02004778
4779 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004780 if (!eb)
4781 return NULL;
4782
4783 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004784 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004785 if (!eb->pages[i])
4786 goto err;
4787 }
4788 set_extent_buffer_uptodate(eb);
4789 btrfs_set_header_nritems(eb, 0);
4790 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4791
4792 return eb;
4793err:
4794 for (; i > 0; i--)
4795 __free_page(eb->pages[i - 1]);
4796 __free_extent_buffer(eb);
4797 return NULL;
4798}
4799
Omar Sandoval0f331222015-09-29 20:50:31 -07004800struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004801 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004802{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004803 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004804}
4805
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004806static void check_buffer_tree_ref(struct extent_buffer *eb)
4807{
Chris Mason242e18c2013-01-29 17:49:37 -05004808 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004809 /* the ref bit is tricky. We have to make sure it is set
4810 * if we have the buffer dirty. Otherwise the
4811 * code to free a buffer can end up dropping a dirty
4812 * page
4813 *
4814 * Once the ref bit is set, it won't go away while the
4815 * buffer is dirty or in writeback, and it also won't
4816 * go away while we have the reference count on the
4817 * eb bumped.
4818 *
4819 * We can't just set the ref bit without bumping the
4820 * ref on the eb because free_extent_buffer might
4821 * see the ref bit and try to clear it. If this happens
4822 * free_extent_buffer might end up dropping our original
4823 * ref by mistake and freeing the page before we are able
4824 * to add one more ref.
4825 *
4826 * So bump the ref count first, then set the bit. If someone
4827 * beat us to it, drop the ref we added.
4828 */
Chris Mason242e18c2013-01-29 17:49:37 -05004829 refs = atomic_read(&eb->refs);
4830 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4831 return;
4832
Josef Bacik594831c2012-07-20 16:11:08 -04004833 spin_lock(&eb->refs_lock);
4834 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004835 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004836 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004837}
4838
Mel Gorman2457aec2014-06-04 16:10:31 -07004839static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4840 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004841{
4842 unsigned long num_pages, i;
4843
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004844 check_buffer_tree_ref(eb);
4845
Josef Bacik5df42352012-03-15 18:24:42 -04004846 num_pages = num_extent_pages(eb->start, eb->len);
4847 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004848 struct page *p = eb->pages[i];
4849
Mel Gorman2457aec2014-06-04 16:10:31 -07004850 if (p != accessed)
4851 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004852 }
4853}
4854
Josef Bacikf28491e2013-12-16 13:24:27 -05004855struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4856 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004857{
4858 struct extent_buffer *eb;
4859
4860 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004861 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004862 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004863 if (eb && atomic_inc_not_zero(&eb->refs)) {
4864 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004865 /*
4866 * Lock our eb's refs_lock to avoid races with
4867 * free_extent_buffer. When we get our eb it might be flagged
4868 * with EXTENT_BUFFER_STALE and another task running
4869 * free_extent_buffer might have seen that flag set,
4870 * eb->refs == 2, that the buffer isn't under IO (dirty and
4871 * writeback flags not set) and it's still in the tree (flag
4872 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4873 * of decrementing the extent buffer's reference count twice.
4874 * So here we could race and increment the eb's reference count,
4875 * clear its stale flag, mark it as dirty and drop our reference
4876 * before the other task finishes executing free_extent_buffer,
4877 * which would later result in an attempt to free an extent
4878 * buffer that is dirty.
4879 */
4880 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4881 spin_lock(&eb->refs_lock);
4882 spin_unlock(&eb->refs_lock);
4883 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004884 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004885 return eb;
4886 }
4887 rcu_read_unlock();
4888
4889 return NULL;
4890}
4891
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004892#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4893struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004894 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004895{
4896 struct extent_buffer *eb, *exists = NULL;
4897 int ret;
4898
4899 eb = find_extent_buffer(fs_info, start);
4900 if (eb)
4901 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004902 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004903 if (!eb)
4904 return NULL;
4905 eb->fs_info = fs_info;
4906again:
David Sterbae1860a72016-05-09 14:11:38 +02004907 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004908 if (ret)
4909 goto free_eb;
4910 spin_lock(&fs_info->buffer_lock);
4911 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004912 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004913 spin_unlock(&fs_info->buffer_lock);
4914 radix_tree_preload_end();
4915 if (ret == -EEXIST) {
4916 exists = find_extent_buffer(fs_info, start);
4917 if (exists)
4918 goto free_eb;
4919 else
4920 goto again;
4921 }
4922 check_buffer_tree_ref(eb);
4923 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4924
4925 /*
4926 * We will free dummy extent buffer's if they come into
4927 * free_extent_buffer with a ref count of 2, but if we are using this we
4928 * want the buffers to stay in memory until we're done with them, so
4929 * bump the ref count again.
4930 */
4931 atomic_inc(&eb->refs);
4932 return eb;
4933free_eb:
4934 btrfs_release_extent_buffer(eb);
4935 return exists;
4936}
4937#endif
4938
Josef Bacikf28491e2013-12-16 13:24:27 -05004939struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004940 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004941{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004942 unsigned long len = fs_info->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004943 unsigned long num_pages = num_extent_pages(start, len);
4944 unsigned long i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004945 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004946 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004947 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004948 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004949 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004950 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004951 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004952
Jeff Mahoneyda170662016-06-15 09:22:56 -04004953 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004954 btrfs_err(fs_info, "bad tree block start %llu", start);
4955 return ERR_PTR(-EINVAL);
4956 }
4957
Josef Bacikf28491e2013-12-16 13:24:27 -05004958 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004959 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004960 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004961
David Sterba23d79d82014-06-15 02:55:29 +02004962 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004963 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004964 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004965
Chris Mason727011e2010-08-06 13:21:20 -04004966 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004967 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004968 if (!p) {
4969 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004970 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004971 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004972
4973 spin_lock(&mapping->private_lock);
4974 if (PagePrivate(p)) {
4975 /*
4976 * We could have already allocated an eb for this page
4977 * and attached one so lets see if we can get a ref on
4978 * the existing eb, and if we can we know it's good and
4979 * we can just return that one, else we know we can just
4980 * overwrite page->private.
4981 */
4982 exists = (struct extent_buffer *)p->private;
4983 if (atomic_inc_not_zero(&exists->refs)) {
4984 spin_unlock(&mapping->private_lock);
4985 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004986 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004987 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004988 goto free_eb;
4989 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004990 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004991
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004992 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004993 * Do this so attach doesn't complain and we need to
4994 * drop the ref the old guy had.
4995 */
4996 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004997 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004998 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05004999 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005000 attach_extent_buffer_page(eb, p);
5001 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005002 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005003 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005004 if (!PageUptodate(p))
5005 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005006
5007 /*
5008 * see below about how we avoid a nasty race with release page
5009 * and why we unlock later
5010 */
Chris Masond1310b22008-01-24 16:13:08 -05005011 }
5012 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005013 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005014again:
David Sterbae1860a72016-05-09 14:11:38 +02005015 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07005016 if (ret) {
5017 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04005018 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07005019 }
Miao Xie19fe0a82010-10-26 20:57:29 -04005020
Josef Bacikf28491e2013-12-16 13:24:27 -05005021 spin_lock(&fs_info->buffer_lock);
5022 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005023 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05005024 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005025 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005026 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005027 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005028 if (exists)
5029 goto free_eb;
5030 else
Josef Bacik115391d2012-03-09 09:51:43 -05005031 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005032 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005033 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005034 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005035 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005036
5037 /*
5038 * there is a race where release page may have
5039 * tried to find this extent buffer in the radix
5040 * but failed. It will tell the VM it is safe to
5041 * reclaim the, and it will clear the page private bit.
5042 * We must make sure to set the page private bit properly
5043 * after the extent buffer is in the radix tree so
5044 * it doesn't get lost
5045 */
Chris Mason727011e2010-08-06 13:21:20 -04005046 SetPageChecked(eb->pages[0]);
5047 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005048 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005049 ClearPageChecked(p);
5050 unlock_page(p);
5051 }
5052 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005053 return eb;
5054
Chris Mason6af118ce2008-07-22 11:18:07 -04005055free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005056 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005057 for (i = 0; i < num_pages; i++) {
5058 if (eb->pages[i])
5059 unlock_page(eb->pages[i]);
5060 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005061
Miao Xie897ca6e92010-10-26 20:57:29 -04005062 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005063 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005064}
Chris Masond1310b22008-01-24 16:13:08 -05005065
Josef Bacik3083ee22012-03-09 16:01:49 -05005066static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5067{
5068 struct extent_buffer *eb =
5069 container_of(head, struct extent_buffer, rcu_head);
5070
5071 __free_extent_buffer(eb);
5072}
5073
Josef Bacik3083ee22012-03-09 16:01:49 -05005074/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005075static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005076{
5077 WARN_ON(atomic_read(&eb->refs) == 0);
5078 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005079 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005080 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005081
Jan Schmidt815a51c2012-05-16 17:00:02 +02005082 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005083
Josef Bacikf28491e2013-12-16 13:24:27 -05005084 spin_lock(&fs_info->buffer_lock);
5085 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005086 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005087 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005088 } else {
5089 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005090 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005091
5092 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005093 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005094#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5095 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5096 __free_extent_buffer(eb);
5097 return 1;
5098 }
5099#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005100 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005101 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005102 }
5103 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005104
5105 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005106}
5107
Chris Masond1310b22008-01-24 16:13:08 -05005108void free_extent_buffer(struct extent_buffer *eb)
5109{
Chris Mason242e18c2013-01-29 17:49:37 -05005110 int refs;
5111 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005112 if (!eb)
5113 return;
5114
Chris Mason242e18c2013-01-29 17:49:37 -05005115 while (1) {
5116 refs = atomic_read(&eb->refs);
5117 if (refs <= 3)
5118 break;
5119 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5120 if (old == refs)
5121 return;
5122 }
5123
Josef Bacik3083ee22012-03-09 16:01:49 -05005124 spin_lock(&eb->refs_lock);
5125 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005126 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5127 atomic_dec(&eb->refs);
5128
5129 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005130 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005131 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005132 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5133 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005134
Josef Bacik3083ee22012-03-09 16:01:49 -05005135 /*
5136 * I know this is terrible, but it's temporary until we stop tracking
5137 * the uptodate bits and such for the extent buffers.
5138 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005139 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005140}
Chris Masond1310b22008-01-24 16:13:08 -05005141
Josef Bacik3083ee22012-03-09 16:01:49 -05005142void free_extent_buffer_stale(struct extent_buffer *eb)
5143{
5144 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005145 return;
5146
Josef Bacik3083ee22012-03-09 16:01:49 -05005147 spin_lock(&eb->refs_lock);
5148 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5149
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005150 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005151 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5152 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005153 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005154}
5155
Chris Mason1d4284b2012-03-28 20:31:37 -04005156void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005157{
Chris Masond1310b22008-01-24 16:13:08 -05005158 unsigned long i;
5159 unsigned long num_pages;
5160 struct page *page;
5161
Chris Masond1310b22008-01-24 16:13:08 -05005162 num_pages = num_extent_pages(eb->start, eb->len);
5163
5164 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005165 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005166 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005167 continue;
5168
Chris Masona61e6f22008-07-22 11:18:08 -04005169 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005170 WARN_ON(!PagePrivate(page));
5171
Chris Masond1310b22008-01-24 16:13:08 -05005172 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005173 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005174 if (!PageDirty(page)) {
5175 radix_tree_tag_clear(&page->mapping->page_tree,
5176 page_index(page),
5177 PAGECACHE_TAG_DIRTY);
5178 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005179 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005180 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005181 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005182 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005183 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005184}
Chris Masond1310b22008-01-24 16:13:08 -05005185
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005186int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005187{
5188 unsigned long i;
5189 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005190 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005191
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005192 check_buffer_tree_ref(eb);
5193
Chris Masonb9473432009-03-13 11:00:37 -04005194 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005195
Chris Masond1310b22008-01-24 16:13:08 -05005196 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005197 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005198 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5199
Chris Masonb9473432009-03-13 11:00:37 -04005200 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005201 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005202 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005203}
Chris Masond1310b22008-01-24 16:13:08 -05005204
David Sterba69ba3922015-12-03 13:08:59 +01005205void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005206{
5207 unsigned long i;
5208 struct page *page;
5209 unsigned long num_pages;
5210
Chris Masonb4ce94d2009-02-04 09:25:08 -05005211 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005212 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005213 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005214 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005215 if (page)
5216 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005217 }
Chris Mason1259ab72008-05-12 13:39:03 -04005218}
5219
David Sterba09c25a82015-12-03 13:08:59 +01005220void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005221{
5222 unsigned long i;
5223 struct page *page;
5224 unsigned long num_pages;
5225
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005226 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005227 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005228 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005229 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005230 SetPageUptodate(page);
5231 }
Chris Masond1310b22008-01-24 16:13:08 -05005232}
Chris Masond1310b22008-01-24 16:13:08 -05005233
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005234int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005235{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005236 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005237}
Chris Masond1310b22008-01-24 16:13:08 -05005238
5239int read_extent_buffer_pages(struct extent_io_tree *tree,
Josef Bacik8436ea912016-09-02 15:40:03 -04005240 struct extent_buffer *eb, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005241 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005242{
5243 unsigned long i;
Chris Masond1310b22008-01-24 16:13:08 -05005244 struct page *page;
5245 int err;
5246 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005247 int locked_pages = 0;
5248 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005249 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005250 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005251 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005252 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005253
Chris Masonb4ce94d2009-02-04 09:25:08 -05005254 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005255 return 0;
5256
Chris Masond1310b22008-01-24 16:13:08 -05005257 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik8436ea912016-09-02 15:40:03 -04005258 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005259 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005260 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005261 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005262 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005263 } else {
5264 lock_page(page);
5265 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005266 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005267 }
5268 /*
5269 * We need to firstly lock all pages to make sure that
5270 * the uptodate bit of our pages won't be affected by
5271 * clear_extent_buffer_uptodate().
5272 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005273 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005274 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005275 if (!PageUptodate(page)) {
5276 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005277 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005278 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005279 }
Liu Bo2571e732016-08-03 12:33:01 -07005280
Chris Masonce9adaa2008-04-09 16:28:12 -04005281 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005282 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005283 goto unlock_exit;
5284 }
5285
Filipe Manana656f30d2014-09-26 12:25:56 +01005286 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005287 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005288 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005289 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005290 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005291
Chris Masonce9adaa2008-04-09 16:28:12 -04005292 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005293 if (ret) {
5294 atomic_dec(&eb->io_pages);
5295 unlock_page(page);
5296 continue;
5297 }
5298
Chris Masonf1885912008-04-09 16:28:12 -04005299 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005300 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005301 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005302 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005303 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005304 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005305 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005306 /*
5307 * We use &bio in above __extent_read_full_page,
5308 * so we ensure that if it returns error, the
5309 * current page fails to add itself to bio and
5310 * it's been unlocked.
5311 *
5312 * We must dec io_pages by ourselves.
5313 */
5314 atomic_dec(&eb->io_pages);
5315 }
Chris Masond1310b22008-01-24 16:13:08 -05005316 } else {
5317 unlock_page(page);
5318 }
5319 }
5320
Jeff Mahoney355808c2011-10-03 23:23:14 -04005321 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005322 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005323 if (err)
5324 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005325 }
Chris Masona86c12c2008-02-07 10:50:54 -05005326
Arne Jansenbb82ab82011-06-10 14:06:53 +02005327 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005328 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005329
Josef Bacik8436ea912016-09-02 15:40:03 -04005330 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005331 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005332 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005333 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005334 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005335 }
Chris Masond3977122009-01-05 21:25:51 -05005336
Chris Masond1310b22008-01-24 16:13:08 -05005337 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005338
5339unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005340 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005341 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005342 page = eb->pages[locked_pages];
5343 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005344 }
5345 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005346}
Chris Masond1310b22008-01-24 16:13:08 -05005347
5348void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5349 unsigned long start,
5350 unsigned long len)
5351{
5352 size_t cur;
5353 size_t offset;
5354 struct page *page;
5355 char *kaddr;
5356 char *dst = (char *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005357 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5358 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005359
5360 WARN_ON(start > eb->len);
5361 WARN_ON(start + len > eb->start + eb->len);
5362
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005363 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005364
Chris Masond3977122009-01-05 21:25:51 -05005365 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005366 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005367
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005368 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005369 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005370 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005371
5372 dst += cur;
5373 len -= cur;
5374 offset = 0;
5375 i++;
5376 }
5377}
Chris Masond1310b22008-01-24 16:13:08 -05005378
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005379int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5380 unsigned long start,
5381 unsigned long len)
5382{
5383 size_t cur;
5384 size_t offset;
5385 struct page *page;
5386 char *kaddr;
5387 char __user *dst = (char __user *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005388 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5389 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005390 int ret = 0;
5391
5392 WARN_ON(start > eb->len);
5393 WARN_ON(start + len > eb->start + eb->len);
5394
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005395 offset = (start_offset + start) & (PAGE_SIZE - 1);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005396
5397 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005398 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005399
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005400 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005401 kaddr = page_address(page);
5402 if (copy_to_user(dst, kaddr + offset, cur)) {
5403 ret = -EFAULT;
5404 break;
5405 }
5406
5407 dst += cur;
5408 len -= cur;
5409 offset = 0;
5410 i++;
5411 }
5412
5413 return ret;
5414}
5415
Liu Bo415b35a2016-06-17 19:16:21 -07005416/*
5417 * return 0 if the item is found within a page.
5418 * return 1 if the item spans two pages.
5419 * return -EINVAL otherwise.
5420 */
Chris Masond1310b22008-01-24 16:13:08 -05005421int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005422 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005423 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005424 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005425{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005426 size_t offset = start & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005427 char *kaddr;
5428 struct page *p;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005429 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5430 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005431 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005432 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005433
5434 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005435 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005436
5437 if (i == 0) {
5438 offset = start_offset;
5439 *map_start = 0;
5440 } else {
5441 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005442 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005443 }
Chris Masond3977122009-01-05 21:25:51 -05005444
Chris Masond1310b22008-01-24 16:13:08 -05005445 if (start + min_len > eb->len) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005446 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005447 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005448 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005449 }
5450
David Sterbafb85fc92014-07-31 01:03:53 +02005451 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005452 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005453 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005454 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005455 return 0;
5456}
Chris Masond1310b22008-01-24 16:13:08 -05005457
Chris Masond1310b22008-01-24 16:13:08 -05005458int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5459 unsigned long start,
5460 unsigned long len)
5461{
5462 size_t cur;
5463 size_t offset;
5464 struct page *page;
5465 char *kaddr;
5466 char *ptr = (char *)ptrv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005467 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5468 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005469 int ret = 0;
5470
5471 WARN_ON(start > eb->len);
5472 WARN_ON(start + len > eb->start + eb->len);
5473
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005474 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005475
Chris Masond3977122009-01-05 21:25:51 -05005476 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005477 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005478
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005479 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005480
Chris Masona6591712011-07-19 12:04:14 -04005481 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005482 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005483 if (ret)
5484 break;
5485
5486 ptr += cur;
5487 len -= cur;
5488 offset = 0;
5489 i++;
5490 }
5491 return ret;
5492}
Chris Masond1310b22008-01-24 16:13:08 -05005493
David Sterbaf157bf72016-11-09 17:43:38 +01005494void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5495 const void *srcv)
5496{
5497 char *kaddr;
5498
5499 WARN_ON(!PageUptodate(eb->pages[0]));
5500 kaddr = page_address(eb->pages[0]);
5501 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5502 BTRFS_FSID_SIZE);
5503}
5504
5505void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5506{
5507 char *kaddr;
5508
5509 WARN_ON(!PageUptodate(eb->pages[0]));
5510 kaddr = page_address(eb->pages[0]);
5511 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5512 BTRFS_FSID_SIZE);
5513}
5514
Chris Masond1310b22008-01-24 16:13:08 -05005515void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5516 unsigned long start, unsigned long len)
5517{
5518 size_t cur;
5519 size_t offset;
5520 struct page *page;
5521 char *kaddr;
5522 char *src = (char *)srcv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005523 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5524 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005525
5526 WARN_ON(start > eb->len);
5527 WARN_ON(start + len > eb->start + eb->len);
5528
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005529 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005530
Chris Masond3977122009-01-05 21:25:51 -05005531 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005532 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005533 WARN_ON(!PageUptodate(page));
5534
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005535 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005536 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005537 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005538
5539 src += cur;
5540 len -= cur;
5541 offset = 0;
5542 i++;
5543 }
5544}
Chris Masond1310b22008-01-24 16:13:08 -05005545
David Sterbab159fa22016-11-08 18:09:03 +01005546void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5547 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005548{
5549 size_t cur;
5550 size_t offset;
5551 struct page *page;
5552 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005553 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5554 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005555
5556 WARN_ON(start > eb->len);
5557 WARN_ON(start + len > eb->start + eb->len);
5558
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005559 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005560
Chris Masond3977122009-01-05 21:25:51 -05005561 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005562 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005563 WARN_ON(!PageUptodate(page));
5564
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005565 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005566 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005567 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005568
5569 len -= cur;
5570 offset = 0;
5571 i++;
5572 }
5573}
Chris Masond1310b22008-01-24 16:13:08 -05005574
David Sterba58e80122016-11-08 18:30:31 +01005575void copy_extent_buffer_full(struct extent_buffer *dst,
5576 struct extent_buffer *src)
5577{
5578 int i;
5579 unsigned num_pages;
5580
5581 ASSERT(dst->len == src->len);
5582
5583 num_pages = num_extent_pages(dst->start, dst->len);
5584 for (i = 0; i < num_pages; i++)
5585 copy_page(page_address(dst->pages[i]),
5586 page_address(src->pages[i]));
5587}
5588
Chris Masond1310b22008-01-24 16:13:08 -05005589void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5590 unsigned long dst_offset, unsigned long src_offset,
5591 unsigned long len)
5592{
5593 u64 dst_len = dst->len;
5594 size_t cur;
5595 size_t offset;
5596 struct page *page;
5597 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005598 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
5599 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005600
5601 WARN_ON(src->len != dst_len);
5602
5603 offset = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005604 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005605
Chris Masond3977122009-01-05 21:25:51 -05005606 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005607 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005608 WARN_ON(!PageUptodate(page));
5609
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005610 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005611
Chris Masona6591712011-07-19 12:04:14 -04005612 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005613 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005614
5615 src_offset += cur;
5616 len -= cur;
5617 offset = 0;
5618 i++;
5619 }
5620}
Chris Masond1310b22008-01-24 16:13:08 -05005621
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005622void le_bitmap_set(u8 *map, unsigned int start, int len)
5623{
5624 u8 *p = map + BIT_BYTE(start);
5625 const unsigned int size = start + len;
5626 int bits_to_set = BITS_PER_BYTE - (start % BITS_PER_BYTE);
5627 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(start);
5628
5629 while (len - bits_to_set >= 0) {
5630 *p |= mask_to_set;
5631 len -= bits_to_set;
5632 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005633 mask_to_set = ~0;
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005634 p++;
5635 }
5636 if (len) {
5637 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5638 *p |= mask_to_set;
5639 }
5640}
5641
5642void le_bitmap_clear(u8 *map, unsigned int start, int len)
5643{
5644 u8 *p = map + BIT_BYTE(start);
5645 const unsigned int size = start + len;
5646 int bits_to_clear = BITS_PER_BYTE - (start % BITS_PER_BYTE);
5647 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(start);
5648
5649 while (len - bits_to_clear >= 0) {
5650 *p &= ~mask_to_clear;
5651 len -= bits_to_clear;
5652 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005653 mask_to_clear = ~0;
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005654 p++;
5655 }
5656 if (len) {
5657 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5658 *p &= ~mask_to_clear;
5659 }
5660}
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005661
5662/*
5663 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5664 * given bit number
5665 * @eb: the extent buffer
5666 * @start: offset of the bitmap item in the extent buffer
5667 * @nr: bit number
5668 * @page_index: return index of the page in the extent buffer that contains the
5669 * given bit number
5670 * @page_offset: return offset into the page given by page_index
5671 *
5672 * This helper hides the ugliness of finding the byte in an extent buffer which
5673 * contains a given bit.
5674 */
5675static inline void eb_bitmap_offset(struct extent_buffer *eb,
5676 unsigned long start, unsigned long nr,
5677 unsigned long *page_index,
5678 size_t *page_offset)
5679{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005680 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005681 size_t byte_offset = BIT_BYTE(nr);
5682 size_t offset;
5683
5684 /*
5685 * The byte we want is the offset of the extent buffer + the offset of
5686 * the bitmap item in the extent buffer + the offset of the byte in the
5687 * bitmap item.
5688 */
5689 offset = start_offset + start + byte_offset;
5690
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005691 *page_index = offset >> PAGE_SHIFT;
5692 *page_offset = offset & (PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005693}
5694
5695/**
5696 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5697 * @eb: the extent buffer
5698 * @start: offset of the bitmap item in the extent buffer
5699 * @nr: bit number to test
5700 */
5701int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5702 unsigned long nr)
5703{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005704 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005705 struct page *page;
5706 unsigned long i;
5707 size_t offset;
5708
5709 eb_bitmap_offset(eb, start, nr, &i, &offset);
5710 page = eb->pages[i];
5711 WARN_ON(!PageUptodate(page));
5712 kaddr = page_address(page);
5713 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5714}
5715
5716/**
5717 * extent_buffer_bitmap_set - set an area of a bitmap
5718 * @eb: the extent buffer
5719 * @start: offset of the bitmap item in the extent buffer
5720 * @pos: bit number of the first bit
5721 * @len: number of bits to set
5722 */
5723void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5724 unsigned long pos, unsigned long len)
5725{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005726 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005727 struct page *page;
5728 unsigned long i;
5729 size_t offset;
5730 const unsigned int size = pos + len;
5731 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005732 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005733
5734 eb_bitmap_offset(eb, start, pos, &i, &offset);
5735 page = eb->pages[i];
5736 WARN_ON(!PageUptodate(page));
5737 kaddr = page_address(page);
5738
5739 while (len >= bits_to_set) {
5740 kaddr[offset] |= mask_to_set;
5741 len -= bits_to_set;
5742 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005743 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005744 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005745 offset = 0;
5746 page = eb->pages[++i];
5747 WARN_ON(!PageUptodate(page));
5748 kaddr = page_address(page);
5749 }
5750 }
5751 if (len) {
5752 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5753 kaddr[offset] |= mask_to_set;
5754 }
5755}
5756
5757
5758/**
5759 * extent_buffer_bitmap_clear - clear an area of a bitmap
5760 * @eb: the extent buffer
5761 * @start: offset of the bitmap item in the extent buffer
5762 * @pos: bit number of the first bit
5763 * @len: number of bits to clear
5764 */
5765void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5766 unsigned long pos, unsigned long len)
5767{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005768 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005769 struct page *page;
5770 unsigned long i;
5771 size_t offset;
5772 const unsigned int size = pos + len;
5773 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005774 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005775
5776 eb_bitmap_offset(eb, start, pos, &i, &offset);
5777 page = eb->pages[i];
5778 WARN_ON(!PageUptodate(page));
5779 kaddr = page_address(page);
5780
5781 while (len >= bits_to_clear) {
5782 kaddr[offset] &= ~mask_to_clear;
5783 len -= bits_to_clear;
5784 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005785 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005786 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005787 offset = 0;
5788 page = eb->pages[++i];
5789 WARN_ON(!PageUptodate(page));
5790 kaddr = page_address(page);
5791 }
5792 }
5793 if (len) {
5794 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5795 kaddr[offset] &= ~mask_to_clear;
5796 }
5797}
5798
Sergei Trofimovich33872062011-04-11 21:52:52 +00005799static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5800{
5801 unsigned long distance = (src > dst) ? src - dst : dst - src;
5802 return distance < len;
5803}
5804
Chris Masond1310b22008-01-24 16:13:08 -05005805static void copy_pages(struct page *dst_page, struct page *src_page,
5806 unsigned long dst_off, unsigned long src_off,
5807 unsigned long len)
5808{
Chris Masona6591712011-07-19 12:04:14 -04005809 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005810 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005811 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005812
Sergei Trofimovich33872062011-04-11 21:52:52 +00005813 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005814 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005815 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005816 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005817 if (areas_overlap(src_off, dst_off, len))
5818 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005819 }
Chris Masond1310b22008-01-24 16:13:08 -05005820
Chris Mason727011e2010-08-06 13:21:20 -04005821 if (must_memmove)
5822 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5823 else
5824 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005825}
5826
5827void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5828 unsigned long src_offset, unsigned long len)
5829{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005830 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005831 size_t cur;
5832 size_t dst_off_in_page;
5833 size_t src_off_in_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005834 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005835 unsigned long dst_i;
5836 unsigned long src_i;
5837
5838 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005839 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005840 "memmove bogus src_offset %lu move len %lu dst len %lu",
5841 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005842 BUG_ON(1);
5843 }
5844 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005845 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005846 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5847 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005848 BUG_ON(1);
5849 }
5850
Chris Masond3977122009-01-05 21:25:51 -05005851 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005852 dst_off_in_page = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005853 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005854 src_off_in_page = (start_offset + src_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005855 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005856
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005857 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5858 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005859
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005860 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005861 src_off_in_page));
5862 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005863 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005864
David Sterbafb85fc92014-07-31 01:03:53 +02005865 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005866 dst_off_in_page, src_off_in_page, cur);
5867
5868 src_offset += cur;
5869 dst_offset += cur;
5870 len -= cur;
5871 }
5872}
Chris Masond1310b22008-01-24 16:13:08 -05005873
5874void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5875 unsigned long src_offset, unsigned long len)
5876{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005877 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005878 size_t cur;
5879 size_t dst_off_in_page;
5880 size_t src_off_in_page;
5881 unsigned long dst_end = dst_offset + len - 1;
5882 unsigned long src_end = src_offset + len - 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005883 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005884 unsigned long dst_i;
5885 unsigned long src_i;
5886
5887 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005888 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005889 "memmove bogus src_offset %lu move len %lu len %lu",
5890 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005891 BUG_ON(1);
5892 }
5893 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005894 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005895 "memmove bogus dst_offset %lu move len %lu len %lu",
5896 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005897 BUG_ON(1);
5898 }
Chris Mason727011e2010-08-06 13:21:20 -04005899 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005900 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5901 return;
5902 }
Chris Masond3977122009-01-05 21:25:51 -05005903 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005904 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5905 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005906
5907 dst_off_in_page = (start_offset + dst_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005908 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005909 src_off_in_page = (start_offset + src_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005910 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005911
5912 cur = min_t(unsigned long, len, src_off_in_page + 1);
5913 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005914 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005915 dst_off_in_page - cur + 1,
5916 src_off_in_page - cur + 1, cur);
5917
5918 dst_end -= cur;
5919 src_end -= cur;
5920 len -= cur;
5921 }
5922}
Chris Mason6af118ce2008-07-22 11:18:07 -04005923
David Sterbaf7a52a42013-04-26 14:56:29 +00005924int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005925{
Chris Mason6af118ce2008-07-22 11:18:07 -04005926 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005927
Miao Xie19fe0a82010-10-26 20:57:29 -04005928 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005929 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005930 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005931 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005932 spin_lock(&page->mapping->private_lock);
5933 if (!PagePrivate(page)) {
5934 spin_unlock(&page->mapping->private_lock);
5935 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005936 }
5937
Josef Bacik3083ee22012-03-09 16:01:49 -05005938 eb = (struct extent_buffer *)page->private;
5939 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005940
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005941 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005942 * This is a little awful but should be ok, we need to make sure that
5943 * the eb doesn't disappear out from under us while we're looking at
5944 * this page.
5945 */
5946 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005947 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005948 spin_unlock(&eb->refs_lock);
5949 spin_unlock(&page->mapping->private_lock);
5950 return 0;
5951 }
5952 spin_unlock(&page->mapping->private_lock);
5953
Josef Bacik3083ee22012-03-09 16:01:49 -05005954 /*
5955 * If tree ref isn't set then we know the ref on this eb is a real ref,
5956 * so just return, this page will likely be freed soon anyway.
5957 */
5958 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5959 spin_unlock(&eb->refs_lock);
5960 return 0;
5961 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005962
David Sterbaf7a52a42013-04-26 14:56:29 +00005963 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005964}