blob: 9abe18763a7fb001632246fd712a64fdffcc0225 [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 */
1288int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1289 gfp_t mask)
1290{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001291 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001292 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001293}
Chris Masond1310b22008-01-24 16:13:08 -05001294
1295int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001296 unsigned bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001297{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001298 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001299 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001300}
Chris Masond1310b22008-01-24 16:13:08 -05001301
Qu Wenruod38ed272015-10-12 14:53:37 +08001302int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1303 unsigned bits, gfp_t mask,
1304 struct extent_changeset *changeset)
1305{
1306 /*
1307 * We don't support EXTENT_LOCKED yet, as current changeset will
1308 * record any bits changed, so for EXTENT_LOCKED case, it will
1309 * either fail with -EEXIST or changeset will record the whole
1310 * range.
1311 */
1312 BUG_ON(bits & EXTENT_LOCKED);
1313
1314 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, mask,
1315 changeset);
1316}
1317
Qu Wenruofefdc552015-10-12 15:35:38 +08001318int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1319 unsigned bits, int wake, int delete,
1320 struct extent_state **cached, gfp_t mask)
1321{
1322 return __clear_extent_bit(tree, start, end, bits, wake, delete,
1323 cached, mask, NULL);
1324}
1325
Chris Masond1310b22008-01-24 16:13:08 -05001326int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001327 unsigned bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001328{
Filipe Manana0f318712015-05-14 20:41:07 +01001329 int wake = 0;
1330
1331 if (bits & EXTENT_LOCKED)
1332 wake = 1;
1333
1334 return clear_extent_bit(tree, start, end, bits, wake, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001335}
Chris Masond1310b22008-01-24 16:13:08 -05001336
Qu Wenruofefdc552015-10-12 15:35:38 +08001337int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1338 unsigned bits, gfp_t mask,
1339 struct extent_changeset *changeset)
1340{
1341 /*
1342 * Don't support EXTENT_LOCKED case, same reason as
1343 * set_record_extent_bits().
1344 */
1345 BUG_ON(bits & EXTENT_LOCKED);
1346
1347 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask,
1348 changeset);
1349}
1350
Chris Masond1310b22008-01-24 16:13:08 -05001351int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001352 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001353{
1354 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001355 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001356 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001357}
Chris Masond1310b22008-01-24 16:13:08 -05001358
Liu Bo9e8a4a82012-09-05 19:10:51 -06001359int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1360 struct extent_state **cached_state, gfp_t mask)
1361{
1362 return set_extent_bit(tree, start, end,
1363 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1364 NULL, cached_state, mask);
1365}
1366
Chris Masond1310b22008-01-24 16:13:08 -05001367int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1368 gfp_t mask)
1369{
1370 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001371 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001372 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001373}
Chris Masond1310b22008-01-24 16:13:08 -05001374
1375int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1376 gfp_t mask)
1377{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001378 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001379 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001380}
Chris Masond1310b22008-01-24 16:13:08 -05001381
Chris Masond1310b22008-01-24 16:13:08 -05001382int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001383 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001384{
Liu Bo6b67a322013-03-28 08:30:28 +00001385 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001386 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001387}
Chris Masond1310b22008-01-24 16:13:08 -05001388
Josef Bacik5fd02042012-05-02 14:00:54 -04001389int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1390 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001391{
Chris Mason2c64c532009-09-02 15:04:12 -04001392 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001393 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001394}
Chris Masond1310b22008-01-24 16:13:08 -05001395
Chris Masond352ac62008-09-29 15:18:18 -04001396/*
1397 * either insert or lock state struct between start and end use mask to tell
1398 * us if waiting is desired.
1399 */
Chris Mason1edbb732009-09-02 13:24:36 -04001400int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001401 unsigned bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001402{
1403 int err;
1404 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001405
Chris Masond1310b22008-01-24 16:13:08 -05001406 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001407 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1408 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001409 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001410 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001411 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1412 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001413 } else
Chris Masond1310b22008-01-24 16:13:08 -05001414 break;
Chris Masond1310b22008-01-24 16:13:08 -05001415 WARN_ON(start > end);
1416 }
1417 return err;
1418}
Chris Masond1310b22008-01-24 16:13:08 -05001419
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001420int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001421{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001422 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001423}
1424
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001425int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001426{
1427 int err;
1428 u64 failed_start;
1429
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001430 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001431 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001432 if (err == -EEXIST) {
1433 if (failed_start > start)
1434 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001435 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001436 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001437 }
Josef Bacik25179202008-10-29 14:49:05 -04001438 return 1;
1439}
Josef Bacik25179202008-10-29 14:49:05 -04001440
Chris Mason2c64c532009-09-02 15:04:12 -04001441int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1442 struct extent_state **cached, gfp_t mask)
1443{
1444 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1445 mask);
1446}
1447
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001448int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001449{
Chris Mason2c64c532009-09-02 15:04:12 -04001450 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001451 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001452}
Chris Masond1310b22008-01-24 16:13:08 -05001453
Chris Mason4adaa612013-03-26 13:07:00 -04001454int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1455{
1456 unsigned long index = start >> PAGE_CACHE_SHIFT;
1457 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1458 struct page *page;
1459
1460 while (index <= end_index) {
1461 page = find_get_page(inode->i_mapping, index);
1462 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1463 clear_page_dirty_for_io(page);
1464 page_cache_release(page);
1465 index++;
1466 }
1467 return 0;
1468}
1469
1470int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1471{
1472 unsigned long index = start >> PAGE_CACHE_SHIFT;
1473 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1474 struct page *page;
1475
1476 while (index <= end_index) {
1477 page = find_get_page(inode->i_mapping, index);
1478 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001479 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001480 account_page_redirty(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001481 page_cache_release(page);
1482 index++;
1483 }
1484 return 0;
1485}
1486
Chris Masond1310b22008-01-24 16:13:08 -05001487/*
Chris Masond1310b22008-01-24 16:13:08 -05001488 * helper function to set both pages and extents in the tree writeback
1489 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001490static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001491{
1492 unsigned long index = start >> PAGE_CACHE_SHIFT;
1493 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1494 struct page *page;
1495
1496 while (index <= end_index) {
1497 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001498 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001499 set_page_writeback(page);
1500 page_cache_release(page);
1501 index++;
1502 }
Chris Masond1310b22008-01-24 16:13:08 -05001503 return 0;
1504}
Chris Masond1310b22008-01-24 16:13:08 -05001505
Chris Masond352ac62008-09-29 15:18:18 -04001506/* find the first state struct with 'bits' set after 'start', and
1507 * return it. tree->lock must be held. NULL will returned if
1508 * nothing was found after 'start'
1509 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001510static struct extent_state *
1511find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001512 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001513{
1514 struct rb_node *node;
1515 struct extent_state *state;
1516
1517 /*
1518 * this search will find all the extents that end after
1519 * our range starts.
1520 */
1521 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001522 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001523 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001524
Chris Masond3977122009-01-05 21:25:51 -05001525 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001526 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001527 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001528 return state;
Chris Masond3977122009-01-05 21:25:51 -05001529
Chris Masond7fc6402008-02-18 12:12:38 -05001530 node = rb_next(node);
1531 if (!node)
1532 break;
1533 }
1534out:
1535 return NULL;
1536}
Chris Masond7fc6402008-02-18 12:12:38 -05001537
Chris Masond352ac62008-09-29 15:18:18 -04001538/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001539 * find the first offset in the io tree with 'bits' set. zero is
1540 * returned if we find something, and *start_ret and *end_ret are
1541 * set to reflect the state struct that was found.
1542 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001543 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001544 */
1545int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001546 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001547 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001548{
1549 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001550 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001551 int ret = 1;
1552
1553 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001554 if (cached_state && *cached_state) {
1555 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001556 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001557 n = rb_next(&state->rb_node);
1558 while (n) {
1559 state = rb_entry(n, struct extent_state,
1560 rb_node);
1561 if (state->state & bits)
1562 goto got_it;
1563 n = rb_next(n);
1564 }
1565 free_extent_state(*cached_state);
1566 *cached_state = NULL;
1567 goto out;
1568 }
1569 free_extent_state(*cached_state);
1570 *cached_state = NULL;
1571 }
1572
Xiao Guangrong69261c42011-07-14 03:19:45 +00001573 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001574got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001575 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001576 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001577 *start_ret = state->start;
1578 *end_ret = state->end;
1579 ret = 0;
1580 }
Josef Bacike6138872012-09-27 17:07:30 -04001581out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001582 spin_unlock(&tree->lock);
1583 return ret;
1584}
1585
1586/*
Chris Masond352ac62008-09-29 15:18:18 -04001587 * find a contiguous range of bytes in the file marked as delalloc, not
1588 * more than 'max_bytes'. start and end are used to return the range,
1589 *
1590 * 1 is returned if we find something, 0 if nothing was in the tree
1591 */
Chris Masonc8b97812008-10-29 14:49:59 -04001592static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001593 u64 *start, u64 *end, u64 max_bytes,
1594 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001595{
1596 struct rb_node *node;
1597 struct extent_state *state;
1598 u64 cur_start = *start;
1599 u64 found = 0;
1600 u64 total_bytes = 0;
1601
Chris Masoncad321a2008-12-17 14:51:42 -05001602 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001603
Chris Masond1310b22008-01-24 16:13:08 -05001604 /*
1605 * this search will find all the extents that end after
1606 * our range starts.
1607 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001608 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001609 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001610 if (!found)
1611 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001612 goto out;
1613 }
1614
Chris Masond3977122009-01-05 21:25:51 -05001615 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001616 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001617 if (found && (state->start != cur_start ||
1618 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001619 goto out;
1620 }
1621 if (!(state->state & EXTENT_DELALLOC)) {
1622 if (!found)
1623 *end = state->end;
1624 goto out;
1625 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001626 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001627 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001628 *cached_state = state;
1629 atomic_inc(&state->refs);
1630 }
Chris Masond1310b22008-01-24 16:13:08 -05001631 found++;
1632 *end = state->end;
1633 cur_start = state->end + 1;
1634 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001635 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001636 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001637 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001638 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001639 break;
1640 }
1641out:
Chris Masoncad321a2008-12-17 14:51:42 -05001642 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001643 return found;
1644}
1645
Jeff Mahoney143bede2012-03-01 14:56:26 +01001646static noinline void __unlock_for_delalloc(struct inode *inode,
1647 struct page *locked_page,
1648 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001649{
1650 int ret;
1651 struct page *pages[16];
1652 unsigned long index = start >> PAGE_CACHE_SHIFT;
1653 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1654 unsigned long nr_pages = end_index - index + 1;
1655 int i;
1656
1657 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001658 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001659
Chris Masond3977122009-01-05 21:25:51 -05001660 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001661 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001662 min_t(unsigned long, nr_pages,
1663 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001664 for (i = 0; i < ret; i++) {
1665 if (pages[i] != locked_page)
1666 unlock_page(pages[i]);
1667 page_cache_release(pages[i]);
1668 }
1669 nr_pages -= ret;
1670 index += ret;
1671 cond_resched();
1672 }
Chris Masonc8b97812008-10-29 14:49:59 -04001673}
1674
1675static noinline int lock_delalloc_pages(struct inode *inode,
1676 struct page *locked_page,
1677 u64 delalloc_start,
1678 u64 delalloc_end)
1679{
1680 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1681 unsigned long start_index = index;
1682 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1683 unsigned long pages_locked = 0;
1684 struct page *pages[16];
1685 unsigned long nrpages;
1686 int ret;
1687 int i;
1688
1689 /* the caller is responsible for locking the start index */
1690 if (index == locked_page->index && index == end_index)
1691 return 0;
1692
1693 /* skip the page at the start index */
1694 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001695 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001696 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001697 min_t(unsigned long,
1698 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001699 if (ret == 0) {
1700 ret = -EAGAIN;
1701 goto done;
1702 }
1703 /* now we have an array of pages, lock them all */
1704 for (i = 0; i < ret; i++) {
1705 /*
1706 * the caller is taking responsibility for
1707 * locked_page
1708 */
Chris Mason771ed682008-11-06 22:02:51 -05001709 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001710 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001711 if (!PageDirty(pages[i]) ||
1712 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001713 ret = -EAGAIN;
1714 unlock_page(pages[i]);
1715 page_cache_release(pages[i]);
1716 goto done;
1717 }
1718 }
Chris Masonc8b97812008-10-29 14:49:59 -04001719 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001720 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001721 }
Chris Masonc8b97812008-10-29 14:49:59 -04001722 nrpages -= ret;
1723 index += ret;
1724 cond_resched();
1725 }
1726 ret = 0;
1727done:
1728 if (ret && pages_locked) {
1729 __unlock_for_delalloc(inode, locked_page,
1730 delalloc_start,
1731 ((u64)(start_index + pages_locked - 1)) <<
1732 PAGE_CACHE_SHIFT);
1733 }
1734 return ret;
1735}
1736
1737/*
1738 * find a contiguous range of bytes in the file marked as delalloc, not
1739 * more than 'max_bytes'. start and end are used to return the range,
1740 *
1741 * 1 is returned if we find something, 0 if nothing was in the tree
1742 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001743STATIC u64 find_lock_delalloc_range(struct inode *inode,
1744 struct extent_io_tree *tree,
1745 struct page *locked_page, u64 *start,
1746 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001747{
1748 u64 delalloc_start;
1749 u64 delalloc_end;
1750 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001751 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001752 int ret;
1753 int loops = 0;
1754
1755again:
1756 /* step one, find a bunch of delalloc bytes starting at start */
1757 delalloc_start = *start;
1758 delalloc_end = 0;
1759 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001760 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001761 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001762 *start = delalloc_start;
1763 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001764 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001765 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001766 }
1767
1768 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001769 * start comes from the offset of locked_page. We have to lock
1770 * pages in order, so we can't process delalloc bytes before
1771 * locked_page
1772 */
Chris Masond3977122009-01-05 21:25:51 -05001773 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001774 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001775
1776 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001777 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001778 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001779 if (delalloc_end + 1 - delalloc_start > max_bytes)
1780 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001781
Chris Masonc8b97812008-10-29 14:49:59 -04001782 /* step two, lock all the pages after the page that has start */
1783 ret = lock_delalloc_pages(inode, locked_page,
1784 delalloc_start, delalloc_end);
1785 if (ret == -EAGAIN) {
1786 /* some of the pages are gone, lets avoid looping by
1787 * shortening the size of the delalloc range we're searching
1788 */
Chris Mason9655d292009-09-02 15:22:30 -04001789 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001790 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001791 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001792 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001793 loops = 1;
1794 goto again;
1795 } else {
1796 found = 0;
1797 goto out_failed;
1798 }
1799 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001800 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001801
1802 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001803 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001804
1805 /* then test to make sure it is all still delalloc */
1806 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001807 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001808 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001809 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1810 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001811 __unlock_for_delalloc(inode, locked_page,
1812 delalloc_start, delalloc_end);
1813 cond_resched();
1814 goto again;
1815 }
Chris Mason9655d292009-09-02 15:22:30 -04001816 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001817 *start = delalloc_start;
1818 *end = delalloc_end;
1819out_failed:
1820 return found;
1821}
1822
Josef Bacikc2790a22013-07-29 11:20:47 -04001823int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1824 struct page *locked_page,
David Sterba9ee49a042015-01-14 19:52:13 +01001825 unsigned clear_bits,
Josef Bacikc2790a22013-07-29 11:20:47 -04001826 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001827{
Josef Bacikc2790a22013-07-29 11:20:47 -04001828 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001829 int ret;
1830 struct page *pages[16];
1831 unsigned long index = start >> PAGE_CACHE_SHIFT;
1832 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1833 unsigned long nr_pages = end_index - index + 1;
1834 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001835
Chris Mason2c64c532009-09-02 15:04:12 -04001836 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001837 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001838 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001839
Filipe Manana704de492014-10-06 22:14:22 +01001840 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1841 mapping_set_error(inode->i_mapping, -EIO);
1842
Chris Masond3977122009-01-05 21:25:51 -05001843 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001844 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001845 min_t(unsigned long,
1846 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001847 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001848
Josef Bacikc2790a22013-07-29 11:20:47 -04001849 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001850 SetPagePrivate2(pages[i]);
1851
Chris Masonc8b97812008-10-29 14:49:59 -04001852 if (pages[i] == locked_page) {
1853 page_cache_release(pages[i]);
1854 continue;
1855 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001856 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001857 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001858 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001859 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001860 if (page_ops & PAGE_SET_ERROR)
1861 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001862 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001863 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001864 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001865 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001866 page_cache_release(pages[i]);
1867 }
1868 nr_pages -= ret;
1869 index += ret;
1870 cond_resched();
1871 }
1872 return 0;
1873}
Chris Masonc8b97812008-10-29 14:49:59 -04001874
Chris Masond352ac62008-09-29 15:18:18 -04001875/*
1876 * count the number of bytes in the tree that have a given bit(s)
1877 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1878 * cached. The total number found is returned.
1879 */
Chris Masond1310b22008-01-24 16:13:08 -05001880u64 count_range_bits(struct extent_io_tree *tree,
1881 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001882 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001883{
1884 struct rb_node *node;
1885 struct extent_state *state;
1886 u64 cur_start = *start;
1887 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001888 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001889 int found = 0;
1890
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301891 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001892 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001893
Chris Masoncad321a2008-12-17 14:51:42 -05001894 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001895 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1896 total_bytes = tree->dirty_bytes;
1897 goto out;
1898 }
1899 /*
1900 * this search will find all the extents that end after
1901 * our range starts.
1902 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001903 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001904 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001905 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001906
Chris Masond3977122009-01-05 21:25:51 -05001907 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001908 state = rb_entry(node, struct extent_state, rb_node);
1909 if (state->start > search_end)
1910 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001911 if (contig && found && state->start > last + 1)
1912 break;
1913 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001914 total_bytes += min(search_end, state->end) + 1 -
1915 max(cur_start, state->start);
1916 if (total_bytes >= max_bytes)
1917 break;
1918 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001919 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001920 found = 1;
1921 }
Chris Masonec29ed52011-02-23 16:23:20 -05001922 last = state->end;
1923 } else if (contig && found) {
1924 break;
Chris Masond1310b22008-01-24 16:13:08 -05001925 }
1926 node = rb_next(node);
1927 if (!node)
1928 break;
1929 }
1930out:
Chris Masoncad321a2008-12-17 14:51:42 -05001931 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001932 return total_bytes;
1933}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001934
Chris Masond352ac62008-09-29 15:18:18 -04001935/*
1936 * set the private field for a given byte offset in the tree. If there isn't
1937 * an extent_state there already, this does nothing.
1938 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001939static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001940{
1941 struct rb_node *node;
1942 struct extent_state *state;
1943 int ret = 0;
1944
Chris Masoncad321a2008-12-17 14:51:42 -05001945 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001946 /*
1947 * this search will find all the extents that end after
1948 * our range starts.
1949 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001950 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001951 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001952 ret = -ENOENT;
1953 goto out;
1954 }
1955 state = rb_entry(node, struct extent_state, rb_node);
1956 if (state->start != start) {
1957 ret = -ENOENT;
1958 goto out;
1959 }
1960 state->private = private;
1961out:
Chris Masoncad321a2008-12-17 14:51:42 -05001962 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001963 return ret;
1964}
1965
1966int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1967{
1968 struct rb_node *node;
1969 struct extent_state *state;
1970 int ret = 0;
1971
Chris Masoncad321a2008-12-17 14:51:42 -05001972 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001973 /*
1974 * this search will find all the extents that end after
1975 * our range starts.
1976 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001977 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001978 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001979 ret = -ENOENT;
1980 goto out;
1981 }
1982 state = rb_entry(node, struct extent_state, rb_node);
1983 if (state->start != start) {
1984 ret = -ENOENT;
1985 goto out;
1986 }
1987 *private = state->private;
1988out:
Chris Masoncad321a2008-12-17 14:51:42 -05001989 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001990 return ret;
1991}
1992
1993/*
1994 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001995 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001996 * has the bits set. Otherwise, 1 is returned if any bit in the
1997 * range is found set.
1998 */
1999int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01002000 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05002001{
2002 struct extent_state *state = NULL;
2003 struct rb_node *node;
2004 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002005
Chris Masoncad321a2008-12-17 14:51:42 -05002006 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002007 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002008 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002009 node = &cached->rb_node;
2010 else
2011 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002012 while (node && start <= end) {
2013 state = rb_entry(node, struct extent_state, rb_node);
2014
2015 if (filled && state->start > start) {
2016 bitset = 0;
2017 break;
2018 }
2019
2020 if (state->start > end)
2021 break;
2022
2023 if (state->state & bits) {
2024 bitset = 1;
2025 if (!filled)
2026 break;
2027 } else if (filled) {
2028 bitset = 0;
2029 break;
2030 }
Chris Mason46562cec2009-09-23 20:23:16 -04002031
2032 if (state->end == (u64)-1)
2033 break;
2034
Chris Masond1310b22008-01-24 16:13:08 -05002035 start = state->end + 1;
2036 if (start > end)
2037 break;
2038 node = rb_next(node);
2039 if (!node) {
2040 if (filled)
2041 bitset = 0;
2042 break;
2043 }
2044 }
Chris Masoncad321a2008-12-17 14:51:42 -05002045 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002046 return bitset;
2047}
Chris Masond1310b22008-01-24 16:13:08 -05002048
2049/*
2050 * helper function to set a given page up to date if all the
2051 * extents in the tree for that page are up to date
2052 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002053static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002054{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002055 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002056 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002057 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002058 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002059}
2060
Miao Xie8b110e32014-09-12 18:44:03 +08002061int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002062{
2063 int ret;
2064 int err = 0;
2065 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2066
2067 set_state_private(failure_tree, rec->start, 0);
2068 ret = clear_extent_bits(failure_tree, rec->start,
2069 rec->start + rec->len - 1,
2070 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2071 if (ret)
2072 err = ret;
2073
David Woodhouse53b381b2013-01-29 18:40:14 -05002074 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
2075 rec->start + rec->len - 1,
2076 EXTENT_DAMAGED, GFP_NOFS);
2077 if (ret && !err)
2078 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002079
2080 kfree(rec);
2081 return err;
2082}
2083
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002084/*
2085 * this bypasses the standard btrfs submit functions deliberately, as
2086 * the standard behavior is to write all copies in a raid setup. here we only
2087 * want to write the one bad copy. so we do the mapping for ourselves and issue
2088 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002089 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002090 * actually prevents the read that triggered the error from finishing.
2091 * currently, there can be no more than two copies of every data bit. thus,
2092 * exactly one rewrite is required.
2093 */
Miao Xie1203b682014-09-12 18:44:01 +08002094int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2095 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002096{
Miao Xie1203b682014-09-12 18:44:01 +08002097 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002098 struct bio *bio;
2099 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002100 u64 map_length = 0;
2101 u64 sector;
2102 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002103 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 int ret;
2105
Ilya Dryomov908960c2013-11-03 19:06:39 +02002106 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002107 BUG_ON(!mirror_num);
2108
David Woodhouse53b381b2013-01-29 18:40:14 -05002109 /* we can't repair anything in raid56 yet */
2110 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2111 return 0;
2112
Chris Mason9be33952013-05-17 18:30:14 -04002113 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002114 if (!bio)
2115 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002116 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002117 map_length = length;
2118
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002119 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002120 &map_length, &bbio, mirror_num);
2121 if (ret) {
2122 bio_put(bio);
2123 return -EIO;
2124 }
2125 BUG_ON(mirror_num != bbio->mirror_num);
2126 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002127 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002128 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002129 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002130 if (!dev || !dev->bdev || !dev->writeable) {
2131 bio_put(bio);
2132 return -EIO;
2133 }
2134 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002135 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002136
Kent Overstreet33879d42013-11-23 22:33:32 -08002137 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002138 /* try to remap that extent elsewhere? */
2139 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002140 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002141 return -EIO;
2142 }
2143
David Sterbab14af3b2015-10-08 10:43:10 +02002144 btrfs_info_rl_in_rcu(fs_info,
2145 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Miao Xie1203b682014-09-12 18:44:01 +08002146 btrfs_ino(inode), start,
2147 rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002148 bio_put(bio);
2149 return 0;
2150}
2151
Josef Bacikea466792012-03-26 21:57:36 -04002152int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2153 int mirror_num)
2154{
Josef Bacikea466792012-03-26 21:57:36 -04002155 u64 start = eb->start;
2156 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002157 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002158
Ilya Dryomov908960c2013-11-03 19:06:39 +02002159 if (root->fs_info->sb->s_flags & MS_RDONLY)
2160 return -EROFS;
2161
Josef Bacikea466792012-03-26 21:57:36 -04002162 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002163 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002164
2165 ret = repair_io_failure(root->fs_info->btree_inode, start,
2166 PAGE_CACHE_SIZE, start, p,
2167 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002168 if (ret)
2169 break;
2170 start += PAGE_CACHE_SIZE;
2171 }
2172
2173 return ret;
2174}
2175
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002176/*
2177 * each time an IO finishes, we do a fast check in the IO failure tree
2178 * to see if we need to process or clean up an io_failure_record
2179 */
Miao Xie8b110e32014-09-12 18:44:03 +08002180int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2181 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002182{
2183 u64 private;
2184 u64 private_failure;
2185 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002186 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002187 struct extent_state *state;
2188 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002189 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002190
2191 private = 0;
2192 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2193 (u64)-1, 1, EXTENT_DIRTY, 0);
2194 if (!ret)
2195 return 0;
2196
2197 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2198 &private_failure);
2199 if (ret)
2200 return 0;
2201
2202 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2203 BUG_ON(!failrec->this_mirror);
2204
2205 if (failrec->in_validation) {
2206 /* there was no real error, just free the record */
2207 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2208 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002209 goto out;
2210 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002211 if (fs_info->sb->s_flags & MS_RDONLY)
2212 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002213
2214 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2215 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2216 failrec->start,
2217 EXTENT_LOCKED);
2218 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2219
Miao Xie883d0de2013-07-25 19:22:35 +08002220 if (state && state->start <= failrec->start &&
2221 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002222 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2223 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002224 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002225 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002226 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002227 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002228 }
2229 }
2230
2231out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002232 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002233
Miao Xie454ff3d2014-09-12 18:43:58 +08002234 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002235}
2236
Miao Xief6124962014-09-12 18:44:04 +08002237/*
2238 * Can be called when
2239 * - hold extent lock
2240 * - under ordered extent
2241 * - the inode is freeing
2242 */
2243void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2244{
2245 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2246 struct io_failure_record *failrec;
2247 struct extent_state *state, *next;
2248
2249 if (RB_EMPTY_ROOT(&failure_tree->state))
2250 return;
2251
2252 spin_lock(&failure_tree->lock);
2253 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2254 while (state) {
2255 if (state->start > end)
2256 break;
2257
2258 ASSERT(state->end <= end);
2259
2260 next = next_state(state);
2261
Satoru Takeuchi6e1103a2014-12-25 18:21:41 +09002262 failrec = (struct io_failure_record *)(unsigned long)state->private;
Miao Xief6124962014-09-12 18:44:04 +08002263 free_extent_state(state);
2264 kfree(failrec);
2265
2266 state = next;
2267 }
2268 spin_unlock(&failure_tree->lock);
2269}
2270
Miao Xie2fe63032014-09-12 18:43:59 +08002271int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2272 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002273{
Miao Xie2fe63032014-09-12 18:43:59 +08002274 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002275 u64 private;
2276 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002277 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2278 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2279 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002280 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002281 u64 logical;
2282
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002283 ret = get_state_private(failure_tree, start, &private);
2284 if (ret) {
2285 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2286 if (!failrec)
2287 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002288
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002289 failrec->start = start;
2290 failrec->len = end - start + 1;
2291 failrec->this_mirror = 0;
2292 failrec->bio_flags = 0;
2293 failrec->in_validation = 0;
2294
2295 read_lock(&em_tree->lock);
2296 em = lookup_extent_mapping(em_tree, start, failrec->len);
2297 if (!em) {
2298 read_unlock(&em_tree->lock);
2299 kfree(failrec);
2300 return -EIO;
2301 }
2302
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002303 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002304 free_extent_map(em);
2305 em = NULL;
2306 }
2307 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002308 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002309 kfree(failrec);
2310 return -EIO;
2311 }
Miao Xie2fe63032014-09-12 18:43:59 +08002312
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002313 logical = start - em->start;
2314 logical = em->block_start + logical;
2315 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2316 logical = em->block_start;
2317 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2318 extent_set_compress_type(&failrec->bio_flags,
2319 em->compress_type);
2320 }
Miao Xie2fe63032014-09-12 18:43:59 +08002321
2322 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2323 logical, start, failrec->len);
2324
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002325 failrec->logical = logical;
2326 free_extent_map(em);
2327
2328 /* set the bits in the private failure tree */
2329 ret = set_extent_bits(failure_tree, start, end,
2330 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2331 if (ret >= 0)
2332 ret = set_state_private(failure_tree, start,
2333 (u64)(unsigned long)failrec);
2334 /* set the bits in the inode's tree */
2335 if (ret >= 0)
2336 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2337 GFP_NOFS);
2338 if (ret < 0) {
2339 kfree(failrec);
2340 return ret;
2341 }
2342 } else {
2343 failrec = (struct io_failure_record *)(unsigned long)private;
Miao Xie2fe63032014-09-12 18:43:59 +08002344 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002345 failrec->logical, failrec->start, failrec->len,
2346 failrec->in_validation);
2347 /*
2348 * when data can be on disk more than twice, add to failrec here
2349 * (e.g. with a list for failed_mirror) to make
2350 * clean_io_failure() clean all those errors at once.
2351 */
2352 }
Miao Xie2fe63032014-09-12 18:43:59 +08002353
2354 *failrec_ret = failrec;
2355
2356 return 0;
2357}
2358
2359int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2360 struct io_failure_record *failrec, int failed_mirror)
2361{
2362 int num_copies;
2363
Stefan Behrens5d964052012-11-05 14:59:07 +01002364 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2365 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002366 if (num_copies == 1) {
2367 /*
2368 * we only have a single copy of the data, so don't bother with
2369 * all the retry and error correction code that follows. no
2370 * matter what the error is, it is very likely to persist.
2371 */
Miao Xie2fe63032014-09-12 18:43:59 +08002372 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002373 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002374 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002375 }
2376
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002377 /*
2378 * there are two premises:
2379 * a) deliver good data to the caller
2380 * b) correct the bad sectors on disk
2381 */
2382 if (failed_bio->bi_vcnt > 1) {
2383 /*
2384 * to fulfill b), we need to know the exact failing sectors, as
2385 * we don't want to rewrite any more than the failed ones. thus,
2386 * we need separate read requests for the failed bio
2387 *
2388 * if the following BUG_ON triggers, our validation request got
2389 * merged. we need separate requests for our algorithm to work.
2390 */
2391 BUG_ON(failrec->in_validation);
2392 failrec->in_validation = 1;
2393 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002394 } else {
2395 /*
2396 * we're ready to fulfill a) and b) alongside. get a good copy
2397 * of the failed sector and if we succeed, we have setup
2398 * everything for repair_io_failure to do the rest for us.
2399 */
2400 if (failrec->in_validation) {
2401 BUG_ON(failrec->this_mirror != failed_mirror);
2402 failrec->in_validation = 0;
2403 failrec->this_mirror = 0;
2404 }
2405 failrec->failed_mirror = failed_mirror;
2406 failrec->this_mirror++;
2407 if (failrec->this_mirror == failed_mirror)
2408 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002409 }
2410
Miao Xiefacc8a222013-07-25 19:22:34 +08002411 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002412 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002413 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002414 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002415 }
2416
Miao Xie2fe63032014-09-12 18:43:59 +08002417 return 1;
2418}
2419
2420
2421struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2422 struct io_failure_record *failrec,
2423 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002424 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002425{
2426 struct bio *bio;
2427 struct btrfs_io_bio *btrfs_failed_bio;
2428 struct btrfs_io_bio *btrfs_bio;
2429
Chris Mason9be33952013-05-17 18:30:14 -04002430 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002431 if (!bio)
2432 return NULL;
2433
2434 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002435 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002436 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002437 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002438 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002439
Miao Xiefacc8a222013-07-25 19:22:34 +08002440 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2441 if (btrfs_failed_bio->csum) {
2442 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2443 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2444
2445 btrfs_bio = btrfs_io_bio(bio);
2446 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002447 icsum *= csum_size;
2448 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002449 csum_size);
2450 }
2451
Miao Xie2fe63032014-09-12 18:43:59 +08002452 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002453
Miao Xie2fe63032014-09-12 18:43:59 +08002454 return bio;
2455}
2456
2457/*
2458 * this is a generic handler for readpage errors (default
2459 * readpage_io_failed_hook). if other copies exist, read those and write back
2460 * good data to the failed position. does not investigate in remapping the
2461 * failed extent elsewhere, hoping the device will be smart enough to do this as
2462 * needed
2463 */
2464
2465static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2466 struct page *page, u64 start, u64 end,
2467 int failed_mirror)
2468{
2469 struct io_failure_record *failrec;
2470 struct inode *inode = page->mapping->host;
2471 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2472 struct bio *bio;
2473 int read_mode;
2474 int ret;
2475
2476 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2477
2478 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2479 if (ret)
2480 return ret;
2481
2482 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2483 if (!ret) {
2484 free_io_failure(inode, failrec);
2485 return -EIO;
2486 }
2487
2488 if (failed_bio->bi_vcnt > 1)
2489 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2490 else
2491 read_mode = READ_SYNC;
2492
2493 phy_offset >>= inode->i_sb->s_blocksize_bits;
2494 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2495 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002496 (int)phy_offset, failed_bio->bi_end_io,
2497 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002498 if (!bio) {
2499 free_io_failure(inode, failrec);
2500 return -EIO;
2501 }
2502
2503 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2504 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002505
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002506 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2507 failrec->this_mirror,
2508 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002509 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002510 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002511 bio_put(bio);
2512 }
2513
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002514 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002515}
2516
Chris Masond1310b22008-01-24 16:13:08 -05002517/* lots and lots of room for performance fixes in the end_bio funcs */
2518
Jeff Mahoney87826df2012-02-15 16:23:57 +01002519int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2520{
2521 int uptodate = (err == 0);
2522 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002523 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002524
2525 tree = &BTRFS_I(page->mapping->host)->io_tree;
2526
2527 if (tree->ops && tree->ops->writepage_end_io_hook) {
2528 ret = tree->ops->writepage_end_io_hook(page, start,
2529 end, NULL, uptodate);
2530 if (ret)
2531 uptodate = 0;
2532 }
2533
Jeff Mahoney87826df2012-02-15 16:23:57 +01002534 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002535 ClearPageUptodate(page);
2536 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002537 ret = ret < 0 ? ret : -EIO;
2538 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002539 }
2540 return 0;
2541}
2542
Chris Masond1310b22008-01-24 16:13:08 -05002543/*
2544 * after a writepage IO is done, we need to:
2545 * clear the uptodate bits on error
2546 * clear the writeback bits in the extent tree for this IO
2547 * end_page_writeback if the page has no more pending IO
2548 *
2549 * Scheduling is not allowed, so the extent state tree is expected
2550 * to have one and only one object corresponding to this IO.
2551 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002552static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002553{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002554 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002555 u64 start;
2556 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002557 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002558
Kent Overstreet2c30c712013-11-07 12:20:26 -08002559 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002560 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002561
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002562 /* We always issue full-page reads, but if some block
2563 * in a page fails to read, blk_update_request() will
2564 * advance bv_offset and adjust bv_len to compensate.
2565 * Print a warning for nonzero offsets, and an error
2566 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002567 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2568 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2569 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2570 "partial page write in btrfs with offset %u and length %u",
2571 bvec->bv_offset, bvec->bv_len);
2572 else
2573 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2574 "incomplete page write in btrfs with offset %u and "
2575 "length %u",
2576 bvec->bv_offset, bvec->bv_len);
2577 }
Chris Masond1310b22008-01-24 16:13:08 -05002578
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002579 start = page_offset(page);
2580 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002581
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002582 if (end_extent_writepage(page, bio->bi_error, start, end))
Jeff Mahoney87826df2012-02-15 16:23:57 +01002583 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002584
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002585 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002586 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002587
Chris Masond1310b22008-01-24 16:13:08 -05002588 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002589}
2590
Miao Xie883d0de2013-07-25 19:22:35 +08002591static void
2592endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2593 int uptodate)
2594{
2595 struct extent_state *cached = NULL;
2596 u64 end = start + len - 1;
2597
2598 if (uptodate && tree->track_uptodate)
2599 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2600 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2601}
2602
Chris Masond1310b22008-01-24 16:13:08 -05002603/*
2604 * after a readpage IO is done, we need to:
2605 * clear the uptodate bits on error
2606 * set the uptodate bits if things worked
2607 * set the page up to date if all extents in the tree are uptodate
2608 * clear the lock bit in the extent tree
2609 * unlock the page if there are no other extents locked for it
2610 *
2611 * Scheduling is not allowed, so the extent state tree is expected
2612 * to have one and only one object corresponding to this IO.
2613 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002614static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002615{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002616 struct bio_vec *bvec;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002617 int uptodate = !bio->bi_error;
Miao Xiefacc8a222013-07-25 19:22:34 +08002618 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002619 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002620 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002621 u64 start;
2622 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002623 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002624 u64 extent_start = 0;
2625 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002626 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002627 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002628 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002629
Kent Overstreet2c30c712013-11-07 12:20:26 -08002630 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002631 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002632 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002633
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002634 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002635 "mirror=%u\n", (u64)bio->bi_iter.bi_sector,
2636 bio->bi_error, io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002637 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002638
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002639 /* We always issue full-page reads, but if some block
2640 * in a page fails to read, blk_update_request() will
2641 * advance bv_offset and adjust bv_len to compensate.
2642 * Print a warning for nonzero offsets, and an error
2643 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002644 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2645 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2646 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2647 "partial page read in btrfs with offset %u and length %u",
2648 bvec->bv_offset, bvec->bv_len);
2649 else
2650 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2651 "incomplete page read in btrfs with offset %u and "
2652 "length %u",
2653 bvec->bv_offset, bvec->bv_len);
2654 }
Chris Masond1310b22008-01-24 16:13:08 -05002655
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002656 start = page_offset(page);
2657 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002658 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002659
Chris Mason9be33952013-05-17 18:30:14 -04002660 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002661 if (likely(uptodate && tree->ops &&
2662 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002663 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2664 page, start, end,
2665 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002666 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002667 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002668 else
Miao Xie1203b682014-09-12 18:44:01 +08002669 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002670 }
Josef Bacikea466792012-03-26 21:57:36 -04002671
Miao Xief2a09da2013-07-25 19:22:33 +08002672 if (likely(uptodate))
2673 goto readpage_ok;
2674
2675 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002676 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002677 if (!ret && !bio->bi_error)
Josef Bacikea466792012-03-26 21:57:36 -04002678 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002679 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002680 /*
2681 * The generic bio_readpage_error handles errors the
2682 * following way: If possible, new read requests are
2683 * created and submitted and will end up in
2684 * end_bio_extent_readpage as well (if we're lucky, not
2685 * in the !uptodate case). In that case it returns 0 and
2686 * we just go on with the next page in our bio. If it
2687 * can't handle the error it will return -EIO and we
2688 * remain responsible for that page.
2689 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002690 ret = bio_readpage_error(bio, offset, page, start, end,
2691 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002692 if (ret == 0) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002693 uptodate = !bio->bi_error;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002694 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002695 continue;
2696 }
2697 }
Miao Xief2a09da2013-07-25 19:22:33 +08002698readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002699 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002700 loff_t i_size = i_size_read(inode);
2701 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002702 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002703
2704 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002705 off = i_size & (PAGE_CACHE_SIZE-1);
2706 if (page->index == end_index && off)
2707 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002708 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002709 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002710 ClearPageUptodate(page);
2711 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002712 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002713 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002714 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002715
2716 if (unlikely(!uptodate)) {
2717 if (extent_len) {
2718 endio_readpage_release_extent(tree,
2719 extent_start,
2720 extent_len, 1);
2721 extent_start = 0;
2722 extent_len = 0;
2723 }
2724 endio_readpage_release_extent(tree, start,
2725 end - start + 1, 0);
2726 } else if (!extent_len) {
2727 extent_start = start;
2728 extent_len = end + 1 - start;
2729 } else if (extent_start + extent_len == start) {
2730 extent_len += end + 1 - start;
2731 } else {
2732 endio_readpage_release_extent(tree, extent_start,
2733 extent_len, uptodate);
2734 extent_start = start;
2735 extent_len = end + 1 - start;
2736 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002737 }
Chris Masond1310b22008-01-24 16:13:08 -05002738
Miao Xie883d0de2013-07-25 19:22:35 +08002739 if (extent_len)
2740 endio_readpage_release_extent(tree, extent_start, extent_len,
2741 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002742 if (io_bio->end_io)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002743 io_bio->end_io(io_bio, bio->bi_error);
Chris Masond1310b22008-01-24 16:13:08 -05002744 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002745}
2746
Chris Mason9be33952013-05-17 18:30:14 -04002747/*
2748 * this allocates from the btrfs_bioset. We're returning a bio right now
2749 * but you can call btrfs_io_bio for the appropriate container_of magic
2750 */
Miao Xie88f794e2010-11-22 03:02:55 +00002751struct bio *
2752btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2753 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002754{
Miao Xiefacc8a222013-07-25 19:22:34 +08002755 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002756 struct bio *bio;
2757
Chris Mason9be33952013-05-17 18:30:14 -04002758 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002759
2760 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002761 while (!bio && (nr_vecs /= 2)) {
2762 bio = bio_alloc_bioset(gfp_flags,
2763 nr_vecs, btrfs_bioset);
2764 }
Chris Masond1310b22008-01-24 16:13:08 -05002765 }
2766
2767 if (bio) {
2768 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002769 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002770 btrfs_bio = btrfs_io_bio(bio);
2771 btrfs_bio->csum = NULL;
2772 btrfs_bio->csum_allocated = NULL;
2773 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002774 }
2775 return bio;
2776}
2777
Chris Mason9be33952013-05-17 18:30:14 -04002778struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2779{
Miao Xie23ea8e52014-09-12 18:43:54 +08002780 struct btrfs_io_bio *btrfs_bio;
2781 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002782
Miao Xie23ea8e52014-09-12 18:43:54 +08002783 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2784 if (new) {
2785 btrfs_bio = btrfs_io_bio(new);
2786 btrfs_bio->csum = NULL;
2787 btrfs_bio->csum_allocated = NULL;
2788 btrfs_bio->end_io = NULL;
Chris Mason3a9508b2015-08-21 10:05:39 -07002789
2790#ifdef CONFIG_BLK_CGROUP
Chris Masonda2f0f72015-07-02 13:57:22 -07002791 /* FIXME, put this into bio_clone_bioset */
2792 if (bio->bi_css)
2793 bio_associate_blkcg(new, bio->bi_css);
Chris Mason3a9508b2015-08-21 10:05:39 -07002794#endif
Miao Xie23ea8e52014-09-12 18:43:54 +08002795 }
2796 return new;
2797}
Chris Mason9be33952013-05-17 18:30:14 -04002798
2799/* this also allocates from the btrfs_bioset */
2800struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2801{
Miao Xiefacc8a222013-07-25 19:22:34 +08002802 struct btrfs_io_bio *btrfs_bio;
2803 struct bio *bio;
2804
2805 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2806 if (bio) {
2807 btrfs_bio = btrfs_io_bio(bio);
2808 btrfs_bio->csum = NULL;
2809 btrfs_bio->csum_allocated = NULL;
2810 btrfs_bio->end_io = NULL;
2811 }
2812 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002813}
2814
2815
Jeff Mahoney355808c2011-10-03 23:23:14 -04002816static int __must_check submit_one_bio(int rw, struct bio *bio,
2817 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002818{
Chris Masond1310b22008-01-24 16:13:08 -05002819 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002820 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2821 struct page *page = bvec->bv_page;
2822 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002823 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002824
Miao Xie4eee4fa2012-12-21 09:17:45 +00002825 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002826
David Woodhouse902b22f2008-08-20 08:51:49 -04002827 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002828
2829 bio_get(bio);
2830
Chris Mason065631f2008-02-20 12:07:25 -05002831 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002832 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002833 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002834 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002835 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002836
Chris Masond1310b22008-01-24 16:13:08 -05002837 bio_put(bio);
2838 return ret;
2839}
2840
David Woodhouse64a16702009-07-15 23:29:37 +01002841static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002842 unsigned long offset, size_t size, struct bio *bio,
2843 unsigned long bio_flags)
2844{
2845 int ret = 0;
2846 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002847 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002848 bio_flags);
2849 BUG_ON(ret < 0);
2850 return ret;
2851
2852}
2853
Chris Masond1310b22008-01-24 16:13:08 -05002854static int submit_extent_page(int rw, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002855 struct writeback_control *wbc,
Chris Masond1310b22008-01-24 16:13:08 -05002856 struct page *page, sector_t sector,
2857 size_t size, unsigned long offset,
2858 struct block_device *bdev,
2859 struct bio **bio_ret,
2860 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002861 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002862 int mirror_num,
2863 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002864 unsigned long bio_flags,
2865 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002866{
2867 int ret = 0;
2868 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002869 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002870 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002871 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002872
2873 if (bio_ret && *bio_ret) {
2874 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002875 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002876 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002877 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002878 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002879
2880 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002881 force_bio_submit ||
David Woodhouse64a16702009-07-15 23:29:37 +01002882 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002883 bio_add_page(bio, page, page_size, offset) < page_size) {
2884 ret = submit_one_bio(rw, bio, mirror_num,
2885 prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002886 if (ret < 0) {
2887 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002888 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002889 }
Chris Masond1310b22008-01-24 16:13:08 -05002890 bio = NULL;
2891 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002892 if (wbc)
2893 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002894 return 0;
2895 }
2896 }
Chris Masonc8b97812008-10-29 14:49:59 -04002897
Kent Overstreetb54ffb72015-05-19 14:31:01 +02002898 bio = btrfs_bio_alloc(bdev, sector, BIO_MAX_PAGES,
2899 GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002900 if (!bio)
2901 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002902
Chris Masonc8b97812008-10-29 14:49:59 -04002903 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002904 bio->bi_end_io = end_io_func;
2905 bio->bi_private = tree;
Chris Masonda2f0f72015-07-02 13:57:22 -07002906 if (wbc) {
2907 wbc_init_bio(wbc, bio);
2908 wbc_account_io(wbc, page, page_size);
2909 }
Chris Mason70dec802008-01-29 09:59:12 -05002910
Chris Masond3977122009-01-05 21:25:51 -05002911 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002912 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002913 else
Chris Masonc8b97812008-10-29 14:49:59 -04002914 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002915
2916 return ret;
2917}
2918
Eric Sandeen48a3b632013-04-25 20:41:01 +00002919static void attach_extent_buffer_page(struct extent_buffer *eb,
2920 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002921{
2922 if (!PagePrivate(page)) {
2923 SetPagePrivate(page);
2924 page_cache_get(page);
2925 set_page_private(page, (unsigned long)eb);
2926 } else {
2927 WARN_ON(page->private != (unsigned long)eb);
2928 }
2929}
2930
Chris Masond1310b22008-01-24 16:13:08 -05002931void set_page_extent_mapped(struct page *page)
2932{
2933 if (!PagePrivate(page)) {
2934 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002935 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002936 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002937 }
2938}
2939
Miao Xie125bac012013-07-25 19:22:37 +08002940static struct extent_map *
2941__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2942 u64 start, u64 len, get_extent_t *get_extent,
2943 struct extent_map **em_cached)
2944{
2945 struct extent_map *em;
2946
2947 if (em_cached && *em_cached) {
2948 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002949 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002950 start < extent_map_end(em)) {
2951 atomic_inc(&em->refs);
2952 return em;
2953 }
2954
2955 free_extent_map(em);
2956 *em_cached = NULL;
2957 }
2958
2959 em = get_extent(inode, page, pg_offset, start, len, 0);
2960 if (em_cached && !IS_ERR_OR_NULL(em)) {
2961 BUG_ON(*em_cached);
2962 atomic_inc(&em->refs);
2963 *em_cached = em;
2964 }
2965 return em;
2966}
Chris Masond1310b22008-01-24 16:13:08 -05002967/*
2968 * basic readpage implementation. Locked extent state structs are inserted
2969 * into the tree that are removed when the IO is done (by the end_io
2970 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002971 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002972 */
Miao Xie99740902013-07-25 19:22:36 +08002973static int __do_readpage(struct extent_io_tree *tree,
2974 struct page *page,
2975 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002976 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002977 struct bio **bio, int mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01002978 unsigned long *bio_flags, int rw,
2979 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002980{
2981 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002982 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002983 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2984 u64 end;
2985 u64 cur = start;
2986 u64 extent_offset;
2987 u64 last_byte = i_size_read(inode);
2988 u64 block_start;
2989 u64 cur_end;
2990 sector_t sector;
2991 struct extent_map *em;
2992 struct block_device *bdev;
2993 int ret;
2994 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002995 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002996 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002997 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002998 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002999 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07003000 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05003001
3002 set_page_extent_mapped(page);
3003
Miao Xie99740902013-07-25 19:22:36 +08003004 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003005 if (!PageUptodate(page)) {
3006 if (cleancache_get_page(page) == 0) {
3007 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003008 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003009 goto out;
3010 }
3011 }
3012
Chris Masonc8b97812008-10-29 14:49:59 -04003013 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
3014 char *userpage;
3015 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
3016
3017 if (zero_offset) {
3018 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003019 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003020 memset(userpage + zero_offset, 0, iosize);
3021 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003022 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003023 }
3024 }
Chris Masond1310b22008-01-24 16:13:08 -05003025 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05003026 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
Filipe Manana005efed2015-09-14 09:09:31 +01003027 bool force_bio_submit = false;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003028
Chris Masond1310b22008-01-24 16:13:08 -05003029 if (cur >= last_byte) {
3030 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003031 struct extent_state *cached = NULL;
3032
David Sterba306e16c2011-04-19 14:29:38 +02003033 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003034 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003035 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003036 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003037 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003038 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003039 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07003040 if (!parent_locked)
3041 unlock_extent_cached(tree, cur,
3042 cur + iosize - 1,
3043 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003044 break;
3045 }
Miao Xie125bac012013-07-25 19:22:37 +08003046 em = __get_extent_map(inode, page, pg_offset, cur,
3047 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003048 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003049 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003050 if (!parent_locked)
3051 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003052 break;
3053 }
Chris Masond1310b22008-01-24 16:13:08 -05003054 extent_offset = cur - em->start;
3055 BUG_ON(extent_map_end(em) <= cur);
3056 BUG_ON(end < cur);
3057
Li Zefan261507a02010-12-17 14:21:50 +08003058 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003059 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003060 extent_set_compress_type(&this_bio_flag,
3061 em->compress_type);
3062 }
Chris Masonc8b97812008-10-29 14:49:59 -04003063
Chris Masond1310b22008-01-24 16:13:08 -05003064 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3065 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003066 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003067 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3068 disk_io_size = em->block_len;
3069 sector = em->block_start >> 9;
3070 } else {
3071 sector = (em->block_start + extent_offset) >> 9;
3072 disk_io_size = iosize;
3073 }
Chris Masond1310b22008-01-24 16:13:08 -05003074 bdev = em->bdev;
3075 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003076 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3077 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003078
3079 /*
3080 * If we have a file range that points to a compressed extent
3081 * and it's followed by a consecutive file range that points to
3082 * to the same compressed extent (possibly with a different
3083 * offset and/or length, so it either points to the whole extent
3084 * or only part of it), we must make sure we do not submit a
3085 * single bio to populate the pages for the 2 ranges because
3086 * this makes the compressed extent read zero out the pages
3087 * belonging to the 2nd range. Imagine the following scenario:
3088 *
3089 * File layout
3090 * [0 - 8K] [8K - 24K]
3091 * | |
3092 * | |
3093 * points to extent X, points to extent X,
3094 * offset 4K, length of 8K offset 0, length 16K
3095 *
3096 * [extent X, compressed length = 4K uncompressed length = 16K]
3097 *
3098 * If the bio to read the compressed extent covers both ranges,
3099 * it will decompress extent X into the pages belonging to the
3100 * first range and then it will stop, zeroing out the remaining
3101 * pages that belong to the other range that points to extent X.
3102 * So here we make sure we submit 2 bios, one for the first
3103 * range and another one for the third range. Both will target
3104 * the same physical extent from disk, but we can't currently
3105 * make the compressed bio endio callback populate the pages
3106 * for both ranges because each compressed bio is tightly
3107 * coupled with a single extent map, and each range can have
3108 * an extent map with a different offset value relative to the
3109 * uncompressed data of our extent and different lengths. This
3110 * is a corner case so we prioritize correctness over
3111 * non-optimal behavior (submitting 2 bios for the same extent).
3112 */
3113 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3114 prev_em_start && *prev_em_start != (u64)-1 &&
3115 *prev_em_start != em->orig_start)
3116 force_bio_submit = true;
3117
3118 if (prev_em_start)
3119 *prev_em_start = em->orig_start;
3120
Chris Masond1310b22008-01-24 16:13:08 -05003121 free_extent_map(em);
3122 em = NULL;
3123
3124 /* we've found a hole, just zero and go on */
3125 if (block_start == EXTENT_MAP_HOLE) {
3126 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003127 struct extent_state *cached = NULL;
3128
Cong Wang7ac687d2011-11-25 23:14:28 +08003129 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003130 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003131 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003132 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003133
3134 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003135 &cached, GFP_NOFS);
Filipe Manana5e6ecb32015-10-13 16:36:09 +01003136 if (parent_locked)
3137 free_extent_state(cached);
3138 else
3139 unlock_extent_cached(tree, cur,
3140 cur + iosize - 1,
3141 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003142 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003143 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003144 continue;
3145 }
3146 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003147 if (test_range_bit(tree, cur, cur_end,
3148 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003149 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003150 if (!parent_locked)
3151 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003152 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003153 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003154 continue;
3155 }
Chris Mason70dec802008-01-29 09:59:12 -05003156 /* we have an inline extent but it didn't get marked up
3157 * to date. Error out
3158 */
3159 if (block_start == EXTENT_MAP_INLINE) {
3160 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003161 if (!parent_locked)
3162 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003163 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003164 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003165 continue;
3166 }
Chris Masond1310b22008-01-24 16:13:08 -05003167
Josef Bacikc8f2f242013-02-11 11:33:00 -05003168 pnr -= page->index;
Chris Masonda2f0f72015-07-02 13:57:22 -07003169 ret = submit_extent_page(rw, tree, NULL, page,
David Sterba306e16c2011-04-19 14:29:38 +02003170 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003171 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003172 end_bio_extent_readpage, mirror_num,
3173 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003174 this_bio_flag,
3175 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003176 if (!ret) {
3177 nr++;
3178 *bio_flags = this_bio_flag;
3179 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003180 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003181 if (!parent_locked)
3182 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04003183 }
Chris Masond1310b22008-01-24 16:13:08 -05003184 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003185 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003186 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003187out:
Chris Masond1310b22008-01-24 16:13:08 -05003188 if (!nr) {
3189 if (!PageError(page))
3190 SetPageUptodate(page);
3191 unlock_page(page);
3192 }
3193 return 0;
3194}
3195
Miao Xie99740902013-07-25 19:22:36 +08003196static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3197 struct page *pages[], int nr_pages,
3198 u64 start, u64 end,
3199 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003200 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003201 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003202 unsigned long *bio_flags, int rw,
3203 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003204{
3205 struct inode *inode;
3206 struct btrfs_ordered_extent *ordered;
3207 int index;
3208
3209 inode = pages[0]->mapping->host;
3210 while (1) {
3211 lock_extent(tree, start, end);
3212 ordered = btrfs_lookup_ordered_range(inode, start,
3213 end - start + 1);
3214 if (!ordered)
3215 break;
3216 unlock_extent(tree, start, end);
3217 btrfs_start_ordered_extent(inode, ordered, 1);
3218 btrfs_put_ordered_extent(ordered);
3219 }
3220
3221 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003222 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003223 mirror_num, bio_flags, rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003224 page_cache_release(pages[index]);
3225 }
3226}
3227
3228static void __extent_readpages(struct extent_io_tree *tree,
3229 struct page *pages[],
3230 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003231 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003232 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003233 unsigned long *bio_flags, int rw,
3234 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003235{
Stefan Behrens35a36212013-08-14 18:12:25 +02003236 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003237 u64 end = 0;
3238 u64 page_start;
3239 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003240 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003241
3242 for (index = 0; index < nr_pages; index++) {
3243 page_start = page_offset(pages[index]);
3244 if (!end) {
3245 start = page_start;
3246 end = start + PAGE_CACHE_SIZE - 1;
3247 first_index = index;
3248 } else if (end + 1 == page_start) {
3249 end += PAGE_CACHE_SIZE;
3250 } else {
3251 __do_contiguous_readpages(tree, &pages[first_index],
3252 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003253 end, get_extent, em_cached,
3254 bio, mirror_num, bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003255 rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003256 start = page_start;
3257 end = start + PAGE_CACHE_SIZE - 1;
3258 first_index = index;
3259 }
3260 }
3261
3262 if (end)
3263 __do_contiguous_readpages(tree, &pages[first_index],
3264 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003265 end, get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003266 mirror_num, bio_flags, rw,
3267 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003268}
3269
3270static int __extent_read_full_page(struct extent_io_tree *tree,
3271 struct page *page,
3272 get_extent_t *get_extent,
3273 struct bio **bio, int mirror_num,
3274 unsigned long *bio_flags, int rw)
3275{
3276 struct inode *inode = page->mapping->host;
3277 struct btrfs_ordered_extent *ordered;
3278 u64 start = page_offset(page);
3279 u64 end = start + PAGE_CACHE_SIZE - 1;
3280 int ret;
3281
3282 while (1) {
3283 lock_extent(tree, start, end);
3284 ordered = btrfs_lookup_ordered_extent(inode, start);
3285 if (!ordered)
3286 break;
3287 unlock_extent(tree, start, end);
3288 btrfs_start_ordered_extent(inode, ordered, 1);
3289 btrfs_put_ordered_extent(ordered);
3290 }
3291
Miao Xie125bac012013-07-25 19:22:37 +08003292 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003293 bio_flags, rw, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003294 return ret;
3295}
3296
Chris Masond1310b22008-01-24 16:13:08 -05003297int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003298 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003299{
3300 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003301 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003302 int ret;
3303
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003304 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003305 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003306 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003307 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003308 return ret;
3309}
Chris Masond1310b22008-01-24 16:13:08 -05003310
Mark Fasheh4b384312013-08-06 11:42:50 -07003311int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3312 get_extent_t *get_extent, int mirror_num)
3313{
3314 struct bio *bio = NULL;
3315 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3316 int ret;
3317
3318 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003319 &bio_flags, READ, NULL);
Mark Fasheh4b384312013-08-06 11:42:50 -07003320 if (bio)
3321 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3322 return ret;
3323}
3324
Chris Mason11c83492009-04-20 15:50:09 -04003325static noinline void update_nr_written(struct page *page,
3326 struct writeback_control *wbc,
3327 unsigned long nr_written)
3328{
3329 wbc->nr_to_write -= nr_written;
3330 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3331 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3332 page->mapping->writeback_index = page->index + nr_written;
3333}
3334
Chris Masond1310b22008-01-24 16:13:08 -05003335/*
Chris Mason40f76582014-05-21 13:35:51 -07003336 * helper for __extent_writepage, doing all of the delayed allocation setup.
3337 *
3338 * This returns 1 if our fill_delalloc function did all the work required
3339 * to write the page (copy into inline extent). In this case the IO has
3340 * been started and the page is already unlocked.
3341 *
3342 * This returns 0 if all went well (page still locked)
3343 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003344 */
Chris Mason40f76582014-05-21 13:35:51 -07003345static noinline_for_stack int writepage_delalloc(struct inode *inode,
3346 struct page *page, struct writeback_control *wbc,
3347 struct extent_page_data *epd,
3348 u64 delalloc_start,
3349 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003350{
Chris Mason40f76582014-05-21 13:35:51 -07003351 struct extent_io_tree *tree = epd->tree;
3352 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3353 u64 nr_delalloc;
3354 u64 delalloc_to_write = 0;
3355 u64 delalloc_end = 0;
3356 int ret;
3357 int page_started = 0;
3358
3359 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3360 return 0;
3361
3362 while (delalloc_end < page_end) {
3363 nr_delalloc = find_lock_delalloc_range(inode, tree,
3364 page,
3365 &delalloc_start,
3366 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003367 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003368 if (nr_delalloc == 0) {
3369 delalloc_start = delalloc_end + 1;
3370 continue;
3371 }
3372 ret = tree->ops->fill_delalloc(inode, page,
3373 delalloc_start,
3374 delalloc_end,
3375 &page_started,
3376 nr_written);
3377 /* File system has been set read-only */
3378 if (ret) {
3379 SetPageError(page);
3380 /* fill_delalloc should be return < 0 for error
3381 * but just in case, we use > 0 here meaning the
3382 * IO is started, so we don't want to return > 0
3383 * unless things are going well.
3384 */
3385 ret = ret < 0 ? ret : -EIO;
3386 goto done;
3387 }
3388 /*
3389 * delalloc_end is already one less than the total
3390 * length, so we don't subtract one from
3391 * PAGE_CACHE_SIZE
3392 */
3393 delalloc_to_write += (delalloc_end - delalloc_start +
3394 PAGE_CACHE_SIZE) >>
3395 PAGE_CACHE_SHIFT;
3396 delalloc_start = delalloc_end + 1;
3397 }
3398 if (wbc->nr_to_write < delalloc_to_write) {
3399 int thresh = 8192;
3400
3401 if (delalloc_to_write < thresh * 2)
3402 thresh = delalloc_to_write;
3403 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3404 thresh);
3405 }
3406
3407 /* did the fill delalloc function already unlock and start
3408 * the IO?
3409 */
3410 if (page_started) {
3411 /*
3412 * we've unlocked the page, so we can't update
3413 * the mapping's writeback index, just update
3414 * nr_to_write.
3415 */
3416 wbc->nr_to_write -= *nr_written;
3417 return 1;
3418 }
3419
3420 ret = 0;
3421
3422done:
3423 return ret;
3424}
3425
3426/*
3427 * helper for __extent_writepage. This calls the writepage start hooks,
3428 * and does the loop to map the page into extents and bios.
3429 *
3430 * We return 1 if the IO is started and the page is unlocked,
3431 * 0 if all went well (page still locked)
3432 * < 0 if there were errors (page still locked)
3433 */
3434static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3435 struct page *page,
3436 struct writeback_control *wbc,
3437 struct extent_page_data *epd,
3438 loff_t i_size,
3439 unsigned long nr_written,
3440 int write_flags, int *nr_ret)
3441{
Chris Masond1310b22008-01-24 16:13:08 -05003442 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003443 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003444 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3445 u64 end;
3446 u64 cur = start;
3447 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003448 u64 block_start;
3449 u64 iosize;
3450 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003451 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003452 struct extent_map *em;
3453 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003454 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003455 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003456 int ret = 0;
3457 int nr = 0;
3458 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003459
Chris Mason247e7432008-07-17 12:53:51 -04003460 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003461 ret = tree->ops->writepage_start_hook(page, start,
3462 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003463 if (ret) {
3464 /* Fixup worker will requeue */
3465 if (ret == -EBUSY)
3466 wbc->pages_skipped++;
3467 else
3468 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003469
Chris Mason11c83492009-04-20 15:50:09 -04003470 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003471 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003472 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003473 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003474 }
3475 }
3476
Chris Mason11c83492009-04-20 15:50:09 -04003477 /*
3478 * we don't want to touch the inode after unlocking the page,
3479 * so we update the mapping writeback index now
3480 */
3481 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003482
Chris Masond1310b22008-01-24 16:13:08 -05003483 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003484 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003485 if (tree->ops && tree->ops->writepage_end_io_hook)
3486 tree->ops->writepage_end_io_hook(page, start,
3487 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003488 goto done;
3489 }
3490
Chris Masond1310b22008-01-24 16:13:08 -05003491 blocksize = inode->i_sb->s_blocksize;
3492
3493 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003494 u64 em_end;
3495 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003496 if (tree->ops && tree->ops->writepage_end_io_hook)
3497 tree->ops->writepage_end_io_hook(page, cur,
3498 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003499 break;
3500 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003501 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003502 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003503 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003504 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003505 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003506 break;
3507 }
3508
3509 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003510 em_end = extent_map_end(em);
3511 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003512 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003513 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003514 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003515 sector = (em->block_start + extent_offset) >> 9;
3516 bdev = em->bdev;
3517 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003518 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003519 free_extent_map(em);
3520 em = NULL;
3521
Chris Masonc8b97812008-10-29 14:49:59 -04003522 /*
3523 * compressed and inline extents are written through other
3524 * paths in the FS
3525 */
3526 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003527 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003528 /*
3529 * end_io notification does not happen here for
3530 * compressed extents
3531 */
3532 if (!compressed && tree->ops &&
3533 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003534 tree->ops->writepage_end_io_hook(page, cur,
3535 cur + iosize - 1,
3536 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003537 else if (compressed) {
3538 /* we don't want to end_page_writeback on
3539 * a compressed extent. this happens
3540 * elsewhere
3541 */
3542 nr++;
3543 }
3544
3545 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003546 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003547 continue;
3548 }
Chris Masonc8b97812008-10-29 14:49:59 -04003549
Chris Masond1310b22008-01-24 16:13:08 -05003550 if (tree->ops && tree->ops->writepage_io_hook) {
3551 ret = tree->ops->writepage_io_hook(page, cur,
3552 cur + iosize - 1);
3553 } else {
3554 ret = 0;
3555 }
Chris Mason1259ab72008-05-12 13:39:03 -04003556 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003557 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003558 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003559 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003560
Chris Masond1310b22008-01-24 16:13:08 -05003561 set_range_writeback(tree, cur, cur + iosize - 1);
3562 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003563 btrfs_err(BTRFS_I(inode)->root->fs_info,
3564 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003565 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003566 }
3567
Chris Masonda2f0f72015-07-02 13:57:22 -07003568 ret = submit_extent_page(write_flags, tree, wbc, page,
Chris Masonffbd5172009-04-20 15:50:09 -04003569 sector, iosize, pg_offset,
3570 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003571 end_bio_extent_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003572 0, 0, 0, false);
Chris Masond1310b22008-01-24 16:13:08 -05003573 if (ret)
3574 SetPageError(page);
3575 }
3576 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003577 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003578 nr++;
3579 }
3580done:
Chris Mason40f76582014-05-21 13:35:51 -07003581 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003582
Chris Mason11c83492009-04-20 15:50:09 -04003583done_unlocked:
3584
Chris Mason2c64c532009-09-02 15:04:12 -04003585 /* drop our reference on any cached states */
3586 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003587 return ret;
3588}
3589
3590/*
3591 * the writepage semantics are similar to regular writepage. extent
3592 * records are inserted to lock ranges in the tree, and as dirty areas
3593 * are found, they are marked writeback. Then the lock bits are removed
3594 * and the end_io handler clears the writeback ranges
3595 */
3596static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3597 void *data)
3598{
3599 struct inode *inode = page->mapping->host;
3600 struct extent_page_data *epd = data;
3601 u64 start = page_offset(page);
3602 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3603 int ret;
3604 int nr = 0;
3605 size_t pg_offset = 0;
3606 loff_t i_size = i_size_read(inode);
3607 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3608 int write_flags;
3609 unsigned long nr_written = 0;
3610
3611 if (wbc->sync_mode == WB_SYNC_ALL)
3612 write_flags = WRITE_SYNC;
3613 else
3614 write_flags = WRITE;
3615
3616 trace___extent_writepage(page, inode, wbc);
3617
3618 WARN_ON(!PageLocked(page));
3619
3620 ClearPageError(page);
3621
3622 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3623 if (page->index > end_index ||
3624 (page->index == end_index && !pg_offset)) {
3625 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3626 unlock_page(page);
3627 return 0;
3628 }
3629
3630 if (page->index == end_index) {
3631 char *userpage;
3632
3633 userpage = kmap_atomic(page);
3634 memset(userpage + pg_offset, 0,
3635 PAGE_CACHE_SIZE - pg_offset);
3636 kunmap_atomic(userpage);
3637 flush_dcache_page(page);
3638 }
3639
3640 pg_offset = 0;
3641
3642 set_page_extent_mapped(page);
3643
3644 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3645 if (ret == 1)
3646 goto done_unlocked;
3647 if (ret)
3648 goto done;
3649
3650 ret = __extent_writepage_io(inode, page, wbc, epd,
3651 i_size, nr_written, write_flags, &nr);
3652 if (ret == 1)
3653 goto done_unlocked;
3654
3655done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003656 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003657 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003658 set_page_writeback(page);
3659 end_page_writeback(page);
3660 }
Filipe Manana61391d52014-05-09 17:17:40 +01003661 if (PageError(page)) {
3662 ret = ret < 0 ? ret : -EIO;
3663 end_extent_writepage(page, ret, start, page_end);
3664 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003665 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003666 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003667
3668done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003669 return 0;
3670}
3671
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003672void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003673{
NeilBrown74316202014-07-07 15:16:04 +10003674 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3675 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003676}
3677
Chris Mason0e378df2014-05-19 20:55:27 -07003678static noinline_for_stack int
3679lock_extent_buffer_for_io(struct extent_buffer *eb,
3680 struct btrfs_fs_info *fs_info,
3681 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003682{
3683 unsigned long i, num_pages;
3684 int flush = 0;
3685 int ret = 0;
3686
3687 if (!btrfs_try_tree_write_lock(eb)) {
3688 flush = 1;
3689 flush_write_bio(epd);
3690 btrfs_tree_lock(eb);
3691 }
3692
3693 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3694 btrfs_tree_unlock(eb);
3695 if (!epd->sync_io)
3696 return 0;
3697 if (!flush) {
3698 flush_write_bio(epd);
3699 flush = 1;
3700 }
Chris Masona098d8e2012-03-21 12:09:56 -04003701 while (1) {
3702 wait_on_extent_buffer_writeback(eb);
3703 btrfs_tree_lock(eb);
3704 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3705 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003706 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003707 }
3708 }
3709
Josef Bacik51561ff2012-07-20 16:25:24 -04003710 /*
3711 * We need to do this to prevent races in people who check if the eb is
3712 * under IO since we can end up having no IO bits set for a short period
3713 * of time.
3714 */
3715 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003716 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3717 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003718 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003719 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003720 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3721 -eb->len,
3722 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003723 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003724 } else {
3725 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003726 }
3727
3728 btrfs_tree_unlock(eb);
3729
3730 if (!ret)
3731 return ret;
3732
3733 num_pages = num_extent_pages(eb->start, eb->len);
3734 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003735 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003736
3737 if (!trylock_page(p)) {
3738 if (!flush) {
3739 flush_write_bio(epd);
3740 flush = 1;
3741 }
3742 lock_page(p);
3743 }
3744 }
3745
3746 return ret;
3747}
3748
3749static void end_extent_buffer_writeback(struct extent_buffer *eb)
3750{
3751 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003752 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003753 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3754}
3755
Filipe Manana656f30d2014-09-26 12:25:56 +01003756static void set_btree_ioerr(struct page *page)
3757{
3758 struct extent_buffer *eb = (struct extent_buffer *)page->private;
3759 struct btrfs_inode *btree_ino = BTRFS_I(eb->fs_info->btree_inode);
3760
3761 SetPageError(page);
3762 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3763 return;
3764
3765 /*
3766 * If writeback for a btree extent that doesn't belong to a log tree
3767 * failed, increment the counter transaction->eb_write_errors.
3768 * We do this because while the transaction is running and before it's
3769 * committing (when we call filemap_fdata[write|wait]_range against
3770 * the btree inode), we might have
3771 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3772 * returns an error or an error happens during writeback, when we're
3773 * committing the transaction we wouldn't know about it, since the pages
3774 * can be no longer dirty nor marked anymore for writeback (if a
3775 * subsequent modification to the extent buffer didn't happen before the
3776 * transaction commit), which makes filemap_fdata[write|wait]_range not
3777 * able to find the pages tagged with SetPageError at transaction
3778 * commit time. So if this happens we must abort the transaction,
3779 * otherwise we commit a super block with btree roots that point to
3780 * btree nodes/leafs whose content on disk is invalid - either garbage
3781 * or the content of some node/leaf from a past generation that got
3782 * cowed or deleted and is no longer valid.
3783 *
3784 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3785 * not be enough - we need to distinguish between log tree extents vs
3786 * non-log tree extents, and the next filemap_fdatawait_range() call
3787 * will catch and clear such errors in the mapping - and that call might
3788 * be from a log sync and not from a transaction commit. Also, checking
3789 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3790 * not done and would not be reliable - the eb might have been released
3791 * from memory and reading it back again means that flag would not be
3792 * set (since it's a runtime flag, not persisted on disk).
3793 *
3794 * Using the flags below in the btree inode also makes us achieve the
3795 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3796 * writeback for all dirty pages and before filemap_fdatawait_range()
3797 * is called, the writeback for all dirty pages had already finished
3798 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3799 * filemap_fdatawait_range() would return success, as it could not know
3800 * that writeback errors happened (the pages were no longer tagged for
3801 * writeback).
3802 */
3803 switch (eb->log_index) {
3804 case -1:
3805 set_bit(BTRFS_INODE_BTREE_ERR, &btree_ino->runtime_flags);
3806 break;
3807 case 0:
3808 set_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
3809 break;
3810 case 1:
3811 set_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
3812 break;
3813 default:
3814 BUG(); /* unexpected, logic error */
3815 }
3816}
3817
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003818static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003819{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003820 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003821 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003822 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003823
Kent Overstreet2c30c712013-11-07 12:20:26 -08003824 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003825 struct page *page = bvec->bv_page;
3826
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003827 eb = (struct extent_buffer *)page->private;
3828 BUG_ON(!eb);
3829 done = atomic_dec_and_test(&eb->io_pages);
3830
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003831 if (bio->bi_error ||
3832 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003833 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003834 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003835 }
3836
3837 end_page_writeback(page);
3838
3839 if (!done)
3840 continue;
3841
3842 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003843 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003844
3845 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003846}
3847
Chris Mason0e378df2014-05-19 20:55:27 -07003848static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003849 struct btrfs_fs_info *fs_info,
3850 struct writeback_control *wbc,
3851 struct extent_page_data *epd)
3852{
3853 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003854 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003855 u64 offset = eb->start;
3856 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003857 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003858 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003859 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003860
Filipe Manana656f30d2014-09-26 12:25:56 +01003861 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003862 num_pages = num_extent_pages(eb->start, eb->len);
3863 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003864 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3865 bio_flags = EXTENT_BIO_TREE_LOG;
3866
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003867 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003868 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003869
3870 clear_page_dirty_for_io(p);
3871 set_page_writeback(p);
Chris Masonda2f0f72015-07-02 13:57:22 -07003872 ret = submit_extent_page(rw, tree, wbc, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003873 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3874 -1, end_bio_extent_buffer_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003875 0, epd->bio_flags, bio_flags, false);
Josef Bacikde0022b2012-09-25 14:25:58 -04003876 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003877 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003878 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003879 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003880 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3881 end_extent_buffer_writeback(eb);
3882 ret = -EIO;
3883 break;
3884 }
3885 offset += PAGE_CACHE_SIZE;
3886 update_nr_written(p, wbc, 1);
3887 unlock_page(p);
3888 }
3889
3890 if (unlikely(ret)) {
3891 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003892 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003893 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003894 unlock_page(p);
3895 }
3896 }
3897
3898 return ret;
3899}
3900
3901int btree_write_cache_pages(struct address_space *mapping,
3902 struct writeback_control *wbc)
3903{
3904 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3905 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3906 struct extent_buffer *eb, *prev_eb = NULL;
3907 struct extent_page_data epd = {
3908 .bio = NULL,
3909 .tree = tree,
3910 .extent_locked = 0,
3911 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003912 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003913 };
3914 int ret = 0;
3915 int done = 0;
3916 int nr_to_write_done = 0;
3917 struct pagevec pvec;
3918 int nr_pages;
3919 pgoff_t index;
3920 pgoff_t end; /* Inclusive */
3921 int scanned = 0;
3922 int tag;
3923
3924 pagevec_init(&pvec, 0);
3925 if (wbc->range_cyclic) {
3926 index = mapping->writeback_index; /* Start from prev offset */
3927 end = -1;
3928 } else {
3929 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3930 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3931 scanned = 1;
3932 }
3933 if (wbc->sync_mode == WB_SYNC_ALL)
3934 tag = PAGECACHE_TAG_TOWRITE;
3935 else
3936 tag = PAGECACHE_TAG_DIRTY;
3937retry:
3938 if (wbc->sync_mode == WB_SYNC_ALL)
3939 tag_pages_for_writeback(mapping, index, end);
3940 while (!done && !nr_to_write_done && (index <= end) &&
3941 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3942 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3943 unsigned i;
3944
3945 scanned = 1;
3946 for (i = 0; i < nr_pages; i++) {
3947 struct page *page = pvec.pages[i];
3948
3949 if (!PagePrivate(page))
3950 continue;
3951
3952 if (!wbc->range_cyclic && page->index > end) {
3953 done = 1;
3954 break;
3955 }
3956
Josef Bacikb5bae262012-09-14 13:43:01 -04003957 spin_lock(&mapping->private_lock);
3958 if (!PagePrivate(page)) {
3959 spin_unlock(&mapping->private_lock);
3960 continue;
3961 }
3962
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003963 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003964
3965 /*
3966 * Shouldn't happen and normally this would be a BUG_ON
3967 * but no sense in crashing the users box for something
3968 * we can survive anyway.
3969 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303970 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003971 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003972 continue;
3973 }
3974
Josef Bacikb5bae262012-09-14 13:43:01 -04003975 if (eb == prev_eb) {
3976 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003977 continue;
3978 }
3979
Josef Bacikb5bae262012-09-14 13:43:01 -04003980 ret = atomic_inc_not_zero(&eb->refs);
3981 spin_unlock(&mapping->private_lock);
3982 if (!ret)
3983 continue;
3984
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003985 prev_eb = eb;
3986 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3987 if (!ret) {
3988 free_extent_buffer(eb);
3989 continue;
3990 }
3991
3992 ret = write_one_eb(eb, fs_info, wbc, &epd);
3993 if (ret) {
3994 done = 1;
3995 free_extent_buffer(eb);
3996 break;
3997 }
3998 free_extent_buffer(eb);
3999
4000 /*
4001 * the filesystem may choose to bump up nr_to_write.
4002 * We have to make sure to honor the new nr_to_write
4003 * at any time
4004 */
4005 nr_to_write_done = wbc->nr_to_write <= 0;
4006 }
4007 pagevec_release(&pvec);
4008 cond_resched();
4009 }
4010 if (!scanned && !done) {
4011 /*
4012 * We hit the last page and there is more work to be done: wrap
4013 * back to the start of the file
4014 */
4015 scanned = 1;
4016 index = 0;
4017 goto retry;
4018 }
4019 flush_write_bio(&epd);
4020 return ret;
4021}
4022
Chris Masond1310b22008-01-24 16:13:08 -05004023/**
4024 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
4025 * @mapping: address space structure to write
4026 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
4027 * @writepage: function called for each page
4028 * @data: data passed to writepage function
4029 *
4030 * If a page is already under I/O, write_cache_pages() skips it, even
4031 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
4032 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
4033 * and msync() need to guarantee that all the data which was dirty at the time
4034 * the call was made get new I/O started against them. If wbc->sync_mode is
4035 * WB_SYNC_ALL then we were called for data integrity and we must wait for
4036 * existing IO to complete.
4037 */
Chris Mason4bef0842008-09-08 11:18:08 -04004038static int extent_write_cache_pages(struct extent_io_tree *tree,
4039 struct address_space *mapping,
4040 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004041 writepage_t writepage, void *data,
4042 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05004043{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004044 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05004045 int ret = 0;
4046 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01004047 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004048 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004049 struct pagevec pvec;
4050 int nr_pages;
4051 pgoff_t index;
4052 pgoff_t end; /* Inclusive */
4053 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00004054 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05004055
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004056 /*
4057 * We have to hold onto the inode so that ordered extents can do their
4058 * work when the IO finishes. The alternative to this is failing to add
4059 * an ordered extent if the igrab() fails there and that is a huge pain
4060 * to deal with, so instead just hold onto the inode throughout the
4061 * writepages operation. If it fails here we are freeing up the inode
4062 * anyway and we'd rather not waste our time writing out stuff that is
4063 * going to be truncated anyway.
4064 */
4065 if (!igrab(inode))
4066 return 0;
4067
Chris Masond1310b22008-01-24 16:13:08 -05004068 pagevec_init(&pvec, 0);
4069 if (wbc->range_cyclic) {
4070 index = mapping->writeback_index; /* Start from prev offset */
4071 end = -1;
4072 } else {
4073 index = wbc->range_start >> PAGE_CACHE_SHIFT;
4074 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004075 scanned = 1;
4076 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00004077 if (wbc->sync_mode == WB_SYNC_ALL)
4078 tag = PAGECACHE_TAG_TOWRITE;
4079 else
4080 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004081retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00004082 if (wbc->sync_mode == WB_SYNC_ALL)
4083 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004084 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00004085 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
4086 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05004087 unsigned i;
4088
4089 scanned = 1;
4090 for (i = 0; i < nr_pages; i++) {
4091 struct page *page = pvec.pages[i];
4092
4093 /*
4094 * At this point we hold neither mapping->tree_lock nor
4095 * lock on the page itself: the page may be truncated or
4096 * invalidated (changing page->mapping to NULL), or even
4097 * swizzled back from swapper_space to tmpfs file
4098 * mapping
4099 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004100 if (!trylock_page(page)) {
4101 flush_fn(data);
4102 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004103 }
Chris Masond1310b22008-01-24 16:13:08 -05004104
4105 if (unlikely(page->mapping != mapping)) {
4106 unlock_page(page);
4107 continue;
4108 }
4109
4110 if (!wbc->range_cyclic && page->index > end) {
4111 done = 1;
4112 unlock_page(page);
4113 continue;
4114 }
4115
Chris Masond2c3f4f2008-11-19 12:44:22 -05004116 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05004117 if (PageWriteback(page))
4118 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05004119 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004120 }
Chris Masond1310b22008-01-24 16:13:08 -05004121
4122 if (PageWriteback(page) ||
4123 !clear_page_dirty_for_io(page)) {
4124 unlock_page(page);
4125 continue;
4126 }
4127
4128 ret = (*writepage)(page, wbc, data);
4129
4130 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4131 unlock_page(page);
4132 ret = 0;
4133 }
Filipe Manana61391d52014-05-09 17:17:40 +01004134 if (!err && ret < 0)
4135 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004136
4137 /*
4138 * the filesystem may choose to bump up nr_to_write.
4139 * We have to make sure to honor the new nr_to_write
4140 * at any time
4141 */
4142 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004143 }
4144 pagevec_release(&pvec);
4145 cond_resched();
4146 }
Filipe Manana61391d52014-05-09 17:17:40 +01004147 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05004148 /*
4149 * We hit the last page and there is more work to be done: wrap
4150 * back to the start of the file
4151 */
4152 scanned = 1;
4153 index = 0;
4154 goto retry;
4155 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004156 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01004157 return err;
Chris Masond1310b22008-01-24 16:13:08 -05004158}
Chris Masond1310b22008-01-24 16:13:08 -05004159
Chris Masonffbd5172009-04-20 15:50:09 -04004160static void flush_epd_write_bio(struct extent_page_data *epd)
4161{
4162 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004163 int rw = WRITE;
4164 int ret;
4165
Chris Masonffbd5172009-04-20 15:50:09 -04004166 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04004167 rw = WRITE_SYNC;
4168
Josef Bacikde0022b2012-09-25 14:25:58 -04004169 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004170 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004171 epd->bio = NULL;
4172 }
4173}
4174
Chris Masond2c3f4f2008-11-19 12:44:22 -05004175static noinline void flush_write_bio(void *data)
4176{
4177 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004178 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004179}
4180
Chris Masond1310b22008-01-24 16:13:08 -05004181int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4182 get_extent_t *get_extent,
4183 struct writeback_control *wbc)
4184{
4185 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004186 struct extent_page_data epd = {
4187 .bio = NULL,
4188 .tree = tree,
4189 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004190 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004191 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004192 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004193 };
Chris Masond1310b22008-01-24 16:13:08 -05004194
Chris Masond1310b22008-01-24 16:13:08 -05004195 ret = __extent_writepage(page, wbc, &epd);
4196
Chris Masonffbd5172009-04-20 15:50:09 -04004197 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004198 return ret;
4199}
Chris Masond1310b22008-01-24 16:13:08 -05004200
Chris Mason771ed682008-11-06 22:02:51 -05004201int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4202 u64 start, u64 end, get_extent_t *get_extent,
4203 int mode)
4204{
4205 int ret = 0;
4206 struct address_space *mapping = inode->i_mapping;
4207 struct page *page;
4208 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
4209 PAGE_CACHE_SHIFT;
4210
4211 struct extent_page_data epd = {
4212 .bio = NULL,
4213 .tree = tree,
4214 .get_extent = get_extent,
4215 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004216 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004217 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004218 };
4219 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004220 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004221 .nr_to_write = nr_pages * 2,
4222 .range_start = start,
4223 .range_end = end + 1,
4224 };
4225
Chris Masond3977122009-01-05 21:25:51 -05004226 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05004227 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
4228 if (clear_page_dirty_for_io(page))
4229 ret = __extent_writepage(page, &wbc_writepages, &epd);
4230 else {
4231 if (tree->ops && tree->ops->writepage_end_io_hook)
4232 tree->ops->writepage_end_io_hook(page, start,
4233 start + PAGE_CACHE_SIZE - 1,
4234 NULL, 1);
4235 unlock_page(page);
4236 }
4237 page_cache_release(page);
4238 start += PAGE_CACHE_SIZE;
4239 }
4240
Chris Masonffbd5172009-04-20 15:50:09 -04004241 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004242 return ret;
4243}
Chris Masond1310b22008-01-24 16:13:08 -05004244
4245int extent_writepages(struct extent_io_tree *tree,
4246 struct address_space *mapping,
4247 get_extent_t *get_extent,
4248 struct writeback_control *wbc)
4249{
4250 int ret = 0;
4251 struct extent_page_data epd = {
4252 .bio = NULL,
4253 .tree = tree,
4254 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004255 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004256 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004257 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004258 };
4259
Chris Mason4bef0842008-09-08 11:18:08 -04004260 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004261 __extent_writepage, &epd,
4262 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004263 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004264 return ret;
4265}
Chris Masond1310b22008-01-24 16:13:08 -05004266
4267int extent_readpages(struct extent_io_tree *tree,
4268 struct address_space *mapping,
4269 struct list_head *pages, unsigned nr_pages,
4270 get_extent_t get_extent)
4271{
4272 struct bio *bio = NULL;
4273 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004274 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004275 struct page *pagepool[16];
4276 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004277 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004278 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004279 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004280
Chris Masond1310b22008-01-24 16:13:08 -05004281 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004282 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004283
4284 prefetchw(&page->flags);
4285 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004286 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004287 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004288 page_cache_release(page);
4289 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004290 }
Liu Bo67c96842012-07-20 21:43:09 -06004291
4292 pagepool[nr++] = page;
4293 if (nr < ARRAY_SIZE(pagepool))
4294 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004295 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004296 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004297 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004298 }
Miao Xie99740902013-07-25 19:22:36 +08004299 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004300 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004301 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004302
Miao Xie125bac012013-07-25 19:22:37 +08004303 if (em_cached)
4304 free_extent_map(em_cached);
4305
Chris Masond1310b22008-01-24 16:13:08 -05004306 BUG_ON(!list_empty(pages));
4307 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004308 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004309 return 0;
4310}
Chris Masond1310b22008-01-24 16:13:08 -05004311
4312/*
4313 * basic invalidatepage code, this waits on any locked or writeback
4314 * ranges corresponding to the page, and then deletes any extent state
4315 * records from the tree
4316 */
4317int extent_invalidatepage(struct extent_io_tree *tree,
4318 struct page *page, unsigned long offset)
4319{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004320 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004321 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004322 u64 end = start + PAGE_CACHE_SIZE - 1;
4323 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4324
Qu Wenruofda28322013-02-26 08:10:22 +00004325 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004326 if (start > end)
4327 return 0;
4328
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004329 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004330 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004331 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004332 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4333 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004334 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004335 return 0;
4336}
Chris Masond1310b22008-01-24 16:13:08 -05004337
4338/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004339 * a helper for releasepage, this tests for areas of the page that
4340 * are locked or under IO and drops the related state bits if it is safe
4341 * to drop the page.
4342 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004343static int try_release_extent_state(struct extent_map_tree *map,
4344 struct extent_io_tree *tree,
4345 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004346{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004347 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004348 u64 end = start + PAGE_CACHE_SIZE - 1;
4349 int ret = 1;
4350
Chris Mason211f90e2008-07-18 11:56:15 -04004351 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004352 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004353 ret = 0;
4354 else {
4355 if ((mask & GFP_NOFS) == GFP_NOFS)
4356 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004357 /*
4358 * at this point we can safely clear everything except the
4359 * locked bit and the nodatasum bit
4360 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004361 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004362 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4363 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004364
4365 /* if clear_extent_bit failed for enomem reasons,
4366 * we can't allow the release to continue.
4367 */
4368 if (ret < 0)
4369 ret = 0;
4370 else
4371 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004372 }
4373 return ret;
4374}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004375
4376/*
Chris Masond1310b22008-01-24 16:13:08 -05004377 * a helper for releasepage. As long as there are no locked extents
4378 * in the range corresponding to the page, both state records and extent
4379 * map records are removed
4380 */
4381int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004382 struct extent_io_tree *tree, struct page *page,
4383 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004384{
4385 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004386 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004387 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004388
Mel Gormand0164ad2015-11-06 16:28:21 -08004389 if (gfpflags_allow_blocking(mask) &&
Chris Mason70dec802008-01-29 09:59:12 -05004390 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004391 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004392 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004393 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004394 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004395 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004396 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004397 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004398 break;
4399 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004400 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4401 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004402 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004403 free_extent_map(em);
4404 break;
4405 }
4406 if (!test_range_bit(tree, em->start,
4407 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004408 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004409 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004410 remove_extent_mapping(map, em);
4411 /* once for the rb tree */
4412 free_extent_map(em);
4413 }
4414 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004415 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004416
4417 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004418 free_extent_map(em);
4419 }
Chris Masond1310b22008-01-24 16:13:08 -05004420 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004421 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004422}
Chris Masond1310b22008-01-24 16:13:08 -05004423
Chris Masonec29ed52011-02-23 16:23:20 -05004424/*
4425 * helper function for fiemap, which doesn't want to see any holes.
4426 * This maps until we find something past 'last'
4427 */
4428static struct extent_map *get_extent_skip_holes(struct inode *inode,
4429 u64 offset,
4430 u64 last,
4431 get_extent_t *get_extent)
4432{
4433 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4434 struct extent_map *em;
4435 u64 len;
4436
4437 if (offset >= last)
4438 return NULL;
4439
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304440 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004441 len = last - offset;
4442 if (len == 0)
4443 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004444 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004445 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004446 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004447 return em;
4448
4449 /* if this isn't a hole return it */
4450 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4451 em->block_start != EXTENT_MAP_HOLE) {
4452 return em;
4453 }
4454
4455 /* this is a hole, advance to the next extent */
4456 offset = extent_map_end(em);
4457 free_extent_map(em);
4458 if (offset >= last)
4459 break;
4460 }
4461 return NULL;
4462}
4463
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004464int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4465 __u64 start, __u64 len, get_extent_t *get_extent)
4466{
Josef Bacik975f84f2010-11-23 19:36:57 +00004467 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004468 u64 off = start;
4469 u64 max = start + len;
4470 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004471 u32 found_type;
4472 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004473 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004474 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004475 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004476 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004477 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004478 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004479 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004480 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004481 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004482 u64 em_start = 0;
4483 u64 em_len = 0;
4484 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004485
4486 if (len == 0)
4487 return -EINVAL;
4488
Josef Bacik975f84f2010-11-23 19:36:57 +00004489 path = btrfs_alloc_path();
4490 if (!path)
4491 return -ENOMEM;
4492 path->leave_spinning = 1;
4493
Qu Wenruo2c919432014-07-18 09:55:43 +08004494 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4495 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004496
Chris Masonec29ed52011-02-23 16:23:20 -05004497 /*
4498 * lookup the last file extent. We're not using i_size here
4499 * because there might be preallocation past i_size
4500 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004501 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4502 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004503 if (ret < 0) {
4504 btrfs_free_path(path);
4505 return ret;
4506 }
4507 WARN_ON(!ret);
4508 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004509 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004510 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004511
Chris Masonec29ed52011-02-23 16:23:20 -05004512 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004513 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004514 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004515 /* have to trust i_size as the end */
4516 last = (u64)-1;
4517 last_for_get_extent = isize;
4518 } else {
4519 /*
4520 * remember the start of the last extent. There are a
4521 * bunch of different factors that go into the length of the
4522 * extent, so its much less complex to remember where it started
4523 */
4524 last = found_key.offset;
4525 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004526 }
Liu Bofe09e162013-09-22 12:54:23 +08004527 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004528
Chris Masonec29ed52011-02-23 16:23:20 -05004529 /*
4530 * we might have some extents allocated but more delalloc past those
4531 * extents. so, we trust isize unless the start of the last extent is
4532 * beyond isize
4533 */
4534 if (last < isize) {
4535 last = (u64)-1;
4536 last_for_get_extent = isize;
4537 }
4538
Liu Boa52f4cd2013-05-01 16:23:41 +00004539 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004540 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004541
Josef Bacik4d479cf2011-11-17 11:34:31 -05004542 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004543 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004544 if (!em)
4545 goto out;
4546 if (IS_ERR(em)) {
4547 ret = PTR_ERR(em);
4548 goto out;
4549 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004550
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004551 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004552 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004553
Chris Masonea8efc72011-03-08 11:54:40 -05004554 /* break if the extent we found is outside the range */
4555 if (em->start >= max || extent_map_end(em) < off)
4556 break;
4557
4558 /*
4559 * get_extent may return an extent that starts before our
4560 * requested range. We have to make sure the ranges
4561 * we return to fiemap always move forward and don't
4562 * overlap, so adjust the offsets here
4563 */
4564 em_start = max(em->start, off);
4565
4566 /*
4567 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004568 * for adjusting the disk offset below. Only do this if the
4569 * extent isn't compressed since our in ram offset may be past
4570 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004571 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004572 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4573 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004574 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004575 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004576 disko = 0;
4577 flags = 0;
4578
Chris Masonea8efc72011-03-08 11:54:40 -05004579 /*
4580 * bump off for our next call to get_extent
4581 */
4582 off = extent_map_end(em);
4583 if (off >= max)
4584 end = 1;
4585
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004586 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004587 end = 1;
4588 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004589 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004590 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4591 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004592 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004593 flags |= (FIEMAP_EXTENT_DELALLOC |
4594 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004595 } else if (fieinfo->fi_extents_max) {
4596 u64 bytenr = em->block_start -
4597 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004598
Chris Masonea8efc72011-03-08 11:54:40 -05004599 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004600
4601 /*
4602 * As btrfs supports shared space, this information
4603 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004604 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4605 * then we're just getting a count and we can skip the
4606 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004607 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004608 ret = btrfs_check_shared(NULL, root->fs_info,
4609 root->objectid,
4610 btrfs_ino(inode), bytenr);
4611 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004612 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004613 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004614 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004615 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004616 }
4617 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4618 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004619 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4620 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004621
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004622 free_extent_map(em);
4623 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004624 if ((em_start >= last) || em_len == (u64)-1 ||
4625 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004626 flags |= FIEMAP_EXTENT_LAST;
4627 end = 1;
4628 }
4629
Chris Masonec29ed52011-02-23 16:23:20 -05004630 /* now scan forward to see if this is really the last extent. */
4631 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4632 get_extent);
4633 if (IS_ERR(em)) {
4634 ret = PTR_ERR(em);
4635 goto out;
4636 }
4637 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004638 flags |= FIEMAP_EXTENT_LAST;
4639 end = 1;
4640 }
Chris Masonec29ed52011-02-23 16:23:20 -05004641 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4642 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004643 if (ret) {
4644 if (ret == 1)
4645 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004646 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004647 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004648 }
4649out_free:
4650 free_extent_map(em);
4651out:
Liu Bofe09e162013-09-22 12:54:23 +08004652 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004653 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004654 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004655 return ret;
4656}
4657
Chris Mason727011e2010-08-06 13:21:20 -04004658static void __free_extent_buffer(struct extent_buffer *eb)
4659{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004660 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004661 kmem_cache_free(extent_buffer_cache, eb);
4662}
4663
Josef Bacika26e8c92014-03-28 17:07:27 -04004664int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004665{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004666 return (atomic_read(&eb->io_pages) ||
4667 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4668 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004669}
4670
Miao Xie897ca6e2010-10-26 20:57:29 -04004671/*
4672 * Helper for releasing extent buffer page.
4673 */
David Sterbaa50924e2014-07-31 00:51:36 +02004674static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e2010-10-26 20:57:29 -04004675{
4676 unsigned long index;
4677 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004678 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004679
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004680 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004681
David Sterbaa50924e2014-07-31 00:51:36 +02004682 index = num_extent_pages(eb->start, eb->len);
4683 if (index == 0)
Miao Xie897ca6e2010-10-26 20:57:29 -04004684 return;
4685
4686 do {
4687 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004688 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004689 if (!page)
4690 continue;
4691 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004692 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004693 /*
4694 * We do this since we'll remove the pages after we've
4695 * removed the eb from the radix tree, so we could race
4696 * and have this page now attached to the new eb. So
4697 * only clear page_private if it's still connected to
4698 * this eb.
4699 */
4700 if (PagePrivate(page) &&
4701 page->private == (unsigned long)eb) {
4702 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4703 BUG_ON(PageDirty(page));
4704 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004705 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004706 * We need to make sure we haven't be attached
4707 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004708 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004709 ClearPagePrivate(page);
4710 set_page_private(page, 0);
4711 /* One for the page private */
Miao Xie897ca6e2010-10-26 20:57:29 -04004712 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004713 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004714
4715 if (mapped)
4716 spin_unlock(&page->mapping->private_lock);
4717
4718 /* One for when we alloced the page */
4719 page_cache_release(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004720 } while (index != 0);
Miao Xie897ca6e2010-10-26 20:57:29 -04004721}
4722
4723/*
4724 * Helper for releasing the extent buffer.
4725 */
4726static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4727{
David Sterbaa50924e2014-07-31 00:51:36 +02004728 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e2010-10-26 20:57:29 -04004729 __free_extent_buffer(eb);
4730}
4731
Josef Bacikf28491e2013-12-16 13:24:27 -05004732static struct extent_buffer *
4733__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004734 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004735{
4736 struct extent_buffer *eb = NULL;
4737
Michal Hockod1b5c562015-08-19 14:17:40 +02004738 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004739 eb->start = start;
4740 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004741 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004742 eb->bflags = 0;
4743 rwlock_init(&eb->lock);
4744 atomic_set(&eb->write_locks, 0);
4745 atomic_set(&eb->read_locks, 0);
4746 atomic_set(&eb->blocking_readers, 0);
4747 atomic_set(&eb->blocking_writers, 0);
4748 atomic_set(&eb->spinning_readers, 0);
4749 atomic_set(&eb->spinning_writers, 0);
4750 eb->lock_nested = 0;
4751 init_waitqueue_head(&eb->write_lock_wq);
4752 init_waitqueue_head(&eb->read_lock_wq);
4753
4754 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4755
4756 spin_lock_init(&eb->refs_lock);
4757 atomic_set(&eb->refs, 1);
4758 atomic_set(&eb->io_pages, 0);
4759
4760 /*
4761 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4762 */
4763 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4764 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4765 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4766
4767 return eb;
4768}
4769
4770struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4771{
4772 unsigned long i;
4773 struct page *p;
4774 struct extent_buffer *new;
4775 unsigned long num_pages = num_extent_pages(src->start, src->len);
4776
David Sterba3f556f72014-06-15 03:20:26 +02004777 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004778 if (new == NULL)
4779 return NULL;
4780
4781 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004782 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004783 if (!p) {
4784 btrfs_release_extent_buffer(new);
4785 return NULL;
4786 }
4787 attach_extent_buffer_page(new, p);
4788 WARN_ON(PageDirty(p));
4789 SetPageUptodate(p);
4790 new->pages[i] = p;
4791 }
4792
4793 copy_extent_buffer(new, src, 0, 0, src->len);
4794 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4795 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4796
4797 return new;
4798}
4799
David Sterba3f556f72014-06-15 03:20:26 +02004800struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4801 u64 start)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004802{
4803 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004804 unsigned long len;
4805 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004806 unsigned long i;
4807
David Sterba3f556f72014-06-15 03:20:26 +02004808 if (!fs_info) {
4809 /*
4810 * Called only from tests that don't always have a fs_info
4811 * available, but we know that nodesize is 4096
4812 */
4813 len = 4096;
4814 } else {
4815 len = fs_info->tree_root->nodesize;
4816 }
4817 num_pages = num_extent_pages(0, len);
4818
4819 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004820 if (!eb)
4821 return NULL;
4822
4823 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004824 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004825 if (!eb->pages[i])
4826 goto err;
4827 }
4828 set_extent_buffer_uptodate(eb);
4829 btrfs_set_header_nritems(eb, 0);
4830 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4831
4832 return eb;
4833err:
4834 for (; i > 0; i--)
4835 __free_page(eb->pages[i - 1]);
4836 __free_extent_buffer(eb);
4837 return NULL;
4838}
4839
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004840static void check_buffer_tree_ref(struct extent_buffer *eb)
4841{
Chris Mason242e18c2013-01-29 17:49:37 -05004842 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004843 /* the ref bit is tricky. We have to make sure it is set
4844 * if we have the buffer dirty. Otherwise the
4845 * code to free a buffer can end up dropping a dirty
4846 * page
4847 *
4848 * Once the ref bit is set, it won't go away while the
4849 * buffer is dirty or in writeback, and it also won't
4850 * go away while we have the reference count on the
4851 * eb bumped.
4852 *
4853 * We can't just set the ref bit without bumping the
4854 * ref on the eb because free_extent_buffer might
4855 * see the ref bit and try to clear it. If this happens
4856 * free_extent_buffer might end up dropping our original
4857 * ref by mistake and freeing the page before we are able
4858 * to add one more ref.
4859 *
4860 * So bump the ref count first, then set the bit. If someone
4861 * beat us to it, drop the ref we added.
4862 */
Chris Mason242e18c2013-01-29 17:49:37 -05004863 refs = atomic_read(&eb->refs);
4864 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4865 return;
4866
Josef Bacik594831c2012-07-20 16:11:08 -04004867 spin_lock(&eb->refs_lock);
4868 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004869 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004870 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004871}
4872
Mel Gorman2457aec2014-06-04 16:10:31 -07004873static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4874 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004875{
4876 unsigned long num_pages, i;
4877
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004878 check_buffer_tree_ref(eb);
4879
Josef Bacik5df42352012-03-15 18:24:42 -04004880 num_pages = num_extent_pages(eb->start, eb->len);
4881 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004882 struct page *p = eb->pages[i];
4883
Mel Gorman2457aec2014-06-04 16:10:31 -07004884 if (p != accessed)
4885 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004886 }
4887}
4888
Josef Bacikf28491e2013-12-16 13:24:27 -05004889struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4890 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004891{
4892 struct extent_buffer *eb;
4893
4894 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004895 eb = radix_tree_lookup(&fs_info->buffer_radix,
4896 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004897 if (eb && atomic_inc_not_zero(&eb->refs)) {
4898 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004899 /*
4900 * Lock our eb's refs_lock to avoid races with
4901 * free_extent_buffer. When we get our eb it might be flagged
4902 * with EXTENT_BUFFER_STALE and another task running
4903 * free_extent_buffer might have seen that flag set,
4904 * eb->refs == 2, that the buffer isn't under IO (dirty and
4905 * writeback flags not set) and it's still in the tree (flag
4906 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4907 * of decrementing the extent buffer's reference count twice.
4908 * So here we could race and increment the eb's reference count,
4909 * clear its stale flag, mark it as dirty and drop our reference
4910 * before the other task finishes executing free_extent_buffer,
4911 * which would later result in an attempt to free an extent
4912 * buffer that is dirty.
4913 */
4914 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4915 spin_lock(&eb->refs_lock);
4916 spin_unlock(&eb->refs_lock);
4917 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004918 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004919 return eb;
4920 }
4921 rcu_read_unlock();
4922
4923 return NULL;
4924}
4925
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004926#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4927struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004928 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004929{
4930 struct extent_buffer *eb, *exists = NULL;
4931 int ret;
4932
4933 eb = find_extent_buffer(fs_info, start);
4934 if (eb)
4935 return eb;
David Sterba3f556f72014-06-15 03:20:26 +02004936 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004937 if (!eb)
4938 return NULL;
4939 eb->fs_info = fs_info;
4940again:
4941 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4942 if (ret)
4943 goto free_eb;
4944 spin_lock(&fs_info->buffer_lock);
4945 ret = radix_tree_insert(&fs_info->buffer_radix,
4946 start >> PAGE_CACHE_SHIFT, eb);
4947 spin_unlock(&fs_info->buffer_lock);
4948 radix_tree_preload_end();
4949 if (ret == -EEXIST) {
4950 exists = find_extent_buffer(fs_info, start);
4951 if (exists)
4952 goto free_eb;
4953 else
4954 goto again;
4955 }
4956 check_buffer_tree_ref(eb);
4957 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4958
4959 /*
4960 * We will free dummy extent buffer's if they come into
4961 * free_extent_buffer with a ref count of 2, but if we are using this we
4962 * want the buffers to stay in memory until we're done with them, so
4963 * bump the ref count again.
4964 */
4965 atomic_inc(&eb->refs);
4966 return eb;
4967free_eb:
4968 btrfs_release_extent_buffer(eb);
4969 return exists;
4970}
4971#endif
4972
Josef Bacikf28491e2013-12-16 13:24:27 -05004973struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004974 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004975{
David Sterbace3e6982014-06-15 03:00:04 +02004976 unsigned long len = fs_info->tree_root->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004977 unsigned long num_pages = num_extent_pages(start, len);
4978 unsigned long i;
4979 unsigned long index = start >> PAGE_CACHE_SHIFT;
4980 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004981 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004982 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004983 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004984 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004985 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004986
Josef Bacikf28491e2013-12-16 13:24:27 -05004987 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004988 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004989 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004990
David Sterba23d79d82014-06-15 02:55:29 +02004991 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004992 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004993 return NULL;
4994
Chris Mason727011e2010-08-06 13:21:20 -04004995 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004996 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Josef Bacik4804b382012-10-05 16:43:45 -04004997 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004998 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004999
5000 spin_lock(&mapping->private_lock);
5001 if (PagePrivate(p)) {
5002 /*
5003 * We could have already allocated an eb for this page
5004 * and attached one so lets see if we can get a ref on
5005 * the existing eb, and if we can we know it's good and
5006 * we can just return that one, else we know we can just
5007 * overwrite page->private.
5008 */
5009 exists = (struct extent_buffer *)p->private;
5010 if (atomic_inc_not_zero(&exists->refs)) {
5011 spin_unlock(&mapping->private_lock);
5012 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04005013 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005014 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005015 goto free_eb;
5016 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005017 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005018
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005019 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005020 * Do this so attach doesn't complain and we need to
5021 * drop the ref the old guy had.
5022 */
5023 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005024 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005025 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05005026 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005027 attach_extent_buffer_page(eb, p);
5028 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005029 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005030 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005031 if (!PageUptodate(p))
5032 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005033
5034 /*
5035 * see below about how we avoid a nasty race with release page
5036 * and why we unlock later
5037 */
Chris Masond1310b22008-01-24 16:13:08 -05005038 }
5039 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005040 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005041again:
Miao Xie19fe0a82010-10-26 20:57:29 -04005042 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
5043 if (ret)
5044 goto free_eb;
5045
Josef Bacikf28491e2013-12-16 13:24:27 -05005046 spin_lock(&fs_info->buffer_lock);
5047 ret = radix_tree_insert(&fs_info->buffer_radix,
5048 start >> PAGE_CACHE_SHIFT, eb);
5049 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005050 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005051 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005052 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005053 if (exists)
5054 goto free_eb;
5055 else
Josef Bacik115391d2012-03-09 09:51:43 -05005056 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005057 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005058 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005059 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005060 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005061
5062 /*
5063 * there is a race where release page may have
5064 * tried to find this extent buffer in the radix
5065 * but failed. It will tell the VM it is safe to
5066 * reclaim the, and it will clear the page private bit.
5067 * We must make sure to set the page private bit properly
5068 * after the extent buffer is in the radix tree so
5069 * it doesn't get lost
5070 */
Chris Mason727011e2010-08-06 13:21:20 -04005071 SetPageChecked(eb->pages[0]);
5072 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005073 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005074 ClearPageChecked(p);
5075 unlock_page(p);
5076 }
5077 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005078 return eb;
5079
Chris Mason6af118ce2008-07-22 11:18:07 -04005080free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005081 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005082 for (i = 0; i < num_pages; i++) {
5083 if (eb->pages[i])
5084 unlock_page(eb->pages[i]);
5085 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005086
Miao Xie897ca6e2010-10-26 20:57:29 -04005087 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005088 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005089}
Chris Masond1310b22008-01-24 16:13:08 -05005090
Josef Bacik3083ee22012-03-09 16:01:49 -05005091static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5092{
5093 struct extent_buffer *eb =
5094 container_of(head, struct extent_buffer, rcu_head);
5095
5096 __free_extent_buffer(eb);
5097}
5098
Josef Bacik3083ee22012-03-09 16:01:49 -05005099/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005100static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005101{
5102 WARN_ON(atomic_read(&eb->refs) == 0);
5103 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005104 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005105 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005106
Jan Schmidt815a51c2012-05-16 17:00:02 +02005107 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005108
Josef Bacikf28491e2013-12-16 13:24:27 -05005109 spin_lock(&fs_info->buffer_lock);
5110 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02005111 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005112 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005113 } else {
5114 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005115 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005116
5117 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005118 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005119#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5120 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5121 __free_extent_buffer(eb);
5122 return 1;
5123 }
5124#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005125 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005126 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005127 }
5128 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005129
5130 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005131}
5132
Chris Masond1310b22008-01-24 16:13:08 -05005133void free_extent_buffer(struct extent_buffer *eb)
5134{
Chris Mason242e18c2013-01-29 17:49:37 -05005135 int refs;
5136 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005137 if (!eb)
5138 return;
5139
Chris Mason242e18c2013-01-29 17:49:37 -05005140 while (1) {
5141 refs = atomic_read(&eb->refs);
5142 if (refs <= 3)
5143 break;
5144 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5145 if (old == refs)
5146 return;
5147 }
5148
Josef Bacik3083ee22012-03-09 16:01:49 -05005149 spin_lock(&eb->refs_lock);
5150 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005151 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5152 atomic_dec(&eb->refs);
5153
5154 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005155 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005156 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005157 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5158 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005159
Josef Bacik3083ee22012-03-09 16:01:49 -05005160 /*
5161 * I know this is terrible, but it's temporary until we stop tracking
5162 * the uptodate bits and such for the extent buffers.
5163 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005164 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005165}
Chris Masond1310b22008-01-24 16:13:08 -05005166
Josef Bacik3083ee22012-03-09 16:01:49 -05005167void free_extent_buffer_stale(struct extent_buffer *eb)
5168{
5169 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005170 return;
5171
Josef Bacik3083ee22012-03-09 16:01:49 -05005172 spin_lock(&eb->refs_lock);
5173 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5174
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005175 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005176 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5177 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005178 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005179}
5180
Chris Mason1d4284b2012-03-28 20:31:37 -04005181void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005182{
Chris Masond1310b22008-01-24 16:13:08 -05005183 unsigned long i;
5184 unsigned long num_pages;
5185 struct page *page;
5186
Chris Masond1310b22008-01-24 16:13:08 -05005187 num_pages = num_extent_pages(eb->start, eb->len);
5188
5189 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005190 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005191 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005192 continue;
5193
Chris Masona61e6f22008-07-22 11:18:08 -04005194 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005195 WARN_ON(!PagePrivate(page));
5196
Chris Masond1310b22008-01-24 16:13:08 -05005197 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005198 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005199 if (!PageDirty(page)) {
5200 radix_tree_tag_clear(&page->mapping->page_tree,
5201 page_index(page),
5202 PAGECACHE_TAG_DIRTY);
5203 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005204 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005205 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005206 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005207 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005208 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005209}
Chris Masond1310b22008-01-24 16:13:08 -05005210
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005211int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005212{
5213 unsigned long i;
5214 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005215 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005216
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005217 check_buffer_tree_ref(eb);
5218
Chris Masonb9473432009-03-13 11:00:37 -04005219 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005220
Chris Masond1310b22008-01-24 16:13:08 -05005221 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005222 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005223 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5224
Chris Masonb9473432009-03-13 11:00:37 -04005225 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005226 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005227 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005228}
Chris Masond1310b22008-01-24 16:13:08 -05005229
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005230int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005231{
5232 unsigned long i;
5233 struct page *page;
5234 unsigned long num_pages;
5235
Chris Masonb4ce94d2009-02-04 09:25:08 -05005236 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005237 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005238 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005239 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005240 if (page)
5241 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005242 }
5243 return 0;
5244}
5245
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005246int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005247{
5248 unsigned long i;
5249 struct page *page;
5250 unsigned long num_pages;
5251
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005252 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005253 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005254 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005255 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005256 SetPageUptodate(page);
5257 }
5258 return 0;
5259}
Chris Masond1310b22008-01-24 16:13:08 -05005260
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005261int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005262{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005263 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005264}
Chris Masond1310b22008-01-24 16:13:08 -05005265
5266int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02005267 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005268 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005269{
5270 unsigned long i;
5271 unsigned long start_i;
5272 struct page *page;
5273 int err;
5274 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005275 int locked_pages = 0;
5276 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005277 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005278 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005279 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005280 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005281
Chris Masonb4ce94d2009-02-04 09:25:08 -05005282 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005283 return 0;
5284
Chris Masond1310b22008-01-24 16:13:08 -05005285 if (start) {
5286 WARN_ON(start < eb->start);
5287 start_i = (start >> PAGE_CACHE_SHIFT) -
5288 (eb->start >> PAGE_CACHE_SHIFT);
5289 } else {
5290 start_i = 0;
5291 }
5292
5293 num_pages = num_extent_pages(eb->start, eb->len);
5294 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005295 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005296 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005297 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005298 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005299 } else {
5300 lock_page(page);
5301 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005302 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005303 if (!PageUptodate(page)) {
5304 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005305 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005306 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005307 }
5308 if (all_uptodate) {
5309 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005310 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005311 goto unlock_exit;
5312 }
5313
Filipe Manana656f30d2014-09-26 12:25:56 +01005314 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005315 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005316 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005317 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005318 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005319 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005320 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005321 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005322 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005323 mirror_num, &bio_flags,
5324 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005325 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005326 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005327 } else {
5328 unlock_page(page);
5329 }
5330 }
5331
Jeff Mahoney355808c2011-10-03 23:23:14 -04005332 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005333 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5334 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005335 if (err)
5336 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005337 }
Chris Masona86c12c2008-02-07 10:50:54 -05005338
Arne Jansenbb82ab82011-06-10 14:06:53 +02005339 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005340 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005341
Chris Masond1310b22008-01-24 16:13:08 -05005342 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005343 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005344 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005345 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005346 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005347 }
Chris Masond3977122009-01-05 21:25:51 -05005348
Chris Masond1310b22008-01-24 16:13:08 -05005349 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005350
5351unlock_exit:
5352 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005353 while (locked_pages > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005354 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005355 i++;
5356 unlock_page(page);
5357 locked_pages--;
5358 }
5359 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005360}
Chris Masond1310b22008-01-24 16:13:08 -05005361
5362void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5363 unsigned long start,
5364 unsigned long len)
5365{
5366 size_t cur;
5367 size_t offset;
5368 struct page *page;
5369 char *kaddr;
5370 char *dst = (char *)dstv;
5371 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5372 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005373
5374 WARN_ON(start > eb->len);
5375 WARN_ON(start + len > eb->start + eb->len);
5376
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005377 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005378
Chris Masond3977122009-01-05 21:25:51 -05005379 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005380 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005381
5382 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005383 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005384 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005385
5386 dst += cur;
5387 len -= cur;
5388 offset = 0;
5389 i++;
5390 }
5391}
Chris Masond1310b22008-01-24 16:13:08 -05005392
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005393int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5394 unsigned long start,
5395 unsigned long len)
5396{
5397 size_t cur;
5398 size_t offset;
5399 struct page *page;
5400 char *kaddr;
5401 char __user *dst = (char __user *)dstv;
5402 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5403 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5404 int ret = 0;
5405
5406 WARN_ON(start > eb->len);
5407 WARN_ON(start + len > eb->start + eb->len);
5408
5409 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5410
5411 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005412 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005413
5414 cur = min(len, (PAGE_CACHE_SIZE - offset));
5415 kaddr = page_address(page);
5416 if (copy_to_user(dst, kaddr + offset, cur)) {
5417 ret = -EFAULT;
5418 break;
5419 }
5420
5421 dst += cur;
5422 len -= cur;
5423 offset = 0;
5424 i++;
5425 }
5426
5427 return ret;
5428}
5429
Chris Masond1310b22008-01-24 16:13:08 -05005430int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005431 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005432 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005433 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005434{
5435 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5436 char *kaddr;
5437 struct page *p;
5438 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5439 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5440 unsigned long end_i = (start_offset + start + min_len - 1) >>
5441 PAGE_CACHE_SHIFT;
5442
5443 if (i != end_i)
5444 return -EINVAL;
5445
5446 if (i == 0) {
5447 offset = start_offset;
5448 *map_start = 0;
5449 } else {
5450 offset = 0;
5451 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5452 }
Chris Masond3977122009-01-05 21:25:51 -05005453
Chris Masond1310b22008-01-24 16:13:08 -05005454 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005455 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005456 "wanted %lu %lu\n",
5457 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005458 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005459 }
5460
David Sterbafb85fc92014-07-31 01:03:53 +02005461 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005462 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005463 *map = kaddr + offset;
5464 *map_len = PAGE_CACHE_SIZE - offset;
5465 return 0;
5466}
Chris Masond1310b22008-01-24 16:13:08 -05005467
Chris Masond1310b22008-01-24 16:13:08 -05005468int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5469 unsigned long start,
5470 unsigned long len)
5471{
5472 size_t cur;
5473 size_t offset;
5474 struct page *page;
5475 char *kaddr;
5476 char *ptr = (char *)ptrv;
5477 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5478 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5479 int ret = 0;
5480
5481 WARN_ON(start > eb->len);
5482 WARN_ON(start + len > eb->start + eb->len);
5483
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005484 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005485
Chris Masond3977122009-01-05 21:25:51 -05005486 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005487 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005488
5489 cur = min(len, (PAGE_CACHE_SIZE - offset));
5490
Chris Masona6591712011-07-19 12:04:14 -04005491 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005492 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005493 if (ret)
5494 break;
5495
5496 ptr += cur;
5497 len -= cur;
5498 offset = 0;
5499 i++;
5500 }
5501 return ret;
5502}
Chris Masond1310b22008-01-24 16:13:08 -05005503
5504void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5505 unsigned long start, unsigned long len)
5506{
5507 size_t cur;
5508 size_t offset;
5509 struct page *page;
5510 char *kaddr;
5511 char *src = (char *)srcv;
5512 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5513 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5514
5515 WARN_ON(start > eb->len);
5516 WARN_ON(start + len > eb->start + eb->len);
5517
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005518 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005519
Chris Masond3977122009-01-05 21:25:51 -05005520 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005521 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005522 WARN_ON(!PageUptodate(page));
5523
5524 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005525 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005526 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005527
5528 src += cur;
5529 len -= cur;
5530 offset = 0;
5531 i++;
5532 }
5533}
Chris Masond1310b22008-01-24 16:13:08 -05005534
5535void memset_extent_buffer(struct extent_buffer *eb, char c,
5536 unsigned long start, unsigned long len)
5537{
5538 size_t cur;
5539 size_t offset;
5540 struct page *page;
5541 char *kaddr;
5542 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5543 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5544
5545 WARN_ON(start > eb->len);
5546 WARN_ON(start + len > eb->start + eb->len);
5547
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005548 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005549
Chris Masond3977122009-01-05 21:25:51 -05005550 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005551 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005552 WARN_ON(!PageUptodate(page));
5553
5554 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005555 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005556 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005557
5558 len -= cur;
5559 offset = 0;
5560 i++;
5561 }
5562}
Chris Masond1310b22008-01-24 16:13:08 -05005563
5564void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5565 unsigned long dst_offset, unsigned long src_offset,
5566 unsigned long len)
5567{
5568 u64 dst_len = dst->len;
5569 size_t cur;
5570 size_t offset;
5571 struct page *page;
5572 char *kaddr;
5573 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5574 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5575
5576 WARN_ON(src->len != dst_len);
5577
5578 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005579 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005580
Chris Masond3977122009-01-05 21:25:51 -05005581 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005582 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005583 WARN_ON(!PageUptodate(page));
5584
5585 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5586
Chris Masona6591712011-07-19 12:04:14 -04005587 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005588 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005589
5590 src_offset += cur;
5591 len -= cur;
5592 offset = 0;
5593 i++;
5594 }
5595}
Chris Masond1310b22008-01-24 16:13:08 -05005596
Sergei Trofimovich33872062011-04-11 21:52:52 +00005597static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5598{
5599 unsigned long distance = (src > dst) ? src - dst : dst - src;
5600 return distance < len;
5601}
5602
Chris Masond1310b22008-01-24 16:13:08 -05005603static void copy_pages(struct page *dst_page, struct page *src_page,
5604 unsigned long dst_off, unsigned long src_off,
5605 unsigned long len)
5606{
Chris Masona6591712011-07-19 12:04:14 -04005607 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005608 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005609 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005610
Sergei Trofimovich33872062011-04-11 21:52:52 +00005611 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005612 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005613 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005614 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005615 if (areas_overlap(src_off, dst_off, len))
5616 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005617 }
Chris Masond1310b22008-01-24 16:13:08 -05005618
Chris Mason727011e2010-08-06 13:21:20 -04005619 if (must_memmove)
5620 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5621 else
5622 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005623}
5624
5625void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5626 unsigned long src_offset, unsigned long len)
5627{
5628 size_t cur;
5629 size_t dst_off_in_page;
5630 size_t src_off_in_page;
5631 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5632 unsigned long dst_i;
5633 unsigned long src_i;
5634
5635 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005636 btrfs_err(dst->fs_info,
5637 "memmove bogus src_offset %lu move "
5638 "len %lu dst len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005639 BUG_ON(1);
5640 }
5641 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005642 btrfs_err(dst->fs_info,
5643 "memmove bogus dst_offset %lu move "
5644 "len %lu dst len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005645 BUG_ON(1);
5646 }
5647
Chris Masond3977122009-01-05 21:25:51 -05005648 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005649 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005650 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005651 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005652 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005653
5654 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5655 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5656
5657 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5658 src_off_in_page));
5659 cur = min_t(unsigned long, cur,
5660 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5661
David Sterbafb85fc92014-07-31 01:03:53 +02005662 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005663 dst_off_in_page, src_off_in_page, cur);
5664
5665 src_offset += cur;
5666 dst_offset += cur;
5667 len -= cur;
5668 }
5669}
Chris Masond1310b22008-01-24 16:13:08 -05005670
5671void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5672 unsigned long src_offset, unsigned long len)
5673{
5674 size_t cur;
5675 size_t dst_off_in_page;
5676 size_t src_off_in_page;
5677 unsigned long dst_end = dst_offset + len - 1;
5678 unsigned long src_end = src_offset + len - 1;
5679 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5680 unsigned long dst_i;
5681 unsigned long src_i;
5682
5683 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005684 btrfs_err(dst->fs_info, "memmove bogus src_offset %lu move "
5685 "len %lu len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005686 BUG_ON(1);
5687 }
5688 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005689 btrfs_err(dst->fs_info, "memmove bogus dst_offset %lu move "
5690 "len %lu len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005691 BUG_ON(1);
5692 }
Chris Mason727011e2010-08-06 13:21:20 -04005693 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005694 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5695 return;
5696 }
Chris Masond3977122009-01-05 21:25:51 -05005697 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005698 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5699 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5700
5701 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005702 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005703 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005704 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005705
5706 cur = min_t(unsigned long, len, src_off_in_page + 1);
5707 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005708 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005709 dst_off_in_page - cur + 1,
5710 src_off_in_page - cur + 1, cur);
5711
5712 dst_end -= cur;
5713 src_end -= cur;
5714 len -= cur;
5715 }
5716}
Chris Mason6af118ce2008-07-22 11:18:07 -04005717
David Sterbaf7a52a42013-04-26 14:56:29 +00005718int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005719{
Chris Mason6af118ce2008-07-22 11:18:07 -04005720 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005721
Miao Xie19fe0a82010-10-26 20:57:29 -04005722 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005723 * We need to make sure noboody is attaching this page to an eb right
5724 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005725 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005726 spin_lock(&page->mapping->private_lock);
5727 if (!PagePrivate(page)) {
5728 spin_unlock(&page->mapping->private_lock);
5729 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005730 }
5731
Josef Bacik3083ee22012-03-09 16:01:49 -05005732 eb = (struct extent_buffer *)page->private;
5733 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005734
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005735 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005736 * This is a little awful but should be ok, we need to make sure that
5737 * the eb doesn't disappear out from under us while we're looking at
5738 * this page.
5739 */
5740 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005741 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005742 spin_unlock(&eb->refs_lock);
5743 spin_unlock(&page->mapping->private_lock);
5744 return 0;
5745 }
5746 spin_unlock(&page->mapping->private_lock);
5747
Josef Bacik3083ee22012-03-09 16:01:49 -05005748 /*
5749 * If tree ref isn't set then we know the ref on this eb is a real ref,
5750 * so just return, this page will likely be freed soon anyway.
5751 */
5752 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5753 spin_unlock(&eb->refs_lock);
5754 return 0;
5755 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005756
David Sterbaf7a52a42013-04-26 14:56:29 +00005757 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005758}