blob: bf9849909d46ee8e03cb92736a4e0ecfab2bb9f3 [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"
Chris Masond1310b22008-01-24 16:13:08 -050023
Chris Masond1310b22008-01-24 16:13:08 -050024static struct kmem_cache *extent_state_cache;
25static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040026static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050027
Filipe Manana27a35072014-07-06 20:09:59 +010028static inline bool extent_state_in_tree(const struct extent_state *state)
29{
30 return !RB_EMPTY_NODE(&state->rb_node);
31}
32
Eric Sandeen6d49ba12013-04-22 16:12:31 +000033#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050034static LIST_HEAD(buffers);
35static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040036
Chris Masond3977122009-01-05 21:25:51 -050037static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000038
39static inline
40void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
41{
42 unsigned long flags;
43
44 spin_lock_irqsave(&leak_lock, flags);
45 list_add(new, head);
46 spin_unlock_irqrestore(&leak_lock, flags);
47}
48
49static inline
50void btrfs_leak_debug_del(struct list_head *entry)
51{
52 unsigned long flags;
53
54 spin_lock_irqsave(&leak_lock, flags);
55 list_del(entry);
56 spin_unlock_irqrestore(&leak_lock, flags);
57}
58
59static inline
60void btrfs_leak_debug_check(void)
61{
62 struct extent_state *state;
63 struct extent_buffer *eb;
64
65 while (!list_empty(&states)) {
66 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010067 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010068 state->start, state->end, state->state,
69 extent_state_in_tree(state),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020070 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000071 list_del(&state->leak_list);
72 kmem_cache_free(extent_state_cache, state);
73 }
74
75 while (!list_empty(&buffers)) {
76 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Frank Holtonefe120a2013-12-20 11:37:06 -050077 printk(KERN_ERR "BTRFS: buffer leak start %llu len %lu "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020078 "refs %d\n",
79 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]",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200101 caller, btrfs_ino(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
130 /* tells the submit_bio code to use a WRITE_SYNC */
131 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,
166 SLAB_RECLAIM_ACCOUNT | 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,
172 SLAB_RECLAIM_ACCOUNT | 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();
Chris Masond1310b22008-01-24 16:13:08 -0500209 if (extent_state_cache)
210 kmem_cache_destroy(extent_state_cache);
211 if (extent_buffer_cache)
212 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400213 if (btrfs_bioset)
214 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500215}
216
217void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200218 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500219{
Eric Paris6bef4d32010-02-23 19:43:04 +0000220 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500221 tree->ops = NULL;
222 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500223 spin_lock_init(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500224 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500225}
Chris Masond1310b22008-01-24 16:13:08 -0500226
Christoph Hellwigb2950862008-12-02 09:54:17 -0500227static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500228{
229 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500230
231 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400232 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500233 return state;
234 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500235 state->private = 0;
Filipe Manana27a35072014-07-06 20:09:59 +0100236 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000237 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500238 atomic_set(&state->refs, 1);
239 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100240 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500241 return state;
242}
Chris Masond1310b22008-01-24 16:13:08 -0500243
Chris Mason4845e442010-05-25 20:56:50 -0400244void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500245{
Chris Masond1310b22008-01-24 16:13:08 -0500246 if (!state)
247 return;
248 if (atomic_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100249 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000250 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100251 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500252 kmem_cache_free(extent_state_cache, state);
253 }
254}
Chris Masond1310b22008-01-24 16:13:08 -0500255
Filipe Mananaf2071b22014-02-12 15:05:53 +0000256static struct rb_node *tree_insert(struct rb_root *root,
257 struct rb_node *search_start,
258 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000259 struct rb_node *node,
260 struct rb_node ***p_in,
261 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500262{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000263 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500264 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500265 struct tree_entry *entry;
266
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000267 if (p_in && parent_in) {
268 p = *p_in;
269 parent = *parent_in;
270 goto do_insert;
271 }
272
Filipe Mananaf2071b22014-02-12 15:05:53 +0000273 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500274 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500275 parent = *p;
276 entry = rb_entry(parent, struct tree_entry, rb_node);
277
278 if (offset < entry->start)
279 p = &(*p)->rb_left;
280 else if (offset > entry->end)
281 p = &(*p)->rb_right;
282 else
283 return parent;
284 }
285
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000286do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500287 rb_link_node(node, parent, p);
288 rb_insert_color(node, root);
289 return NULL;
290}
291
Chris Mason80ea96b2008-02-01 14:51:59 -0500292static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000293 struct rb_node **prev_ret,
294 struct rb_node **next_ret,
295 struct rb_node ***p_ret,
296 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500297{
Chris Mason80ea96b2008-02-01 14:51:59 -0500298 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000299 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500300 struct rb_node *prev = NULL;
301 struct rb_node *orig_prev = NULL;
302 struct tree_entry *entry;
303 struct tree_entry *prev_entry = NULL;
304
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000305 while (*n) {
306 prev = *n;
307 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500308 prev_entry = entry;
309
310 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000311 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500312 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000313 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500314 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000315 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500316 }
317
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000318 if (p_ret)
319 *p_ret = n;
320 if (parent_ret)
321 *parent_ret = prev;
322
Chris Masond1310b22008-01-24 16:13:08 -0500323 if (prev_ret) {
324 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500325 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500326 prev = rb_next(prev);
327 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
328 }
329 *prev_ret = prev;
330 prev = orig_prev;
331 }
332
333 if (next_ret) {
334 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500335 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500336 prev = rb_prev(prev);
337 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
338 }
339 *next_ret = prev;
340 }
341 return NULL;
342}
343
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000344static inline struct rb_node *
345tree_search_for_insert(struct extent_io_tree *tree,
346 u64 offset,
347 struct rb_node ***p_ret,
348 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500349{
Chris Mason70dec802008-01-29 09:59:12 -0500350 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500351 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500352
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000353 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500354 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500355 return prev;
356 return ret;
357}
358
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000359static inline struct rb_node *tree_search(struct extent_io_tree *tree,
360 u64 offset)
361{
362 return tree_search_for_insert(tree, offset, NULL, NULL);
363}
364
Josef Bacik9ed74f22009-09-11 16:12:44 -0400365static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
366 struct extent_state *other)
367{
368 if (tree->ops && tree->ops->merge_extent_hook)
369 tree->ops->merge_extent_hook(tree->mapping->host, new,
370 other);
371}
372
Chris Masond1310b22008-01-24 16:13:08 -0500373/*
374 * utility function to look for merge candidates inside a given range.
375 * Any extents with matching state are merged together into a single
376 * extent in the tree. Extents with EXTENT_IO in their state field
377 * are not merged because the end_io handlers need to be able to do
378 * operations on them without sleeping (or doing allocations/splits).
379 *
380 * This should be called with the tree lock held.
381 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000382static void merge_state(struct extent_io_tree *tree,
383 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500384{
385 struct extent_state *other;
386 struct rb_node *other_node;
387
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400388 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000389 return;
Chris Masond1310b22008-01-24 16:13:08 -0500390
391 other_node = rb_prev(&state->rb_node);
392 if (other_node) {
393 other = rb_entry(other_node, struct extent_state, rb_node);
394 if (other->end == state->start - 1 &&
395 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400396 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500397 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500398 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100399 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500400 free_extent_state(other);
401 }
402 }
403 other_node = rb_next(&state->rb_node);
404 if (other_node) {
405 other = rb_entry(other_node, struct extent_state, rb_node);
406 if (other->start == state->end + 1 &&
407 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400408 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400409 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400410 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100411 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400412 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500413 }
414 }
Chris Masond1310b22008-01-24 16:13:08 -0500415}
416
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000417static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100418 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500419{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000420 if (tree->ops && tree->ops->set_bit_hook)
421 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500422}
423
424static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100425 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500426{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400427 if (tree->ops && tree->ops->clear_bit_hook)
428 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500429}
430
Xiao Guangrong3150b692011-07-14 03:19:08 +0000431static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800432 struct extent_state *state, unsigned *bits,
433 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000434
Chris Masond1310b22008-01-24 16:13:08 -0500435/*
436 * insert an extent_state struct into the tree. 'bits' are set on the
437 * struct before it is inserted.
438 *
439 * This may return -EEXIST if the extent is already there, in which case the
440 * state struct is freed.
441 *
442 * The tree lock is not taken internally. This is a utility function and
443 * probably isn't what you want to call (see set/clear_extent_bit).
444 */
445static int insert_state(struct extent_io_tree *tree,
446 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000447 struct rb_node ***p,
448 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800449 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500450{
451 struct rb_node *node;
452
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000453 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500454 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200455 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500456 state->start = start;
457 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400458
Qu Wenruod38ed272015-10-12 14:53:37 +0800459 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000460
Filipe Mananaf2071b22014-02-12 15:05:53 +0000461 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500462 if (node) {
463 struct extent_state *found;
464 found = rb_entry(node, struct extent_state, rb_node);
Frank Holtonefe120a2013-12-20 11:37:06 -0500465 printk(KERN_ERR "BTRFS: found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200466 "%llu %llu\n",
467 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500468 return -EEXIST;
469 }
470 merge_state(tree, state);
471 return 0;
472}
473
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000474static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400475 u64 split)
476{
477 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000478 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400479}
480
Chris Masond1310b22008-01-24 16:13:08 -0500481/*
482 * split a given extent state struct in two, inserting the preallocated
483 * struct 'prealloc' as the newly created second half. 'split' indicates an
484 * offset inside 'orig' where it should be split.
485 *
486 * Before calling,
487 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
488 * are two extent state structs in the tree:
489 * prealloc: [orig->start, split - 1]
490 * orig: [ split, orig->end ]
491 *
492 * The tree locks are not taken by this function. They need to be held
493 * by the caller.
494 */
495static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
496 struct extent_state *prealloc, u64 split)
497{
498 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400499
500 split_cb(tree, orig, split);
501
Chris Masond1310b22008-01-24 16:13:08 -0500502 prealloc->start = orig->start;
503 prealloc->end = split - 1;
504 prealloc->state = orig->state;
505 orig->start = split;
506
Filipe Mananaf2071b22014-02-12 15:05:53 +0000507 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
508 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500509 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500510 free_extent_state(prealloc);
511 return -EEXIST;
512 }
513 return 0;
514}
515
Li Zefancdc6a392012-03-12 16:39:48 +0800516static struct extent_state *next_state(struct extent_state *state)
517{
518 struct rb_node *next = rb_next(&state->rb_node);
519 if (next)
520 return rb_entry(next, struct extent_state, rb_node);
521 else
522 return NULL;
523}
524
Chris Masond1310b22008-01-24 16:13:08 -0500525/*
526 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800527 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500528 *
529 * If no bits are set on the state struct after clearing things, the
530 * struct is freed and removed from the tree
531 */
Li Zefancdc6a392012-03-12 16:39:48 +0800532static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
533 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800534 unsigned *bits, int wake,
535 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500536{
Li Zefancdc6a392012-03-12 16:39:48 +0800537 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100538 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500539
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400540 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500541 u64 range = state->end - state->start + 1;
542 WARN_ON(range > tree->dirty_bytes);
543 tree->dirty_bytes -= range;
544 }
Chris Mason291d6732008-01-29 15:55:23 -0500545 clear_state_cb(tree, state, bits);
Qu Wenruofefdc552015-10-12 15:35:38 +0800546 add_extent_changeset(state, bits_to_clear, changeset, 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400547 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500548 if (wake)
549 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400550 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800551 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100552 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500553 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100554 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500555 free_extent_state(state);
556 } else {
557 WARN_ON(1);
558 }
559 } else {
560 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800561 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500562 }
Li Zefancdc6a392012-03-12 16:39:48 +0800563 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500564}
565
Xiao Guangrong82337672011-04-20 06:44:57 +0000566static struct extent_state *
567alloc_extent_state_atomic(struct extent_state *prealloc)
568{
569 if (!prealloc)
570 prealloc = alloc_extent_state(GFP_ATOMIC);
571
572 return prealloc;
573}
574
Eric Sandeen48a3b632013-04-25 20:41:01 +0000575static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400576{
577 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
578 "Extent tree was modified by another "
579 "thread while locked.");
580}
581
Chris Masond1310b22008-01-24 16:13:08 -0500582/*
583 * clear some bits on a range in the tree. This may require splitting
584 * or inserting elements in the tree, so the gfp mask is used to
585 * indicate which allocations or sleeping are allowed.
586 *
587 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
588 * the given range from the tree regardless of state (ie for truncate).
589 *
590 * the range [start, end] is inclusive.
591 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100592 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500593 */
Qu Wenruofefdc552015-10-12 15:35:38 +0800594static int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
595 unsigned bits, int wake, int delete,
596 struct extent_state **cached_state,
597 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500598{
599 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400600 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500601 struct extent_state *prealloc = NULL;
602 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400603 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500604 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000605 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500606
Josef Bacika5dee372013-12-13 10:02:44 -0500607 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000608
Josef Bacik7ee9e442013-06-21 16:37:03 -0400609 if (bits & EXTENT_DELALLOC)
610 bits |= EXTENT_NORESERVE;
611
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400612 if (delete)
613 bits |= ~EXTENT_CTLBITS;
614 bits |= EXTENT_FIRST_DELALLOC;
615
Josef Bacik2ac55d42010-02-03 19:33:23 +0000616 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
617 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500618again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800619 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000620 /*
621 * Don't care for allocation failure here because we might end
622 * up not needing the pre-allocated extent state at all, which
623 * is the case if we only have in the tree extent states that
624 * cover our input range and don't cover too any other range.
625 * If we end up needing a new extent state we allocate it later.
626 */
Chris Masond1310b22008-01-24 16:13:08 -0500627 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500628 }
629
Chris Masoncad321a2008-12-17 14:51:42 -0500630 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400631 if (cached_state) {
632 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000633
634 if (clear) {
635 *cached_state = NULL;
636 cached_state = NULL;
637 }
638
Filipe Manana27a35072014-07-06 20:09:59 +0100639 if (cached && extent_state_in_tree(cached) &&
640 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000641 if (clear)
642 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400643 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400644 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400645 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000646 if (clear)
647 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400648 }
Chris Masond1310b22008-01-24 16:13:08 -0500649 /*
650 * this search will find the extents that end after
651 * our range starts
652 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500653 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500654 if (!node)
655 goto out;
656 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400657hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500658 if (state->start > end)
659 goto out;
660 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400661 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500662
Liu Bo04493142012-02-16 18:34:37 +0800663 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800664 if (!(state->state & bits)) {
665 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800666 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800667 }
Liu Bo04493142012-02-16 18:34:37 +0800668
Chris Masond1310b22008-01-24 16:13:08 -0500669 /*
670 * | ---- desired range ---- |
671 * | state | or
672 * | ------------- state -------------- |
673 *
674 * We need to split the extent we found, and may flip
675 * bits on second half.
676 *
677 * If the extent we found extends past our range, we
678 * just split and search again. It'll get split again
679 * the next time though.
680 *
681 * If the extent we found is inside our range, we clear
682 * the desired bit on it.
683 */
684
685 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000686 prealloc = alloc_extent_state_atomic(prealloc);
687 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500688 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400689 if (err)
690 extent_io_tree_panic(tree, err);
691
Chris Masond1310b22008-01-24 16:13:08 -0500692 prealloc = NULL;
693 if (err)
694 goto out;
695 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800696 state = clear_state_bit(tree, state, &bits, wake,
697 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800698 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500699 }
700 goto search_again;
701 }
702 /*
703 * | ---- desired range ---- |
704 * | state |
705 * We need to split the extent, and clear the bit
706 * on the first half
707 */
708 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000709 prealloc = alloc_extent_state_atomic(prealloc);
710 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500711 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400712 if (err)
713 extent_io_tree_panic(tree, err);
714
Chris Masond1310b22008-01-24 16:13:08 -0500715 if (wake)
716 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400717
Qu Wenruofefdc552015-10-12 15:35:38 +0800718 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400719
Chris Masond1310b22008-01-24 16:13:08 -0500720 prealloc = NULL;
721 goto out;
722 }
Chris Mason42daec22009-09-23 19:51:09 -0400723
Qu Wenruofefdc552015-10-12 15:35:38 +0800724 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800725next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400726 if (last_end == (u64)-1)
727 goto out;
728 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800729 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800730 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500731 goto search_again;
732
733out:
Chris Masoncad321a2008-12-17 14:51:42 -0500734 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500735 if (prealloc)
736 free_extent_state(prealloc);
737
Jeff Mahoney6763af82012-03-01 14:56:29 +0100738 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500739
740search_again:
741 if (start > end)
742 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500743 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800744 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500745 cond_resched();
746 goto again;
747}
Chris Masond1310b22008-01-24 16:13:08 -0500748
Jeff Mahoney143bede2012-03-01 14:56:26 +0100749static void wait_on_state(struct extent_io_tree *tree,
750 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500751 __releases(tree->lock)
752 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500753{
754 DEFINE_WAIT(wait);
755 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500756 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500757 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500758 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500759 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500760}
761
762/*
763 * waits for one or more bits to clear on a range in the state tree.
764 * The range [start, end] is inclusive.
765 * The tree lock is taken by this function
766 */
David Sterba41074882013-04-29 13:38:46 +0000767static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
768 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500769{
770 struct extent_state *state;
771 struct rb_node *node;
772
Josef Bacika5dee372013-12-13 10:02:44 -0500773 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000774
Chris Masoncad321a2008-12-17 14:51:42 -0500775 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500776again:
777 while (1) {
778 /*
779 * this search will find all the extents that end after
780 * our range starts
781 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500782 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100783process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500784 if (!node)
785 break;
786
787 state = rb_entry(node, struct extent_state, rb_node);
788
789 if (state->start > end)
790 goto out;
791
792 if (state->state & bits) {
793 start = state->start;
794 atomic_inc(&state->refs);
795 wait_on_state(tree, state);
796 free_extent_state(state);
797 goto again;
798 }
799 start = state->end + 1;
800
801 if (start > end)
802 break;
803
Filipe Mananac50d3e72014-03-31 14:53:25 +0100804 if (!cond_resched_lock(&tree->lock)) {
805 node = rb_next(node);
806 goto process_node;
807 }
Chris Masond1310b22008-01-24 16:13:08 -0500808 }
809out:
Chris Masoncad321a2008-12-17 14:51:42 -0500810 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500811}
Chris Masond1310b22008-01-24 16:13:08 -0500812
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000813static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500814 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800815 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500816{
David Sterba9ee49a042015-01-14 19:52:13 +0100817 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400818
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000819 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400820 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500821 u64 range = state->end - state->start + 1;
822 tree->dirty_bytes += range;
823 }
Qu Wenruod38ed272015-10-12 14:53:37 +0800824 add_extent_changeset(state, bits_to_set, changeset, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400825 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500826}
827
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100828static void cache_state_if_flags(struct extent_state *state,
829 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100830 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400831{
832 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100833 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400834 *cached_ptr = state;
835 atomic_inc(&state->refs);
836 }
837 }
838}
839
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100840static void cache_state(struct extent_state *state,
841 struct extent_state **cached_ptr)
842{
843 return cache_state_if_flags(state, cached_ptr,
844 EXTENT_IOBITS | EXTENT_BOUNDARY);
845}
846
Chris Masond1310b22008-01-24 16:13:08 -0500847/*
Chris Mason1edbb732009-09-02 13:24:36 -0400848 * set some bits on a range in the tree. This may require allocations or
849 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500850 *
Chris Mason1edbb732009-09-02 13:24:36 -0400851 * If any of the exclusive bits are set, this will fail with -EEXIST if some
852 * part of the range already has the desired bits set. The start of the
853 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500854 *
Chris Mason1edbb732009-09-02 13:24:36 -0400855 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500856 */
Chris Mason1edbb732009-09-02 13:24:36 -0400857
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100858static int __must_check
859__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100860 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000861 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800862 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500863{
864 struct extent_state *state;
865 struct extent_state *prealloc = NULL;
866 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000867 struct rb_node **p;
868 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500869 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500870 u64 last_start;
871 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400872
Josef Bacika5dee372013-12-13 10:02:44 -0500873 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000874
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400875 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500876again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800877 if (!prealloc && gfpflags_allow_blocking(mask)) {
Chris Masond1310b22008-01-24 16:13:08 -0500878 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000879 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500880 }
881
Chris Masoncad321a2008-12-17 14:51:42 -0500882 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400883 if (cached_state && *cached_state) {
884 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400885 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100886 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400887 node = &state->rb_node;
888 goto hit_next;
889 }
890 }
Chris Masond1310b22008-01-24 16:13:08 -0500891 /*
892 * this search will find all the extents that end after
893 * our range starts.
894 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000895 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500896 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000897 prealloc = alloc_extent_state_atomic(prealloc);
898 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000899 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800900 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400901 if (err)
902 extent_io_tree_panic(tree, err);
903
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000904 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500905 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500906 goto out;
907 }
Chris Masond1310b22008-01-24 16:13:08 -0500908 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400909hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500910 last_start = state->start;
911 last_end = state->end;
912
913 /*
914 * | ---- desired range ---- |
915 * | state |
916 *
917 * Just lock what we found and keep going
918 */
919 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400920 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500921 *failed_start = state->start;
922 err = -EEXIST;
923 goto out;
924 }
Chris Mason42daec22009-09-23 19:51:09 -0400925
Qu Wenruod38ed272015-10-12 14:53:37 +0800926 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400927 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500928 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400929 if (last_end == (u64)-1)
930 goto out;
931 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800932 state = next_state(state);
933 if (start < end && state && state->start == start &&
934 !need_resched())
935 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500936 goto search_again;
937 }
938
939 /*
940 * | ---- desired range ---- |
941 * | state |
942 * or
943 * | ------------- state -------------- |
944 *
945 * We need to split the extent we found, and may flip bits on
946 * second half.
947 *
948 * If the extent we found extends past our
949 * range, we just split and search again. It'll get split
950 * again the next time though.
951 *
952 * If the extent we found is inside our range, we set the
953 * desired bit on it.
954 */
955 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400956 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500957 *failed_start = start;
958 err = -EEXIST;
959 goto out;
960 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000961
962 prealloc = alloc_extent_state_atomic(prealloc);
963 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500964 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400965 if (err)
966 extent_io_tree_panic(tree, err);
967
Chris Masond1310b22008-01-24 16:13:08 -0500968 prealloc = NULL;
969 if (err)
970 goto out;
971 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800972 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400973 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500974 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400975 if (last_end == (u64)-1)
976 goto out;
977 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800978 state = next_state(state);
979 if (start < end && state && state->start == start &&
980 !need_resched())
981 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500982 }
983 goto search_again;
984 }
985 /*
986 * | ---- desired range ---- |
987 * | state | or | state |
988 *
989 * There's a hole, we need to insert something in it and
990 * ignore the extent we found.
991 */
992 if (state->start > start) {
993 u64 this_end;
994 if (end < last_start)
995 this_end = end;
996 else
Chris Masond3977122009-01-05 21:25:51 -0500997 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000998
999 prealloc = alloc_extent_state_atomic(prealloc);
1000 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001001
1002 /*
1003 * Avoid to free 'prealloc' if it can be merged with
1004 * the later extent.
1005 */
Chris Masond1310b22008-01-24 16:13:08 -05001006 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001007 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001008 if (err)
1009 extent_io_tree_panic(tree, err);
1010
Chris Mason2c64c532009-09-02 15:04:12 -04001011 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001012 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001013 start = this_end + 1;
1014 goto search_again;
1015 }
1016 /*
1017 * | ---- desired range ---- |
1018 * | state |
1019 * We need to split the extent, and set the bit
1020 * on the first half
1021 */
1022 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001023 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001024 *failed_start = start;
1025 err = -EEXIST;
1026 goto out;
1027 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001028
1029 prealloc = alloc_extent_state_atomic(prealloc);
1030 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001031 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001032 if (err)
1033 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001034
Qu Wenruod38ed272015-10-12 14:53:37 +08001035 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001036 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001037 merge_state(tree, prealloc);
1038 prealloc = NULL;
1039 goto out;
1040 }
1041
1042 goto search_again;
1043
1044out:
Chris Masoncad321a2008-12-17 14:51:42 -05001045 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001046 if (prealloc)
1047 free_extent_state(prealloc);
1048
1049 return err;
1050
1051search_again:
1052 if (start > end)
1053 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -05001054 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -08001055 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -05001056 cond_resched();
1057 goto again;
1058}
Chris Masond1310b22008-01-24 16:13:08 -05001059
David Sterba41074882013-04-29 13:38:46 +00001060int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001061 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001062 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001063{
1064 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001065 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001066}
1067
1068
Josef Bacik462d6fa2011-09-26 13:56:12 -04001069/**
Liu Bo10983f22012-07-11 15:26:19 +08001070 * convert_extent_bit - convert all bits in a given range from one bit to
1071 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001072 * @tree: the io tree to search
1073 * @start: the start offset in bytes
1074 * @end: the end offset in bytes (inclusive)
1075 * @bits: the bits to set in this range
1076 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001077 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001078 * @mask: the allocation mask
1079 *
1080 * This will go through and set bits for the given range. If any states exist
1081 * already in this range they are set with the given bit and cleared of the
1082 * clear_bits. This is only meant to be used by things that are mergeable, ie
1083 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1084 * boundary bits like LOCK.
1085 */
1086int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001087 unsigned bits, unsigned clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001088 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001089{
1090 struct extent_state *state;
1091 struct extent_state *prealloc = NULL;
1092 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001093 struct rb_node **p;
1094 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001095 int err = 0;
1096 u64 last_start;
1097 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001098 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001099
Josef Bacika5dee372013-12-13 10:02:44 -05001100 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001101
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102again:
Mel Gormand0164ad2015-11-06 16:28:21 -08001103 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001104 /*
1105 * Best effort, don't worry if extent state allocation fails
1106 * here for the first iteration. We might have a cached state
1107 * that matches exactly the target range, in which case no
1108 * extent state allocations are needed. We'll only know this
1109 * after locking the tree.
1110 */
Josef Bacik462d6fa2011-09-26 13:56:12 -04001111 prealloc = alloc_extent_state(mask);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001112 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001113 return -ENOMEM;
1114 }
1115
1116 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001117 if (cached_state && *cached_state) {
1118 state = *cached_state;
1119 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001120 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001121 node = &state->rb_node;
1122 goto hit_next;
1123 }
1124 }
1125
Josef Bacik462d6fa2011-09-26 13:56:12 -04001126 /*
1127 * this search will find all the extents that end after
1128 * our range starts.
1129 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001130 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001131 if (!node) {
1132 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001133 if (!prealloc) {
1134 err = -ENOMEM;
1135 goto out;
1136 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001137 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001138 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001139 if (err)
1140 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001141 cache_state(prealloc, cached_state);
1142 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001143 goto out;
1144 }
1145 state = rb_entry(node, struct extent_state, rb_node);
1146hit_next:
1147 last_start = state->start;
1148 last_end = state->end;
1149
1150 /*
1151 * | ---- desired range ---- |
1152 * | state |
1153 *
1154 * Just lock what we found and keep going
1155 */
1156 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001157 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001158 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001159 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001160 if (last_end == (u64)-1)
1161 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001163 if (start < end && state && state->start == start &&
1164 !need_resched())
1165 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001166 goto search_again;
1167 }
1168
1169 /*
1170 * | ---- desired range ---- |
1171 * | state |
1172 * or
1173 * | ------------- state -------------- |
1174 *
1175 * We need to split the extent we found, and may flip bits on
1176 * second half.
1177 *
1178 * If the extent we found extends past our
1179 * range, we just split and search again. It'll get split
1180 * again the next time though.
1181 *
1182 * If the extent we found is inside our range, we set the
1183 * desired bit on it.
1184 */
1185 if (state->start < start) {
1186 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001187 if (!prealloc) {
1188 err = -ENOMEM;
1189 goto out;
1190 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001191 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001192 if (err)
1193 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001194 prealloc = NULL;
1195 if (err)
1196 goto out;
1197 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001198 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001199 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001200 state = clear_state_bit(tree, state, &clear_bits, 0,
1201 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001202 if (last_end == (u64)-1)
1203 goto out;
1204 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001205 if (start < end && state && state->start == start &&
1206 !need_resched())
1207 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001208 }
1209 goto search_again;
1210 }
1211 /*
1212 * | ---- desired range ---- |
1213 * | state | or | state |
1214 *
1215 * There's a hole, we need to insert something in it and
1216 * ignore the extent we found.
1217 */
1218 if (state->start > start) {
1219 u64 this_end;
1220 if (end < last_start)
1221 this_end = end;
1222 else
1223 this_end = last_start - 1;
1224
1225 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001226 if (!prealloc) {
1227 err = -ENOMEM;
1228 goto out;
1229 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001230
1231 /*
1232 * Avoid to free 'prealloc' if it can be merged with
1233 * the later extent.
1234 */
1235 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001236 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001237 if (err)
1238 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001239 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001240 prealloc = NULL;
1241 start = this_end + 1;
1242 goto search_again;
1243 }
1244 /*
1245 * | ---- desired range ---- |
1246 * | state |
1247 * We need to split the extent, and set the bit
1248 * on the first half
1249 */
1250 if (state->start <= end && state->end > end) {
1251 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001252 if (!prealloc) {
1253 err = -ENOMEM;
1254 goto out;
1255 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001256
1257 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001258 if (err)
1259 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001260
Qu Wenruod38ed272015-10-12 14:53:37 +08001261 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001262 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001263 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001264 prealloc = NULL;
1265 goto out;
1266 }
1267
1268 goto search_again;
1269
1270out:
1271 spin_unlock(&tree->lock);
1272 if (prealloc)
1273 free_extent_state(prealloc);
1274
1275 return err;
1276
1277search_again:
1278 if (start > end)
1279 goto out;
1280 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -08001281 if (gfpflags_allow_blocking(mask))
Josef Bacik462d6fa2011-09-26 13:56:12 -04001282 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001283 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001284 goto again;
1285}
1286
Chris Masond1310b22008-01-24 16:13:08 -05001287/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001288int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1289 unsigned bits, gfp_t mask,
1290 struct extent_changeset *changeset)
1291{
1292 /*
1293 * We don't support EXTENT_LOCKED yet, as current changeset will
1294 * record any bits changed, so for EXTENT_LOCKED case, it will
1295 * either fail with -EEXIST or changeset will record the whole
1296 * range.
1297 */
1298 BUG_ON(bits & EXTENT_LOCKED);
1299
1300 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, mask,
1301 changeset);
1302}
1303
Qu Wenruofefdc552015-10-12 15:35:38 +08001304int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1305 unsigned bits, int wake, int delete,
1306 struct extent_state **cached, gfp_t mask)
1307{
1308 return __clear_extent_bit(tree, start, end, bits, wake, delete,
1309 cached, mask, NULL);
1310}
1311
Qu Wenruofefdc552015-10-12 15:35:38 +08001312int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1313 unsigned bits, gfp_t mask,
1314 struct extent_changeset *changeset)
1315{
1316 /*
1317 * Don't support EXTENT_LOCKED case, same reason as
1318 * set_record_extent_bits().
1319 */
1320 BUG_ON(bits & EXTENT_LOCKED);
1321
1322 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask,
1323 changeset);
1324}
1325
Chris Masond352ac62008-09-29 15:18:18 -04001326/*
1327 * either insert or lock state struct between start and end use mask to tell
1328 * us if waiting is desired.
1329 */
Chris Mason1edbb732009-09-02 13:24:36 -04001330int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001331 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001332{
1333 int err;
1334 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001335
Chris Masond1310b22008-01-24 16:13:08 -05001336 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001337 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001338 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001339 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001340 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001341 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1342 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001343 } else
Chris Masond1310b22008-01-24 16:13:08 -05001344 break;
Chris Masond1310b22008-01-24 16:13:08 -05001345 WARN_ON(start > end);
1346 }
1347 return err;
1348}
Chris Masond1310b22008-01-24 16:13:08 -05001349
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001350int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001351{
David Sterbaff13db42015-12-03 14:30:40 +01001352 return lock_extent_bits(tree, start, end, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001353}
1354
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001355int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001356{
1357 int err;
1358 u64 failed_start;
1359
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001360 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001361 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001362 if (err == -EEXIST) {
1363 if (failed_start > start)
1364 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001365 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001366 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001367 }
Josef Bacik25179202008-10-29 14:49:05 -04001368 return 1;
1369}
Josef Bacik25179202008-10-29 14:49:05 -04001370
Chris Mason4adaa612013-03-26 13:07:00 -04001371int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1372{
1373 unsigned long index = start >> PAGE_CACHE_SHIFT;
1374 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1375 struct page *page;
1376
1377 while (index <= end_index) {
1378 page = find_get_page(inode->i_mapping, index);
1379 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1380 clear_page_dirty_for_io(page);
1381 page_cache_release(page);
1382 index++;
1383 }
1384 return 0;
1385}
1386
1387int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1388{
1389 unsigned long index = start >> PAGE_CACHE_SHIFT;
1390 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1391 struct page *page;
1392
1393 while (index <= end_index) {
1394 page = find_get_page(inode->i_mapping, index);
1395 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001396 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001397 account_page_redirty(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001398 page_cache_release(page);
1399 index++;
1400 }
1401 return 0;
1402}
1403
Chris Masond1310b22008-01-24 16:13:08 -05001404/*
Chris Masond1310b22008-01-24 16:13:08 -05001405 * helper function to set both pages and extents in the tree writeback
1406 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001407static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001408{
1409 unsigned long index = start >> PAGE_CACHE_SHIFT;
1410 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1411 struct page *page;
1412
1413 while (index <= end_index) {
1414 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001415 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001416 set_page_writeback(page);
1417 page_cache_release(page);
1418 index++;
1419 }
Chris Masond1310b22008-01-24 16:13:08 -05001420 return 0;
1421}
Chris Masond1310b22008-01-24 16:13:08 -05001422
Chris Masond352ac62008-09-29 15:18:18 -04001423/* find the first state struct with 'bits' set after 'start', and
1424 * return it. tree->lock must be held. NULL will returned if
1425 * nothing was found after 'start'
1426 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001427static struct extent_state *
1428find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001429 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001430{
1431 struct rb_node *node;
1432 struct extent_state *state;
1433
1434 /*
1435 * this search will find all the extents that end after
1436 * our range starts.
1437 */
1438 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001439 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001440 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001441
Chris Masond3977122009-01-05 21:25:51 -05001442 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001443 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001444 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001445 return state;
Chris Masond3977122009-01-05 21:25:51 -05001446
Chris Masond7fc6402008-02-18 12:12:38 -05001447 node = rb_next(node);
1448 if (!node)
1449 break;
1450 }
1451out:
1452 return NULL;
1453}
Chris Masond7fc6402008-02-18 12:12:38 -05001454
Chris Masond352ac62008-09-29 15:18:18 -04001455/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001456 * find the first offset in the io tree with 'bits' set. zero is
1457 * returned if we find something, and *start_ret and *end_ret are
1458 * set to reflect the state struct that was found.
1459 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001460 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001461 */
1462int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001463 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001464 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001465{
1466 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001467 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001468 int ret = 1;
1469
1470 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001471 if (cached_state && *cached_state) {
1472 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001473 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001474 n = rb_next(&state->rb_node);
1475 while (n) {
1476 state = rb_entry(n, struct extent_state,
1477 rb_node);
1478 if (state->state & bits)
1479 goto got_it;
1480 n = rb_next(n);
1481 }
1482 free_extent_state(*cached_state);
1483 *cached_state = NULL;
1484 goto out;
1485 }
1486 free_extent_state(*cached_state);
1487 *cached_state = NULL;
1488 }
1489
Xiao Guangrong69261c42011-07-14 03:19:45 +00001490 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001491got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001492 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001493 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001494 *start_ret = state->start;
1495 *end_ret = state->end;
1496 ret = 0;
1497 }
Josef Bacike6138872012-09-27 17:07:30 -04001498out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001499 spin_unlock(&tree->lock);
1500 return ret;
1501}
1502
1503/*
Chris Masond352ac62008-09-29 15:18:18 -04001504 * find a contiguous range of bytes in the file marked as delalloc, not
1505 * more than 'max_bytes'. start and end are used to return the range,
1506 *
1507 * 1 is returned if we find something, 0 if nothing was in the tree
1508 */
Chris Masonc8b97812008-10-29 14:49:59 -04001509static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001510 u64 *start, u64 *end, u64 max_bytes,
1511 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001512{
1513 struct rb_node *node;
1514 struct extent_state *state;
1515 u64 cur_start = *start;
1516 u64 found = 0;
1517 u64 total_bytes = 0;
1518
Chris Masoncad321a2008-12-17 14:51:42 -05001519 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001520
Chris Masond1310b22008-01-24 16:13:08 -05001521 /*
1522 * this search will find all the extents that end after
1523 * our range starts.
1524 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001525 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001526 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001527 if (!found)
1528 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001529 goto out;
1530 }
1531
Chris Masond3977122009-01-05 21:25:51 -05001532 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001533 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001534 if (found && (state->start != cur_start ||
1535 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001536 goto out;
1537 }
1538 if (!(state->state & EXTENT_DELALLOC)) {
1539 if (!found)
1540 *end = state->end;
1541 goto out;
1542 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001543 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001544 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001545 *cached_state = state;
1546 atomic_inc(&state->refs);
1547 }
Chris Masond1310b22008-01-24 16:13:08 -05001548 found++;
1549 *end = state->end;
1550 cur_start = state->end + 1;
1551 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001552 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001553 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001554 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001555 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001556 break;
1557 }
1558out:
Chris Masoncad321a2008-12-17 14:51:42 -05001559 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001560 return found;
1561}
1562
Jeff Mahoney143bede2012-03-01 14:56:26 +01001563static noinline void __unlock_for_delalloc(struct inode *inode,
1564 struct page *locked_page,
1565 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001566{
1567 int ret;
1568 struct page *pages[16];
1569 unsigned long index = start >> PAGE_CACHE_SHIFT;
1570 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1571 unsigned long nr_pages = end_index - index + 1;
1572 int i;
1573
1574 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001575 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001576
Chris Masond3977122009-01-05 21:25:51 -05001577 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001578 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001579 min_t(unsigned long, nr_pages,
1580 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001581 for (i = 0; i < ret; i++) {
1582 if (pages[i] != locked_page)
1583 unlock_page(pages[i]);
1584 page_cache_release(pages[i]);
1585 }
1586 nr_pages -= ret;
1587 index += ret;
1588 cond_resched();
1589 }
Chris Masonc8b97812008-10-29 14:49:59 -04001590}
1591
1592static noinline int lock_delalloc_pages(struct inode *inode,
1593 struct page *locked_page,
1594 u64 delalloc_start,
1595 u64 delalloc_end)
1596{
1597 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1598 unsigned long start_index = index;
1599 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1600 unsigned long pages_locked = 0;
1601 struct page *pages[16];
1602 unsigned long nrpages;
1603 int ret;
1604 int i;
1605
1606 /* the caller is responsible for locking the start index */
1607 if (index == locked_page->index && index == end_index)
1608 return 0;
1609
1610 /* skip the page at the start index */
1611 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001612 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001613 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001614 min_t(unsigned long,
1615 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001616 if (ret == 0) {
1617 ret = -EAGAIN;
1618 goto done;
1619 }
1620 /* now we have an array of pages, lock them all */
1621 for (i = 0; i < ret; i++) {
1622 /*
1623 * the caller is taking responsibility for
1624 * locked_page
1625 */
Chris Mason771ed682008-11-06 22:02:51 -05001626 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001627 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001628 if (!PageDirty(pages[i]) ||
1629 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001630 ret = -EAGAIN;
1631 unlock_page(pages[i]);
1632 page_cache_release(pages[i]);
1633 goto done;
1634 }
1635 }
Chris Masonc8b97812008-10-29 14:49:59 -04001636 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001637 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001638 }
Chris Masonc8b97812008-10-29 14:49:59 -04001639 nrpages -= ret;
1640 index += ret;
1641 cond_resched();
1642 }
1643 ret = 0;
1644done:
1645 if (ret && pages_locked) {
1646 __unlock_for_delalloc(inode, locked_page,
1647 delalloc_start,
1648 ((u64)(start_index + pages_locked - 1)) <<
1649 PAGE_CACHE_SHIFT);
1650 }
1651 return ret;
1652}
1653
1654/*
1655 * find a contiguous range of bytes in the file marked as delalloc, not
1656 * more than 'max_bytes'. start and end are used to return the range,
1657 *
1658 * 1 is returned if we find something, 0 if nothing was in the tree
1659 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001660STATIC u64 find_lock_delalloc_range(struct inode *inode,
1661 struct extent_io_tree *tree,
1662 struct page *locked_page, u64 *start,
1663 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001664{
1665 u64 delalloc_start;
1666 u64 delalloc_end;
1667 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001668 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001669 int ret;
1670 int loops = 0;
1671
1672again:
1673 /* step one, find a bunch of delalloc bytes starting at start */
1674 delalloc_start = *start;
1675 delalloc_end = 0;
1676 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001677 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001678 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001679 *start = delalloc_start;
1680 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001681 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001682 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001683 }
1684
1685 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001686 * start comes from the offset of locked_page. We have to lock
1687 * pages in order, so we can't process delalloc bytes before
1688 * locked_page
1689 */
Chris Masond3977122009-01-05 21:25:51 -05001690 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001691 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001692
1693 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001694 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001695 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001696 if (delalloc_end + 1 - delalloc_start > max_bytes)
1697 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001698
Chris Masonc8b97812008-10-29 14:49:59 -04001699 /* step two, lock all the pages after the page that has start */
1700 ret = lock_delalloc_pages(inode, locked_page,
1701 delalloc_start, delalloc_end);
1702 if (ret == -EAGAIN) {
1703 /* some of the pages are gone, lets avoid looping by
1704 * shortening the size of the delalloc range we're searching
1705 */
Chris Mason9655d292009-09-02 15:22:30 -04001706 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001707 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001708 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001709 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001710 loops = 1;
1711 goto again;
1712 } else {
1713 found = 0;
1714 goto out_failed;
1715 }
1716 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001717 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001718
1719 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001720 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001721
1722 /* then test to make sure it is all still delalloc */
1723 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001724 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001725 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001726 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1727 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001728 __unlock_for_delalloc(inode, locked_page,
1729 delalloc_start, delalloc_end);
1730 cond_resched();
1731 goto again;
1732 }
Chris Mason9655d292009-09-02 15:22:30 -04001733 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001734 *start = delalloc_start;
1735 *end = delalloc_end;
1736out_failed:
1737 return found;
1738}
1739
Josef Bacikc2790a22013-07-29 11:20:47 -04001740int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1741 struct page *locked_page,
David Sterba9ee49a042015-01-14 19:52:13 +01001742 unsigned clear_bits,
Josef Bacikc2790a22013-07-29 11:20:47 -04001743 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001744{
Josef Bacikc2790a22013-07-29 11:20:47 -04001745 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001746 int ret;
1747 struct page *pages[16];
1748 unsigned long index = start >> PAGE_CACHE_SHIFT;
1749 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1750 unsigned long nr_pages = end_index - index + 1;
1751 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001752
Chris Mason2c64c532009-09-02 15:04:12 -04001753 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001754 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001755 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001756
Filipe Manana704de492014-10-06 22:14:22 +01001757 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1758 mapping_set_error(inode->i_mapping, -EIO);
1759
Chris Masond3977122009-01-05 21:25:51 -05001760 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001761 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001762 min_t(unsigned long,
1763 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001764 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001765
Josef Bacikc2790a22013-07-29 11:20:47 -04001766 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001767 SetPagePrivate2(pages[i]);
1768
Chris Masonc8b97812008-10-29 14:49:59 -04001769 if (pages[i] == locked_page) {
1770 page_cache_release(pages[i]);
1771 continue;
1772 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001773 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001774 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001775 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001776 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001777 if (page_ops & PAGE_SET_ERROR)
1778 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001779 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001780 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001781 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001782 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001783 page_cache_release(pages[i]);
1784 }
1785 nr_pages -= ret;
1786 index += ret;
1787 cond_resched();
1788 }
1789 return 0;
1790}
Chris Masonc8b97812008-10-29 14:49:59 -04001791
Chris Masond352ac62008-09-29 15:18:18 -04001792/*
1793 * count the number of bytes in the tree that have a given bit(s)
1794 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1795 * cached. The total number found is returned.
1796 */
Chris Masond1310b22008-01-24 16:13:08 -05001797u64 count_range_bits(struct extent_io_tree *tree,
1798 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001799 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001800{
1801 struct rb_node *node;
1802 struct extent_state *state;
1803 u64 cur_start = *start;
1804 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001805 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001806 int found = 0;
1807
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301808 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001809 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001810
Chris Masoncad321a2008-12-17 14:51:42 -05001811 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001812 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1813 total_bytes = tree->dirty_bytes;
1814 goto out;
1815 }
1816 /*
1817 * this search will find all the extents that end after
1818 * our range starts.
1819 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001820 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001821 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001822 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001823
Chris Masond3977122009-01-05 21:25:51 -05001824 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001825 state = rb_entry(node, struct extent_state, rb_node);
1826 if (state->start > search_end)
1827 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001828 if (contig && found && state->start > last + 1)
1829 break;
1830 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001831 total_bytes += min(search_end, state->end) + 1 -
1832 max(cur_start, state->start);
1833 if (total_bytes >= max_bytes)
1834 break;
1835 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001836 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001837 found = 1;
1838 }
Chris Masonec29ed52011-02-23 16:23:20 -05001839 last = state->end;
1840 } else if (contig && found) {
1841 break;
Chris Masond1310b22008-01-24 16:13:08 -05001842 }
1843 node = rb_next(node);
1844 if (!node)
1845 break;
1846 }
1847out:
Chris Masoncad321a2008-12-17 14:51:42 -05001848 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001849 return total_bytes;
1850}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001851
Chris Masond352ac62008-09-29 15:18:18 -04001852/*
1853 * set the private field for a given byte offset in the tree. If there isn't
1854 * an extent_state there already, this does nothing.
1855 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001856static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001857{
1858 struct rb_node *node;
1859 struct extent_state *state;
1860 int ret = 0;
1861
Chris Masoncad321a2008-12-17 14:51:42 -05001862 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001863 /*
1864 * this search will find all the extents that end after
1865 * our range starts.
1866 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001867 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001868 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001869 ret = -ENOENT;
1870 goto out;
1871 }
1872 state = rb_entry(node, struct extent_state, rb_node);
1873 if (state->start != start) {
1874 ret = -ENOENT;
1875 goto out;
1876 }
1877 state->private = private;
1878out:
Chris Masoncad321a2008-12-17 14:51:42 -05001879 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001880 return ret;
1881}
1882
1883int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1884{
1885 struct rb_node *node;
1886 struct extent_state *state;
1887 int ret = 0;
1888
Chris Masoncad321a2008-12-17 14:51:42 -05001889 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001890 /*
1891 * this search will find all the extents that end after
1892 * our range starts.
1893 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001894 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001895 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001896 ret = -ENOENT;
1897 goto out;
1898 }
1899 state = rb_entry(node, struct extent_state, rb_node);
1900 if (state->start != start) {
1901 ret = -ENOENT;
1902 goto out;
1903 }
1904 *private = state->private;
1905out:
Chris Masoncad321a2008-12-17 14:51:42 -05001906 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001907 return ret;
1908}
1909
1910/*
1911 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001912 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001913 * has the bits set. Otherwise, 1 is returned if any bit in the
1914 * range is found set.
1915 */
1916int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001917 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001918{
1919 struct extent_state *state = NULL;
1920 struct rb_node *node;
1921 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001922
Chris Masoncad321a2008-12-17 14:51:42 -05001923 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001924 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001925 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001926 node = &cached->rb_node;
1927 else
1928 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001929 while (node && start <= end) {
1930 state = rb_entry(node, struct extent_state, rb_node);
1931
1932 if (filled && state->start > start) {
1933 bitset = 0;
1934 break;
1935 }
1936
1937 if (state->start > end)
1938 break;
1939
1940 if (state->state & bits) {
1941 bitset = 1;
1942 if (!filled)
1943 break;
1944 } else if (filled) {
1945 bitset = 0;
1946 break;
1947 }
Chris Mason46562cec2009-09-23 20:23:16 -04001948
1949 if (state->end == (u64)-1)
1950 break;
1951
Chris Masond1310b22008-01-24 16:13:08 -05001952 start = state->end + 1;
1953 if (start > end)
1954 break;
1955 node = rb_next(node);
1956 if (!node) {
1957 if (filled)
1958 bitset = 0;
1959 break;
1960 }
1961 }
Chris Masoncad321a2008-12-17 14:51:42 -05001962 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001963 return bitset;
1964}
Chris Masond1310b22008-01-24 16:13:08 -05001965
1966/*
1967 * helper function to set a given page up to date if all the
1968 * extents in the tree for that page are up to date
1969 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001970static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001971{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001972 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001973 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001974 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001975 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001976}
1977
Miao Xie8b110e32014-09-12 18:44:03 +08001978int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001979{
1980 int ret;
1981 int err = 0;
1982 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1983
1984 set_state_private(failure_tree, rec->start, 0);
1985 ret = clear_extent_bits(failure_tree, rec->start,
1986 rec->start + rec->len - 1,
1987 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1988 if (ret)
1989 err = ret;
1990
David Woodhouse53b381b2013-01-29 18:40:14 -05001991 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1992 rec->start + rec->len - 1,
1993 EXTENT_DAMAGED, GFP_NOFS);
1994 if (ret && !err)
1995 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001996
1997 kfree(rec);
1998 return err;
1999}
2000
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002001/*
2002 * this bypasses the standard btrfs submit functions deliberately, as
2003 * the standard behavior is to write all copies in a raid setup. here we only
2004 * want to write the one bad copy. so we do the mapping for ourselves and issue
2005 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002006 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002007 * actually prevents the read that triggered the error from finishing.
2008 * currently, there can be no more than two copies of every data bit. thus,
2009 * exactly one rewrite is required.
2010 */
Miao Xie1203b682014-09-12 18:44:01 +08002011int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2012 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002013{
Miao Xie1203b682014-09-12 18:44:01 +08002014 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002015 struct bio *bio;
2016 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002017 u64 map_length = 0;
2018 u64 sector;
2019 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002020 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002021 int ret;
2022
Ilya Dryomov908960c2013-11-03 19:06:39 +02002023 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002024 BUG_ON(!mirror_num);
2025
David Woodhouse53b381b2013-01-29 18:40:14 -05002026 /* we can't repair anything in raid56 yet */
2027 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2028 return 0;
2029
Chris Mason9be33952013-05-17 18:30:14 -04002030 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002031 if (!bio)
2032 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002033 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002034 map_length = length;
2035
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002036 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002037 &map_length, &bbio, mirror_num);
2038 if (ret) {
2039 bio_put(bio);
2040 return -EIO;
2041 }
2042 BUG_ON(mirror_num != bbio->mirror_num);
2043 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002044 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002045 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002046 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002047 if (!dev || !dev->bdev || !dev->writeable) {
2048 bio_put(bio);
2049 return -EIO;
2050 }
2051 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002052 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002053
Kent Overstreet33879d42013-11-23 22:33:32 -08002054 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002055 /* try to remap that extent elsewhere? */
2056 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002057 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002058 return -EIO;
2059 }
2060
David Sterbab14af3b2015-10-08 10:43:10 +02002061 btrfs_info_rl_in_rcu(fs_info,
2062 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Miao Xie1203b682014-09-12 18:44:01 +08002063 btrfs_ino(inode), start,
2064 rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002065 bio_put(bio);
2066 return 0;
2067}
2068
Josef Bacikea466792012-03-26 21:57:36 -04002069int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2070 int mirror_num)
2071{
Josef Bacikea466792012-03-26 21:57:36 -04002072 u64 start = eb->start;
2073 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002074 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002075
Ilya Dryomov908960c2013-11-03 19:06:39 +02002076 if (root->fs_info->sb->s_flags & MS_RDONLY)
2077 return -EROFS;
2078
Josef Bacikea466792012-03-26 21:57:36 -04002079 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002080 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002081
2082 ret = repair_io_failure(root->fs_info->btree_inode, start,
2083 PAGE_CACHE_SIZE, start, p,
2084 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002085 if (ret)
2086 break;
2087 start += PAGE_CACHE_SIZE;
2088 }
2089
2090 return ret;
2091}
2092
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002093/*
2094 * each time an IO finishes, we do a fast check in the IO failure tree
2095 * to see if we need to process or clean up an io_failure_record
2096 */
Miao Xie8b110e32014-09-12 18:44:03 +08002097int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2098 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099{
2100 u64 private;
2101 u64 private_failure;
2102 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002103 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 struct extent_state *state;
2105 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002106 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002107
2108 private = 0;
2109 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2110 (u64)-1, 1, EXTENT_DIRTY, 0);
2111 if (!ret)
2112 return 0;
2113
2114 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2115 &private_failure);
2116 if (ret)
2117 return 0;
2118
2119 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2120 BUG_ON(!failrec->this_mirror);
2121
2122 if (failrec->in_validation) {
2123 /* there was no real error, just free the record */
2124 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2125 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002126 goto out;
2127 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002128 if (fs_info->sb->s_flags & MS_RDONLY)
2129 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002130
2131 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2132 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2133 failrec->start,
2134 EXTENT_LOCKED);
2135 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2136
Miao Xie883d0de2013-07-25 19:22:35 +08002137 if (state && state->start <= failrec->start &&
2138 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002139 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2140 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002141 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002142 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002143 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002144 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002145 }
2146 }
2147
2148out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002149 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002150
Miao Xie454ff3d2014-09-12 18:43:58 +08002151 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002152}
2153
Miao Xief6124962014-09-12 18:44:04 +08002154/*
2155 * Can be called when
2156 * - hold extent lock
2157 * - under ordered extent
2158 * - the inode is freeing
2159 */
2160void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2161{
2162 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2163 struct io_failure_record *failrec;
2164 struct extent_state *state, *next;
2165
2166 if (RB_EMPTY_ROOT(&failure_tree->state))
2167 return;
2168
2169 spin_lock(&failure_tree->lock);
2170 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2171 while (state) {
2172 if (state->start > end)
2173 break;
2174
2175 ASSERT(state->end <= end);
2176
2177 next = next_state(state);
2178
Satoru Takeuchi6e1103a2014-12-25 18:21:41 +09002179 failrec = (struct io_failure_record *)(unsigned long)state->private;
Miao Xief6124962014-09-12 18:44:04 +08002180 free_extent_state(state);
2181 kfree(failrec);
2182
2183 state = next;
2184 }
2185 spin_unlock(&failure_tree->lock);
2186}
2187
Miao Xie2fe63032014-09-12 18:43:59 +08002188int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2189 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002190{
Miao Xie2fe63032014-09-12 18:43:59 +08002191 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002192 u64 private;
2193 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002194 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2195 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2196 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002197 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002198 u64 logical;
2199
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002200 ret = get_state_private(failure_tree, start, &private);
2201 if (ret) {
2202 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2203 if (!failrec)
2204 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002205
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002206 failrec->start = start;
2207 failrec->len = end - start + 1;
2208 failrec->this_mirror = 0;
2209 failrec->bio_flags = 0;
2210 failrec->in_validation = 0;
2211
2212 read_lock(&em_tree->lock);
2213 em = lookup_extent_mapping(em_tree, start, failrec->len);
2214 if (!em) {
2215 read_unlock(&em_tree->lock);
2216 kfree(failrec);
2217 return -EIO;
2218 }
2219
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002220 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002221 free_extent_map(em);
2222 em = NULL;
2223 }
2224 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002225 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002226 kfree(failrec);
2227 return -EIO;
2228 }
Miao Xie2fe63032014-09-12 18:43:59 +08002229
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002230 logical = start - em->start;
2231 logical = em->block_start + logical;
2232 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2233 logical = em->block_start;
2234 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2235 extent_set_compress_type(&failrec->bio_flags,
2236 em->compress_type);
2237 }
Miao Xie2fe63032014-09-12 18:43:59 +08002238
2239 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2240 logical, start, failrec->len);
2241
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002242 failrec->logical = logical;
2243 free_extent_map(em);
2244
2245 /* set the bits in the private failure tree */
2246 ret = set_extent_bits(failure_tree, start, end,
2247 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2248 if (ret >= 0)
2249 ret = set_state_private(failure_tree, start,
2250 (u64)(unsigned long)failrec);
2251 /* set the bits in the inode's tree */
2252 if (ret >= 0)
2253 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2254 GFP_NOFS);
2255 if (ret < 0) {
2256 kfree(failrec);
2257 return ret;
2258 }
2259 } else {
2260 failrec = (struct io_failure_record *)(unsigned long)private;
Miao Xie2fe63032014-09-12 18:43:59 +08002261 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002262 failrec->logical, failrec->start, failrec->len,
2263 failrec->in_validation);
2264 /*
2265 * when data can be on disk more than twice, add to failrec here
2266 * (e.g. with a list for failed_mirror) to make
2267 * clean_io_failure() clean all those errors at once.
2268 */
2269 }
Miao Xie2fe63032014-09-12 18:43:59 +08002270
2271 *failrec_ret = failrec;
2272
2273 return 0;
2274}
2275
2276int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2277 struct io_failure_record *failrec, int failed_mirror)
2278{
2279 int num_copies;
2280
Stefan Behrens5d964052012-11-05 14:59:07 +01002281 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2282 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002283 if (num_copies == 1) {
2284 /*
2285 * we only have a single copy of the data, so don't bother with
2286 * all the retry and error correction code that follows. no
2287 * matter what the error is, it is very likely to persist.
2288 */
Miao Xie2fe63032014-09-12 18:43:59 +08002289 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002290 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002291 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002292 }
2293
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002294 /*
2295 * there are two premises:
2296 * a) deliver good data to the caller
2297 * b) correct the bad sectors on disk
2298 */
2299 if (failed_bio->bi_vcnt > 1) {
2300 /*
2301 * to fulfill b), we need to know the exact failing sectors, as
2302 * we don't want to rewrite any more than the failed ones. thus,
2303 * we need separate read requests for the failed bio
2304 *
2305 * if the following BUG_ON triggers, our validation request got
2306 * merged. we need separate requests for our algorithm to work.
2307 */
2308 BUG_ON(failrec->in_validation);
2309 failrec->in_validation = 1;
2310 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002311 } else {
2312 /*
2313 * we're ready to fulfill a) and b) alongside. get a good copy
2314 * of the failed sector and if we succeed, we have setup
2315 * everything for repair_io_failure to do the rest for us.
2316 */
2317 if (failrec->in_validation) {
2318 BUG_ON(failrec->this_mirror != failed_mirror);
2319 failrec->in_validation = 0;
2320 failrec->this_mirror = 0;
2321 }
2322 failrec->failed_mirror = failed_mirror;
2323 failrec->this_mirror++;
2324 if (failrec->this_mirror == failed_mirror)
2325 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002326 }
2327
Miao Xiefacc8a222013-07-25 19:22:34 +08002328 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002329 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002330 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002331 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002332 }
2333
Miao Xie2fe63032014-09-12 18:43:59 +08002334 return 1;
2335}
2336
2337
2338struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2339 struct io_failure_record *failrec,
2340 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002341 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002342{
2343 struct bio *bio;
2344 struct btrfs_io_bio *btrfs_failed_bio;
2345 struct btrfs_io_bio *btrfs_bio;
2346
Chris Mason9be33952013-05-17 18:30:14 -04002347 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002348 if (!bio)
2349 return NULL;
2350
2351 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002352 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002353 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002354 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002355 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002356
Miao Xiefacc8a222013-07-25 19:22:34 +08002357 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2358 if (btrfs_failed_bio->csum) {
2359 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2360 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2361
2362 btrfs_bio = btrfs_io_bio(bio);
2363 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002364 icsum *= csum_size;
2365 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002366 csum_size);
2367 }
2368
Miao Xie2fe63032014-09-12 18:43:59 +08002369 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002370
Miao Xie2fe63032014-09-12 18:43:59 +08002371 return bio;
2372}
2373
2374/*
2375 * this is a generic handler for readpage errors (default
2376 * readpage_io_failed_hook). if other copies exist, read those and write back
2377 * good data to the failed position. does not investigate in remapping the
2378 * failed extent elsewhere, hoping the device will be smart enough to do this as
2379 * needed
2380 */
2381
2382static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2383 struct page *page, u64 start, u64 end,
2384 int failed_mirror)
2385{
2386 struct io_failure_record *failrec;
2387 struct inode *inode = page->mapping->host;
2388 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2389 struct bio *bio;
2390 int read_mode;
2391 int ret;
2392
2393 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2394
2395 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2396 if (ret)
2397 return ret;
2398
2399 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2400 if (!ret) {
2401 free_io_failure(inode, failrec);
2402 return -EIO;
2403 }
2404
2405 if (failed_bio->bi_vcnt > 1)
2406 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2407 else
2408 read_mode = READ_SYNC;
2409
2410 phy_offset >>= inode->i_sb->s_blocksize_bits;
2411 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2412 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002413 (int)phy_offset, failed_bio->bi_end_io,
2414 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002415 if (!bio) {
2416 free_io_failure(inode, failrec);
2417 return -EIO;
2418 }
2419
2420 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2421 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002422
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002423 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2424 failrec->this_mirror,
2425 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002426 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002427 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002428 bio_put(bio);
2429 }
2430
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002431 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002432}
2433
Chris Masond1310b22008-01-24 16:13:08 -05002434/* lots and lots of room for performance fixes in the end_bio funcs */
2435
Jeff Mahoney87826df2012-02-15 16:23:57 +01002436int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2437{
2438 int uptodate = (err == 0);
2439 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002440 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002441
2442 tree = &BTRFS_I(page->mapping->host)->io_tree;
2443
2444 if (tree->ops && tree->ops->writepage_end_io_hook) {
2445 ret = tree->ops->writepage_end_io_hook(page, start,
2446 end, NULL, uptodate);
2447 if (ret)
2448 uptodate = 0;
2449 }
2450
Jeff Mahoney87826df2012-02-15 16:23:57 +01002451 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002452 ClearPageUptodate(page);
2453 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002454 ret = ret < 0 ? ret : -EIO;
2455 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002456 }
2457 return 0;
2458}
2459
Chris Masond1310b22008-01-24 16:13:08 -05002460/*
2461 * after a writepage IO is done, we need to:
2462 * clear the uptodate bits on error
2463 * clear the writeback bits in the extent tree for this IO
2464 * end_page_writeback if the page has no more pending IO
2465 *
2466 * Scheduling is not allowed, so the extent state tree is expected
2467 * to have one and only one object corresponding to this IO.
2468 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002469static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002470{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002471 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002472 u64 start;
2473 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002474 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002475
Kent Overstreet2c30c712013-11-07 12:20:26 -08002476 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002477 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002478
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002479 /* We always issue full-page reads, but if some block
2480 * in a page fails to read, blk_update_request() will
2481 * advance bv_offset and adjust bv_len to compensate.
2482 * Print a warning for nonzero offsets, and an error
2483 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002484 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2485 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2486 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2487 "partial page write in btrfs with offset %u and length %u",
2488 bvec->bv_offset, bvec->bv_len);
2489 else
2490 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2491 "incomplete page write in btrfs with offset %u and "
2492 "length %u",
2493 bvec->bv_offset, bvec->bv_len);
2494 }
Chris Masond1310b22008-01-24 16:13:08 -05002495
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002496 start = page_offset(page);
2497 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002498
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002499 if (end_extent_writepage(page, bio->bi_error, start, end))
Jeff Mahoney87826df2012-02-15 16:23:57 +01002500 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002501
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002502 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002503 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002504
Chris Masond1310b22008-01-24 16:13:08 -05002505 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002506}
2507
Miao Xie883d0de2013-07-25 19:22:35 +08002508static void
2509endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2510 int uptodate)
2511{
2512 struct extent_state *cached = NULL;
2513 u64 end = start + len - 1;
2514
2515 if (uptodate && tree->track_uptodate)
2516 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2517 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2518}
2519
Chris Masond1310b22008-01-24 16:13:08 -05002520/*
2521 * after a readpage IO is done, we need to:
2522 * clear the uptodate bits on error
2523 * set the uptodate bits if things worked
2524 * set the page up to date if all extents in the tree are uptodate
2525 * clear the lock bit in the extent tree
2526 * unlock the page if there are no other extents locked for it
2527 *
2528 * Scheduling is not allowed, so the extent state tree is expected
2529 * to have one and only one object corresponding to this IO.
2530 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002531static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002532{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002533 struct bio_vec *bvec;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002534 int uptodate = !bio->bi_error;
Miao Xiefacc8a222013-07-25 19:22:34 +08002535 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002536 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002537 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002538 u64 start;
2539 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002540 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002541 u64 extent_start = 0;
2542 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002543 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002544 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002545 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002546
Kent Overstreet2c30c712013-11-07 12:20:26 -08002547 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002548 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002549 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002550
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002551 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002552 "mirror=%u\n", (u64)bio->bi_iter.bi_sector,
2553 bio->bi_error, io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002554 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002555
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002556 /* We always issue full-page reads, but if some block
2557 * in a page fails to read, blk_update_request() will
2558 * advance bv_offset and adjust bv_len to compensate.
2559 * Print a warning for nonzero offsets, and an error
2560 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002561 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2562 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2563 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2564 "partial page read in btrfs with offset %u and length %u",
2565 bvec->bv_offset, bvec->bv_len);
2566 else
2567 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2568 "incomplete page read in btrfs with offset %u and "
2569 "length %u",
2570 bvec->bv_offset, bvec->bv_len);
2571 }
Chris Masond1310b22008-01-24 16:13:08 -05002572
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002573 start = page_offset(page);
2574 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002575 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002576
Chris Mason9be33952013-05-17 18:30:14 -04002577 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002578 if (likely(uptodate && tree->ops &&
2579 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002580 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2581 page, start, end,
2582 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002583 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002584 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002585 else
Miao Xie1203b682014-09-12 18:44:01 +08002586 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002587 }
Josef Bacikea466792012-03-26 21:57:36 -04002588
Miao Xief2a09da2013-07-25 19:22:33 +08002589 if (likely(uptodate))
2590 goto readpage_ok;
2591
2592 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002593 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002594 if (!ret && !bio->bi_error)
Josef Bacikea466792012-03-26 21:57:36 -04002595 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002596 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002597 /*
2598 * The generic bio_readpage_error handles errors the
2599 * following way: If possible, new read requests are
2600 * created and submitted and will end up in
2601 * end_bio_extent_readpage as well (if we're lucky, not
2602 * in the !uptodate case). In that case it returns 0 and
2603 * we just go on with the next page in our bio. If it
2604 * can't handle the error it will return -EIO and we
2605 * remain responsible for that page.
2606 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002607 ret = bio_readpage_error(bio, offset, page, start, end,
2608 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002609 if (ret == 0) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002610 uptodate = !bio->bi_error;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002611 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002612 continue;
2613 }
2614 }
Miao Xief2a09da2013-07-25 19:22:33 +08002615readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002616 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002617 loff_t i_size = i_size_read(inode);
2618 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002619 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002620
2621 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002622 off = i_size & (PAGE_CACHE_SIZE-1);
2623 if (page->index == end_index && off)
2624 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002625 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002626 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002627 ClearPageUptodate(page);
2628 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002629 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002630 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002631 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002632
2633 if (unlikely(!uptodate)) {
2634 if (extent_len) {
2635 endio_readpage_release_extent(tree,
2636 extent_start,
2637 extent_len, 1);
2638 extent_start = 0;
2639 extent_len = 0;
2640 }
2641 endio_readpage_release_extent(tree, start,
2642 end - start + 1, 0);
2643 } else if (!extent_len) {
2644 extent_start = start;
2645 extent_len = end + 1 - start;
2646 } else if (extent_start + extent_len == start) {
2647 extent_len += end + 1 - start;
2648 } else {
2649 endio_readpage_release_extent(tree, extent_start,
2650 extent_len, uptodate);
2651 extent_start = start;
2652 extent_len = end + 1 - start;
2653 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002654 }
Chris Masond1310b22008-01-24 16:13:08 -05002655
Miao Xie883d0de2013-07-25 19:22:35 +08002656 if (extent_len)
2657 endio_readpage_release_extent(tree, extent_start, extent_len,
2658 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002659 if (io_bio->end_io)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002660 io_bio->end_io(io_bio, bio->bi_error);
Chris Masond1310b22008-01-24 16:13:08 -05002661 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002662}
2663
Chris Mason9be33952013-05-17 18:30:14 -04002664/*
2665 * this allocates from the btrfs_bioset. We're returning a bio right now
2666 * but you can call btrfs_io_bio for the appropriate container_of magic
2667 */
Miao Xie88f794e2010-11-22 03:02:55 +00002668struct bio *
2669btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2670 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002671{
Miao Xiefacc8a222013-07-25 19:22:34 +08002672 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002673 struct bio *bio;
2674
Chris Mason9be33952013-05-17 18:30:14 -04002675 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002676
2677 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002678 while (!bio && (nr_vecs /= 2)) {
2679 bio = bio_alloc_bioset(gfp_flags,
2680 nr_vecs, btrfs_bioset);
2681 }
Chris Masond1310b22008-01-24 16:13:08 -05002682 }
2683
2684 if (bio) {
2685 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002686 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002687 btrfs_bio = btrfs_io_bio(bio);
2688 btrfs_bio->csum = NULL;
2689 btrfs_bio->csum_allocated = NULL;
2690 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002691 }
2692 return bio;
2693}
2694
Chris Mason9be33952013-05-17 18:30:14 -04002695struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2696{
Miao Xie23ea8e52014-09-12 18:43:54 +08002697 struct btrfs_io_bio *btrfs_bio;
2698 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002699
Miao Xie23ea8e52014-09-12 18:43:54 +08002700 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2701 if (new) {
2702 btrfs_bio = btrfs_io_bio(new);
2703 btrfs_bio->csum = NULL;
2704 btrfs_bio->csum_allocated = NULL;
2705 btrfs_bio->end_io = NULL;
Chris Mason3a9508b2015-08-21 10:05:39 -07002706
2707#ifdef CONFIG_BLK_CGROUP
Chris Masonda2f0f72015-07-02 13:57:22 -07002708 /* FIXME, put this into bio_clone_bioset */
2709 if (bio->bi_css)
2710 bio_associate_blkcg(new, bio->bi_css);
Chris Mason3a9508b2015-08-21 10:05:39 -07002711#endif
Miao Xie23ea8e52014-09-12 18:43:54 +08002712 }
2713 return new;
2714}
Chris Mason9be33952013-05-17 18:30:14 -04002715
2716/* this also allocates from the btrfs_bioset */
2717struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2718{
Miao Xiefacc8a222013-07-25 19:22:34 +08002719 struct btrfs_io_bio *btrfs_bio;
2720 struct bio *bio;
2721
2722 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2723 if (bio) {
2724 btrfs_bio = btrfs_io_bio(bio);
2725 btrfs_bio->csum = NULL;
2726 btrfs_bio->csum_allocated = NULL;
2727 btrfs_bio->end_io = NULL;
2728 }
2729 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002730}
2731
2732
Jeff Mahoney355808c2011-10-03 23:23:14 -04002733static int __must_check submit_one_bio(int rw, struct bio *bio,
2734 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002735{
Chris Masond1310b22008-01-24 16:13:08 -05002736 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002737 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2738 struct page *page = bvec->bv_page;
2739 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002740 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002741
Miao Xie4eee4fa2012-12-21 09:17:45 +00002742 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002743
David Woodhouse902b22f2008-08-20 08:51:49 -04002744 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002745
2746 bio_get(bio);
2747
Chris Mason065631f2008-02-20 12:07:25 -05002748 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002749 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002750 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002751 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002752 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002753
Chris Masond1310b22008-01-24 16:13:08 -05002754 bio_put(bio);
2755 return ret;
2756}
2757
David Woodhouse64a16702009-07-15 23:29:37 +01002758static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002759 unsigned long offset, size_t size, struct bio *bio,
2760 unsigned long bio_flags)
2761{
2762 int ret = 0;
2763 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002764 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002765 bio_flags);
2766 BUG_ON(ret < 0);
2767 return ret;
2768
2769}
2770
Chris Masond1310b22008-01-24 16:13:08 -05002771static int submit_extent_page(int rw, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002772 struct writeback_control *wbc,
Chris Masond1310b22008-01-24 16:13:08 -05002773 struct page *page, sector_t sector,
2774 size_t size, unsigned long offset,
2775 struct block_device *bdev,
2776 struct bio **bio_ret,
2777 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002778 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002779 int mirror_num,
2780 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002781 unsigned long bio_flags,
2782 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002783{
2784 int ret = 0;
2785 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002786 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002787 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002788 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002789
2790 if (bio_ret && *bio_ret) {
2791 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002792 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002793 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002794 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002795 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002796
2797 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002798 force_bio_submit ||
David Woodhouse64a16702009-07-15 23:29:37 +01002799 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002800 bio_add_page(bio, page, page_size, offset) < page_size) {
2801 ret = submit_one_bio(rw, bio, mirror_num,
2802 prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002803 if (ret < 0) {
2804 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002805 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002806 }
Chris Masond1310b22008-01-24 16:13:08 -05002807 bio = NULL;
2808 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002809 if (wbc)
2810 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002811 return 0;
2812 }
2813 }
Chris Masonc8b97812008-10-29 14:49:59 -04002814
Kent Overstreetb54ffb72015-05-19 14:31:01 +02002815 bio = btrfs_bio_alloc(bdev, sector, BIO_MAX_PAGES,
2816 GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002817 if (!bio)
2818 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002819
Chris Masonc8b97812008-10-29 14:49:59 -04002820 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002821 bio->bi_end_io = end_io_func;
2822 bio->bi_private = tree;
Chris Masonda2f0f72015-07-02 13:57:22 -07002823 if (wbc) {
2824 wbc_init_bio(wbc, bio);
2825 wbc_account_io(wbc, page, page_size);
2826 }
Chris Mason70dec802008-01-29 09:59:12 -05002827
Chris Masond3977122009-01-05 21:25:51 -05002828 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002829 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002830 else
Chris Masonc8b97812008-10-29 14:49:59 -04002831 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002832
2833 return ret;
2834}
2835
Eric Sandeen48a3b632013-04-25 20:41:01 +00002836static void attach_extent_buffer_page(struct extent_buffer *eb,
2837 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002838{
2839 if (!PagePrivate(page)) {
2840 SetPagePrivate(page);
2841 page_cache_get(page);
2842 set_page_private(page, (unsigned long)eb);
2843 } else {
2844 WARN_ON(page->private != (unsigned long)eb);
2845 }
2846}
2847
Chris Masond1310b22008-01-24 16:13:08 -05002848void set_page_extent_mapped(struct page *page)
2849{
2850 if (!PagePrivate(page)) {
2851 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002852 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002853 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002854 }
2855}
2856
Miao Xie125bac012013-07-25 19:22:37 +08002857static struct extent_map *
2858__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2859 u64 start, u64 len, get_extent_t *get_extent,
2860 struct extent_map **em_cached)
2861{
2862 struct extent_map *em;
2863
2864 if (em_cached && *em_cached) {
2865 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002866 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002867 start < extent_map_end(em)) {
2868 atomic_inc(&em->refs);
2869 return em;
2870 }
2871
2872 free_extent_map(em);
2873 *em_cached = NULL;
2874 }
2875
2876 em = get_extent(inode, page, pg_offset, start, len, 0);
2877 if (em_cached && !IS_ERR_OR_NULL(em)) {
2878 BUG_ON(*em_cached);
2879 atomic_inc(&em->refs);
2880 *em_cached = em;
2881 }
2882 return em;
2883}
Chris Masond1310b22008-01-24 16:13:08 -05002884/*
2885 * basic readpage implementation. Locked extent state structs are inserted
2886 * into the tree that are removed when the IO is done (by the end_io
2887 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002888 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002889 */
Miao Xie99740902013-07-25 19:22:36 +08002890static int __do_readpage(struct extent_io_tree *tree,
2891 struct page *page,
2892 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002893 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002894 struct bio **bio, int mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01002895 unsigned long *bio_flags, int rw,
2896 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002897{
2898 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002899 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002900 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2901 u64 end;
2902 u64 cur = start;
2903 u64 extent_offset;
2904 u64 last_byte = i_size_read(inode);
2905 u64 block_start;
2906 u64 cur_end;
2907 sector_t sector;
2908 struct extent_map *em;
2909 struct block_device *bdev;
2910 int ret;
2911 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002912 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002913 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002914 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002915 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002916 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002917 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002918
2919 set_page_extent_mapped(page);
2920
Miao Xie99740902013-07-25 19:22:36 +08002921 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002922 if (!PageUptodate(page)) {
2923 if (cleancache_get_page(page) == 0) {
2924 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002925 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002926 goto out;
2927 }
2928 }
2929
Chris Masonc8b97812008-10-29 14:49:59 -04002930 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2931 char *userpage;
2932 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2933
2934 if (zero_offset) {
2935 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002936 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002937 memset(userpage + zero_offset, 0, iosize);
2938 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002939 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002940 }
2941 }
Chris Masond1310b22008-01-24 16:13:08 -05002942 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002943 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
Filipe Manana005efed2015-09-14 09:09:31 +01002944 bool force_bio_submit = false;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002945
Chris Masond1310b22008-01-24 16:13:08 -05002946 if (cur >= last_byte) {
2947 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002948 struct extent_state *cached = NULL;
2949
David Sterba306e16c2011-04-19 14:29:38 +02002950 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002951 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002952 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002953 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002954 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002955 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002956 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002957 if (!parent_locked)
2958 unlock_extent_cached(tree, cur,
2959 cur + iosize - 1,
2960 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002961 break;
2962 }
Miao Xie125bac012013-07-25 19:22:37 +08002963 em = __get_extent_map(inode, page, pg_offset, cur,
2964 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002965 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002966 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002967 if (!parent_locked)
2968 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002969 break;
2970 }
Chris Masond1310b22008-01-24 16:13:08 -05002971 extent_offset = cur - em->start;
2972 BUG_ON(extent_map_end(em) <= cur);
2973 BUG_ON(end < cur);
2974
Li Zefan261507a02010-12-17 14:21:50 +08002975 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002976 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002977 extent_set_compress_type(&this_bio_flag,
2978 em->compress_type);
2979 }
Chris Masonc8b97812008-10-29 14:49:59 -04002980
Chris Masond1310b22008-01-24 16:13:08 -05002981 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2982 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002983 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002984 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2985 disk_io_size = em->block_len;
2986 sector = em->block_start >> 9;
2987 } else {
2988 sector = (em->block_start + extent_offset) >> 9;
2989 disk_io_size = iosize;
2990 }
Chris Masond1310b22008-01-24 16:13:08 -05002991 bdev = em->bdev;
2992 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002993 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2994 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002995
2996 /*
2997 * If we have a file range that points to a compressed extent
2998 * and it's followed by a consecutive file range that points to
2999 * to the same compressed extent (possibly with a different
3000 * offset and/or length, so it either points to the whole extent
3001 * or only part of it), we must make sure we do not submit a
3002 * single bio to populate the pages for the 2 ranges because
3003 * this makes the compressed extent read zero out the pages
3004 * belonging to the 2nd range. Imagine the following scenario:
3005 *
3006 * File layout
3007 * [0 - 8K] [8K - 24K]
3008 * | |
3009 * | |
3010 * points to extent X, points to extent X,
3011 * offset 4K, length of 8K offset 0, length 16K
3012 *
3013 * [extent X, compressed length = 4K uncompressed length = 16K]
3014 *
3015 * If the bio to read the compressed extent covers both ranges,
3016 * it will decompress extent X into the pages belonging to the
3017 * first range and then it will stop, zeroing out the remaining
3018 * pages that belong to the other range that points to extent X.
3019 * So here we make sure we submit 2 bios, one for the first
3020 * range and another one for the third range. Both will target
3021 * the same physical extent from disk, but we can't currently
3022 * make the compressed bio endio callback populate the pages
3023 * for both ranges because each compressed bio is tightly
3024 * coupled with a single extent map, and each range can have
3025 * an extent map with a different offset value relative to the
3026 * uncompressed data of our extent and different lengths. This
3027 * is a corner case so we prioritize correctness over
3028 * non-optimal behavior (submitting 2 bios for the same extent).
3029 */
3030 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3031 prev_em_start && *prev_em_start != (u64)-1 &&
3032 *prev_em_start != em->orig_start)
3033 force_bio_submit = true;
3034
3035 if (prev_em_start)
3036 *prev_em_start = em->orig_start;
3037
Chris Masond1310b22008-01-24 16:13:08 -05003038 free_extent_map(em);
3039 em = NULL;
3040
3041 /* we've found a hole, just zero and go on */
3042 if (block_start == EXTENT_MAP_HOLE) {
3043 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003044 struct extent_state *cached = NULL;
3045
Cong Wang7ac687d2011-11-25 23:14:28 +08003046 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003047 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003048 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003049 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003050
3051 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003052 &cached, GFP_NOFS);
Filipe Manana5e6ecb32015-10-13 16:36:09 +01003053 if (parent_locked)
3054 free_extent_state(cached);
3055 else
3056 unlock_extent_cached(tree, cur,
3057 cur + iosize - 1,
3058 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003059 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003060 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003061 continue;
3062 }
3063 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003064 if (test_range_bit(tree, cur, cur_end,
3065 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003066 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003067 if (!parent_locked)
3068 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003069 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003070 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003071 continue;
3072 }
Chris Mason70dec802008-01-29 09:59:12 -05003073 /* we have an inline extent but it didn't get marked up
3074 * to date. Error out
3075 */
3076 if (block_start == EXTENT_MAP_INLINE) {
3077 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003078 if (!parent_locked)
3079 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003080 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003081 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003082 continue;
3083 }
Chris Masond1310b22008-01-24 16:13:08 -05003084
Josef Bacikc8f2f242013-02-11 11:33:00 -05003085 pnr -= page->index;
Chris Masonda2f0f72015-07-02 13:57:22 -07003086 ret = submit_extent_page(rw, tree, NULL, page,
David Sterba306e16c2011-04-19 14:29:38 +02003087 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003088 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003089 end_bio_extent_readpage, mirror_num,
3090 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003091 this_bio_flag,
3092 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003093 if (!ret) {
3094 nr++;
3095 *bio_flags = this_bio_flag;
3096 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003097 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003098 if (!parent_locked)
3099 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04003100 }
Chris Masond1310b22008-01-24 16:13:08 -05003101 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003102 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003103 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003104out:
Chris Masond1310b22008-01-24 16:13:08 -05003105 if (!nr) {
3106 if (!PageError(page))
3107 SetPageUptodate(page);
3108 unlock_page(page);
3109 }
3110 return 0;
3111}
3112
Miao Xie99740902013-07-25 19:22:36 +08003113static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3114 struct page *pages[], int nr_pages,
3115 u64 start, u64 end,
3116 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003117 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003118 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003119 unsigned long *bio_flags, int rw,
3120 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003121{
3122 struct inode *inode;
3123 struct btrfs_ordered_extent *ordered;
3124 int index;
3125
3126 inode = pages[0]->mapping->host;
3127 while (1) {
3128 lock_extent(tree, start, end);
3129 ordered = btrfs_lookup_ordered_range(inode, start,
3130 end - start + 1);
3131 if (!ordered)
3132 break;
3133 unlock_extent(tree, start, end);
3134 btrfs_start_ordered_extent(inode, ordered, 1);
3135 btrfs_put_ordered_extent(ordered);
3136 }
3137
3138 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003139 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003140 mirror_num, bio_flags, rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003141 page_cache_release(pages[index]);
3142 }
3143}
3144
3145static void __extent_readpages(struct extent_io_tree *tree,
3146 struct page *pages[],
3147 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003148 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003149 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003150 unsigned long *bio_flags, int rw,
3151 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003152{
Stefan Behrens35a36212013-08-14 18:12:25 +02003153 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003154 u64 end = 0;
3155 u64 page_start;
3156 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003157 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003158
3159 for (index = 0; index < nr_pages; index++) {
3160 page_start = page_offset(pages[index]);
3161 if (!end) {
3162 start = page_start;
3163 end = start + PAGE_CACHE_SIZE - 1;
3164 first_index = index;
3165 } else if (end + 1 == page_start) {
3166 end += PAGE_CACHE_SIZE;
3167 } else {
3168 __do_contiguous_readpages(tree, &pages[first_index],
3169 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003170 end, get_extent, em_cached,
3171 bio, mirror_num, bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003172 rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003173 start = page_start;
3174 end = start + PAGE_CACHE_SIZE - 1;
3175 first_index = index;
3176 }
3177 }
3178
3179 if (end)
3180 __do_contiguous_readpages(tree, &pages[first_index],
3181 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003182 end, get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003183 mirror_num, bio_flags, rw,
3184 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003185}
3186
3187static int __extent_read_full_page(struct extent_io_tree *tree,
3188 struct page *page,
3189 get_extent_t *get_extent,
3190 struct bio **bio, int mirror_num,
3191 unsigned long *bio_flags, int rw)
3192{
3193 struct inode *inode = page->mapping->host;
3194 struct btrfs_ordered_extent *ordered;
3195 u64 start = page_offset(page);
3196 u64 end = start + PAGE_CACHE_SIZE - 1;
3197 int ret;
3198
3199 while (1) {
3200 lock_extent(tree, start, end);
3201 ordered = btrfs_lookup_ordered_extent(inode, start);
3202 if (!ordered)
3203 break;
3204 unlock_extent(tree, start, end);
3205 btrfs_start_ordered_extent(inode, ordered, 1);
3206 btrfs_put_ordered_extent(ordered);
3207 }
3208
Miao Xie125bac012013-07-25 19:22:37 +08003209 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003210 bio_flags, rw, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003211 return ret;
3212}
3213
Chris Masond1310b22008-01-24 16:13:08 -05003214int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003215 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003216{
3217 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003218 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003219 int ret;
3220
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003221 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003222 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003223 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003224 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003225 return ret;
3226}
Chris Masond1310b22008-01-24 16:13:08 -05003227
Mark Fasheh4b384312013-08-06 11:42:50 -07003228int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3229 get_extent_t *get_extent, int mirror_num)
3230{
3231 struct bio *bio = NULL;
3232 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3233 int ret;
3234
3235 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003236 &bio_flags, READ, NULL);
Mark Fasheh4b384312013-08-06 11:42:50 -07003237 if (bio)
3238 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3239 return ret;
3240}
3241
Chris Mason11c83492009-04-20 15:50:09 -04003242static noinline void update_nr_written(struct page *page,
3243 struct writeback_control *wbc,
3244 unsigned long nr_written)
3245{
3246 wbc->nr_to_write -= nr_written;
3247 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3248 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3249 page->mapping->writeback_index = page->index + nr_written;
3250}
3251
Chris Masond1310b22008-01-24 16:13:08 -05003252/*
Chris Mason40f76582014-05-21 13:35:51 -07003253 * helper for __extent_writepage, doing all of the delayed allocation setup.
3254 *
3255 * This returns 1 if our fill_delalloc function did all the work required
3256 * to write the page (copy into inline extent). In this case the IO has
3257 * been started and the page is already unlocked.
3258 *
3259 * This returns 0 if all went well (page still locked)
3260 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003261 */
Chris Mason40f76582014-05-21 13:35:51 -07003262static noinline_for_stack int writepage_delalloc(struct inode *inode,
3263 struct page *page, struct writeback_control *wbc,
3264 struct extent_page_data *epd,
3265 u64 delalloc_start,
3266 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003267{
Chris Mason40f76582014-05-21 13:35:51 -07003268 struct extent_io_tree *tree = epd->tree;
3269 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3270 u64 nr_delalloc;
3271 u64 delalloc_to_write = 0;
3272 u64 delalloc_end = 0;
3273 int ret;
3274 int page_started = 0;
3275
3276 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3277 return 0;
3278
3279 while (delalloc_end < page_end) {
3280 nr_delalloc = find_lock_delalloc_range(inode, tree,
3281 page,
3282 &delalloc_start,
3283 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003284 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003285 if (nr_delalloc == 0) {
3286 delalloc_start = delalloc_end + 1;
3287 continue;
3288 }
3289 ret = tree->ops->fill_delalloc(inode, page,
3290 delalloc_start,
3291 delalloc_end,
3292 &page_started,
3293 nr_written);
3294 /* File system has been set read-only */
3295 if (ret) {
3296 SetPageError(page);
3297 /* fill_delalloc should be return < 0 for error
3298 * but just in case, we use > 0 here meaning the
3299 * IO is started, so we don't want to return > 0
3300 * unless things are going well.
3301 */
3302 ret = ret < 0 ? ret : -EIO;
3303 goto done;
3304 }
3305 /*
3306 * delalloc_end is already one less than the total
3307 * length, so we don't subtract one from
3308 * PAGE_CACHE_SIZE
3309 */
3310 delalloc_to_write += (delalloc_end - delalloc_start +
3311 PAGE_CACHE_SIZE) >>
3312 PAGE_CACHE_SHIFT;
3313 delalloc_start = delalloc_end + 1;
3314 }
3315 if (wbc->nr_to_write < delalloc_to_write) {
3316 int thresh = 8192;
3317
3318 if (delalloc_to_write < thresh * 2)
3319 thresh = delalloc_to_write;
3320 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3321 thresh);
3322 }
3323
3324 /* did the fill delalloc function already unlock and start
3325 * the IO?
3326 */
3327 if (page_started) {
3328 /*
3329 * we've unlocked the page, so we can't update
3330 * the mapping's writeback index, just update
3331 * nr_to_write.
3332 */
3333 wbc->nr_to_write -= *nr_written;
3334 return 1;
3335 }
3336
3337 ret = 0;
3338
3339done:
3340 return ret;
3341}
3342
3343/*
3344 * helper for __extent_writepage. This calls the writepage start hooks,
3345 * and does the loop to map the page into extents and bios.
3346 *
3347 * We return 1 if the IO is started and the page is unlocked,
3348 * 0 if all went well (page still locked)
3349 * < 0 if there were errors (page still locked)
3350 */
3351static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3352 struct page *page,
3353 struct writeback_control *wbc,
3354 struct extent_page_data *epd,
3355 loff_t i_size,
3356 unsigned long nr_written,
3357 int write_flags, int *nr_ret)
3358{
Chris Masond1310b22008-01-24 16:13:08 -05003359 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003360 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003361 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3362 u64 end;
3363 u64 cur = start;
3364 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003365 u64 block_start;
3366 u64 iosize;
3367 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003368 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003369 struct extent_map *em;
3370 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003371 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003372 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003373 int ret = 0;
3374 int nr = 0;
3375 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003376
Chris Mason247e7432008-07-17 12:53:51 -04003377 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003378 ret = tree->ops->writepage_start_hook(page, start,
3379 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003380 if (ret) {
3381 /* Fixup worker will requeue */
3382 if (ret == -EBUSY)
3383 wbc->pages_skipped++;
3384 else
3385 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003386
Chris Mason11c83492009-04-20 15:50:09 -04003387 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003388 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003389 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003390 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003391 }
3392 }
3393
Chris Mason11c83492009-04-20 15:50:09 -04003394 /*
3395 * we don't want to touch the inode after unlocking the page,
3396 * so we update the mapping writeback index now
3397 */
3398 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003399
Chris Masond1310b22008-01-24 16:13:08 -05003400 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003401 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003402 if (tree->ops && tree->ops->writepage_end_io_hook)
3403 tree->ops->writepage_end_io_hook(page, start,
3404 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003405 goto done;
3406 }
3407
Chris Masond1310b22008-01-24 16:13:08 -05003408 blocksize = inode->i_sb->s_blocksize;
3409
3410 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003411 u64 em_end;
3412 if (cur >= i_size) {
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, cur,
3415 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003416 break;
3417 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003418 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003419 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003420 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003421 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003422 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003423 break;
3424 }
3425
3426 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003427 em_end = extent_map_end(em);
3428 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003429 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003430 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003431 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003432 sector = (em->block_start + extent_offset) >> 9;
3433 bdev = em->bdev;
3434 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003435 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003436 free_extent_map(em);
3437 em = NULL;
3438
Chris Masonc8b97812008-10-29 14:49:59 -04003439 /*
3440 * compressed and inline extents are written through other
3441 * paths in the FS
3442 */
3443 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003444 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003445 /*
3446 * end_io notification does not happen here for
3447 * compressed extents
3448 */
3449 if (!compressed && tree->ops &&
3450 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003451 tree->ops->writepage_end_io_hook(page, cur,
3452 cur + iosize - 1,
3453 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003454 else if (compressed) {
3455 /* we don't want to end_page_writeback on
3456 * a compressed extent. this happens
3457 * elsewhere
3458 */
3459 nr++;
3460 }
3461
3462 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003463 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003464 continue;
3465 }
Chris Masonc8b97812008-10-29 14:49:59 -04003466
Chris Masond1310b22008-01-24 16:13:08 -05003467 if (tree->ops && tree->ops->writepage_io_hook) {
3468 ret = tree->ops->writepage_io_hook(page, cur,
3469 cur + iosize - 1);
3470 } else {
3471 ret = 0;
3472 }
Chris Mason1259ab72008-05-12 13:39:03 -04003473 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003474 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003475 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003476 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003477
Chris Masond1310b22008-01-24 16:13:08 -05003478 set_range_writeback(tree, cur, cur + iosize - 1);
3479 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003480 btrfs_err(BTRFS_I(inode)->root->fs_info,
3481 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003482 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003483 }
3484
Chris Masonda2f0f72015-07-02 13:57:22 -07003485 ret = submit_extent_page(write_flags, tree, wbc, page,
Chris Masonffbd5172009-04-20 15:50:09 -04003486 sector, iosize, pg_offset,
3487 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003488 end_bio_extent_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003489 0, 0, 0, false);
Chris Masond1310b22008-01-24 16:13:08 -05003490 if (ret)
3491 SetPageError(page);
3492 }
3493 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003494 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003495 nr++;
3496 }
3497done:
Chris Mason40f76582014-05-21 13:35:51 -07003498 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003499
Chris Mason11c83492009-04-20 15:50:09 -04003500done_unlocked:
3501
Chris Mason2c64c532009-09-02 15:04:12 -04003502 /* drop our reference on any cached states */
3503 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003504 return ret;
3505}
3506
3507/*
3508 * the writepage semantics are similar to regular writepage. extent
3509 * records are inserted to lock ranges in the tree, and as dirty areas
3510 * are found, they are marked writeback. Then the lock bits are removed
3511 * and the end_io handler clears the writeback ranges
3512 */
3513static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3514 void *data)
3515{
3516 struct inode *inode = page->mapping->host;
3517 struct extent_page_data *epd = data;
3518 u64 start = page_offset(page);
3519 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3520 int ret;
3521 int nr = 0;
3522 size_t pg_offset = 0;
3523 loff_t i_size = i_size_read(inode);
3524 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3525 int write_flags;
3526 unsigned long nr_written = 0;
3527
3528 if (wbc->sync_mode == WB_SYNC_ALL)
3529 write_flags = WRITE_SYNC;
3530 else
3531 write_flags = WRITE;
3532
3533 trace___extent_writepage(page, inode, wbc);
3534
3535 WARN_ON(!PageLocked(page));
3536
3537 ClearPageError(page);
3538
3539 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3540 if (page->index > end_index ||
3541 (page->index == end_index && !pg_offset)) {
3542 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3543 unlock_page(page);
3544 return 0;
3545 }
3546
3547 if (page->index == end_index) {
3548 char *userpage;
3549
3550 userpage = kmap_atomic(page);
3551 memset(userpage + pg_offset, 0,
3552 PAGE_CACHE_SIZE - pg_offset);
3553 kunmap_atomic(userpage);
3554 flush_dcache_page(page);
3555 }
3556
3557 pg_offset = 0;
3558
3559 set_page_extent_mapped(page);
3560
3561 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3562 if (ret == 1)
3563 goto done_unlocked;
3564 if (ret)
3565 goto done;
3566
3567 ret = __extent_writepage_io(inode, page, wbc, epd,
3568 i_size, nr_written, write_flags, &nr);
3569 if (ret == 1)
3570 goto done_unlocked;
3571
3572done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003573 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003574 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003575 set_page_writeback(page);
3576 end_page_writeback(page);
3577 }
Filipe Manana61391d52014-05-09 17:17:40 +01003578 if (PageError(page)) {
3579 ret = ret < 0 ? ret : -EIO;
3580 end_extent_writepage(page, ret, start, page_end);
3581 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003582 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003583 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003584
3585done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003586 return 0;
3587}
3588
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003589void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003590{
NeilBrown74316202014-07-07 15:16:04 +10003591 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3592 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003593}
3594
Chris Mason0e378df2014-05-19 20:55:27 -07003595static noinline_for_stack int
3596lock_extent_buffer_for_io(struct extent_buffer *eb,
3597 struct btrfs_fs_info *fs_info,
3598 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003599{
3600 unsigned long i, num_pages;
3601 int flush = 0;
3602 int ret = 0;
3603
3604 if (!btrfs_try_tree_write_lock(eb)) {
3605 flush = 1;
3606 flush_write_bio(epd);
3607 btrfs_tree_lock(eb);
3608 }
3609
3610 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3611 btrfs_tree_unlock(eb);
3612 if (!epd->sync_io)
3613 return 0;
3614 if (!flush) {
3615 flush_write_bio(epd);
3616 flush = 1;
3617 }
Chris Masona098d8e2012-03-21 12:09:56 -04003618 while (1) {
3619 wait_on_extent_buffer_writeback(eb);
3620 btrfs_tree_lock(eb);
3621 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3622 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003623 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003624 }
3625 }
3626
Josef Bacik51561ff2012-07-20 16:25:24 -04003627 /*
3628 * We need to do this to prevent races in people who check if the eb is
3629 * under IO since we can end up having no IO bits set for a short period
3630 * of time.
3631 */
3632 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003633 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3634 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003635 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003636 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003637 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3638 -eb->len,
3639 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003640 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003641 } else {
3642 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003643 }
3644
3645 btrfs_tree_unlock(eb);
3646
3647 if (!ret)
3648 return ret;
3649
3650 num_pages = num_extent_pages(eb->start, eb->len);
3651 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003652 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003653
3654 if (!trylock_page(p)) {
3655 if (!flush) {
3656 flush_write_bio(epd);
3657 flush = 1;
3658 }
3659 lock_page(p);
3660 }
3661 }
3662
3663 return ret;
3664}
3665
3666static void end_extent_buffer_writeback(struct extent_buffer *eb)
3667{
3668 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003669 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003670 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3671}
3672
Filipe Manana656f30d2014-09-26 12:25:56 +01003673static void set_btree_ioerr(struct page *page)
3674{
3675 struct extent_buffer *eb = (struct extent_buffer *)page->private;
3676 struct btrfs_inode *btree_ino = BTRFS_I(eb->fs_info->btree_inode);
3677
3678 SetPageError(page);
3679 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3680 return;
3681
3682 /*
3683 * If writeback for a btree extent that doesn't belong to a log tree
3684 * failed, increment the counter transaction->eb_write_errors.
3685 * We do this because while the transaction is running and before it's
3686 * committing (when we call filemap_fdata[write|wait]_range against
3687 * the btree inode), we might have
3688 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3689 * returns an error or an error happens during writeback, when we're
3690 * committing the transaction we wouldn't know about it, since the pages
3691 * can be no longer dirty nor marked anymore for writeback (if a
3692 * subsequent modification to the extent buffer didn't happen before the
3693 * transaction commit), which makes filemap_fdata[write|wait]_range not
3694 * able to find the pages tagged with SetPageError at transaction
3695 * commit time. So if this happens we must abort the transaction,
3696 * otherwise we commit a super block with btree roots that point to
3697 * btree nodes/leafs whose content on disk is invalid - either garbage
3698 * or the content of some node/leaf from a past generation that got
3699 * cowed or deleted and is no longer valid.
3700 *
3701 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3702 * not be enough - we need to distinguish between log tree extents vs
3703 * non-log tree extents, and the next filemap_fdatawait_range() call
3704 * will catch and clear such errors in the mapping - and that call might
3705 * be from a log sync and not from a transaction commit. Also, checking
3706 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3707 * not done and would not be reliable - the eb might have been released
3708 * from memory and reading it back again means that flag would not be
3709 * set (since it's a runtime flag, not persisted on disk).
3710 *
3711 * Using the flags below in the btree inode also makes us achieve the
3712 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3713 * writeback for all dirty pages and before filemap_fdatawait_range()
3714 * is called, the writeback for all dirty pages had already finished
3715 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3716 * filemap_fdatawait_range() would return success, as it could not know
3717 * that writeback errors happened (the pages were no longer tagged for
3718 * writeback).
3719 */
3720 switch (eb->log_index) {
3721 case -1:
3722 set_bit(BTRFS_INODE_BTREE_ERR, &btree_ino->runtime_flags);
3723 break;
3724 case 0:
3725 set_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
3726 break;
3727 case 1:
3728 set_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
3729 break;
3730 default:
3731 BUG(); /* unexpected, logic error */
3732 }
3733}
3734
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003735static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003736{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003737 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003738 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003739 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003740
Kent Overstreet2c30c712013-11-07 12:20:26 -08003741 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003742 struct page *page = bvec->bv_page;
3743
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003744 eb = (struct extent_buffer *)page->private;
3745 BUG_ON(!eb);
3746 done = atomic_dec_and_test(&eb->io_pages);
3747
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003748 if (bio->bi_error ||
3749 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003750 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003751 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003752 }
3753
3754 end_page_writeback(page);
3755
3756 if (!done)
3757 continue;
3758
3759 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003760 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003761
3762 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003763}
3764
Chris Mason0e378df2014-05-19 20:55:27 -07003765static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003766 struct btrfs_fs_info *fs_info,
3767 struct writeback_control *wbc,
3768 struct extent_page_data *epd)
3769{
3770 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003771 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003772 u64 offset = eb->start;
3773 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003774 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003775 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003776 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003777
Filipe Manana656f30d2014-09-26 12:25:56 +01003778 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003779 num_pages = num_extent_pages(eb->start, eb->len);
3780 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003781 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3782 bio_flags = EXTENT_BIO_TREE_LOG;
3783
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003784 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003785 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003786
3787 clear_page_dirty_for_io(p);
3788 set_page_writeback(p);
Chris Masonda2f0f72015-07-02 13:57:22 -07003789 ret = submit_extent_page(rw, tree, wbc, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003790 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3791 -1, end_bio_extent_buffer_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003792 0, epd->bio_flags, bio_flags, false);
Josef Bacikde0022b2012-09-25 14:25:58 -04003793 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003794 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003795 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003796 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003797 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3798 end_extent_buffer_writeback(eb);
3799 ret = -EIO;
3800 break;
3801 }
3802 offset += PAGE_CACHE_SIZE;
3803 update_nr_written(p, wbc, 1);
3804 unlock_page(p);
3805 }
3806
3807 if (unlikely(ret)) {
3808 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003809 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003810 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003811 unlock_page(p);
3812 }
3813 }
3814
3815 return ret;
3816}
3817
3818int btree_write_cache_pages(struct address_space *mapping,
3819 struct writeback_control *wbc)
3820{
3821 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3822 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3823 struct extent_buffer *eb, *prev_eb = NULL;
3824 struct extent_page_data epd = {
3825 .bio = NULL,
3826 .tree = tree,
3827 .extent_locked = 0,
3828 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003829 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003830 };
3831 int ret = 0;
3832 int done = 0;
3833 int nr_to_write_done = 0;
3834 struct pagevec pvec;
3835 int nr_pages;
3836 pgoff_t index;
3837 pgoff_t end; /* Inclusive */
3838 int scanned = 0;
3839 int tag;
3840
3841 pagevec_init(&pvec, 0);
3842 if (wbc->range_cyclic) {
3843 index = mapping->writeback_index; /* Start from prev offset */
3844 end = -1;
3845 } else {
3846 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3847 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3848 scanned = 1;
3849 }
3850 if (wbc->sync_mode == WB_SYNC_ALL)
3851 tag = PAGECACHE_TAG_TOWRITE;
3852 else
3853 tag = PAGECACHE_TAG_DIRTY;
3854retry:
3855 if (wbc->sync_mode == WB_SYNC_ALL)
3856 tag_pages_for_writeback(mapping, index, end);
3857 while (!done && !nr_to_write_done && (index <= end) &&
3858 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3859 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3860 unsigned i;
3861
3862 scanned = 1;
3863 for (i = 0; i < nr_pages; i++) {
3864 struct page *page = pvec.pages[i];
3865
3866 if (!PagePrivate(page))
3867 continue;
3868
3869 if (!wbc->range_cyclic && page->index > end) {
3870 done = 1;
3871 break;
3872 }
3873
Josef Bacikb5bae262012-09-14 13:43:01 -04003874 spin_lock(&mapping->private_lock);
3875 if (!PagePrivate(page)) {
3876 spin_unlock(&mapping->private_lock);
3877 continue;
3878 }
3879
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003880 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003881
3882 /*
3883 * Shouldn't happen and normally this would be a BUG_ON
3884 * but no sense in crashing the users box for something
3885 * we can survive anyway.
3886 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303887 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003888 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003889 continue;
3890 }
3891
Josef Bacikb5bae262012-09-14 13:43:01 -04003892 if (eb == prev_eb) {
3893 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003894 continue;
3895 }
3896
Josef Bacikb5bae262012-09-14 13:43:01 -04003897 ret = atomic_inc_not_zero(&eb->refs);
3898 spin_unlock(&mapping->private_lock);
3899 if (!ret)
3900 continue;
3901
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003902 prev_eb = eb;
3903 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3904 if (!ret) {
3905 free_extent_buffer(eb);
3906 continue;
3907 }
3908
3909 ret = write_one_eb(eb, fs_info, wbc, &epd);
3910 if (ret) {
3911 done = 1;
3912 free_extent_buffer(eb);
3913 break;
3914 }
3915 free_extent_buffer(eb);
3916
3917 /*
3918 * the filesystem may choose to bump up nr_to_write.
3919 * We have to make sure to honor the new nr_to_write
3920 * at any time
3921 */
3922 nr_to_write_done = wbc->nr_to_write <= 0;
3923 }
3924 pagevec_release(&pvec);
3925 cond_resched();
3926 }
3927 if (!scanned && !done) {
3928 /*
3929 * We hit the last page and there is more work to be done: wrap
3930 * back to the start of the file
3931 */
3932 scanned = 1;
3933 index = 0;
3934 goto retry;
3935 }
3936 flush_write_bio(&epd);
3937 return ret;
3938}
3939
Chris Masond1310b22008-01-24 16:13:08 -05003940/**
3941 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
3942 * @mapping: address space structure to write
3943 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3944 * @writepage: function called for each page
3945 * @data: data passed to writepage function
3946 *
3947 * If a page is already under I/O, write_cache_pages() skips it, even
3948 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3949 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3950 * and msync() need to guarantee that all the data which was dirty at the time
3951 * the call was made get new I/O started against them. If wbc->sync_mode is
3952 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3953 * existing IO to complete.
3954 */
Chris Mason4bef0842008-09-08 11:18:08 -04003955static int extent_write_cache_pages(struct extent_io_tree *tree,
3956 struct address_space *mapping,
3957 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003958 writepage_t writepage, void *data,
3959 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003960{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003961 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003962 int ret = 0;
3963 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01003964 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003965 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003966 struct pagevec pvec;
3967 int nr_pages;
3968 pgoff_t index;
3969 pgoff_t end; /* Inclusive */
3970 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003971 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003972
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003973 /*
3974 * We have to hold onto the inode so that ordered extents can do their
3975 * work when the IO finishes. The alternative to this is failing to add
3976 * an ordered extent if the igrab() fails there and that is a huge pain
3977 * to deal with, so instead just hold onto the inode throughout the
3978 * writepages operation. If it fails here we are freeing up the inode
3979 * anyway and we'd rather not waste our time writing out stuff that is
3980 * going to be truncated anyway.
3981 */
3982 if (!igrab(inode))
3983 return 0;
3984
Chris Masond1310b22008-01-24 16:13:08 -05003985 pagevec_init(&pvec, 0);
3986 if (wbc->range_cyclic) {
3987 index = mapping->writeback_index; /* Start from prev offset */
3988 end = -1;
3989 } else {
3990 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3991 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003992 scanned = 1;
3993 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003994 if (wbc->sync_mode == WB_SYNC_ALL)
3995 tag = PAGECACHE_TAG_TOWRITE;
3996 else
3997 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003998retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003999 if (wbc->sync_mode == WB_SYNC_ALL)
4000 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004001 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00004002 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
4003 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05004004 unsigned i;
4005
4006 scanned = 1;
4007 for (i = 0; i < nr_pages; i++) {
4008 struct page *page = pvec.pages[i];
4009
4010 /*
4011 * At this point we hold neither mapping->tree_lock nor
4012 * lock on the page itself: the page may be truncated or
4013 * invalidated (changing page->mapping to NULL), or even
4014 * swizzled back from swapper_space to tmpfs file
4015 * mapping
4016 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004017 if (!trylock_page(page)) {
4018 flush_fn(data);
4019 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004020 }
Chris Masond1310b22008-01-24 16:13:08 -05004021
4022 if (unlikely(page->mapping != mapping)) {
4023 unlock_page(page);
4024 continue;
4025 }
4026
4027 if (!wbc->range_cyclic && page->index > end) {
4028 done = 1;
4029 unlock_page(page);
4030 continue;
4031 }
4032
Chris Masond2c3f4f2008-11-19 12:44:22 -05004033 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05004034 if (PageWriteback(page))
4035 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05004036 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004037 }
Chris Masond1310b22008-01-24 16:13:08 -05004038
4039 if (PageWriteback(page) ||
4040 !clear_page_dirty_for_io(page)) {
4041 unlock_page(page);
4042 continue;
4043 }
4044
4045 ret = (*writepage)(page, wbc, data);
4046
4047 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4048 unlock_page(page);
4049 ret = 0;
4050 }
Filipe Manana61391d52014-05-09 17:17:40 +01004051 if (!err && ret < 0)
4052 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004053
4054 /*
4055 * the filesystem may choose to bump up nr_to_write.
4056 * We have to make sure to honor the new nr_to_write
4057 * at any time
4058 */
4059 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004060 }
4061 pagevec_release(&pvec);
4062 cond_resched();
4063 }
Filipe Manana61391d52014-05-09 17:17:40 +01004064 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05004065 /*
4066 * We hit the last page and there is more work to be done: wrap
4067 * back to the start of the file
4068 */
4069 scanned = 1;
4070 index = 0;
4071 goto retry;
4072 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004073 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01004074 return err;
Chris Masond1310b22008-01-24 16:13:08 -05004075}
Chris Masond1310b22008-01-24 16:13:08 -05004076
Chris Masonffbd5172009-04-20 15:50:09 -04004077static void flush_epd_write_bio(struct extent_page_data *epd)
4078{
4079 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004080 int rw = WRITE;
4081 int ret;
4082
Chris Masonffbd5172009-04-20 15:50:09 -04004083 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04004084 rw = WRITE_SYNC;
4085
Josef Bacikde0022b2012-09-25 14:25:58 -04004086 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004087 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004088 epd->bio = NULL;
4089 }
4090}
4091
Chris Masond2c3f4f2008-11-19 12:44:22 -05004092static noinline void flush_write_bio(void *data)
4093{
4094 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004095 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004096}
4097
Chris Masond1310b22008-01-24 16:13:08 -05004098int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4099 get_extent_t *get_extent,
4100 struct writeback_control *wbc)
4101{
4102 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004103 struct extent_page_data epd = {
4104 .bio = NULL,
4105 .tree = tree,
4106 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004107 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004108 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004109 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004110 };
Chris Masond1310b22008-01-24 16:13:08 -05004111
Chris Masond1310b22008-01-24 16:13:08 -05004112 ret = __extent_writepage(page, wbc, &epd);
4113
Chris Masonffbd5172009-04-20 15:50:09 -04004114 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004115 return ret;
4116}
Chris Masond1310b22008-01-24 16:13:08 -05004117
Chris Mason771ed682008-11-06 22:02:51 -05004118int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4119 u64 start, u64 end, get_extent_t *get_extent,
4120 int mode)
4121{
4122 int ret = 0;
4123 struct address_space *mapping = inode->i_mapping;
4124 struct page *page;
4125 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
4126 PAGE_CACHE_SHIFT;
4127
4128 struct extent_page_data epd = {
4129 .bio = NULL,
4130 .tree = tree,
4131 .get_extent = get_extent,
4132 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004133 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004134 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004135 };
4136 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004137 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004138 .nr_to_write = nr_pages * 2,
4139 .range_start = start,
4140 .range_end = end + 1,
4141 };
4142
Chris Masond3977122009-01-05 21:25:51 -05004143 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05004144 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
4145 if (clear_page_dirty_for_io(page))
4146 ret = __extent_writepage(page, &wbc_writepages, &epd);
4147 else {
4148 if (tree->ops && tree->ops->writepage_end_io_hook)
4149 tree->ops->writepage_end_io_hook(page, start,
4150 start + PAGE_CACHE_SIZE - 1,
4151 NULL, 1);
4152 unlock_page(page);
4153 }
4154 page_cache_release(page);
4155 start += PAGE_CACHE_SIZE;
4156 }
4157
Chris Masonffbd5172009-04-20 15:50:09 -04004158 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004159 return ret;
4160}
Chris Masond1310b22008-01-24 16:13:08 -05004161
4162int extent_writepages(struct extent_io_tree *tree,
4163 struct address_space *mapping,
4164 get_extent_t *get_extent,
4165 struct writeback_control *wbc)
4166{
4167 int ret = 0;
4168 struct extent_page_data epd = {
4169 .bio = NULL,
4170 .tree = tree,
4171 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004172 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004173 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004174 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004175 };
4176
Chris Mason4bef0842008-09-08 11:18:08 -04004177 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004178 __extent_writepage, &epd,
4179 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004180 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004181 return ret;
4182}
Chris Masond1310b22008-01-24 16:13:08 -05004183
4184int extent_readpages(struct extent_io_tree *tree,
4185 struct address_space *mapping,
4186 struct list_head *pages, unsigned nr_pages,
4187 get_extent_t get_extent)
4188{
4189 struct bio *bio = NULL;
4190 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004191 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004192 struct page *pagepool[16];
4193 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004194 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004195 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004196 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004197
Chris Masond1310b22008-01-24 16:13:08 -05004198 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004199 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004200
4201 prefetchw(&page->flags);
4202 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004203 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004204 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004205 page_cache_release(page);
4206 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004207 }
Liu Bo67c96842012-07-20 21:43:09 -06004208
4209 pagepool[nr++] = page;
4210 if (nr < ARRAY_SIZE(pagepool))
4211 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004212 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004213 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004214 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004215 }
Miao Xie99740902013-07-25 19:22:36 +08004216 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004217 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004218 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004219
Miao Xie125bac012013-07-25 19:22:37 +08004220 if (em_cached)
4221 free_extent_map(em_cached);
4222
Chris Masond1310b22008-01-24 16:13:08 -05004223 BUG_ON(!list_empty(pages));
4224 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004225 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004226 return 0;
4227}
Chris Masond1310b22008-01-24 16:13:08 -05004228
4229/*
4230 * basic invalidatepage code, this waits on any locked or writeback
4231 * ranges corresponding to the page, and then deletes any extent state
4232 * records from the tree
4233 */
4234int extent_invalidatepage(struct extent_io_tree *tree,
4235 struct page *page, unsigned long offset)
4236{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004237 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004238 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004239 u64 end = start + PAGE_CACHE_SIZE - 1;
4240 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4241
Qu Wenruofda28322013-02-26 08:10:22 +00004242 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004243 if (start > end)
4244 return 0;
4245
David Sterbaff13db42015-12-03 14:30:40 +01004246 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004247 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004248 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004249 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4250 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004251 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004252 return 0;
4253}
Chris Masond1310b22008-01-24 16:13:08 -05004254
4255/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004256 * a helper for releasepage, this tests for areas of the page that
4257 * are locked or under IO and drops the related state bits if it is safe
4258 * to drop the page.
4259 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004260static int try_release_extent_state(struct extent_map_tree *map,
4261 struct extent_io_tree *tree,
4262 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004263{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004264 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004265 u64 end = start + PAGE_CACHE_SIZE - 1;
4266 int ret = 1;
4267
Chris Mason211f90e2008-07-18 11:56:15 -04004268 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004269 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004270 ret = 0;
4271 else {
4272 if ((mask & GFP_NOFS) == GFP_NOFS)
4273 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004274 /*
4275 * at this point we can safely clear everything except the
4276 * locked bit and the nodatasum bit
4277 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004278 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004279 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4280 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004281
4282 /* if clear_extent_bit failed for enomem reasons,
4283 * we can't allow the release to continue.
4284 */
4285 if (ret < 0)
4286 ret = 0;
4287 else
4288 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004289 }
4290 return ret;
4291}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004292
4293/*
Chris Masond1310b22008-01-24 16:13:08 -05004294 * a helper for releasepage. As long as there are no locked extents
4295 * in the range corresponding to the page, both state records and extent
4296 * map records are removed
4297 */
4298int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004299 struct extent_io_tree *tree, struct page *page,
4300 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004301{
4302 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004303 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004304 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004305
Mel Gormand0164ad2015-11-06 16:28:21 -08004306 if (gfpflags_allow_blocking(mask) &&
Chris Mason70dec802008-01-29 09:59:12 -05004307 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004308 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004309 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004310 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004311 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004312 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004313 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004314 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004315 break;
4316 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004317 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4318 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004319 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004320 free_extent_map(em);
4321 break;
4322 }
4323 if (!test_range_bit(tree, em->start,
4324 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004325 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004326 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004327 remove_extent_mapping(map, em);
4328 /* once for the rb tree */
4329 free_extent_map(em);
4330 }
4331 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004332 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004333
4334 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004335 free_extent_map(em);
4336 }
Chris Masond1310b22008-01-24 16:13:08 -05004337 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004338 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004339}
Chris Masond1310b22008-01-24 16:13:08 -05004340
Chris Masonec29ed52011-02-23 16:23:20 -05004341/*
4342 * helper function for fiemap, which doesn't want to see any holes.
4343 * This maps until we find something past 'last'
4344 */
4345static struct extent_map *get_extent_skip_holes(struct inode *inode,
4346 u64 offset,
4347 u64 last,
4348 get_extent_t *get_extent)
4349{
4350 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4351 struct extent_map *em;
4352 u64 len;
4353
4354 if (offset >= last)
4355 return NULL;
4356
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304357 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004358 len = last - offset;
4359 if (len == 0)
4360 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004361 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004362 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004363 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004364 return em;
4365
4366 /* if this isn't a hole return it */
4367 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4368 em->block_start != EXTENT_MAP_HOLE) {
4369 return em;
4370 }
4371
4372 /* this is a hole, advance to the next extent */
4373 offset = extent_map_end(em);
4374 free_extent_map(em);
4375 if (offset >= last)
4376 break;
4377 }
4378 return NULL;
4379}
4380
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004381int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4382 __u64 start, __u64 len, get_extent_t *get_extent)
4383{
Josef Bacik975f84f2010-11-23 19:36:57 +00004384 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004385 u64 off = start;
4386 u64 max = start + len;
4387 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004388 u32 found_type;
4389 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004390 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004391 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004392 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004393 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004394 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004395 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004396 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004397 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004398 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004399 u64 em_start = 0;
4400 u64 em_len = 0;
4401 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004402
4403 if (len == 0)
4404 return -EINVAL;
4405
Josef Bacik975f84f2010-11-23 19:36:57 +00004406 path = btrfs_alloc_path();
4407 if (!path)
4408 return -ENOMEM;
4409 path->leave_spinning = 1;
4410
Qu Wenruo2c919432014-07-18 09:55:43 +08004411 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4412 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004413
Chris Masonec29ed52011-02-23 16:23:20 -05004414 /*
4415 * lookup the last file extent. We're not using i_size here
4416 * because there might be preallocation past i_size
4417 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004418 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4419 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004420 if (ret < 0) {
4421 btrfs_free_path(path);
4422 return ret;
4423 }
4424 WARN_ON(!ret);
4425 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004426 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004427 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004428
Chris Masonec29ed52011-02-23 16:23:20 -05004429 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004430 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004431 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004432 /* have to trust i_size as the end */
4433 last = (u64)-1;
4434 last_for_get_extent = isize;
4435 } else {
4436 /*
4437 * remember the start of the last extent. There are a
4438 * bunch of different factors that go into the length of the
4439 * extent, so its much less complex to remember where it started
4440 */
4441 last = found_key.offset;
4442 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004443 }
Liu Bofe09e162013-09-22 12:54:23 +08004444 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004445
Chris Masonec29ed52011-02-23 16:23:20 -05004446 /*
4447 * we might have some extents allocated but more delalloc past those
4448 * extents. so, we trust isize unless the start of the last extent is
4449 * beyond isize
4450 */
4451 if (last < isize) {
4452 last = (u64)-1;
4453 last_for_get_extent = isize;
4454 }
4455
David Sterbaff13db42015-12-03 14:30:40 +01004456 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004457 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004458
Josef Bacik4d479cf2011-11-17 11:34:31 -05004459 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004460 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004461 if (!em)
4462 goto out;
4463 if (IS_ERR(em)) {
4464 ret = PTR_ERR(em);
4465 goto out;
4466 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004467
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004468 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004469 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004470
Chris Masonea8efc72011-03-08 11:54:40 -05004471 /* break if the extent we found is outside the range */
4472 if (em->start >= max || extent_map_end(em) < off)
4473 break;
4474
4475 /*
4476 * get_extent may return an extent that starts before our
4477 * requested range. We have to make sure the ranges
4478 * we return to fiemap always move forward and don't
4479 * overlap, so adjust the offsets here
4480 */
4481 em_start = max(em->start, off);
4482
4483 /*
4484 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004485 * for adjusting the disk offset below. Only do this if the
4486 * extent isn't compressed since our in ram offset may be past
4487 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004488 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004489 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4490 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004491 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004492 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004493 disko = 0;
4494 flags = 0;
4495
Chris Masonea8efc72011-03-08 11:54:40 -05004496 /*
4497 * bump off for our next call to get_extent
4498 */
4499 off = extent_map_end(em);
4500 if (off >= max)
4501 end = 1;
4502
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004503 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004504 end = 1;
4505 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004506 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004507 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4508 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004509 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004510 flags |= (FIEMAP_EXTENT_DELALLOC |
4511 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004512 } else if (fieinfo->fi_extents_max) {
4513 u64 bytenr = em->block_start -
4514 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004515
Chris Masonea8efc72011-03-08 11:54:40 -05004516 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004517
4518 /*
4519 * As btrfs supports shared space, this information
4520 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004521 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4522 * then we're just getting a count and we can skip the
4523 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004524 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004525 ret = btrfs_check_shared(NULL, root->fs_info,
4526 root->objectid,
4527 btrfs_ino(inode), bytenr);
4528 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004529 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004530 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004531 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004532 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004533 }
4534 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4535 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004536 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4537 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004538
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004539 free_extent_map(em);
4540 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004541 if ((em_start >= last) || em_len == (u64)-1 ||
4542 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004543 flags |= FIEMAP_EXTENT_LAST;
4544 end = 1;
4545 }
4546
Chris Masonec29ed52011-02-23 16:23:20 -05004547 /* now scan forward to see if this is really the last extent. */
4548 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4549 get_extent);
4550 if (IS_ERR(em)) {
4551 ret = PTR_ERR(em);
4552 goto out;
4553 }
4554 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004555 flags |= FIEMAP_EXTENT_LAST;
4556 end = 1;
4557 }
Chris Masonec29ed52011-02-23 16:23:20 -05004558 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4559 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004560 if (ret) {
4561 if (ret == 1)
4562 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004563 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004564 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004565 }
4566out_free:
4567 free_extent_map(em);
4568out:
Liu Bofe09e162013-09-22 12:54:23 +08004569 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004570 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004571 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004572 return ret;
4573}
4574
Chris Mason727011e2010-08-06 13:21:20 -04004575static void __free_extent_buffer(struct extent_buffer *eb)
4576{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004577 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004578 kmem_cache_free(extent_buffer_cache, eb);
4579}
4580
Josef Bacika26e8c92014-03-28 17:07:27 -04004581int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004582{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004583 return (atomic_read(&eb->io_pages) ||
4584 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4585 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004586}
4587
Miao Xie897ca6e2010-10-26 20:57:29 -04004588/*
4589 * Helper for releasing extent buffer page.
4590 */
David Sterbaa50924e2014-07-31 00:51:36 +02004591static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e2010-10-26 20:57:29 -04004592{
4593 unsigned long index;
4594 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004595 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004596
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004597 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004598
David Sterbaa50924e2014-07-31 00:51:36 +02004599 index = num_extent_pages(eb->start, eb->len);
4600 if (index == 0)
Miao Xie897ca6e2010-10-26 20:57:29 -04004601 return;
4602
4603 do {
4604 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004605 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004606 if (!page)
4607 continue;
4608 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004609 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004610 /*
4611 * We do this since we'll remove the pages after we've
4612 * removed the eb from the radix tree, so we could race
4613 * and have this page now attached to the new eb. So
4614 * only clear page_private if it's still connected to
4615 * this eb.
4616 */
4617 if (PagePrivate(page) &&
4618 page->private == (unsigned long)eb) {
4619 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4620 BUG_ON(PageDirty(page));
4621 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004622 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004623 * We need to make sure we haven't be attached
4624 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004625 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004626 ClearPagePrivate(page);
4627 set_page_private(page, 0);
4628 /* One for the page private */
Miao Xie897ca6e2010-10-26 20:57:29 -04004629 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004630 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004631
4632 if (mapped)
4633 spin_unlock(&page->mapping->private_lock);
4634
4635 /* One for when we alloced the page */
4636 page_cache_release(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004637 } while (index != 0);
Miao Xie897ca6e2010-10-26 20:57:29 -04004638}
4639
4640/*
4641 * Helper for releasing the extent buffer.
4642 */
4643static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4644{
David Sterbaa50924e2014-07-31 00:51:36 +02004645 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e2010-10-26 20:57:29 -04004646 __free_extent_buffer(eb);
4647}
4648
Josef Bacikf28491e2013-12-16 13:24:27 -05004649static struct extent_buffer *
4650__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004651 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004652{
4653 struct extent_buffer *eb = NULL;
4654
Michal Hockod1b5c562015-08-19 14:17:40 +02004655 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004656 eb->start = start;
4657 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004658 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004659 eb->bflags = 0;
4660 rwlock_init(&eb->lock);
4661 atomic_set(&eb->write_locks, 0);
4662 atomic_set(&eb->read_locks, 0);
4663 atomic_set(&eb->blocking_readers, 0);
4664 atomic_set(&eb->blocking_writers, 0);
4665 atomic_set(&eb->spinning_readers, 0);
4666 atomic_set(&eb->spinning_writers, 0);
4667 eb->lock_nested = 0;
4668 init_waitqueue_head(&eb->write_lock_wq);
4669 init_waitqueue_head(&eb->read_lock_wq);
4670
4671 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4672
4673 spin_lock_init(&eb->refs_lock);
4674 atomic_set(&eb->refs, 1);
4675 atomic_set(&eb->io_pages, 0);
4676
4677 /*
4678 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4679 */
4680 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4681 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4682 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4683
4684 return eb;
4685}
4686
4687struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4688{
4689 unsigned long i;
4690 struct page *p;
4691 struct extent_buffer *new;
4692 unsigned long num_pages = num_extent_pages(src->start, src->len);
4693
David Sterba3f556f72014-06-15 03:20:26 +02004694 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004695 if (new == NULL)
4696 return NULL;
4697
4698 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004699 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004700 if (!p) {
4701 btrfs_release_extent_buffer(new);
4702 return NULL;
4703 }
4704 attach_extent_buffer_page(new, p);
4705 WARN_ON(PageDirty(p));
4706 SetPageUptodate(p);
4707 new->pages[i] = p;
4708 }
4709
4710 copy_extent_buffer(new, src, 0, 0, src->len);
4711 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4712 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4713
4714 return new;
4715}
4716
David Sterba3f556f72014-06-15 03:20:26 +02004717struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4718 u64 start)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004719{
4720 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004721 unsigned long len;
4722 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004723 unsigned long i;
4724
David Sterba3f556f72014-06-15 03:20:26 +02004725 if (!fs_info) {
4726 /*
4727 * Called only from tests that don't always have a fs_info
4728 * available, but we know that nodesize is 4096
4729 */
4730 len = 4096;
4731 } else {
4732 len = fs_info->tree_root->nodesize;
4733 }
4734 num_pages = num_extent_pages(0, len);
4735
4736 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004737 if (!eb)
4738 return NULL;
4739
4740 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004741 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004742 if (!eb->pages[i])
4743 goto err;
4744 }
4745 set_extent_buffer_uptodate(eb);
4746 btrfs_set_header_nritems(eb, 0);
4747 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4748
4749 return eb;
4750err:
4751 for (; i > 0; i--)
4752 __free_page(eb->pages[i - 1]);
4753 __free_extent_buffer(eb);
4754 return NULL;
4755}
4756
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004757static void check_buffer_tree_ref(struct extent_buffer *eb)
4758{
Chris Mason242e18c2013-01-29 17:49:37 -05004759 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004760 /* the ref bit is tricky. We have to make sure it is set
4761 * if we have the buffer dirty. Otherwise the
4762 * code to free a buffer can end up dropping a dirty
4763 * page
4764 *
4765 * Once the ref bit is set, it won't go away while the
4766 * buffer is dirty or in writeback, and it also won't
4767 * go away while we have the reference count on the
4768 * eb bumped.
4769 *
4770 * We can't just set the ref bit without bumping the
4771 * ref on the eb because free_extent_buffer might
4772 * see the ref bit and try to clear it. If this happens
4773 * free_extent_buffer might end up dropping our original
4774 * ref by mistake and freeing the page before we are able
4775 * to add one more ref.
4776 *
4777 * So bump the ref count first, then set the bit. If someone
4778 * beat us to it, drop the ref we added.
4779 */
Chris Mason242e18c2013-01-29 17:49:37 -05004780 refs = atomic_read(&eb->refs);
4781 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4782 return;
4783
Josef Bacik594831c2012-07-20 16:11:08 -04004784 spin_lock(&eb->refs_lock);
4785 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004786 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004787 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004788}
4789
Mel Gorman2457aec2014-06-04 16:10:31 -07004790static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4791 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004792{
4793 unsigned long num_pages, i;
4794
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004795 check_buffer_tree_ref(eb);
4796
Josef Bacik5df42352012-03-15 18:24:42 -04004797 num_pages = num_extent_pages(eb->start, eb->len);
4798 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004799 struct page *p = eb->pages[i];
4800
Mel Gorman2457aec2014-06-04 16:10:31 -07004801 if (p != accessed)
4802 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004803 }
4804}
4805
Josef Bacikf28491e2013-12-16 13:24:27 -05004806struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4807 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004808{
4809 struct extent_buffer *eb;
4810
4811 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004812 eb = radix_tree_lookup(&fs_info->buffer_radix,
4813 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004814 if (eb && atomic_inc_not_zero(&eb->refs)) {
4815 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004816 /*
4817 * Lock our eb's refs_lock to avoid races with
4818 * free_extent_buffer. When we get our eb it might be flagged
4819 * with EXTENT_BUFFER_STALE and another task running
4820 * free_extent_buffer might have seen that flag set,
4821 * eb->refs == 2, that the buffer isn't under IO (dirty and
4822 * writeback flags not set) and it's still in the tree (flag
4823 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4824 * of decrementing the extent buffer's reference count twice.
4825 * So here we could race and increment the eb's reference count,
4826 * clear its stale flag, mark it as dirty and drop our reference
4827 * before the other task finishes executing free_extent_buffer,
4828 * which would later result in an attempt to free an extent
4829 * buffer that is dirty.
4830 */
4831 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4832 spin_lock(&eb->refs_lock);
4833 spin_unlock(&eb->refs_lock);
4834 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004835 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004836 return eb;
4837 }
4838 rcu_read_unlock();
4839
4840 return NULL;
4841}
4842
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004843#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4844struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004845 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004846{
4847 struct extent_buffer *eb, *exists = NULL;
4848 int ret;
4849
4850 eb = find_extent_buffer(fs_info, start);
4851 if (eb)
4852 return eb;
David Sterba3f556f72014-06-15 03:20:26 +02004853 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004854 if (!eb)
4855 return NULL;
4856 eb->fs_info = fs_info;
4857again:
4858 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4859 if (ret)
4860 goto free_eb;
4861 spin_lock(&fs_info->buffer_lock);
4862 ret = radix_tree_insert(&fs_info->buffer_radix,
4863 start >> PAGE_CACHE_SHIFT, eb);
4864 spin_unlock(&fs_info->buffer_lock);
4865 radix_tree_preload_end();
4866 if (ret == -EEXIST) {
4867 exists = find_extent_buffer(fs_info, start);
4868 if (exists)
4869 goto free_eb;
4870 else
4871 goto again;
4872 }
4873 check_buffer_tree_ref(eb);
4874 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4875
4876 /*
4877 * We will free dummy extent buffer's if they come into
4878 * free_extent_buffer with a ref count of 2, but if we are using this we
4879 * want the buffers to stay in memory until we're done with them, so
4880 * bump the ref count again.
4881 */
4882 atomic_inc(&eb->refs);
4883 return eb;
4884free_eb:
4885 btrfs_release_extent_buffer(eb);
4886 return exists;
4887}
4888#endif
4889
Josef Bacikf28491e2013-12-16 13:24:27 -05004890struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004891 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004892{
David Sterbace3e6982014-06-15 03:00:04 +02004893 unsigned long len = fs_info->tree_root->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004894 unsigned long num_pages = num_extent_pages(start, len);
4895 unsigned long i;
4896 unsigned long index = start >> PAGE_CACHE_SHIFT;
4897 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004898 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004899 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004900 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004901 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004902 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004903
Josef Bacikf28491e2013-12-16 13:24:27 -05004904 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004905 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004906 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004907
David Sterba23d79d82014-06-15 02:55:29 +02004908 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004909 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004910 return NULL;
4911
Chris Mason727011e2010-08-06 13:21:20 -04004912 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004913 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Josef Bacik4804b382012-10-05 16:43:45 -04004914 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004915 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004916
4917 spin_lock(&mapping->private_lock);
4918 if (PagePrivate(p)) {
4919 /*
4920 * We could have already allocated an eb for this page
4921 * and attached one so lets see if we can get a ref on
4922 * the existing eb, and if we can we know it's good and
4923 * we can just return that one, else we know we can just
4924 * overwrite page->private.
4925 */
4926 exists = (struct extent_buffer *)p->private;
4927 if (atomic_inc_not_zero(&exists->refs)) {
4928 spin_unlock(&mapping->private_lock);
4929 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004930 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004931 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004932 goto free_eb;
4933 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004934 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004935
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004936 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004937 * Do this so attach doesn't complain and we need to
4938 * drop the ref the old guy had.
4939 */
4940 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004941 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004942 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004943 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004944 attach_extent_buffer_page(eb, p);
4945 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004946 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004947 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004948 if (!PageUptodate(p))
4949 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004950
4951 /*
4952 * see below about how we avoid a nasty race with release page
4953 * and why we unlock later
4954 */
Chris Masond1310b22008-01-24 16:13:08 -05004955 }
4956 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004957 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004958again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004959 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4960 if (ret)
4961 goto free_eb;
4962
Josef Bacikf28491e2013-12-16 13:24:27 -05004963 spin_lock(&fs_info->buffer_lock);
4964 ret = radix_tree_insert(&fs_info->buffer_radix,
4965 start >> PAGE_CACHE_SHIFT, eb);
4966 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004967 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004968 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004969 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004970 if (exists)
4971 goto free_eb;
4972 else
Josef Bacik115391d2012-03-09 09:51:43 -05004973 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004974 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004975 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004976 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004977 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004978
4979 /*
4980 * there is a race where release page may have
4981 * tried to find this extent buffer in the radix
4982 * but failed. It will tell the VM it is safe to
4983 * reclaim the, and it will clear the page private bit.
4984 * We must make sure to set the page private bit properly
4985 * after the extent buffer is in the radix tree so
4986 * it doesn't get lost
4987 */
Chris Mason727011e2010-08-06 13:21:20 -04004988 SetPageChecked(eb->pages[0]);
4989 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004990 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04004991 ClearPageChecked(p);
4992 unlock_page(p);
4993 }
4994 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004995 return eb;
4996
Chris Mason6af118ce2008-07-22 11:18:07 -04004997free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004998 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04004999 for (i = 0; i < num_pages; i++) {
5000 if (eb->pages[i])
5001 unlock_page(eb->pages[i]);
5002 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005003
Miao Xie897ca6e2010-10-26 20:57:29 -04005004 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005005 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005006}
Chris Masond1310b22008-01-24 16:13:08 -05005007
Josef Bacik3083ee22012-03-09 16:01:49 -05005008static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5009{
5010 struct extent_buffer *eb =
5011 container_of(head, struct extent_buffer, rcu_head);
5012
5013 __free_extent_buffer(eb);
5014}
5015
Josef Bacik3083ee22012-03-09 16:01:49 -05005016/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005017static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005018{
5019 WARN_ON(atomic_read(&eb->refs) == 0);
5020 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005021 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005022 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005023
Jan Schmidt815a51c2012-05-16 17:00:02 +02005024 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005025
Josef Bacikf28491e2013-12-16 13:24:27 -05005026 spin_lock(&fs_info->buffer_lock);
5027 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02005028 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005029 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005030 } else {
5031 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005032 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005033
5034 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005035 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005036#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5037 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5038 __free_extent_buffer(eb);
5039 return 1;
5040 }
5041#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005042 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005043 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005044 }
5045 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005046
5047 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005048}
5049
Chris Masond1310b22008-01-24 16:13:08 -05005050void free_extent_buffer(struct extent_buffer *eb)
5051{
Chris Mason242e18c2013-01-29 17:49:37 -05005052 int refs;
5053 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005054 if (!eb)
5055 return;
5056
Chris Mason242e18c2013-01-29 17:49:37 -05005057 while (1) {
5058 refs = atomic_read(&eb->refs);
5059 if (refs <= 3)
5060 break;
5061 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5062 if (old == refs)
5063 return;
5064 }
5065
Josef Bacik3083ee22012-03-09 16:01:49 -05005066 spin_lock(&eb->refs_lock);
5067 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005068 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5069 atomic_dec(&eb->refs);
5070
5071 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005072 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005073 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005074 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5075 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005076
Josef Bacik3083ee22012-03-09 16:01:49 -05005077 /*
5078 * I know this is terrible, but it's temporary until we stop tracking
5079 * the uptodate bits and such for the extent buffers.
5080 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005081 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005082}
Chris Masond1310b22008-01-24 16:13:08 -05005083
Josef Bacik3083ee22012-03-09 16:01:49 -05005084void free_extent_buffer_stale(struct extent_buffer *eb)
5085{
5086 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005087 return;
5088
Josef Bacik3083ee22012-03-09 16:01:49 -05005089 spin_lock(&eb->refs_lock);
5090 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5091
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005092 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005093 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5094 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005095 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005096}
5097
Chris Mason1d4284b2012-03-28 20:31:37 -04005098void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005099{
Chris Masond1310b22008-01-24 16:13:08 -05005100 unsigned long i;
5101 unsigned long num_pages;
5102 struct page *page;
5103
Chris Masond1310b22008-01-24 16:13:08 -05005104 num_pages = num_extent_pages(eb->start, eb->len);
5105
5106 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005107 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005108 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005109 continue;
5110
Chris Masona61e6f22008-07-22 11:18:08 -04005111 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005112 WARN_ON(!PagePrivate(page));
5113
Chris Masond1310b22008-01-24 16:13:08 -05005114 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005115 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005116 if (!PageDirty(page)) {
5117 radix_tree_tag_clear(&page->mapping->page_tree,
5118 page_index(page),
5119 PAGECACHE_TAG_DIRTY);
5120 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005121 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005122 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005123 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005124 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005125 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005126}
Chris Masond1310b22008-01-24 16:13:08 -05005127
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005128int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005129{
5130 unsigned long i;
5131 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005132 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005133
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005134 check_buffer_tree_ref(eb);
5135
Chris Masonb9473432009-03-13 11:00:37 -04005136 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005137
Chris Masond1310b22008-01-24 16:13:08 -05005138 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005139 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005140 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5141
Chris Masonb9473432009-03-13 11:00:37 -04005142 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005143 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005144 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005145}
Chris Masond1310b22008-01-24 16:13:08 -05005146
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005147int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005148{
5149 unsigned long i;
5150 struct page *page;
5151 unsigned long num_pages;
5152
Chris Masonb4ce94d2009-02-04 09:25:08 -05005153 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005154 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005155 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005156 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005157 if (page)
5158 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005159 }
5160 return 0;
5161}
5162
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005163int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005164{
5165 unsigned long i;
5166 struct page *page;
5167 unsigned long num_pages;
5168
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005169 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005170 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005171 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005172 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005173 SetPageUptodate(page);
5174 }
5175 return 0;
5176}
Chris Masond1310b22008-01-24 16:13:08 -05005177
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005178int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005179{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005180 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005181}
Chris Masond1310b22008-01-24 16:13:08 -05005182
5183int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02005184 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005185 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005186{
5187 unsigned long i;
5188 unsigned long start_i;
5189 struct page *page;
5190 int err;
5191 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005192 int locked_pages = 0;
5193 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005194 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005195 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005196 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005197 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005198
Chris Masonb4ce94d2009-02-04 09:25:08 -05005199 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005200 return 0;
5201
Chris Masond1310b22008-01-24 16:13:08 -05005202 if (start) {
5203 WARN_ON(start < eb->start);
5204 start_i = (start >> PAGE_CACHE_SHIFT) -
5205 (eb->start >> PAGE_CACHE_SHIFT);
5206 } else {
5207 start_i = 0;
5208 }
5209
5210 num_pages = num_extent_pages(eb->start, eb->len);
5211 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005212 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005213 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005214 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005215 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005216 } else {
5217 lock_page(page);
5218 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005219 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005220 if (!PageUptodate(page)) {
5221 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005222 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005223 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005224 }
5225 if (all_uptodate) {
5226 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005227 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005228 goto unlock_exit;
5229 }
5230
Filipe Manana656f30d2014-09-26 12:25:56 +01005231 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005232 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005233 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005234 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005235 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005236 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005237 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005238 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005239 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005240 mirror_num, &bio_flags,
5241 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005242 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005243 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005244 } else {
5245 unlock_page(page);
5246 }
5247 }
5248
Jeff Mahoney355808c2011-10-03 23:23:14 -04005249 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005250 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5251 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005252 if (err)
5253 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005254 }
Chris Masona86c12c2008-02-07 10:50:54 -05005255
Arne Jansenbb82ab82011-06-10 14:06:53 +02005256 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005257 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005258
Chris Masond1310b22008-01-24 16:13:08 -05005259 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005260 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005261 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005262 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005263 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005264 }
Chris Masond3977122009-01-05 21:25:51 -05005265
Chris Masond1310b22008-01-24 16:13:08 -05005266 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005267
5268unlock_exit:
5269 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005270 while (locked_pages > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005271 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005272 i++;
5273 unlock_page(page);
5274 locked_pages--;
5275 }
5276 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005277}
Chris Masond1310b22008-01-24 16:13:08 -05005278
5279void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5280 unsigned long start,
5281 unsigned long len)
5282{
5283 size_t cur;
5284 size_t offset;
5285 struct page *page;
5286 char *kaddr;
5287 char *dst = (char *)dstv;
5288 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5289 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005290
5291 WARN_ON(start > eb->len);
5292 WARN_ON(start + len > eb->start + eb->len);
5293
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005294 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005295
Chris Masond3977122009-01-05 21:25:51 -05005296 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005297 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005298
5299 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005300 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005301 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005302
5303 dst += cur;
5304 len -= cur;
5305 offset = 0;
5306 i++;
5307 }
5308}
Chris Masond1310b22008-01-24 16:13:08 -05005309
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005310int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5311 unsigned long start,
5312 unsigned long len)
5313{
5314 size_t cur;
5315 size_t offset;
5316 struct page *page;
5317 char *kaddr;
5318 char __user *dst = (char __user *)dstv;
5319 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5320 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5321 int ret = 0;
5322
5323 WARN_ON(start > eb->len);
5324 WARN_ON(start + len > eb->start + eb->len);
5325
5326 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5327
5328 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005329 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005330
5331 cur = min(len, (PAGE_CACHE_SIZE - offset));
5332 kaddr = page_address(page);
5333 if (copy_to_user(dst, kaddr + offset, cur)) {
5334 ret = -EFAULT;
5335 break;
5336 }
5337
5338 dst += cur;
5339 len -= cur;
5340 offset = 0;
5341 i++;
5342 }
5343
5344 return ret;
5345}
5346
Chris Masond1310b22008-01-24 16:13:08 -05005347int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005348 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005349 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005350 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005351{
5352 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5353 char *kaddr;
5354 struct page *p;
5355 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5356 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5357 unsigned long end_i = (start_offset + start + min_len - 1) >>
5358 PAGE_CACHE_SHIFT;
5359
5360 if (i != end_i)
5361 return -EINVAL;
5362
5363 if (i == 0) {
5364 offset = start_offset;
5365 *map_start = 0;
5366 } else {
5367 offset = 0;
5368 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5369 }
Chris Masond3977122009-01-05 21:25:51 -05005370
Chris Masond1310b22008-01-24 16:13:08 -05005371 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005372 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005373 "wanted %lu %lu\n",
5374 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005375 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005376 }
5377
David Sterbafb85fc92014-07-31 01:03:53 +02005378 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005379 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005380 *map = kaddr + offset;
5381 *map_len = PAGE_CACHE_SIZE - offset;
5382 return 0;
5383}
Chris Masond1310b22008-01-24 16:13:08 -05005384
Chris Masond1310b22008-01-24 16:13:08 -05005385int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5386 unsigned long start,
5387 unsigned long len)
5388{
5389 size_t cur;
5390 size_t offset;
5391 struct page *page;
5392 char *kaddr;
5393 char *ptr = (char *)ptrv;
5394 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5395 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5396 int ret = 0;
5397
5398 WARN_ON(start > eb->len);
5399 WARN_ON(start + len > eb->start + eb->len);
5400
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005401 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005402
Chris Masond3977122009-01-05 21:25:51 -05005403 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005404 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005405
5406 cur = min(len, (PAGE_CACHE_SIZE - offset));
5407
Chris Masona6591712011-07-19 12:04:14 -04005408 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005409 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005410 if (ret)
5411 break;
5412
5413 ptr += cur;
5414 len -= cur;
5415 offset = 0;
5416 i++;
5417 }
5418 return ret;
5419}
Chris Masond1310b22008-01-24 16:13:08 -05005420
5421void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5422 unsigned long start, unsigned long len)
5423{
5424 size_t cur;
5425 size_t offset;
5426 struct page *page;
5427 char *kaddr;
5428 char *src = (char *)srcv;
5429 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5430 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5431
5432 WARN_ON(start > eb->len);
5433 WARN_ON(start + len > eb->start + eb->len);
5434
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005435 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005436
Chris Masond3977122009-01-05 21:25:51 -05005437 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005438 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005439 WARN_ON(!PageUptodate(page));
5440
5441 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005442 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005443 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005444
5445 src += cur;
5446 len -= cur;
5447 offset = 0;
5448 i++;
5449 }
5450}
Chris Masond1310b22008-01-24 16:13:08 -05005451
5452void memset_extent_buffer(struct extent_buffer *eb, char c,
5453 unsigned long start, unsigned long len)
5454{
5455 size_t cur;
5456 size_t offset;
5457 struct page *page;
5458 char *kaddr;
5459 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5460 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5461
5462 WARN_ON(start > eb->len);
5463 WARN_ON(start + len > eb->start + eb->len);
5464
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005465 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005466
Chris Masond3977122009-01-05 21:25:51 -05005467 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005468 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005469 WARN_ON(!PageUptodate(page));
5470
5471 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005472 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005473 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005474
5475 len -= cur;
5476 offset = 0;
5477 i++;
5478 }
5479}
Chris Masond1310b22008-01-24 16:13:08 -05005480
5481void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5482 unsigned long dst_offset, unsigned long src_offset,
5483 unsigned long len)
5484{
5485 u64 dst_len = dst->len;
5486 size_t cur;
5487 size_t offset;
5488 struct page *page;
5489 char *kaddr;
5490 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5491 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5492
5493 WARN_ON(src->len != dst_len);
5494
5495 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005496 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005497
Chris Masond3977122009-01-05 21:25:51 -05005498 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005499 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005500 WARN_ON(!PageUptodate(page));
5501
5502 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5503
Chris Masona6591712011-07-19 12:04:14 -04005504 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005505 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005506
5507 src_offset += cur;
5508 len -= cur;
5509 offset = 0;
5510 i++;
5511 }
5512}
Chris Masond1310b22008-01-24 16:13:08 -05005513
Sergei Trofimovich33872062011-04-11 21:52:52 +00005514static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5515{
5516 unsigned long distance = (src > dst) ? src - dst : dst - src;
5517 return distance < len;
5518}
5519
Chris Masond1310b22008-01-24 16:13:08 -05005520static void copy_pages(struct page *dst_page, struct page *src_page,
5521 unsigned long dst_off, unsigned long src_off,
5522 unsigned long len)
5523{
Chris Masona6591712011-07-19 12:04:14 -04005524 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005525 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005526 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005527
Sergei Trofimovich33872062011-04-11 21:52:52 +00005528 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005529 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005530 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005531 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005532 if (areas_overlap(src_off, dst_off, len))
5533 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005534 }
Chris Masond1310b22008-01-24 16:13:08 -05005535
Chris Mason727011e2010-08-06 13:21:20 -04005536 if (must_memmove)
5537 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5538 else
5539 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005540}
5541
5542void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5543 unsigned long src_offset, unsigned long len)
5544{
5545 size_t cur;
5546 size_t dst_off_in_page;
5547 size_t src_off_in_page;
5548 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5549 unsigned long dst_i;
5550 unsigned long src_i;
5551
5552 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005553 btrfs_err(dst->fs_info,
5554 "memmove bogus src_offset %lu move "
5555 "len %lu dst len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005556 BUG_ON(1);
5557 }
5558 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005559 btrfs_err(dst->fs_info,
5560 "memmove bogus dst_offset %lu move "
5561 "len %lu dst len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005562 BUG_ON(1);
5563 }
5564
Chris Masond3977122009-01-05 21:25:51 -05005565 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005566 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005567 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005568 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005569 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005570
5571 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5572 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5573
5574 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5575 src_off_in_page));
5576 cur = min_t(unsigned long, cur,
5577 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5578
David Sterbafb85fc92014-07-31 01:03:53 +02005579 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005580 dst_off_in_page, src_off_in_page, cur);
5581
5582 src_offset += cur;
5583 dst_offset += cur;
5584 len -= cur;
5585 }
5586}
Chris Masond1310b22008-01-24 16:13:08 -05005587
5588void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5589 unsigned long src_offset, unsigned long len)
5590{
5591 size_t cur;
5592 size_t dst_off_in_page;
5593 size_t src_off_in_page;
5594 unsigned long dst_end = dst_offset + len - 1;
5595 unsigned long src_end = src_offset + len - 1;
5596 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5597 unsigned long dst_i;
5598 unsigned long src_i;
5599
5600 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005601 btrfs_err(dst->fs_info, "memmove bogus src_offset %lu move "
5602 "len %lu len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005603 BUG_ON(1);
5604 }
5605 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005606 btrfs_err(dst->fs_info, "memmove bogus dst_offset %lu move "
5607 "len %lu len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005608 BUG_ON(1);
5609 }
Chris Mason727011e2010-08-06 13:21:20 -04005610 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005611 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5612 return;
5613 }
Chris Masond3977122009-01-05 21:25:51 -05005614 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005615 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5616 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5617
5618 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005619 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005620 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005621 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005622
5623 cur = min_t(unsigned long, len, src_off_in_page + 1);
5624 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005625 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005626 dst_off_in_page - cur + 1,
5627 src_off_in_page - cur + 1, cur);
5628
5629 dst_end -= cur;
5630 src_end -= cur;
5631 len -= cur;
5632 }
5633}
Chris Mason6af118ce2008-07-22 11:18:07 -04005634
David Sterbaf7a52a42013-04-26 14:56:29 +00005635int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005636{
Chris Mason6af118ce2008-07-22 11:18:07 -04005637 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005638
Miao Xie19fe0a82010-10-26 20:57:29 -04005639 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005640 * We need to make sure noboody is attaching this page to an eb right
5641 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005642 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005643 spin_lock(&page->mapping->private_lock);
5644 if (!PagePrivate(page)) {
5645 spin_unlock(&page->mapping->private_lock);
5646 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005647 }
5648
Josef Bacik3083ee22012-03-09 16:01:49 -05005649 eb = (struct extent_buffer *)page->private;
5650 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005651
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005652 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005653 * This is a little awful but should be ok, we need to make sure that
5654 * the eb doesn't disappear out from under us while we're looking at
5655 * this page.
5656 */
5657 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005658 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005659 spin_unlock(&eb->refs_lock);
5660 spin_unlock(&page->mapping->private_lock);
5661 return 0;
5662 }
5663 spin_unlock(&page->mapping->private_lock);
5664
Josef Bacik3083ee22012-03-09 16:01:49 -05005665 /*
5666 * If tree ref isn't set then we know the ref on this eb is a real ref,
5667 * so just return, this page will likely be freed soon anyway.
5668 */
5669 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5670 spin_unlock(&eb->refs_lock);
5671 return 0;
5672 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005673
David Sterbaf7a52a42013-04-26 14:56:29 +00005674 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005675}