blob: f06800e48f9786988e0b7b75bf8391fa6699d6fc [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
David Sterbabd1fa4f2015-12-03 13:08:59 +01001454void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001455{
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 }
Chris Mason4adaa612013-03-26 13:07:00 -04001467}
1468
David Sterbaf6311572015-12-03 13:08:59 +01001469void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001470{
1471 unsigned long index = start >> PAGE_CACHE_SHIFT;
1472 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1473 struct page *page;
1474
1475 while (index <= end_index) {
1476 page = find_get_page(inode->i_mapping, index);
1477 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001478 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001479 account_page_redirty(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001480 page_cache_release(page);
1481 index++;
1482 }
Chris Mason4adaa612013-03-26 13:07:00 -04001483}
1484
Chris Masond1310b22008-01-24 16:13:08 -05001485/*
Chris Masond1310b22008-01-24 16:13:08 -05001486 * helper function to set both pages and extents in the tree writeback
1487 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001488static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001489{
1490 unsigned long index = start >> PAGE_CACHE_SHIFT;
1491 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1492 struct page *page;
1493
1494 while (index <= end_index) {
1495 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001496 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001497 set_page_writeback(page);
1498 page_cache_release(page);
1499 index++;
1500 }
Chris Masond1310b22008-01-24 16:13:08 -05001501 return 0;
1502}
Chris Masond1310b22008-01-24 16:13:08 -05001503
Chris Masond352ac62008-09-29 15:18:18 -04001504/* find the first state struct with 'bits' set after 'start', and
1505 * return it. tree->lock must be held. NULL will returned if
1506 * nothing was found after 'start'
1507 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001508static struct extent_state *
1509find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001510 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001511{
1512 struct rb_node *node;
1513 struct extent_state *state;
1514
1515 /*
1516 * this search will find all the extents that end after
1517 * our range starts.
1518 */
1519 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001520 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001521 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001522
Chris Masond3977122009-01-05 21:25:51 -05001523 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001524 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001525 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001526 return state;
Chris Masond3977122009-01-05 21:25:51 -05001527
Chris Masond7fc6402008-02-18 12:12:38 -05001528 node = rb_next(node);
1529 if (!node)
1530 break;
1531 }
1532out:
1533 return NULL;
1534}
Chris Masond7fc6402008-02-18 12:12:38 -05001535
Chris Masond352ac62008-09-29 15:18:18 -04001536/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001537 * find the first offset in the io tree with 'bits' set. zero is
1538 * returned if we find something, and *start_ret and *end_ret are
1539 * set to reflect the state struct that was found.
1540 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001541 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001542 */
1543int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001544 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001545 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001546{
1547 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001548 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001549 int ret = 1;
1550
1551 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001552 if (cached_state && *cached_state) {
1553 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001554 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001555 n = rb_next(&state->rb_node);
1556 while (n) {
1557 state = rb_entry(n, struct extent_state,
1558 rb_node);
1559 if (state->state & bits)
1560 goto got_it;
1561 n = rb_next(n);
1562 }
1563 free_extent_state(*cached_state);
1564 *cached_state = NULL;
1565 goto out;
1566 }
1567 free_extent_state(*cached_state);
1568 *cached_state = NULL;
1569 }
1570
Xiao Guangrong69261c42011-07-14 03:19:45 +00001571 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001572got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001573 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001574 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001575 *start_ret = state->start;
1576 *end_ret = state->end;
1577 ret = 0;
1578 }
Josef Bacike6138872012-09-27 17:07:30 -04001579out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001580 spin_unlock(&tree->lock);
1581 return ret;
1582}
1583
1584/*
Chris Masond352ac62008-09-29 15:18:18 -04001585 * find a contiguous range of bytes in the file marked as delalloc, not
1586 * more than 'max_bytes'. start and end are used to return the range,
1587 *
1588 * 1 is returned if we find something, 0 if nothing was in the tree
1589 */
Chris Masonc8b97812008-10-29 14:49:59 -04001590static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001591 u64 *start, u64 *end, u64 max_bytes,
1592 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001593{
1594 struct rb_node *node;
1595 struct extent_state *state;
1596 u64 cur_start = *start;
1597 u64 found = 0;
1598 u64 total_bytes = 0;
1599
Chris Masoncad321a2008-12-17 14:51:42 -05001600 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001601
Chris Masond1310b22008-01-24 16:13:08 -05001602 /*
1603 * this search will find all the extents that end after
1604 * our range starts.
1605 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001606 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001607 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001608 if (!found)
1609 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001610 goto out;
1611 }
1612
Chris Masond3977122009-01-05 21:25:51 -05001613 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001614 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001615 if (found && (state->start != cur_start ||
1616 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001617 goto out;
1618 }
1619 if (!(state->state & EXTENT_DELALLOC)) {
1620 if (!found)
1621 *end = state->end;
1622 goto out;
1623 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001624 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001625 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001626 *cached_state = state;
1627 atomic_inc(&state->refs);
1628 }
Chris Masond1310b22008-01-24 16:13:08 -05001629 found++;
1630 *end = state->end;
1631 cur_start = state->end + 1;
1632 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001633 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001634 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001635 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001636 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001637 break;
1638 }
1639out:
Chris Masoncad321a2008-12-17 14:51:42 -05001640 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001641 return found;
1642}
1643
Jeff Mahoney143bede2012-03-01 14:56:26 +01001644static noinline void __unlock_for_delalloc(struct inode *inode,
1645 struct page *locked_page,
1646 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001647{
1648 int ret;
1649 struct page *pages[16];
1650 unsigned long index = start >> PAGE_CACHE_SHIFT;
1651 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1652 unsigned long nr_pages = end_index - index + 1;
1653 int i;
1654
1655 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001656 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001657
Chris Masond3977122009-01-05 21:25:51 -05001658 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001659 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001660 min_t(unsigned long, nr_pages,
1661 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001662 for (i = 0; i < ret; i++) {
1663 if (pages[i] != locked_page)
1664 unlock_page(pages[i]);
1665 page_cache_release(pages[i]);
1666 }
1667 nr_pages -= ret;
1668 index += ret;
1669 cond_resched();
1670 }
Chris Masonc8b97812008-10-29 14:49:59 -04001671}
1672
1673static noinline int lock_delalloc_pages(struct inode *inode,
1674 struct page *locked_page,
1675 u64 delalloc_start,
1676 u64 delalloc_end)
1677{
1678 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1679 unsigned long start_index = index;
1680 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1681 unsigned long pages_locked = 0;
1682 struct page *pages[16];
1683 unsigned long nrpages;
1684 int ret;
1685 int i;
1686
1687 /* the caller is responsible for locking the start index */
1688 if (index == locked_page->index && index == end_index)
1689 return 0;
1690
1691 /* skip the page at the start index */
1692 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001693 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001694 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001695 min_t(unsigned long,
1696 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001697 if (ret == 0) {
1698 ret = -EAGAIN;
1699 goto done;
1700 }
1701 /* now we have an array of pages, lock them all */
1702 for (i = 0; i < ret; i++) {
1703 /*
1704 * the caller is taking responsibility for
1705 * locked_page
1706 */
Chris Mason771ed682008-11-06 22:02:51 -05001707 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001708 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001709 if (!PageDirty(pages[i]) ||
1710 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001711 ret = -EAGAIN;
1712 unlock_page(pages[i]);
1713 page_cache_release(pages[i]);
1714 goto done;
1715 }
1716 }
Chris Masonc8b97812008-10-29 14:49:59 -04001717 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001718 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001719 }
Chris Masonc8b97812008-10-29 14:49:59 -04001720 nrpages -= ret;
1721 index += ret;
1722 cond_resched();
1723 }
1724 ret = 0;
1725done:
1726 if (ret && pages_locked) {
1727 __unlock_for_delalloc(inode, locked_page,
1728 delalloc_start,
1729 ((u64)(start_index + pages_locked - 1)) <<
1730 PAGE_CACHE_SHIFT);
1731 }
1732 return ret;
1733}
1734
1735/*
1736 * find a contiguous range of bytes in the file marked as delalloc, not
1737 * more than 'max_bytes'. start and end are used to return the range,
1738 *
1739 * 1 is returned if we find something, 0 if nothing was in the tree
1740 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001741STATIC u64 find_lock_delalloc_range(struct inode *inode,
1742 struct extent_io_tree *tree,
1743 struct page *locked_page, u64 *start,
1744 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001745{
1746 u64 delalloc_start;
1747 u64 delalloc_end;
1748 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001749 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001750 int ret;
1751 int loops = 0;
1752
1753again:
1754 /* step one, find a bunch of delalloc bytes starting at start */
1755 delalloc_start = *start;
1756 delalloc_end = 0;
1757 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001758 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001759 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001760 *start = delalloc_start;
1761 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001762 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001763 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001764 }
1765
1766 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001767 * start comes from the offset of locked_page. We have to lock
1768 * pages in order, so we can't process delalloc bytes before
1769 * locked_page
1770 */
Chris Masond3977122009-01-05 21:25:51 -05001771 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001772 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001773
1774 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001775 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001776 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001777 if (delalloc_end + 1 - delalloc_start > max_bytes)
1778 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001779
Chris Masonc8b97812008-10-29 14:49:59 -04001780 /* step two, lock all the pages after the page that has start */
1781 ret = lock_delalloc_pages(inode, locked_page,
1782 delalloc_start, delalloc_end);
1783 if (ret == -EAGAIN) {
1784 /* some of the pages are gone, lets avoid looping by
1785 * shortening the size of the delalloc range we're searching
1786 */
Chris Mason9655d292009-09-02 15:22:30 -04001787 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001788 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001789 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001790 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001791 loops = 1;
1792 goto again;
1793 } else {
1794 found = 0;
1795 goto out_failed;
1796 }
1797 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001798 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001799
1800 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001801 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001802
1803 /* then test to make sure it is all still delalloc */
1804 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001805 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001806 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001807 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1808 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001809 __unlock_for_delalloc(inode, locked_page,
1810 delalloc_start, delalloc_end);
1811 cond_resched();
1812 goto again;
1813 }
Chris Mason9655d292009-09-02 15:22:30 -04001814 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001815 *start = delalloc_start;
1816 *end = delalloc_end;
1817out_failed:
1818 return found;
1819}
1820
David Sterbaa9d93e12015-12-03 13:08:59 +01001821void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001822 struct page *locked_page,
David Sterba9ee49a042015-01-14 19:52:13 +01001823 unsigned clear_bits,
Josef Bacikc2790a22013-07-29 11:20:47 -04001824 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001825{
Josef Bacikc2790a22013-07-29 11:20:47 -04001826 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001827 int ret;
1828 struct page *pages[16];
1829 unsigned long index = start >> PAGE_CACHE_SHIFT;
1830 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1831 unsigned long nr_pages = end_index - index + 1;
1832 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001833
Chris Mason2c64c532009-09-02 15:04:12 -04001834 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001835 if (page_ops == 0)
David Sterbaa9d93e12015-12-03 13:08:59 +01001836 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001837
Filipe Manana704de492014-10-06 22:14:22 +01001838 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1839 mapping_set_error(inode->i_mapping, -EIO);
1840
Chris Masond3977122009-01-05 21:25:51 -05001841 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001842 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001843 min_t(unsigned long,
1844 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001845 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001846
Josef Bacikc2790a22013-07-29 11:20:47 -04001847 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001848 SetPagePrivate2(pages[i]);
1849
Chris Masonc8b97812008-10-29 14:49:59 -04001850 if (pages[i] == locked_page) {
1851 page_cache_release(pages[i]);
1852 continue;
1853 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001854 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001855 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001856 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001857 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001858 if (page_ops & PAGE_SET_ERROR)
1859 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001860 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001861 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001862 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001863 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001864 page_cache_release(pages[i]);
1865 }
1866 nr_pages -= ret;
1867 index += ret;
1868 cond_resched();
1869 }
Chris Masonc8b97812008-10-29 14:49:59 -04001870}
Chris Masonc8b97812008-10-29 14:49:59 -04001871
Chris Masond352ac62008-09-29 15:18:18 -04001872/*
1873 * count the number of bytes in the tree that have a given bit(s)
1874 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1875 * cached. The total number found is returned.
1876 */
Chris Masond1310b22008-01-24 16:13:08 -05001877u64 count_range_bits(struct extent_io_tree *tree,
1878 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001879 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001880{
1881 struct rb_node *node;
1882 struct extent_state *state;
1883 u64 cur_start = *start;
1884 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001885 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001886 int found = 0;
1887
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301888 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001889 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001890
Chris Masoncad321a2008-12-17 14:51:42 -05001891 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001892 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1893 total_bytes = tree->dirty_bytes;
1894 goto out;
1895 }
1896 /*
1897 * this search will find all the extents that end after
1898 * our range starts.
1899 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001900 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001901 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001902 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001903
Chris Masond3977122009-01-05 21:25:51 -05001904 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001905 state = rb_entry(node, struct extent_state, rb_node);
1906 if (state->start > search_end)
1907 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001908 if (contig && found && state->start > last + 1)
1909 break;
1910 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001911 total_bytes += min(search_end, state->end) + 1 -
1912 max(cur_start, state->start);
1913 if (total_bytes >= max_bytes)
1914 break;
1915 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001916 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001917 found = 1;
1918 }
Chris Masonec29ed52011-02-23 16:23:20 -05001919 last = state->end;
1920 } else if (contig && found) {
1921 break;
Chris Masond1310b22008-01-24 16:13:08 -05001922 }
1923 node = rb_next(node);
1924 if (!node)
1925 break;
1926 }
1927out:
Chris Masoncad321a2008-12-17 14:51:42 -05001928 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001929 return total_bytes;
1930}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001931
Chris Masond352ac62008-09-29 15:18:18 -04001932/*
1933 * set the private field for a given byte offset in the tree. If there isn't
1934 * an extent_state there already, this does nothing.
1935 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001936static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001937{
1938 struct rb_node *node;
1939 struct extent_state *state;
1940 int ret = 0;
1941
Chris Masoncad321a2008-12-17 14:51:42 -05001942 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001943 /*
1944 * this search will find all the extents that end after
1945 * our range starts.
1946 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001947 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001948 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001949 ret = -ENOENT;
1950 goto out;
1951 }
1952 state = rb_entry(node, struct extent_state, rb_node);
1953 if (state->start != start) {
1954 ret = -ENOENT;
1955 goto out;
1956 }
1957 state->private = private;
1958out:
Chris Masoncad321a2008-12-17 14:51:42 -05001959 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001960 return ret;
1961}
1962
1963int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1964{
1965 struct rb_node *node;
1966 struct extent_state *state;
1967 int ret = 0;
1968
Chris Masoncad321a2008-12-17 14:51:42 -05001969 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001970 /*
1971 * this search will find all the extents that end after
1972 * our range starts.
1973 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001974 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001975 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001976 ret = -ENOENT;
1977 goto out;
1978 }
1979 state = rb_entry(node, struct extent_state, rb_node);
1980 if (state->start != start) {
1981 ret = -ENOENT;
1982 goto out;
1983 }
1984 *private = state->private;
1985out:
Chris Masoncad321a2008-12-17 14:51:42 -05001986 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001987 return ret;
1988}
1989
1990/*
1991 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001992 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001993 * has the bits set. Otherwise, 1 is returned if any bit in the
1994 * range is found set.
1995 */
1996int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001997 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001998{
1999 struct extent_state *state = NULL;
2000 struct rb_node *node;
2001 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002002
Chris Masoncad321a2008-12-17 14:51:42 -05002003 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002004 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002005 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002006 node = &cached->rb_node;
2007 else
2008 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002009 while (node && start <= end) {
2010 state = rb_entry(node, struct extent_state, rb_node);
2011
2012 if (filled && state->start > start) {
2013 bitset = 0;
2014 break;
2015 }
2016
2017 if (state->start > end)
2018 break;
2019
2020 if (state->state & bits) {
2021 bitset = 1;
2022 if (!filled)
2023 break;
2024 } else if (filled) {
2025 bitset = 0;
2026 break;
2027 }
Chris Mason46562ce2009-09-23 20:23:16 -04002028
2029 if (state->end == (u64)-1)
2030 break;
2031
Chris Masond1310b22008-01-24 16:13:08 -05002032 start = state->end + 1;
2033 if (start > end)
2034 break;
2035 node = rb_next(node);
2036 if (!node) {
2037 if (filled)
2038 bitset = 0;
2039 break;
2040 }
2041 }
Chris Masoncad321a2008-12-17 14:51:42 -05002042 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002043 return bitset;
2044}
Chris Masond1310b22008-01-24 16:13:08 -05002045
2046/*
2047 * helper function to set a given page up to date if all the
2048 * extents in the tree for that page are up to date
2049 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002050static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002051{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002052 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002053 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002054 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002055 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002056}
2057
Miao Xie8b110e32014-09-12 18:44:03 +08002058int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002059{
2060 int ret;
2061 int err = 0;
2062 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2063
2064 set_state_private(failure_tree, rec->start, 0);
2065 ret = clear_extent_bits(failure_tree, rec->start,
2066 rec->start + rec->len - 1,
2067 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2068 if (ret)
2069 err = ret;
2070
David Woodhouse53b381b2013-01-29 18:40:14 -05002071 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
2072 rec->start + rec->len - 1,
2073 EXTENT_DAMAGED, GFP_NOFS);
2074 if (ret && !err)
2075 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002076
2077 kfree(rec);
2078 return err;
2079}
2080
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002081/*
2082 * this bypasses the standard btrfs submit functions deliberately, as
2083 * the standard behavior is to write all copies in a raid setup. here we only
2084 * want to write the one bad copy. so we do the mapping for ourselves and issue
2085 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002086 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002087 * actually prevents the read that triggered the error from finishing.
2088 * currently, there can be no more than two copies of every data bit. thus,
2089 * exactly one rewrite is required.
2090 */
Miao Xie1203b682014-09-12 18:44:01 +08002091int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2092 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002093{
Miao Xie1203b682014-09-12 18:44:01 +08002094 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002095 struct bio *bio;
2096 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002097 u64 map_length = 0;
2098 u64 sector;
2099 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002100 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002101 int ret;
2102
Ilya Dryomov908960c2013-11-03 19:06:39 +02002103 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 BUG_ON(!mirror_num);
2105
David Woodhouse53b381b2013-01-29 18:40:14 -05002106 /* we can't repair anything in raid56 yet */
2107 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2108 return 0;
2109
Chris Mason9be33952013-05-17 18:30:14 -04002110 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002111 if (!bio)
2112 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002113 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002114 map_length = length;
2115
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002116 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002117 &map_length, &bbio, mirror_num);
2118 if (ret) {
2119 bio_put(bio);
2120 return -EIO;
2121 }
2122 BUG_ON(mirror_num != bbio->mirror_num);
2123 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002124 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002125 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002126 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002127 if (!dev || !dev->bdev || !dev->writeable) {
2128 bio_put(bio);
2129 return -EIO;
2130 }
2131 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002132 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002133
Kent Overstreet33879d42013-11-23 22:33:32 -08002134 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002135 /* try to remap that extent elsewhere? */
2136 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002137 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002138 return -EIO;
2139 }
2140
David Sterbab14af3b2015-10-08 10:43:10 +02002141 btrfs_info_rl_in_rcu(fs_info,
2142 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Miao Xie1203b682014-09-12 18:44:01 +08002143 btrfs_ino(inode), start,
2144 rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002145 bio_put(bio);
2146 return 0;
2147}
2148
Josef Bacikea466792012-03-26 21:57:36 -04002149int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2150 int mirror_num)
2151{
Josef Bacikea466792012-03-26 21:57:36 -04002152 u64 start = eb->start;
2153 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002154 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002155
Ilya Dryomov908960c2013-11-03 19:06:39 +02002156 if (root->fs_info->sb->s_flags & MS_RDONLY)
2157 return -EROFS;
2158
Josef Bacikea466792012-03-26 21:57:36 -04002159 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002160 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002161
2162 ret = repair_io_failure(root->fs_info->btree_inode, start,
2163 PAGE_CACHE_SIZE, start, p,
2164 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002165 if (ret)
2166 break;
2167 start += PAGE_CACHE_SIZE;
2168 }
2169
2170 return ret;
2171}
2172
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002173/*
2174 * each time an IO finishes, we do a fast check in the IO failure tree
2175 * to see if we need to process or clean up an io_failure_record
2176 */
Miao Xie8b110e32014-09-12 18:44:03 +08002177int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2178 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002179{
2180 u64 private;
2181 u64 private_failure;
2182 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002183 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 struct extent_state *state;
2185 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002186 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002187
2188 private = 0;
2189 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2190 (u64)-1, 1, EXTENT_DIRTY, 0);
2191 if (!ret)
2192 return 0;
2193
2194 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2195 &private_failure);
2196 if (ret)
2197 return 0;
2198
2199 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2200 BUG_ON(!failrec->this_mirror);
2201
2202 if (failrec->in_validation) {
2203 /* there was no real error, just free the record */
2204 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2205 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002206 goto out;
2207 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002208 if (fs_info->sb->s_flags & MS_RDONLY)
2209 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002210
2211 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2212 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2213 failrec->start,
2214 EXTENT_LOCKED);
2215 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2216
Miao Xie883d0de2013-07-25 19:22:35 +08002217 if (state && state->start <= failrec->start &&
2218 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002219 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2220 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002221 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002222 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002223 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002224 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002225 }
2226 }
2227
2228out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002229 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002230
Miao Xie454ff3d2014-09-12 18:43:58 +08002231 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002232}
2233
Miao Xief6124962014-09-12 18:44:04 +08002234/*
2235 * Can be called when
2236 * - hold extent lock
2237 * - under ordered extent
2238 * - the inode is freeing
2239 */
2240void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2241{
2242 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2243 struct io_failure_record *failrec;
2244 struct extent_state *state, *next;
2245
2246 if (RB_EMPTY_ROOT(&failure_tree->state))
2247 return;
2248
2249 spin_lock(&failure_tree->lock);
2250 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2251 while (state) {
2252 if (state->start > end)
2253 break;
2254
2255 ASSERT(state->end <= end);
2256
2257 next = next_state(state);
2258
Satoru Takeuchi6e1103a2014-12-25 18:21:41 +09002259 failrec = (struct io_failure_record *)(unsigned long)state->private;
Miao Xief6124962014-09-12 18:44:04 +08002260 free_extent_state(state);
2261 kfree(failrec);
2262
2263 state = next;
2264 }
2265 spin_unlock(&failure_tree->lock);
2266}
2267
Miao Xie2fe63032014-09-12 18:43:59 +08002268int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2269 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002270{
Miao Xie2fe63032014-09-12 18:43:59 +08002271 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002272 u64 private;
2273 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002274 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2275 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2276 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002277 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002278 u64 logical;
2279
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002280 ret = get_state_private(failure_tree, start, &private);
2281 if (ret) {
2282 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2283 if (!failrec)
2284 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002285
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002286 failrec->start = start;
2287 failrec->len = end - start + 1;
2288 failrec->this_mirror = 0;
2289 failrec->bio_flags = 0;
2290 failrec->in_validation = 0;
2291
2292 read_lock(&em_tree->lock);
2293 em = lookup_extent_mapping(em_tree, start, failrec->len);
2294 if (!em) {
2295 read_unlock(&em_tree->lock);
2296 kfree(failrec);
2297 return -EIO;
2298 }
2299
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002300 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002301 free_extent_map(em);
2302 em = NULL;
2303 }
2304 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002305 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002306 kfree(failrec);
2307 return -EIO;
2308 }
Miao Xie2fe63032014-09-12 18:43:59 +08002309
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002310 logical = start - em->start;
2311 logical = em->block_start + logical;
2312 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2313 logical = em->block_start;
2314 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2315 extent_set_compress_type(&failrec->bio_flags,
2316 em->compress_type);
2317 }
Miao Xie2fe63032014-09-12 18:43:59 +08002318
2319 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2320 logical, start, failrec->len);
2321
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002322 failrec->logical = logical;
2323 free_extent_map(em);
2324
2325 /* set the bits in the private failure tree */
2326 ret = set_extent_bits(failure_tree, start, end,
2327 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2328 if (ret >= 0)
2329 ret = set_state_private(failure_tree, start,
2330 (u64)(unsigned long)failrec);
2331 /* set the bits in the inode's tree */
2332 if (ret >= 0)
2333 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2334 GFP_NOFS);
2335 if (ret < 0) {
2336 kfree(failrec);
2337 return ret;
2338 }
2339 } else {
2340 failrec = (struct io_failure_record *)(unsigned long)private;
Miao Xie2fe63032014-09-12 18:43:59 +08002341 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002342 failrec->logical, failrec->start, failrec->len,
2343 failrec->in_validation);
2344 /*
2345 * when data can be on disk more than twice, add to failrec here
2346 * (e.g. with a list for failed_mirror) to make
2347 * clean_io_failure() clean all those errors at once.
2348 */
2349 }
Miao Xie2fe63032014-09-12 18:43:59 +08002350
2351 *failrec_ret = failrec;
2352
2353 return 0;
2354}
2355
2356int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2357 struct io_failure_record *failrec, int failed_mirror)
2358{
2359 int num_copies;
2360
Stefan Behrens5d964052012-11-05 14:59:07 +01002361 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2362 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002363 if (num_copies == 1) {
2364 /*
2365 * we only have a single copy of the data, so don't bother with
2366 * all the retry and error correction code that follows. no
2367 * matter what the error is, it is very likely to persist.
2368 */
Miao Xie2fe63032014-09-12 18:43:59 +08002369 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002370 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002371 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002372 }
2373
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002374 /*
2375 * there are two premises:
2376 * a) deliver good data to the caller
2377 * b) correct the bad sectors on disk
2378 */
2379 if (failed_bio->bi_vcnt > 1) {
2380 /*
2381 * to fulfill b), we need to know the exact failing sectors, as
2382 * we don't want to rewrite any more than the failed ones. thus,
2383 * we need separate read requests for the failed bio
2384 *
2385 * if the following BUG_ON triggers, our validation request got
2386 * merged. we need separate requests for our algorithm to work.
2387 */
2388 BUG_ON(failrec->in_validation);
2389 failrec->in_validation = 1;
2390 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002391 } else {
2392 /*
2393 * we're ready to fulfill a) and b) alongside. get a good copy
2394 * of the failed sector and if we succeed, we have setup
2395 * everything for repair_io_failure to do the rest for us.
2396 */
2397 if (failrec->in_validation) {
2398 BUG_ON(failrec->this_mirror != failed_mirror);
2399 failrec->in_validation = 0;
2400 failrec->this_mirror = 0;
2401 }
2402 failrec->failed_mirror = failed_mirror;
2403 failrec->this_mirror++;
2404 if (failrec->this_mirror == failed_mirror)
2405 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002406 }
2407
Miao Xiefacc8a222013-07-25 19:22:34 +08002408 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002409 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002410 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002411 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002412 }
2413
Miao Xie2fe63032014-09-12 18:43:59 +08002414 return 1;
2415}
2416
2417
2418struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2419 struct io_failure_record *failrec,
2420 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002421 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002422{
2423 struct bio *bio;
2424 struct btrfs_io_bio *btrfs_failed_bio;
2425 struct btrfs_io_bio *btrfs_bio;
2426
Chris Mason9be33952013-05-17 18:30:14 -04002427 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002428 if (!bio)
2429 return NULL;
2430
2431 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002432 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002433 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002434 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002435 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002436
Miao Xiefacc8a222013-07-25 19:22:34 +08002437 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2438 if (btrfs_failed_bio->csum) {
2439 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2440 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2441
2442 btrfs_bio = btrfs_io_bio(bio);
2443 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002444 icsum *= csum_size;
2445 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002446 csum_size);
2447 }
2448
Miao Xie2fe63032014-09-12 18:43:59 +08002449 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002450
Miao Xie2fe63032014-09-12 18:43:59 +08002451 return bio;
2452}
2453
2454/*
2455 * this is a generic handler for readpage errors (default
2456 * readpage_io_failed_hook). if other copies exist, read those and write back
2457 * good data to the failed position. does not investigate in remapping the
2458 * failed extent elsewhere, hoping the device will be smart enough to do this as
2459 * needed
2460 */
2461
2462static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2463 struct page *page, u64 start, u64 end,
2464 int failed_mirror)
2465{
2466 struct io_failure_record *failrec;
2467 struct inode *inode = page->mapping->host;
2468 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2469 struct bio *bio;
2470 int read_mode;
2471 int ret;
2472
2473 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2474
2475 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2476 if (ret)
2477 return ret;
2478
2479 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2480 if (!ret) {
2481 free_io_failure(inode, failrec);
2482 return -EIO;
2483 }
2484
2485 if (failed_bio->bi_vcnt > 1)
2486 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2487 else
2488 read_mode = READ_SYNC;
2489
2490 phy_offset >>= inode->i_sb->s_blocksize_bits;
2491 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2492 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002493 (int)phy_offset, failed_bio->bi_end_io,
2494 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002495 if (!bio) {
2496 free_io_failure(inode, failrec);
2497 return -EIO;
2498 }
2499
2500 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2501 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002502
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002503 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2504 failrec->this_mirror,
2505 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002506 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002507 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002508 bio_put(bio);
2509 }
2510
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002511 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002512}
2513
Chris Masond1310b22008-01-24 16:13:08 -05002514/* lots and lots of room for performance fixes in the end_bio funcs */
2515
David Sterbab5227c02015-12-03 13:08:59 +01002516void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002517{
2518 int uptodate = (err == 0);
2519 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002520 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002521
2522 tree = &BTRFS_I(page->mapping->host)->io_tree;
2523
2524 if (tree->ops && tree->ops->writepage_end_io_hook) {
2525 ret = tree->ops->writepage_end_io_hook(page, start,
2526 end, NULL, uptodate);
2527 if (ret)
2528 uptodate = 0;
2529 }
2530
Jeff Mahoney87826df2012-02-15 16:23:57 +01002531 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002532 ClearPageUptodate(page);
2533 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002534 ret = ret < 0 ? ret : -EIO;
2535 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002536 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002537}
2538
Chris Masond1310b22008-01-24 16:13:08 -05002539/*
2540 * after a writepage IO is done, we need to:
2541 * clear the uptodate bits on error
2542 * clear the writeback bits in the extent tree for this IO
2543 * end_page_writeback if the page has no more pending IO
2544 *
2545 * Scheduling is not allowed, so the extent state tree is expected
2546 * to have one and only one object corresponding to this IO.
2547 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002548static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002549{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002550 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002551 u64 start;
2552 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002553 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002554
Kent Overstreet2c30c712013-11-07 12:20:26 -08002555 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002556 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002557
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002558 /* We always issue full-page reads, but if some block
2559 * in a page fails to read, blk_update_request() will
2560 * advance bv_offset and adjust bv_len to compensate.
2561 * Print a warning for nonzero offsets, and an error
2562 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002563 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2564 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2565 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2566 "partial page write in btrfs with offset %u and length %u",
2567 bvec->bv_offset, bvec->bv_len);
2568 else
2569 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2570 "incomplete page write in btrfs with offset %u and "
2571 "length %u",
2572 bvec->bv_offset, bvec->bv_len);
2573 }
Chris Masond1310b22008-01-24 16:13:08 -05002574
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002575 start = page_offset(page);
2576 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002577
David Sterbab5227c02015-12-03 13:08:59 +01002578 end_extent_writepage(page, bio->bi_error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002579 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002580 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002581
Chris Masond1310b22008-01-24 16:13:08 -05002582 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002583}
2584
Miao Xie883d0de2013-07-25 19:22:35 +08002585static void
2586endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2587 int uptodate)
2588{
2589 struct extent_state *cached = NULL;
2590 u64 end = start + len - 1;
2591
2592 if (uptodate && tree->track_uptodate)
2593 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2594 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2595}
2596
Chris Masond1310b22008-01-24 16:13:08 -05002597/*
2598 * after a readpage IO is done, we need to:
2599 * clear the uptodate bits on error
2600 * set the uptodate bits if things worked
2601 * set the page up to date if all extents in the tree are uptodate
2602 * clear the lock bit in the extent tree
2603 * unlock the page if there are no other extents locked for it
2604 *
2605 * Scheduling is not allowed, so the extent state tree is expected
2606 * to have one and only one object corresponding to this IO.
2607 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002608static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002609{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002610 struct bio_vec *bvec;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002611 int uptodate = !bio->bi_error;
Miao Xiefacc8a222013-07-25 19:22:34 +08002612 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002613 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002614 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002615 u64 start;
2616 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002617 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002618 u64 extent_start = 0;
2619 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002620 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002621 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002622 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002623
Kent Overstreet2c30c712013-11-07 12:20:26 -08002624 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002625 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002626 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002627
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002628 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002629 "mirror=%u\n", (u64)bio->bi_iter.bi_sector,
2630 bio->bi_error, io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002631 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002632
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002633 /* We always issue full-page reads, but if some block
2634 * in a page fails to read, blk_update_request() will
2635 * advance bv_offset and adjust bv_len to compensate.
2636 * Print a warning for nonzero offsets, and an error
2637 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002638 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2639 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2640 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2641 "partial page read in btrfs with offset %u and length %u",
2642 bvec->bv_offset, bvec->bv_len);
2643 else
2644 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2645 "incomplete page read in btrfs with offset %u and "
2646 "length %u",
2647 bvec->bv_offset, bvec->bv_len);
2648 }
Chris Masond1310b22008-01-24 16:13:08 -05002649
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002650 start = page_offset(page);
2651 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002652 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002653
Chris Mason9be33952013-05-17 18:30:14 -04002654 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002655 if (likely(uptodate && tree->ops &&
2656 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002657 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2658 page, start, end,
2659 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002660 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002661 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002662 else
Miao Xie1203b682014-09-12 18:44:01 +08002663 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002664 }
Josef Bacikea466792012-03-26 21:57:36 -04002665
Miao Xief2a09da2013-07-25 19:22:33 +08002666 if (likely(uptodate))
2667 goto readpage_ok;
2668
2669 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002670 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002671 if (!ret && !bio->bi_error)
Josef Bacikea466792012-03-26 21:57:36 -04002672 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002673 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002674 /*
2675 * The generic bio_readpage_error handles errors the
2676 * following way: If possible, new read requests are
2677 * created and submitted and will end up in
2678 * end_bio_extent_readpage as well (if we're lucky, not
2679 * in the !uptodate case). In that case it returns 0 and
2680 * we just go on with the next page in our bio. If it
2681 * can't handle the error it will return -EIO and we
2682 * remain responsible for that page.
2683 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002684 ret = bio_readpage_error(bio, offset, page, start, end,
2685 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002686 if (ret == 0) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002687 uptodate = !bio->bi_error;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002688 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002689 continue;
2690 }
2691 }
Miao Xief2a09da2013-07-25 19:22:33 +08002692readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002693 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002694 loff_t i_size = i_size_read(inode);
2695 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002696 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002697
2698 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002699 off = i_size & (PAGE_CACHE_SIZE-1);
2700 if (page->index == end_index && off)
2701 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002702 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002703 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002704 ClearPageUptodate(page);
2705 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002706 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002707 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002708 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002709
2710 if (unlikely(!uptodate)) {
2711 if (extent_len) {
2712 endio_readpage_release_extent(tree,
2713 extent_start,
2714 extent_len, 1);
2715 extent_start = 0;
2716 extent_len = 0;
2717 }
2718 endio_readpage_release_extent(tree, start,
2719 end - start + 1, 0);
2720 } else if (!extent_len) {
2721 extent_start = start;
2722 extent_len = end + 1 - start;
2723 } else if (extent_start + extent_len == start) {
2724 extent_len += end + 1 - start;
2725 } else {
2726 endio_readpage_release_extent(tree, extent_start,
2727 extent_len, uptodate);
2728 extent_start = start;
2729 extent_len = end + 1 - start;
2730 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002731 }
Chris Masond1310b22008-01-24 16:13:08 -05002732
Miao Xie883d0de2013-07-25 19:22:35 +08002733 if (extent_len)
2734 endio_readpage_release_extent(tree, extent_start, extent_len,
2735 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002736 if (io_bio->end_io)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002737 io_bio->end_io(io_bio, bio->bi_error);
Chris Masond1310b22008-01-24 16:13:08 -05002738 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002739}
2740
Chris Mason9be33952013-05-17 18:30:14 -04002741/*
2742 * this allocates from the btrfs_bioset. We're returning a bio right now
2743 * but you can call btrfs_io_bio for the appropriate container_of magic
2744 */
Miao Xie88f794e2010-11-22 03:02:55 +00002745struct bio *
2746btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2747 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002748{
Miao Xiefacc8a222013-07-25 19:22:34 +08002749 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002750 struct bio *bio;
2751
Chris Mason9be33952013-05-17 18:30:14 -04002752 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002753
2754 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002755 while (!bio && (nr_vecs /= 2)) {
2756 bio = bio_alloc_bioset(gfp_flags,
2757 nr_vecs, btrfs_bioset);
2758 }
Chris Masond1310b22008-01-24 16:13:08 -05002759 }
2760
2761 if (bio) {
2762 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002763 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002764 btrfs_bio = btrfs_io_bio(bio);
2765 btrfs_bio->csum = NULL;
2766 btrfs_bio->csum_allocated = NULL;
2767 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002768 }
2769 return bio;
2770}
2771
Chris Mason9be33952013-05-17 18:30:14 -04002772struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2773{
Miao Xie23ea8e52014-09-12 18:43:54 +08002774 struct btrfs_io_bio *btrfs_bio;
2775 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002776
Miao Xie23ea8e52014-09-12 18:43:54 +08002777 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2778 if (new) {
2779 btrfs_bio = btrfs_io_bio(new);
2780 btrfs_bio->csum = NULL;
2781 btrfs_bio->csum_allocated = NULL;
2782 btrfs_bio->end_io = NULL;
Chris Mason3a9508b2015-08-21 10:05:39 -07002783
2784#ifdef CONFIG_BLK_CGROUP
Chris Masonda2f0f72015-07-02 13:57:22 -07002785 /* FIXME, put this into bio_clone_bioset */
2786 if (bio->bi_css)
2787 bio_associate_blkcg(new, bio->bi_css);
Chris Mason3a9508b2015-08-21 10:05:39 -07002788#endif
Miao Xie23ea8e52014-09-12 18:43:54 +08002789 }
2790 return new;
2791}
Chris Mason9be33952013-05-17 18:30:14 -04002792
2793/* this also allocates from the btrfs_bioset */
2794struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2795{
Miao Xiefacc8a222013-07-25 19:22:34 +08002796 struct btrfs_io_bio *btrfs_bio;
2797 struct bio *bio;
2798
2799 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2800 if (bio) {
2801 btrfs_bio = btrfs_io_bio(bio);
2802 btrfs_bio->csum = NULL;
2803 btrfs_bio->csum_allocated = NULL;
2804 btrfs_bio->end_io = NULL;
2805 }
2806 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002807}
2808
2809
Jeff Mahoney355808c2011-10-03 23:23:14 -04002810static int __must_check submit_one_bio(int rw, struct bio *bio,
2811 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002812{
Chris Masond1310b22008-01-24 16:13:08 -05002813 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002814 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2815 struct page *page = bvec->bv_page;
2816 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002817 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002818
Miao Xie4eee4fa2012-12-21 09:17:45 +00002819 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002820
David Woodhouse902b22f2008-08-20 08:51:49 -04002821 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002822
2823 bio_get(bio);
2824
Chris Mason065631f2008-02-20 12:07:25 -05002825 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002826 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002827 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002828 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002829 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002830
Chris Masond1310b22008-01-24 16:13:08 -05002831 bio_put(bio);
2832 return ret;
2833}
2834
David Woodhouse64a16702009-07-15 23:29:37 +01002835static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002836 unsigned long offset, size_t size, struct bio *bio,
2837 unsigned long bio_flags)
2838{
2839 int ret = 0;
2840 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002841 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002842 bio_flags);
2843 BUG_ON(ret < 0);
2844 return ret;
2845
2846}
2847
Chris Masond1310b22008-01-24 16:13:08 -05002848static int submit_extent_page(int rw, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002849 struct writeback_control *wbc,
Chris Masond1310b22008-01-24 16:13:08 -05002850 struct page *page, sector_t sector,
2851 size_t size, unsigned long offset,
2852 struct block_device *bdev,
2853 struct bio **bio_ret,
2854 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002855 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002856 int mirror_num,
2857 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002858 unsigned long bio_flags,
2859 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002860{
2861 int ret = 0;
2862 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002863 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002864 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002865 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002866
2867 if (bio_ret && *bio_ret) {
2868 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002869 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002870 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002871 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002872 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002873
2874 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002875 force_bio_submit ||
David Woodhouse64a16702009-07-15 23:29:37 +01002876 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002877 bio_add_page(bio, page, page_size, offset) < page_size) {
2878 ret = submit_one_bio(rw, bio, mirror_num,
2879 prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002880 if (ret < 0) {
2881 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002882 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002883 }
Chris Masond1310b22008-01-24 16:13:08 -05002884 bio = NULL;
2885 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002886 if (wbc)
2887 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002888 return 0;
2889 }
2890 }
Chris Masonc8b97812008-10-29 14:49:59 -04002891
Kent Overstreetb54ffb72015-05-19 14:31:01 +02002892 bio = btrfs_bio_alloc(bdev, sector, BIO_MAX_PAGES,
2893 GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002894 if (!bio)
2895 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002896
Chris Masonc8b97812008-10-29 14:49:59 -04002897 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002898 bio->bi_end_io = end_io_func;
2899 bio->bi_private = tree;
Chris Masonda2f0f72015-07-02 13:57:22 -07002900 if (wbc) {
2901 wbc_init_bio(wbc, bio);
2902 wbc_account_io(wbc, page, page_size);
2903 }
Chris Mason70dec802008-01-29 09:59:12 -05002904
Chris Masond3977122009-01-05 21:25:51 -05002905 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002906 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002907 else
Chris Masonc8b97812008-10-29 14:49:59 -04002908 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002909
2910 return ret;
2911}
2912
Eric Sandeen48a3b632013-04-25 20:41:01 +00002913static void attach_extent_buffer_page(struct extent_buffer *eb,
2914 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002915{
2916 if (!PagePrivate(page)) {
2917 SetPagePrivate(page);
2918 page_cache_get(page);
2919 set_page_private(page, (unsigned long)eb);
2920 } else {
2921 WARN_ON(page->private != (unsigned long)eb);
2922 }
2923}
2924
Chris Masond1310b22008-01-24 16:13:08 -05002925void set_page_extent_mapped(struct page *page)
2926{
2927 if (!PagePrivate(page)) {
2928 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002929 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002930 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002931 }
2932}
2933
Miao Xie125bac012013-07-25 19:22:37 +08002934static struct extent_map *
2935__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2936 u64 start, u64 len, get_extent_t *get_extent,
2937 struct extent_map **em_cached)
2938{
2939 struct extent_map *em;
2940
2941 if (em_cached && *em_cached) {
2942 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002943 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002944 start < extent_map_end(em)) {
2945 atomic_inc(&em->refs);
2946 return em;
2947 }
2948
2949 free_extent_map(em);
2950 *em_cached = NULL;
2951 }
2952
2953 em = get_extent(inode, page, pg_offset, start, len, 0);
2954 if (em_cached && !IS_ERR_OR_NULL(em)) {
2955 BUG_ON(*em_cached);
2956 atomic_inc(&em->refs);
2957 *em_cached = em;
2958 }
2959 return em;
2960}
Chris Masond1310b22008-01-24 16:13:08 -05002961/*
2962 * basic readpage implementation. Locked extent state structs are inserted
2963 * into the tree that are removed when the IO is done (by the end_io
2964 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002965 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002966 */
Miao Xie99740902013-07-25 19:22:36 +08002967static int __do_readpage(struct extent_io_tree *tree,
2968 struct page *page,
2969 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002970 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002971 struct bio **bio, int mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01002972 unsigned long *bio_flags, int rw,
2973 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002974{
2975 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002976 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002977 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2978 u64 end;
2979 u64 cur = start;
2980 u64 extent_offset;
2981 u64 last_byte = i_size_read(inode);
2982 u64 block_start;
2983 u64 cur_end;
2984 sector_t sector;
2985 struct extent_map *em;
2986 struct block_device *bdev;
2987 int ret;
2988 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002989 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002990 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002991 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002992 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002993 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002994 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002995
2996 set_page_extent_mapped(page);
2997
Miao Xie99740902013-07-25 19:22:36 +08002998 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002999 if (!PageUptodate(page)) {
3000 if (cleancache_get_page(page) == 0) {
3001 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003002 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003003 goto out;
3004 }
3005 }
3006
Chris Masonc8b97812008-10-29 14:49:59 -04003007 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
3008 char *userpage;
3009 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
3010
3011 if (zero_offset) {
3012 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003013 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003014 memset(userpage + zero_offset, 0, iosize);
3015 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003016 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003017 }
3018 }
Chris Masond1310b22008-01-24 16:13:08 -05003019 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05003020 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
Filipe Manana005efed2015-09-14 09:09:31 +01003021 bool force_bio_submit = false;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003022
Chris Masond1310b22008-01-24 16:13:08 -05003023 if (cur >= last_byte) {
3024 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003025 struct extent_state *cached = NULL;
3026
David Sterba306e16c2011-04-19 14:29:38 +02003027 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003028 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003029 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003030 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003031 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003032 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003033 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07003034 if (!parent_locked)
3035 unlock_extent_cached(tree, cur,
3036 cur + iosize - 1,
3037 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003038 break;
3039 }
Miao Xie125bac012013-07-25 19:22:37 +08003040 em = __get_extent_map(inode, page, pg_offset, cur,
3041 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003042 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003043 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003044 if (!parent_locked)
3045 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003046 break;
3047 }
Chris Masond1310b22008-01-24 16:13:08 -05003048 extent_offset = cur - em->start;
3049 BUG_ON(extent_map_end(em) <= cur);
3050 BUG_ON(end < cur);
3051
Li Zefan261507a02010-12-17 14:21:50 +08003052 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003053 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003054 extent_set_compress_type(&this_bio_flag,
3055 em->compress_type);
3056 }
Chris Masonc8b97812008-10-29 14:49:59 -04003057
Chris Masond1310b22008-01-24 16:13:08 -05003058 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3059 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003060 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003061 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3062 disk_io_size = em->block_len;
3063 sector = em->block_start >> 9;
3064 } else {
3065 sector = (em->block_start + extent_offset) >> 9;
3066 disk_io_size = iosize;
3067 }
Chris Masond1310b22008-01-24 16:13:08 -05003068 bdev = em->bdev;
3069 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003070 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3071 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003072
3073 /*
3074 * If we have a file range that points to a compressed extent
3075 * and it's followed by a consecutive file range that points to
3076 * to the same compressed extent (possibly with a different
3077 * offset and/or length, so it either points to the whole extent
3078 * or only part of it), we must make sure we do not submit a
3079 * single bio to populate the pages for the 2 ranges because
3080 * this makes the compressed extent read zero out the pages
3081 * belonging to the 2nd range. Imagine the following scenario:
3082 *
3083 * File layout
3084 * [0 - 8K] [8K - 24K]
3085 * | |
3086 * | |
3087 * points to extent X, points to extent X,
3088 * offset 4K, length of 8K offset 0, length 16K
3089 *
3090 * [extent X, compressed length = 4K uncompressed length = 16K]
3091 *
3092 * If the bio to read the compressed extent covers both ranges,
3093 * it will decompress extent X into the pages belonging to the
3094 * first range and then it will stop, zeroing out the remaining
3095 * pages that belong to the other range that points to extent X.
3096 * So here we make sure we submit 2 bios, one for the first
3097 * range and another one for the third range. Both will target
3098 * the same physical extent from disk, but we can't currently
3099 * make the compressed bio endio callback populate the pages
3100 * for both ranges because each compressed bio is tightly
3101 * coupled with a single extent map, and each range can have
3102 * an extent map with a different offset value relative to the
3103 * uncompressed data of our extent and different lengths. This
3104 * is a corner case so we prioritize correctness over
3105 * non-optimal behavior (submitting 2 bios for the same extent).
3106 */
3107 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3108 prev_em_start && *prev_em_start != (u64)-1 &&
3109 *prev_em_start != em->orig_start)
3110 force_bio_submit = true;
3111
3112 if (prev_em_start)
3113 *prev_em_start = em->orig_start;
3114
Chris Masond1310b22008-01-24 16:13:08 -05003115 free_extent_map(em);
3116 em = NULL;
3117
3118 /* we've found a hole, just zero and go on */
3119 if (block_start == EXTENT_MAP_HOLE) {
3120 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003121 struct extent_state *cached = NULL;
3122
Cong Wang7ac687d2011-11-25 23:14:28 +08003123 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003124 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003125 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003126 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003127
3128 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003129 &cached, GFP_NOFS);
Filipe Manana5e6ecb32015-10-13 16:36:09 +01003130 if (parent_locked)
3131 free_extent_state(cached);
3132 else
3133 unlock_extent_cached(tree, cur,
3134 cur + iosize - 1,
3135 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003136 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003137 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003138 continue;
3139 }
3140 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003141 if (test_range_bit(tree, cur, cur_end,
3142 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003143 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003144 if (!parent_locked)
3145 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003146 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003147 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003148 continue;
3149 }
Chris Mason70dec802008-01-29 09:59:12 -05003150 /* we have an inline extent but it didn't get marked up
3151 * to date. Error out
3152 */
3153 if (block_start == EXTENT_MAP_INLINE) {
3154 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003155 if (!parent_locked)
3156 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003157 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003158 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003159 continue;
3160 }
Chris Masond1310b22008-01-24 16:13:08 -05003161
Josef Bacikc8f2f242013-02-11 11:33:00 -05003162 pnr -= page->index;
Chris Masonda2f0f72015-07-02 13:57:22 -07003163 ret = submit_extent_page(rw, tree, NULL, page,
David Sterba306e16c2011-04-19 14:29:38 +02003164 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003165 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003166 end_bio_extent_readpage, mirror_num,
3167 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003168 this_bio_flag,
3169 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003170 if (!ret) {
3171 nr++;
3172 *bio_flags = this_bio_flag;
3173 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003174 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003175 if (!parent_locked)
3176 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04003177 }
Chris Masond1310b22008-01-24 16:13:08 -05003178 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003179 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003180 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003181out:
Chris Masond1310b22008-01-24 16:13:08 -05003182 if (!nr) {
3183 if (!PageError(page))
3184 SetPageUptodate(page);
3185 unlock_page(page);
3186 }
3187 return 0;
3188}
3189
Miao Xie99740902013-07-25 19:22:36 +08003190static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3191 struct page *pages[], int nr_pages,
3192 u64 start, u64 end,
3193 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003194 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003195 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003196 unsigned long *bio_flags, int rw,
3197 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003198{
3199 struct inode *inode;
3200 struct btrfs_ordered_extent *ordered;
3201 int index;
3202
3203 inode = pages[0]->mapping->host;
3204 while (1) {
3205 lock_extent(tree, start, end);
3206 ordered = btrfs_lookup_ordered_range(inode, start,
3207 end - start + 1);
3208 if (!ordered)
3209 break;
3210 unlock_extent(tree, start, end);
3211 btrfs_start_ordered_extent(inode, ordered, 1);
3212 btrfs_put_ordered_extent(ordered);
3213 }
3214
3215 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003216 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003217 mirror_num, bio_flags, rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003218 page_cache_release(pages[index]);
3219 }
3220}
3221
3222static void __extent_readpages(struct extent_io_tree *tree,
3223 struct page *pages[],
3224 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003225 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003226 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003227 unsigned long *bio_flags, int rw,
3228 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003229{
Stefan Behrens35a36212013-08-14 18:12:25 +02003230 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003231 u64 end = 0;
3232 u64 page_start;
3233 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003234 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003235
3236 for (index = 0; index < nr_pages; index++) {
3237 page_start = page_offset(pages[index]);
3238 if (!end) {
3239 start = page_start;
3240 end = start + PAGE_CACHE_SIZE - 1;
3241 first_index = index;
3242 } else if (end + 1 == page_start) {
3243 end += PAGE_CACHE_SIZE;
3244 } else {
3245 __do_contiguous_readpages(tree, &pages[first_index],
3246 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003247 end, get_extent, em_cached,
3248 bio, mirror_num, bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003249 rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003250 start = page_start;
3251 end = start + PAGE_CACHE_SIZE - 1;
3252 first_index = index;
3253 }
3254 }
3255
3256 if (end)
3257 __do_contiguous_readpages(tree, &pages[first_index],
3258 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003259 end, get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003260 mirror_num, bio_flags, rw,
3261 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003262}
3263
3264static int __extent_read_full_page(struct extent_io_tree *tree,
3265 struct page *page,
3266 get_extent_t *get_extent,
3267 struct bio **bio, int mirror_num,
3268 unsigned long *bio_flags, int rw)
3269{
3270 struct inode *inode = page->mapping->host;
3271 struct btrfs_ordered_extent *ordered;
3272 u64 start = page_offset(page);
3273 u64 end = start + PAGE_CACHE_SIZE - 1;
3274 int ret;
3275
3276 while (1) {
3277 lock_extent(tree, start, end);
3278 ordered = btrfs_lookup_ordered_extent(inode, start);
3279 if (!ordered)
3280 break;
3281 unlock_extent(tree, start, end);
3282 btrfs_start_ordered_extent(inode, ordered, 1);
3283 btrfs_put_ordered_extent(ordered);
3284 }
3285
Miao Xie125bac012013-07-25 19:22:37 +08003286 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003287 bio_flags, rw, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003288 return ret;
3289}
3290
Chris Masond1310b22008-01-24 16:13:08 -05003291int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003292 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003293{
3294 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003295 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003296 int ret;
3297
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003298 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003299 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003300 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003301 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003302 return ret;
3303}
Chris Masond1310b22008-01-24 16:13:08 -05003304
Mark Fasheh4b384312013-08-06 11:42:50 -07003305int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3306 get_extent_t *get_extent, int mirror_num)
3307{
3308 struct bio *bio = NULL;
3309 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3310 int ret;
3311
3312 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003313 &bio_flags, READ, NULL);
Mark Fasheh4b384312013-08-06 11:42:50 -07003314 if (bio)
3315 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3316 return ret;
3317}
3318
Chris Mason11c83492009-04-20 15:50:09 -04003319static noinline void update_nr_written(struct page *page,
3320 struct writeback_control *wbc,
3321 unsigned long nr_written)
3322{
3323 wbc->nr_to_write -= nr_written;
3324 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3325 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3326 page->mapping->writeback_index = page->index + nr_written;
3327}
3328
Chris Masond1310b22008-01-24 16:13:08 -05003329/*
Chris Mason40f76582014-05-21 13:35:51 -07003330 * helper for __extent_writepage, doing all of the delayed allocation setup.
3331 *
3332 * This returns 1 if our fill_delalloc function did all the work required
3333 * to write the page (copy into inline extent). In this case the IO has
3334 * been started and the page is already unlocked.
3335 *
3336 * This returns 0 if all went well (page still locked)
3337 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003338 */
Chris Mason40f76582014-05-21 13:35:51 -07003339static noinline_for_stack int writepage_delalloc(struct inode *inode,
3340 struct page *page, struct writeback_control *wbc,
3341 struct extent_page_data *epd,
3342 u64 delalloc_start,
3343 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003344{
Chris Mason40f76582014-05-21 13:35:51 -07003345 struct extent_io_tree *tree = epd->tree;
3346 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3347 u64 nr_delalloc;
3348 u64 delalloc_to_write = 0;
3349 u64 delalloc_end = 0;
3350 int ret;
3351 int page_started = 0;
3352
3353 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3354 return 0;
3355
3356 while (delalloc_end < page_end) {
3357 nr_delalloc = find_lock_delalloc_range(inode, tree,
3358 page,
3359 &delalloc_start,
3360 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003361 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003362 if (nr_delalloc == 0) {
3363 delalloc_start = delalloc_end + 1;
3364 continue;
3365 }
3366 ret = tree->ops->fill_delalloc(inode, page,
3367 delalloc_start,
3368 delalloc_end,
3369 &page_started,
3370 nr_written);
3371 /* File system has been set read-only */
3372 if (ret) {
3373 SetPageError(page);
3374 /* fill_delalloc should be return < 0 for error
3375 * but just in case, we use > 0 here meaning the
3376 * IO is started, so we don't want to return > 0
3377 * unless things are going well.
3378 */
3379 ret = ret < 0 ? ret : -EIO;
3380 goto done;
3381 }
3382 /*
3383 * delalloc_end is already one less than the total
3384 * length, so we don't subtract one from
3385 * PAGE_CACHE_SIZE
3386 */
3387 delalloc_to_write += (delalloc_end - delalloc_start +
3388 PAGE_CACHE_SIZE) >>
3389 PAGE_CACHE_SHIFT;
3390 delalloc_start = delalloc_end + 1;
3391 }
3392 if (wbc->nr_to_write < delalloc_to_write) {
3393 int thresh = 8192;
3394
3395 if (delalloc_to_write < thresh * 2)
3396 thresh = delalloc_to_write;
3397 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3398 thresh);
3399 }
3400
3401 /* did the fill delalloc function already unlock and start
3402 * the IO?
3403 */
3404 if (page_started) {
3405 /*
3406 * we've unlocked the page, so we can't update
3407 * the mapping's writeback index, just update
3408 * nr_to_write.
3409 */
3410 wbc->nr_to_write -= *nr_written;
3411 return 1;
3412 }
3413
3414 ret = 0;
3415
3416done:
3417 return ret;
3418}
3419
3420/*
3421 * helper for __extent_writepage. This calls the writepage start hooks,
3422 * and does the loop to map the page into extents and bios.
3423 *
3424 * We return 1 if the IO is started and the page is unlocked,
3425 * 0 if all went well (page still locked)
3426 * < 0 if there were errors (page still locked)
3427 */
3428static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3429 struct page *page,
3430 struct writeback_control *wbc,
3431 struct extent_page_data *epd,
3432 loff_t i_size,
3433 unsigned long nr_written,
3434 int write_flags, int *nr_ret)
3435{
Chris Masond1310b22008-01-24 16:13:08 -05003436 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003437 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003438 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3439 u64 end;
3440 u64 cur = start;
3441 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003442 u64 block_start;
3443 u64 iosize;
3444 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003445 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003446 struct extent_map *em;
3447 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003448 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003449 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003450 int ret = 0;
3451 int nr = 0;
3452 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003453
Chris Mason247e7432008-07-17 12:53:51 -04003454 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003455 ret = tree->ops->writepage_start_hook(page, start,
3456 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003457 if (ret) {
3458 /* Fixup worker will requeue */
3459 if (ret == -EBUSY)
3460 wbc->pages_skipped++;
3461 else
3462 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003463
Chris Mason11c83492009-04-20 15:50:09 -04003464 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003465 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003466 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003467 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003468 }
3469 }
3470
Chris Mason11c83492009-04-20 15:50:09 -04003471 /*
3472 * we don't want to touch the inode after unlocking the page,
3473 * so we update the mapping writeback index now
3474 */
3475 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003476
Chris Masond1310b22008-01-24 16:13:08 -05003477 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003478 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003479 if (tree->ops && tree->ops->writepage_end_io_hook)
3480 tree->ops->writepage_end_io_hook(page, start,
3481 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003482 goto done;
3483 }
3484
Chris Masond1310b22008-01-24 16:13:08 -05003485 blocksize = inode->i_sb->s_blocksize;
3486
3487 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003488 u64 em_end;
3489 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003490 if (tree->ops && tree->ops->writepage_end_io_hook)
3491 tree->ops->writepage_end_io_hook(page, cur,
3492 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003493 break;
3494 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003495 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003496 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003497 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003498 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003499 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003500 break;
3501 }
3502
3503 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003504 em_end = extent_map_end(em);
3505 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003506 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003507 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003508 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003509 sector = (em->block_start + extent_offset) >> 9;
3510 bdev = em->bdev;
3511 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003512 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003513 free_extent_map(em);
3514 em = NULL;
3515
Chris Masonc8b97812008-10-29 14:49:59 -04003516 /*
3517 * compressed and inline extents are written through other
3518 * paths in the FS
3519 */
3520 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003521 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003522 /*
3523 * end_io notification does not happen here for
3524 * compressed extents
3525 */
3526 if (!compressed && tree->ops &&
3527 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003528 tree->ops->writepage_end_io_hook(page, cur,
3529 cur + iosize - 1,
3530 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003531 else if (compressed) {
3532 /* we don't want to end_page_writeback on
3533 * a compressed extent. this happens
3534 * elsewhere
3535 */
3536 nr++;
3537 }
3538
3539 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003540 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003541 continue;
3542 }
Chris Masonc8b97812008-10-29 14:49:59 -04003543
Chris Masond1310b22008-01-24 16:13:08 -05003544 if (tree->ops && tree->ops->writepage_io_hook) {
3545 ret = tree->ops->writepage_io_hook(page, cur,
3546 cur + iosize - 1);
3547 } else {
3548 ret = 0;
3549 }
Chris Mason1259ab72008-05-12 13:39:03 -04003550 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003551 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003552 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003553 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003554
Chris Masond1310b22008-01-24 16:13:08 -05003555 set_range_writeback(tree, cur, cur + iosize - 1);
3556 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003557 btrfs_err(BTRFS_I(inode)->root->fs_info,
3558 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003559 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003560 }
3561
Chris Masonda2f0f72015-07-02 13:57:22 -07003562 ret = submit_extent_page(write_flags, tree, wbc, page,
Chris Masonffbd5172009-04-20 15:50:09 -04003563 sector, iosize, pg_offset,
3564 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003565 end_bio_extent_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003566 0, 0, 0, false);
Chris Masond1310b22008-01-24 16:13:08 -05003567 if (ret)
3568 SetPageError(page);
3569 }
3570 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003571 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003572 nr++;
3573 }
3574done:
Chris Mason40f76582014-05-21 13:35:51 -07003575 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003576
Chris Mason11c83492009-04-20 15:50:09 -04003577done_unlocked:
3578
Chris Mason2c64c532009-09-02 15:04:12 -04003579 /* drop our reference on any cached states */
3580 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003581 return ret;
3582}
3583
3584/*
3585 * the writepage semantics are similar to regular writepage. extent
3586 * records are inserted to lock ranges in the tree, and as dirty areas
3587 * are found, they are marked writeback. Then the lock bits are removed
3588 * and the end_io handler clears the writeback ranges
3589 */
3590static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3591 void *data)
3592{
3593 struct inode *inode = page->mapping->host;
3594 struct extent_page_data *epd = data;
3595 u64 start = page_offset(page);
3596 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3597 int ret;
3598 int nr = 0;
3599 size_t pg_offset = 0;
3600 loff_t i_size = i_size_read(inode);
3601 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3602 int write_flags;
3603 unsigned long nr_written = 0;
3604
3605 if (wbc->sync_mode == WB_SYNC_ALL)
3606 write_flags = WRITE_SYNC;
3607 else
3608 write_flags = WRITE;
3609
3610 trace___extent_writepage(page, inode, wbc);
3611
3612 WARN_ON(!PageLocked(page));
3613
3614 ClearPageError(page);
3615
3616 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3617 if (page->index > end_index ||
3618 (page->index == end_index && !pg_offset)) {
3619 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3620 unlock_page(page);
3621 return 0;
3622 }
3623
3624 if (page->index == end_index) {
3625 char *userpage;
3626
3627 userpage = kmap_atomic(page);
3628 memset(userpage + pg_offset, 0,
3629 PAGE_CACHE_SIZE - pg_offset);
3630 kunmap_atomic(userpage);
3631 flush_dcache_page(page);
3632 }
3633
3634 pg_offset = 0;
3635
3636 set_page_extent_mapped(page);
3637
3638 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3639 if (ret == 1)
3640 goto done_unlocked;
3641 if (ret)
3642 goto done;
3643
3644 ret = __extent_writepage_io(inode, page, wbc, epd,
3645 i_size, nr_written, write_flags, &nr);
3646 if (ret == 1)
3647 goto done_unlocked;
3648
3649done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003650 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003651 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003652 set_page_writeback(page);
3653 end_page_writeback(page);
3654 }
Filipe Manana61391d52014-05-09 17:17:40 +01003655 if (PageError(page)) {
3656 ret = ret < 0 ? ret : -EIO;
3657 end_extent_writepage(page, ret, start, page_end);
3658 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003659 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003660 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003661
3662done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003663 return 0;
3664}
3665
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003666void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003667{
NeilBrown74316202014-07-07 15:16:04 +10003668 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3669 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003670}
3671
Chris Mason0e378df2014-05-19 20:55:27 -07003672static noinline_for_stack int
3673lock_extent_buffer_for_io(struct extent_buffer *eb,
3674 struct btrfs_fs_info *fs_info,
3675 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003676{
3677 unsigned long i, num_pages;
3678 int flush = 0;
3679 int ret = 0;
3680
3681 if (!btrfs_try_tree_write_lock(eb)) {
3682 flush = 1;
3683 flush_write_bio(epd);
3684 btrfs_tree_lock(eb);
3685 }
3686
3687 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3688 btrfs_tree_unlock(eb);
3689 if (!epd->sync_io)
3690 return 0;
3691 if (!flush) {
3692 flush_write_bio(epd);
3693 flush = 1;
3694 }
Chris Masona098d8e2012-03-21 12:09:56 -04003695 while (1) {
3696 wait_on_extent_buffer_writeback(eb);
3697 btrfs_tree_lock(eb);
3698 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3699 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003700 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003701 }
3702 }
3703
Josef Bacik51561ff2012-07-20 16:25:24 -04003704 /*
3705 * We need to do this to prevent races in people who check if the eb is
3706 * under IO since we can end up having no IO bits set for a short period
3707 * of time.
3708 */
3709 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003710 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3711 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003712 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003713 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003714 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3715 -eb->len,
3716 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003717 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003718 } else {
3719 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003720 }
3721
3722 btrfs_tree_unlock(eb);
3723
3724 if (!ret)
3725 return ret;
3726
3727 num_pages = num_extent_pages(eb->start, eb->len);
3728 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003729 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003730
3731 if (!trylock_page(p)) {
3732 if (!flush) {
3733 flush_write_bio(epd);
3734 flush = 1;
3735 }
3736 lock_page(p);
3737 }
3738 }
3739
3740 return ret;
3741}
3742
3743static void end_extent_buffer_writeback(struct extent_buffer *eb)
3744{
3745 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003746 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003747 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3748}
3749
Filipe Manana656f30d2014-09-26 12:25:56 +01003750static void set_btree_ioerr(struct page *page)
3751{
3752 struct extent_buffer *eb = (struct extent_buffer *)page->private;
3753 struct btrfs_inode *btree_ino = BTRFS_I(eb->fs_info->btree_inode);
3754
3755 SetPageError(page);
3756 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3757 return;
3758
3759 /*
3760 * If writeback for a btree extent that doesn't belong to a log tree
3761 * failed, increment the counter transaction->eb_write_errors.
3762 * We do this because while the transaction is running and before it's
3763 * committing (when we call filemap_fdata[write|wait]_range against
3764 * the btree inode), we might have
3765 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3766 * returns an error or an error happens during writeback, when we're
3767 * committing the transaction we wouldn't know about it, since the pages
3768 * can be no longer dirty nor marked anymore for writeback (if a
3769 * subsequent modification to the extent buffer didn't happen before the
3770 * transaction commit), which makes filemap_fdata[write|wait]_range not
3771 * able to find the pages tagged with SetPageError at transaction
3772 * commit time. So if this happens we must abort the transaction,
3773 * otherwise we commit a super block with btree roots that point to
3774 * btree nodes/leafs whose content on disk is invalid - either garbage
3775 * or the content of some node/leaf from a past generation that got
3776 * cowed or deleted and is no longer valid.
3777 *
3778 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3779 * not be enough - we need to distinguish between log tree extents vs
3780 * non-log tree extents, and the next filemap_fdatawait_range() call
3781 * will catch and clear such errors in the mapping - and that call might
3782 * be from a log sync and not from a transaction commit. Also, checking
3783 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3784 * not done and would not be reliable - the eb might have been released
3785 * from memory and reading it back again means that flag would not be
3786 * set (since it's a runtime flag, not persisted on disk).
3787 *
3788 * Using the flags below in the btree inode also makes us achieve the
3789 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3790 * writeback for all dirty pages and before filemap_fdatawait_range()
3791 * is called, the writeback for all dirty pages had already finished
3792 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3793 * filemap_fdatawait_range() would return success, as it could not know
3794 * that writeback errors happened (the pages were no longer tagged for
3795 * writeback).
3796 */
3797 switch (eb->log_index) {
3798 case -1:
3799 set_bit(BTRFS_INODE_BTREE_ERR, &btree_ino->runtime_flags);
3800 break;
3801 case 0:
3802 set_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
3803 break;
3804 case 1:
3805 set_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
3806 break;
3807 default:
3808 BUG(); /* unexpected, logic error */
3809 }
3810}
3811
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003812static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003813{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003814 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003815 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003816 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003817
Kent Overstreet2c30c712013-11-07 12:20:26 -08003818 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003819 struct page *page = bvec->bv_page;
3820
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003821 eb = (struct extent_buffer *)page->private;
3822 BUG_ON(!eb);
3823 done = atomic_dec_and_test(&eb->io_pages);
3824
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003825 if (bio->bi_error ||
3826 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003827 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003828 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003829 }
3830
3831 end_page_writeback(page);
3832
3833 if (!done)
3834 continue;
3835
3836 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003837 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003838
3839 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003840}
3841
Chris Mason0e378df2014-05-19 20:55:27 -07003842static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003843 struct btrfs_fs_info *fs_info,
3844 struct writeback_control *wbc,
3845 struct extent_page_data *epd)
3846{
3847 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003848 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003849 u64 offset = eb->start;
3850 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003851 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003852 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003853 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003854
Filipe Manana656f30d2014-09-26 12:25:56 +01003855 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003856 num_pages = num_extent_pages(eb->start, eb->len);
3857 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003858 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3859 bio_flags = EXTENT_BIO_TREE_LOG;
3860
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003861 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003862 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003863
3864 clear_page_dirty_for_io(p);
3865 set_page_writeback(p);
Chris Masonda2f0f72015-07-02 13:57:22 -07003866 ret = submit_extent_page(rw, tree, wbc, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003867 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3868 -1, end_bio_extent_buffer_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003869 0, epd->bio_flags, bio_flags, false);
Josef Bacikde0022b2012-09-25 14:25:58 -04003870 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003871 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003872 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003873 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003874 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3875 end_extent_buffer_writeback(eb);
3876 ret = -EIO;
3877 break;
3878 }
3879 offset += PAGE_CACHE_SIZE;
3880 update_nr_written(p, wbc, 1);
3881 unlock_page(p);
3882 }
3883
3884 if (unlikely(ret)) {
3885 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003886 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003887 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003888 unlock_page(p);
3889 }
3890 }
3891
3892 return ret;
3893}
3894
3895int btree_write_cache_pages(struct address_space *mapping,
3896 struct writeback_control *wbc)
3897{
3898 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3899 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3900 struct extent_buffer *eb, *prev_eb = NULL;
3901 struct extent_page_data epd = {
3902 .bio = NULL,
3903 .tree = tree,
3904 .extent_locked = 0,
3905 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003906 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003907 };
3908 int ret = 0;
3909 int done = 0;
3910 int nr_to_write_done = 0;
3911 struct pagevec pvec;
3912 int nr_pages;
3913 pgoff_t index;
3914 pgoff_t end; /* Inclusive */
3915 int scanned = 0;
3916 int tag;
3917
3918 pagevec_init(&pvec, 0);
3919 if (wbc->range_cyclic) {
3920 index = mapping->writeback_index; /* Start from prev offset */
3921 end = -1;
3922 } else {
3923 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3924 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3925 scanned = 1;
3926 }
3927 if (wbc->sync_mode == WB_SYNC_ALL)
3928 tag = PAGECACHE_TAG_TOWRITE;
3929 else
3930 tag = PAGECACHE_TAG_DIRTY;
3931retry:
3932 if (wbc->sync_mode == WB_SYNC_ALL)
3933 tag_pages_for_writeback(mapping, index, end);
3934 while (!done && !nr_to_write_done && (index <= end) &&
3935 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3936 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3937 unsigned i;
3938
3939 scanned = 1;
3940 for (i = 0; i < nr_pages; i++) {
3941 struct page *page = pvec.pages[i];
3942
3943 if (!PagePrivate(page))
3944 continue;
3945
3946 if (!wbc->range_cyclic && page->index > end) {
3947 done = 1;
3948 break;
3949 }
3950
Josef Bacikb5bae262012-09-14 13:43:01 -04003951 spin_lock(&mapping->private_lock);
3952 if (!PagePrivate(page)) {
3953 spin_unlock(&mapping->private_lock);
3954 continue;
3955 }
3956
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003957 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003958
3959 /*
3960 * Shouldn't happen and normally this would be a BUG_ON
3961 * but no sense in crashing the users box for something
3962 * we can survive anyway.
3963 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303964 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003965 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003966 continue;
3967 }
3968
Josef Bacikb5bae262012-09-14 13:43:01 -04003969 if (eb == prev_eb) {
3970 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003971 continue;
3972 }
3973
Josef Bacikb5bae262012-09-14 13:43:01 -04003974 ret = atomic_inc_not_zero(&eb->refs);
3975 spin_unlock(&mapping->private_lock);
3976 if (!ret)
3977 continue;
3978
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003979 prev_eb = eb;
3980 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3981 if (!ret) {
3982 free_extent_buffer(eb);
3983 continue;
3984 }
3985
3986 ret = write_one_eb(eb, fs_info, wbc, &epd);
3987 if (ret) {
3988 done = 1;
3989 free_extent_buffer(eb);
3990 break;
3991 }
3992 free_extent_buffer(eb);
3993
3994 /*
3995 * the filesystem may choose to bump up nr_to_write.
3996 * We have to make sure to honor the new nr_to_write
3997 * at any time
3998 */
3999 nr_to_write_done = wbc->nr_to_write <= 0;
4000 }
4001 pagevec_release(&pvec);
4002 cond_resched();
4003 }
4004 if (!scanned && !done) {
4005 /*
4006 * We hit the last page and there is more work to be done: wrap
4007 * back to the start of the file
4008 */
4009 scanned = 1;
4010 index = 0;
4011 goto retry;
4012 }
4013 flush_write_bio(&epd);
4014 return ret;
4015}
4016
Chris Masond1310b22008-01-24 16:13:08 -05004017/**
4018 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
4019 * @mapping: address space structure to write
4020 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
4021 * @writepage: function called for each page
4022 * @data: data passed to writepage function
4023 *
4024 * If a page is already under I/O, write_cache_pages() skips it, even
4025 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
4026 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
4027 * and msync() need to guarantee that all the data which was dirty at the time
4028 * the call was made get new I/O started against them. If wbc->sync_mode is
4029 * WB_SYNC_ALL then we were called for data integrity and we must wait for
4030 * existing IO to complete.
4031 */
Chris Mason4bef0842008-09-08 11:18:08 -04004032static int extent_write_cache_pages(struct extent_io_tree *tree,
4033 struct address_space *mapping,
4034 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004035 writepage_t writepage, void *data,
4036 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05004037{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004038 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05004039 int ret = 0;
4040 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01004041 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004042 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004043 struct pagevec pvec;
4044 int nr_pages;
4045 pgoff_t index;
4046 pgoff_t end; /* Inclusive */
4047 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00004048 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05004049
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004050 /*
4051 * We have to hold onto the inode so that ordered extents can do their
4052 * work when the IO finishes. The alternative to this is failing to add
4053 * an ordered extent if the igrab() fails there and that is a huge pain
4054 * to deal with, so instead just hold onto the inode throughout the
4055 * writepages operation. If it fails here we are freeing up the inode
4056 * anyway and we'd rather not waste our time writing out stuff that is
4057 * going to be truncated anyway.
4058 */
4059 if (!igrab(inode))
4060 return 0;
4061
Chris Masond1310b22008-01-24 16:13:08 -05004062 pagevec_init(&pvec, 0);
4063 if (wbc->range_cyclic) {
4064 index = mapping->writeback_index; /* Start from prev offset */
4065 end = -1;
4066 } else {
4067 index = wbc->range_start >> PAGE_CACHE_SHIFT;
4068 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004069 scanned = 1;
4070 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00004071 if (wbc->sync_mode == WB_SYNC_ALL)
4072 tag = PAGECACHE_TAG_TOWRITE;
4073 else
4074 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004075retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00004076 if (wbc->sync_mode == WB_SYNC_ALL)
4077 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004078 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00004079 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
4080 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05004081 unsigned i;
4082
4083 scanned = 1;
4084 for (i = 0; i < nr_pages; i++) {
4085 struct page *page = pvec.pages[i];
4086
4087 /*
4088 * At this point we hold neither mapping->tree_lock nor
4089 * lock on the page itself: the page may be truncated or
4090 * invalidated (changing page->mapping to NULL), or even
4091 * swizzled back from swapper_space to tmpfs file
4092 * mapping
4093 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004094 if (!trylock_page(page)) {
4095 flush_fn(data);
4096 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004097 }
Chris Masond1310b22008-01-24 16:13:08 -05004098
4099 if (unlikely(page->mapping != mapping)) {
4100 unlock_page(page);
4101 continue;
4102 }
4103
4104 if (!wbc->range_cyclic && page->index > end) {
4105 done = 1;
4106 unlock_page(page);
4107 continue;
4108 }
4109
Chris Masond2c3f4f2008-11-19 12:44:22 -05004110 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05004111 if (PageWriteback(page))
4112 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05004113 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004114 }
Chris Masond1310b22008-01-24 16:13:08 -05004115
4116 if (PageWriteback(page) ||
4117 !clear_page_dirty_for_io(page)) {
4118 unlock_page(page);
4119 continue;
4120 }
4121
4122 ret = (*writepage)(page, wbc, data);
4123
4124 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4125 unlock_page(page);
4126 ret = 0;
4127 }
Filipe Manana61391d52014-05-09 17:17:40 +01004128 if (!err && ret < 0)
4129 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004130
4131 /*
4132 * the filesystem may choose to bump up nr_to_write.
4133 * We have to make sure to honor the new nr_to_write
4134 * at any time
4135 */
4136 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004137 }
4138 pagevec_release(&pvec);
4139 cond_resched();
4140 }
Filipe Manana61391d52014-05-09 17:17:40 +01004141 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05004142 /*
4143 * We hit the last page and there is more work to be done: wrap
4144 * back to the start of the file
4145 */
4146 scanned = 1;
4147 index = 0;
4148 goto retry;
4149 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004150 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01004151 return err;
Chris Masond1310b22008-01-24 16:13:08 -05004152}
Chris Masond1310b22008-01-24 16:13:08 -05004153
Chris Masonffbd5172009-04-20 15:50:09 -04004154static void flush_epd_write_bio(struct extent_page_data *epd)
4155{
4156 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004157 int rw = WRITE;
4158 int ret;
4159
Chris Masonffbd5172009-04-20 15:50:09 -04004160 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04004161 rw = WRITE_SYNC;
4162
Josef Bacikde0022b2012-09-25 14:25:58 -04004163 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004164 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004165 epd->bio = NULL;
4166 }
4167}
4168
Chris Masond2c3f4f2008-11-19 12:44:22 -05004169static noinline void flush_write_bio(void *data)
4170{
4171 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004172 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004173}
4174
Chris Masond1310b22008-01-24 16:13:08 -05004175int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4176 get_extent_t *get_extent,
4177 struct writeback_control *wbc)
4178{
4179 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004180 struct extent_page_data epd = {
4181 .bio = NULL,
4182 .tree = tree,
4183 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004184 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004185 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004186 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004187 };
Chris Masond1310b22008-01-24 16:13:08 -05004188
Chris Masond1310b22008-01-24 16:13:08 -05004189 ret = __extent_writepage(page, wbc, &epd);
4190
Chris Masonffbd5172009-04-20 15:50:09 -04004191 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004192 return ret;
4193}
Chris Masond1310b22008-01-24 16:13:08 -05004194
Chris Mason771ed682008-11-06 22:02:51 -05004195int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4196 u64 start, u64 end, get_extent_t *get_extent,
4197 int mode)
4198{
4199 int ret = 0;
4200 struct address_space *mapping = inode->i_mapping;
4201 struct page *page;
4202 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
4203 PAGE_CACHE_SHIFT;
4204
4205 struct extent_page_data epd = {
4206 .bio = NULL,
4207 .tree = tree,
4208 .get_extent = get_extent,
4209 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004210 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004211 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004212 };
4213 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004214 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004215 .nr_to_write = nr_pages * 2,
4216 .range_start = start,
4217 .range_end = end + 1,
4218 };
4219
Chris Masond3977122009-01-05 21:25:51 -05004220 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05004221 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
4222 if (clear_page_dirty_for_io(page))
4223 ret = __extent_writepage(page, &wbc_writepages, &epd);
4224 else {
4225 if (tree->ops && tree->ops->writepage_end_io_hook)
4226 tree->ops->writepage_end_io_hook(page, start,
4227 start + PAGE_CACHE_SIZE - 1,
4228 NULL, 1);
4229 unlock_page(page);
4230 }
4231 page_cache_release(page);
4232 start += PAGE_CACHE_SIZE;
4233 }
4234
Chris Masonffbd5172009-04-20 15:50:09 -04004235 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004236 return ret;
4237}
Chris Masond1310b22008-01-24 16:13:08 -05004238
4239int extent_writepages(struct extent_io_tree *tree,
4240 struct address_space *mapping,
4241 get_extent_t *get_extent,
4242 struct writeback_control *wbc)
4243{
4244 int ret = 0;
4245 struct extent_page_data epd = {
4246 .bio = NULL,
4247 .tree = tree,
4248 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004249 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004250 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004251 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004252 };
4253
Chris Mason4bef0842008-09-08 11:18:08 -04004254 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004255 __extent_writepage, &epd,
4256 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004257 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004258 return ret;
4259}
Chris Masond1310b22008-01-24 16:13:08 -05004260
4261int extent_readpages(struct extent_io_tree *tree,
4262 struct address_space *mapping,
4263 struct list_head *pages, unsigned nr_pages,
4264 get_extent_t get_extent)
4265{
4266 struct bio *bio = NULL;
4267 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004268 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004269 struct page *pagepool[16];
4270 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004271 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004272 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004273 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004274
Chris Masond1310b22008-01-24 16:13:08 -05004275 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004276 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004277
4278 prefetchw(&page->flags);
4279 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004280 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004281 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004282 page_cache_release(page);
4283 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004284 }
Liu Bo67c96842012-07-20 21:43:09 -06004285
4286 pagepool[nr++] = page;
4287 if (nr < ARRAY_SIZE(pagepool))
4288 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004289 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004290 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004291 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004292 }
Miao Xie99740902013-07-25 19:22:36 +08004293 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004294 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004295 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004296
Miao Xie125bac012013-07-25 19:22:37 +08004297 if (em_cached)
4298 free_extent_map(em_cached);
4299
Chris Masond1310b22008-01-24 16:13:08 -05004300 BUG_ON(!list_empty(pages));
4301 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004302 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004303 return 0;
4304}
Chris Masond1310b22008-01-24 16:13:08 -05004305
4306/*
4307 * basic invalidatepage code, this waits on any locked or writeback
4308 * ranges corresponding to the page, and then deletes any extent state
4309 * records from the tree
4310 */
4311int extent_invalidatepage(struct extent_io_tree *tree,
4312 struct page *page, unsigned long offset)
4313{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004314 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004315 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004316 u64 end = start + PAGE_CACHE_SIZE - 1;
4317 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4318
Qu Wenruofda28322013-02-26 08:10:22 +00004319 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004320 if (start > end)
4321 return 0;
4322
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004323 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004324 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004325 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004326 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4327 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004328 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004329 return 0;
4330}
Chris Masond1310b22008-01-24 16:13:08 -05004331
4332/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004333 * a helper for releasepage, this tests for areas of the page that
4334 * are locked or under IO and drops the related state bits if it is safe
4335 * to drop the page.
4336 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004337static int try_release_extent_state(struct extent_map_tree *map,
4338 struct extent_io_tree *tree,
4339 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004340{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004341 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004342 u64 end = start + PAGE_CACHE_SIZE - 1;
4343 int ret = 1;
4344
Chris Mason211f90e2008-07-18 11:56:15 -04004345 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004346 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004347 ret = 0;
4348 else {
4349 if ((mask & GFP_NOFS) == GFP_NOFS)
4350 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004351 /*
4352 * at this point we can safely clear everything except the
4353 * locked bit and the nodatasum bit
4354 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004355 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004356 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4357 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004358
4359 /* if clear_extent_bit failed for enomem reasons,
4360 * we can't allow the release to continue.
4361 */
4362 if (ret < 0)
4363 ret = 0;
4364 else
4365 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004366 }
4367 return ret;
4368}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004369
4370/*
Chris Masond1310b22008-01-24 16:13:08 -05004371 * a helper for releasepage. As long as there are no locked extents
4372 * in the range corresponding to the page, both state records and extent
4373 * map records are removed
4374 */
4375int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004376 struct extent_io_tree *tree, struct page *page,
4377 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004378{
4379 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004380 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004381 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004382
Mel Gormand0164ad2015-11-06 16:28:21 -08004383 if (gfpflags_allow_blocking(mask) &&
Chris Mason70dec802008-01-29 09:59:12 -05004384 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004385 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004386 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004387 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004388 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004389 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004390 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004391 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004392 break;
4393 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004394 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4395 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004396 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004397 free_extent_map(em);
4398 break;
4399 }
4400 if (!test_range_bit(tree, em->start,
4401 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004402 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004403 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004404 remove_extent_mapping(map, em);
4405 /* once for the rb tree */
4406 free_extent_map(em);
4407 }
4408 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004409 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004410
4411 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004412 free_extent_map(em);
4413 }
Chris Masond1310b22008-01-24 16:13:08 -05004414 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004415 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004416}
Chris Masond1310b22008-01-24 16:13:08 -05004417
Chris Masonec29ed52011-02-23 16:23:20 -05004418/*
4419 * helper function for fiemap, which doesn't want to see any holes.
4420 * This maps until we find something past 'last'
4421 */
4422static struct extent_map *get_extent_skip_holes(struct inode *inode,
4423 u64 offset,
4424 u64 last,
4425 get_extent_t *get_extent)
4426{
4427 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4428 struct extent_map *em;
4429 u64 len;
4430
4431 if (offset >= last)
4432 return NULL;
4433
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304434 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004435 len = last - offset;
4436 if (len == 0)
4437 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004438 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004439 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004440 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004441 return em;
4442
4443 /* if this isn't a hole return it */
4444 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4445 em->block_start != EXTENT_MAP_HOLE) {
4446 return em;
4447 }
4448
4449 /* this is a hole, advance to the next extent */
4450 offset = extent_map_end(em);
4451 free_extent_map(em);
4452 if (offset >= last)
4453 break;
4454 }
4455 return NULL;
4456}
4457
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004458int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4459 __u64 start, __u64 len, get_extent_t *get_extent)
4460{
Josef Bacik975f84f2010-11-23 19:36:57 +00004461 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004462 u64 off = start;
4463 u64 max = start + len;
4464 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004465 u32 found_type;
4466 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004467 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004468 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004469 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004470 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004471 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004472 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004473 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004474 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004475 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004476 u64 em_start = 0;
4477 u64 em_len = 0;
4478 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004479
4480 if (len == 0)
4481 return -EINVAL;
4482
Josef Bacik975f84f2010-11-23 19:36:57 +00004483 path = btrfs_alloc_path();
4484 if (!path)
4485 return -ENOMEM;
4486 path->leave_spinning = 1;
4487
Qu Wenruo2c919432014-07-18 09:55:43 +08004488 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4489 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004490
Chris Masonec29ed52011-02-23 16:23:20 -05004491 /*
4492 * lookup the last file extent. We're not using i_size here
4493 * because there might be preallocation past i_size
4494 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004495 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4496 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004497 if (ret < 0) {
4498 btrfs_free_path(path);
4499 return ret;
4500 }
4501 WARN_ON(!ret);
4502 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004503 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004504 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004505
Chris Masonec29ed52011-02-23 16:23:20 -05004506 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004507 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004508 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004509 /* have to trust i_size as the end */
4510 last = (u64)-1;
4511 last_for_get_extent = isize;
4512 } else {
4513 /*
4514 * remember the start of the last extent. There are a
4515 * bunch of different factors that go into the length of the
4516 * extent, so its much less complex to remember where it started
4517 */
4518 last = found_key.offset;
4519 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004520 }
Liu Bofe09e162013-09-22 12:54:23 +08004521 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004522
Chris Masonec29ed52011-02-23 16:23:20 -05004523 /*
4524 * we might have some extents allocated but more delalloc past those
4525 * extents. so, we trust isize unless the start of the last extent is
4526 * beyond isize
4527 */
4528 if (last < isize) {
4529 last = (u64)-1;
4530 last_for_get_extent = isize;
4531 }
4532
Liu Boa52f4cd2013-05-01 16:23:41 +00004533 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004534 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004535
Josef Bacik4d479cf2011-11-17 11:34:31 -05004536 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004537 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004538 if (!em)
4539 goto out;
4540 if (IS_ERR(em)) {
4541 ret = PTR_ERR(em);
4542 goto out;
4543 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004544
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004545 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004546 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004547
Chris Masonea8efc72011-03-08 11:54:40 -05004548 /* break if the extent we found is outside the range */
4549 if (em->start >= max || extent_map_end(em) < off)
4550 break;
4551
4552 /*
4553 * get_extent may return an extent that starts before our
4554 * requested range. We have to make sure the ranges
4555 * we return to fiemap always move forward and don't
4556 * overlap, so adjust the offsets here
4557 */
4558 em_start = max(em->start, off);
4559
4560 /*
4561 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004562 * for adjusting the disk offset below. Only do this if the
4563 * extent isn't compressed since our in ram offset may be past
4564 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004565 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004566 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4567 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004568 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004569 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004570 disko = 0;
4571 flags = 0;
4572
Chris Masonea8efc72011-03-08 11:54:40 -05004573 /*
4574 * bump off for our next call to get_extent
4575 */
4576 off = extent_map_end(em);
4577 if (off >= max)
4578 end = 1;
4579
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004580 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004581 end = 1;
4582 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004583 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004584 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4585 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004586 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004587 flags |= (FIEMAP_EXTENT_DELALLOC |
4588 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004589 } else if (fieinfo->fi_extents_max) {
4590 u64 bytenr = em->block_start -
4591 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004592
Chris Masonea8efc72011-03-08 11:54:40 -05004593 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004594
4595 /*
4596 * As btrfs supports shared space, this information
4597 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004598 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4599 * then we're just getting a count and we can skip the
4600 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004601 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004602 ret = btrfs_check_shared(NULL, root->fs_info,
4603 root->objectid,
4604 btrfs_ino(inode), bytenr);
4605 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004606 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004607 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004608 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004609 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004610 }
4611 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4612 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004613 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4614 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004615
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004616 free_extent_map(em);
4617 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004618 if ((em_start >= last) || em_len == (u64)-1 ||
4619 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004620 flags |= FIEMAP_EXTENT_LAST;
4621 end = 1;
4622 }
4623
Chris Masonec29ed52011-02-23 16:23:20 -05004624 /* now scan forward to see if this is really the last extent. */
4625 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4626 get_extent);
4627 if (IS_ERR(em)) {
4628 ret = PTR_ERR(em);
4629 goto out;
4630 }
4631 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004632 flags |= FIEMAP_EXTENT_LAST;
4633 end = 1;
4634 }
Chris Masonec29ed52011-02-23 16:23:20 -05004635 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4636 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004637 if (ret) {
4638 if (ret == 1)
4639 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004640 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004641 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004642 }
4643out_free:
4644 free_extent_map(em);
4645out:
Liu Bofe09e162013-09-22 12:54:23 +08004646 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004647 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004648 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004649 return ret;
4650}
4651
Chris Mason727011e2010-08-06 13:21:20 -04004652static void __free_extent_buffer(struct extent_buffer *eb)
4653{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004654 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004655 kmem_cache_free(extent_buffer_cache, eb);
4656}
4657
Josef Bacika26e8c92014-03-28 17:07:27 -04004658int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004659{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004660 return (atomic_read(&eb->io_pages) ||
4661 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4662 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004663}
4664
Miao Xie897ca6e92010-10-26 20:57:29 -04004665/*
4666 * Helper for releasing extent buffer page.
4667 */
David Sterbaa50924e2014-07-31 00:51:36 +02004668static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004669{
4670 unsigned long index;
4671 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004672 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004673
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004674 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004675
David Sterbaa50924e2014-07-31 00:51:36 +02004676 index = num_extent_pages(eb->start, eb->len);
4677 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004678 return;
4679
4680 do {
4681 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004682 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004683 if (!page)
4684 continue;
4685 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004686 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004687 /*
4688 * We do this since we'll remove the pages after we've
4689 * removed the eb from the radix tree, so we could race
4690 * and have this page now attached to the new eb. So
4691 * only clear page_private if it's still connected to
4692 * this eb.
4693 */
4694 if (PagePrivate(page) &&
4695 page->private == (unsigned long)eb) {
4696 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4697 BUG_ON(PageDirty(page));
4698 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004699 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004700 * We need to make sure we haven't be attached
4701 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004702 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004703 ClearPagePrivate(page);
4704 set_page_private(page, 0);
4705 /* One for the page private */
Miao Xie897ca6e92010-10-26 20:57:29 -04004706 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004707 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004708
4709 if (mapped)
4710 spin_unlock(&page->mapping->private_lock);
4711
4712 /* One for when we alloced the page */
4713 page_cache_release(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004714 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004715}
4716
4717/*
4718 * Helper for releasing the extent buffer.
4719 */
4720static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4721{
David Sterbaa50924e2014-07-31 00:51:36 +02004722 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004723 __free_extent_buffer(eb);
4724}
4725
Josef Bacikf28491e2013-12-16 13:24:27 -05004726static struct extent_buffer *
4727__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004728 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004729{
4730 struct extent_buffer *eb = NULL;
4731
Michal Hockod1b5c562015-08-19 14:17:40 +02004732 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004733 eb->start = start;
4734 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004735 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004736 eb->bflags = 0;
4737 rwlock_init(&eb->lock);
4738 atomic_set(&eb->write_locks, 0);
4739 atomic_set(&eb->read_locks, 0);
4740 atomic_set(&eb->blocking_readers, 0);
4741 atomic_set(&eb->blocking_writers, 0);
4742 atomic_set(&eb->spinning_readers, 0);
4743 atomic_set(&eb->spinning_writers, 0);
4744 eb->lock_nested = 0;
4745 init_waitqueue_head(&eb->write_lock_wq);
4746 init_waitqueue_head(&eb->read_lock_wq);
4747
4748 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4749
4750 spin_lock_init(&eb->refs_lock);
4751 atomic_set(&eb->refs, 1);
4752 atomic_set(&eb->io_pages, 0);
4753
4754 /*
4755 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4756 */
4757 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4758 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4759 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4760
4761 return eb;
4762}
4763
4764struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4765{
4766 unsigned long i;
4767 struct page *p;
4768 struct extent_buffer *new;
4769 unsigned long num_pages = num_extent_pages(src->start, src->len);
4770
David Sterba3f556f72014-06-15 03:20:26 +02004771 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004772 if (new == NULL)
4773 return NULL;
4774
4775 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004776 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004777 if (!p) {
4778 btrfs_release_extent_buffer(new);
4779 return NULL;
4780 }
4781 attach_extent_buffer_page(new, p);
4782 WARN_ON(PageDirty(p));
4783 SetPageUptodate(p);
4784 new->pages[i] = p;
4785 }
4786
4787 copy_extent_buffer(new, src, 0, 0, src->len);
4788 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4789 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4790
4791 return new;
4792}
4793
David Sterba3f556f72014-06-15 03:20:26 +02004794struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4795 u64 start)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004796{
4797 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004798 unsigned long len;
4799 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004800 unsigned long i;
4801
David Sterba3f556f72014-06-15 03:20:26 +02004802 if (!fs_info) {
4803 /*
4804 * Called only from tests that don't always have a fs_info
4805 * available, but we know that nodesize is 4096
4806 */
4807 len = 4096;
4808 } else {
4809 len = fs_info->tree_root->nodesize;
4810 }
4811 num_pages = num_extent_pages(0, len);
4812
4813 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004814 if (!eb)
4815 return NULL;
4816
4817 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004818 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004819 if (!eb->pages[i])
4820 goto err;
4821 }
4822 set_extent_buffer_uptodate(eb);
4823 btrfs_set_header_nritems(eb, 0);
4824 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4825
4826 return eb;
4827err:
4828 for (; i > 0; i--)
4829 __free_page(eb->pages[i - 1]);
4830 __free_extent_buffer(eb);
4831 return NULL;
4832}
4833
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004834static void check_buffer_tree_ref(struct extent_buffer *eb)
4835{
Chris Mason242e18c2013-01-29 17:49:37 -05004836 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004837 /* the ref bit is tricky. We have to make sure it is set
4838 * if we have the buffer dirty. Otherwise the
4839 * code to free a buffer can end up dropping a dirty
4840 * page
4841 *
4842 * Once the ref bit is set, it won't go away while the
4843 * buffer is dirty or in writeback, and it also won't
4844 * go away while we have the reference count on the
4845 * eb bumped.
4846 *
4847 * We can't just set the ref bit without bumping the
4848 * ref on the eb because free_extent_buffer might
4849 * see the ref bit and try to clear it. If this happens
4850 * free_extent_buffer might end up dropping our original
4851 * ref by mistake and freeing the page before we are able
4852 * to add one more ref.
4853 *
4854 * So bump the ref count first, then set the bit. If someone
4855 * beat us to it, drop the ref we added.
4856 */
Chris Mason242e18c2013-01-29 17:49:37 -05004857 refs = atomic_read(&eb->refs);
4858 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4859 return;
4860
Josef Bacik594831c2012-07-20 16:11:08 -04004861 spin_lock(&eb->refs_lock);
4862 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004863 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004864 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004865}
4866
Mel Gorman2457aec2014-06-04 16:10:31 -07004867static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4868 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004869{
4870 unsigned long num_pages, i;
4871
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004872 check_buffer_tree_ref(eb);
4873
Josef Bacik5df42352012-03-15 18:24:42 -04004874 num_pages = num_extent_pages(eb->start, eb->len);
4875 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004876 struct page *p = eb->pages[i];
4877
Mel Gorman2457aec2014-06-04 16:10:31 -07004878 if (p != accessed)
4879 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004880 }
4881}
4882
Josef Bacikf28491e2013-12-16 13:24:27 -05004883struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4884 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004885{
4886 struct extent_buffer *eb;
4887
4888 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004889 eb = radix_tree_lookup(&fs_info->buffer_radix,
4890 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004891 if (eb && atomic_inc_not_zero(&eb->refs)) {
4892 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004893 /*
4894 * Lock our eb's refs_lock to avoid races with
4895 * free_extent_buffer. When we get our eb it might be flagged
4896 * with EXTENT_BUFFER_STALE and another task running
4897 * free_extent_buffer might have seen that flag set,
4898 * eb->refs == 2, that the buffer isn't under IO (dirty and
4899 * writeback flags not set) and it's still in the tree (flag
4900 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4901 * of decrementing the extent buffer's reference count twice.
4902 * So here we could race and increment the eb's reference count,
4903 * clear its stale flag, mark it as dirty and drop our reference
4904 * before the other task finishes executing free_extent_buffer,
4905 * which would later result in an attempt to free an extent
4906 * buffer that is dirty.
4907 */
4908 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4909 spin_lock(&eb->refs_lock);
4910 spin_unlock(&eb->refs_lock);
4911 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004912 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004913 return eb;
4914 }
4915 rcu_read_unlock();
4916
4917 return NULL;
4918}
4919
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004920#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4921struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004922 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004923{
4924 struct extent_buffer *eb, *exists = NULL;
4925 int ret;
4926
4927 eb = find_extent_buffer(fs_info, start);
4928 if (eb)
4929 return eb;
David Sterba3f556f72014-06-15 03:20:26 +02004930 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004931 if (!eb)
4932 return NULL;
4933 eb->fs_info = fs_info;
4934again:
4935 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4936 if (ret)
4937 goto free_eb;
4938 spin_lock(&fs_info->buffer_lock);
4939 ret = radix_tree_insert(&fs_info->buffer_radix,
4940 start >> PAGE_CACHE_SHIFT, eb);
4941 spin_unlock(&fs_info->buffer_lock);
4942 radix_tree_preload_end();
4943 if (ret == -EEXIST) {
4944 exists = find_extent_buffer(fs_info, start);
4945 if (exists)
4946 goto free_eb;
4947 else
4948 goto again;
4949 }
4950 check_buffer_tree_ref(eb);
4951 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4952
4953 /*
4954 * We will free dummy extent buffer's if they come into
4955 * free_extent_buffer with a ref count of 2, but if we are using this we
4956 * want the buffers to stay in memory until we're done with them, so
4957 * bump the ref count again.
4958 */
4959 atomic_inc(&eb->refs);
4960 return eb;
4961free_eb:
4962 btrfs_release_extent_buffer(eb);
4963 return exists;
4964}
4965#endif
4966
Josef Bacikf28491e2013-12-16 13:24:27 -05004967struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004968 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004969{
David Sterbace3e6982014-06-15 03:00:04 +02004970 unsigned long len = fs_info->tree_root->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004971 unsigned long num_pages = num_extent_pages(start, len);
4972 unsigned long i;
4973 unsigned long index = start >> PAGE_CACHE_SHIFT;
4974 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004975 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004976 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004977 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004978 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004979 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004980
Josef Bacikf28491e2013-12-16 13:24:27 -05004981 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004982 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004983 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004984
David Sterba23d79d82014-06-15 02:55:29 +02004985 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004986 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004987 return NULL;
4988
Chris Mason727011e2010-08-06 13:21:20 -04004989 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004990 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Josef Bacik4804b382012-10-05 16:43:45 -04004991 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004992 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004993
4994 spin_lock(&mapping->private_lock);
4995 if (PagePrivate(p)) {
4996 /*
4997 * We could have already allocated an eb for this page
4998 * and attached one so lets see if we can get a ref on
4999 * the existing eb, and if we can we know it's good and
5000 * we can just return that one, else we know we can just
5001 * overwrite page->private.
5002 */
5003 exists = (struct extent_buffer *)p->private;
5004 if (atomic_inc_not_zero(&exists->refs)) {
5005 spin_unlock(&mapping->private_lock);
5006 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04005007 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005008 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005009 goto free_eb;
5010 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005011 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005012
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005013 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005014 * Do this so attach doesn't complain and we need to
5015 * drop the ref the old guy had.
5016 */
5017 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005018 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005019 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05005020 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005021 attach_extent_buffer_page(eb, p);
5022 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005023 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005024 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005025 if (!PageUptodate(p))
5026 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005027
5028 /*
5029 * see below about how we avoid a nasty race with release page
5030 * and why we unlock later
5031 */
Chris Masond1310b22008-01-24 16:13:08 -05005032 }
5033 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005034 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005035again:
Miao Xie19fe0a82010-10-26 20:57:29 -04005036 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
5037 if (ret)
5038 goto free_eb;
5039
Josef Bacikf28491e2013-12-16 13:24:27 -05005040 spin_lock(&fs_info->buffer_lock);
5041 ret = radix_tree_insert(&fs_info->buffer_radix,
5042 start >> PAGE_CACHE_SHIFT, eb);
5043 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005044 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005045 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005046 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005047 if (exists)
5048 goto free_eb;
5049 else
Josef Bacik115391d2012-03-09 09:51:43 -05005050 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005051 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005052 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005053 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005054 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005055
5056 /*
5057 * there is a race where release page may have
5058 * tried to find this extent buffer in the radix
5059 * but failed. It will tell the VM it is safe to
5060 * reclaim the, and it will clear the page private bit.
5061 * We must make sure to set the page private bit properly
5062 * after the extent buffer is in the radix tree so
5063 * it doesn't get lost
5064 */
Chris Mason727011e2010-08-06 13:21:20 -04005065 SetPageChecked(eb->pages[0]);
5066 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005067 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005068 ClearPageChecked(p);
5069 unlock_page(p);
5070 }
5071 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005072 return eb;
5073
Chris Mason6af118ce2008-07-22 11:18:07 -04005074free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005075 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005076 for (i = 0; i < num_pages; i++) {
5077 if (eb->pages[i])
5078 unlock_page(eb->pages[i]);
5079 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005080
Miao Xie897ca6e92010-10-26 20:57:29 -04005081 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005082 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005083}
Chris Masond1310b22008-01-24 16:13:08 -05005084
Josef Bacik3083ee22012-03-09 16:01:49 -05005085static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5086{
5087 struct extent_buffer *eb =
5088 container_of(head, struct extent_buffer, rcu_head);
5089
5090 __free_extent_buffer(eb);
5091}
5092
Josef Bacik3083ee22012-03-09 16:01:49 -05005093/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005094static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005095{
5096 WARN_ON(atomic_read(&eb->refs) == 0);
5097 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005098 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005099 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005100
Jan Schmidt815a51c2012-05-16 17:00:02 +02005101 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005102
Josef Bacikf28491e2013-12-16 13:24:27 -05005103 spin_lock(&fs_info->buffer_lock);
5104 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02005105 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005106 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005107 } else {
5108 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005109 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005110
5111 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005112 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005113#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5114 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5115 __free_extent_buffer(eb);
5116 return 1;
5117 }
5118#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005119 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005120 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005121 }
5122 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005123
5124 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005125}
5126
Chris Masond1310b22008-01-24 16:13:08 -05005127void free_extent_buffer(struct extent_buffer *eb)
5128{
Chris Mason242e18c2013-01-29 17:49:37 -05005129 int refs;
5130 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005131 if (!eb)
5132 return;
5133
Chris Mason242e18c2013-01-29 17:49:37 -05005134 while (1) {
5135 refs = atomic_read(&eb->refs);
5136 if (refs <= 3)
5137 break;
5138 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5139 if (old == refs)
5140 return;
5141 }
5142
Josef Bacik3083ee22012-03-09 16:01:49 -05005143 spin_lock(&eb->refs_lock);
5144 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005145 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5146 atomic_dec(&eb->refs);
5147
5148 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005149 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005150 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005151 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5152 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005153
Josef Bacik3083ee22012-03-09 16:01:49 -05005154 /*
5155 * I know this is terrible, but it's temporary until we stop tracking
5156 * the uptodate bits and such for the extent buffers.
5157 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005158 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005159}
Chris Masond1310b22008-01-24 16:13:08 -05005160
Josef Bacik3083ee22012-03-09 16:01:49 -05005161void free_extent_buffer_stale(struct extent_buffer *eb)
5162{
5163 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005164 return;
5165
Josef Bacik3083ee22012-03-09 16:01:49 -05005166 spin_lock(&eb->refs_lock);
5167 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5168
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005169 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005170 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5171 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005172 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005173}
5174
Chris Mason1d4284b2012-03-28 20:31:37 -04005175void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005176{
Chris Masond1310b22008-01-24 16:13:08 -05005177 unsigned long i;
5178 unsigned long num_pages;
5179 struct page *page;
5180
Chris Masond1310b22008-01-24 16:13:08 -05005181 num_pages = num_extent_pages(eb->start, eb->len);
5182
5183 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005184 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005185 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005186 continue;
5187
Chris Masona61e6f22008-07-22 11:18:08 -04005188 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005189 WARN_ON(!PagePrivate(page));
5190
Chris Masond1310b22008-01-24 16:13:08 -05005191 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005192 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005193 if (!PageDirty(page)) {
5194 radix_tree_tag_clear(&page->mapping->page_tree,
5195 page_index(page),
5196 PAGECACHE_TAG_DIRTY);
5197 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005198 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005199 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005200 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005201 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005202 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005203}
Chris Masond1310b22008-01-24 16:13:08 -05005204
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005205int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005206{
5207 unsigned long i;
5208 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005209 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005210
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005211 check_buffer_tree_ref(eb);
5212
Chris Masonb9473432009-03-13 11:00:37 -04005213 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005214
Chris Masond1310b22008-01-24 16:13:08 -05005215 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005216 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005217 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5218
Chris Masonb9473432009-03-13 11:00:37 -04005219 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005220 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005221 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005222}
Chris Masond1310b22008-01-24 16:13:08 -05005223
David Sterba69ba3922015-12-03 13:08:59 +01005224void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005225{
5226 unsigned long i;
5227 struct page *page;
5228 unsigned long num_pages;
5229
Chris Masonb4ce94d2009-02-04 09:25:08 -05005230 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005231 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005232 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005233 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005234 if (page)
5235 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005236 }
Chris Mason1259ab72008-05-12 13:39:03 -04005237}
5238
David Sterba09c25a82015-12-03 13:08:59 +01005239void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005240{
5241 unsigned long i;
5242 struct page *page;
5243 unsigned long num_pages;
5244
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005245 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005246 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005247 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005248 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005249 SetPageUptodate(page);
5250 }
Chris Masond1310b22008-01-24 16:13:08 -05005251}
Chris Masond1310b22008-01-24 16:13:08 -05005252
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005253int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005254{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005255 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005256}
Chris Masond1310b22008-01-24 16:13:08 -05005257
5258int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02005259 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005260 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005261{
5262 unsigned long i;
5263 unsigned long start_i;
5264 struct page *page;
5265 int err;
5266 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005267 int locked_pages = 0;
5268 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005269 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005270 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005271 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005272 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005273
Chris Masonb4ce94d2009-02-04 09:25:08 -05005274 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005275 return 0;
5276
Chris Masond1310b22008-01-24 16:13:08 -05005277 if (start) {
5278 WARN_ON(start < eb->start);
5279 start_i = (start >> PAGE_CACHE_SHIFT) -
5280 (eb->start >> PAGE_CACHE_SHIFT);
5281 } else {
5282 start_i = 0;
5283 }
5284
5285 num_pages = num_extent_pages(eb->start, eb->len);
5286 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005287 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005288 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005289 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005290 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005291 } else {
5292 lock_page(page);
5293 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005294 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005295 if (!PageUptodate(page)) {
5296 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005297 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005298 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005299 }
5300 if (all_uptodate) {
5301 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005302 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005303 goto unlock_exit;
5304 }
5305
Filipe Manana656f30d2014-09-26 12:25:56 +01005306 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005307 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005308 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005309 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005310 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005311 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005312 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005313 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005314 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005315 mirror_num, &bio_flags,
5316 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005317 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005318 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005319 } else {
5320 unlock_page(page);
5321 }
5322 }
5323
Jeff Mahoney355808c2011-10-03 23:23:14 -04005324 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005325 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5326 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005327 if (err)
5328 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005329 }
Chris Masona86c12c2008-02-07 10:50:54 -05005330
Arne Jansenbb82ab82011-06-10 14:06:53 +02005331 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005332 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005333
Chris Masond1310b22008-01-24 16:13:08 -05005334 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005335 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005336 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005337 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005338 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005339 }
Chris Masond3977122009-01-05 21:25:51 -05005340
Chris Masond1310b22008-01-24 16:13:08 -05005341 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005342
5343unlock_exit:
5344 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005345 while (locked_pages > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005346 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005347 i++;
5348 unlock_page(page);
5349 locked_pages--;
5350 }
5351 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005352}
Chris Masond1310b22008-01-24 16:13:08 -05005353
5354void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5355 unsigned long start,
5356 unsigned long len)
5357{
5358 size_t cur;
5359 size_t offset;
5360 struct page *page;
5361 char *kaddr;
5362 char *dst = (char *)dstv;
5363 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5364 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005365
5366 WARN_ON(start > eb->len);
5367 WARN_ON(start + len > eb->start + eb->len);
5368
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005369 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005370
Chris Masond3977122009-01-05 21:25:51 -05005371 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005372 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005373
5374 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005375 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005376 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005377
5378 dst += cur;
5379 len -= cur;
5380 offset = 0;
5381 i++;
5382 }
5383}
Chris Masond1310b22008-01-24 16:13:08 -05005384
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005385int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5386 unsigned long start,
5387 unsigned long len)
5388{
5389 size_t cur;
5390 size_t offset;
5391 struct page *page;
5392 char *kaddr;
5393 char __user *dst = (char __user *)dstv;
5394 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5395 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5396 int ret = 0;
5397
5398 WARN_ON(start > eb->len);
5399 WARN_ON(start + len > eb->start + eb->len);
5400
5401 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5402
5403 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005404 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005405
5406 cur = min(len, (PAGE_CACHE_SIZE - offset));
5407 kaddr = page_address(page);
5408 if (copy_to_user(dst, kaddr + offset, cur)) {
5409 ret = -EFAULT;
5410 break;
5411 }
5412
5413 dst += cur;
5414 len -= cur;
5415 offset = 0;
5416 i++;
5417 }
5418
5419 return ret;
5420}
5421
Chris Masond1310b22008-01-24 16:13:08 -05005422int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005423 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005424 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005425 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005426{
5427 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5428 char *kaddr;
5429 struct page *p;
5430 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5431 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5432 unsigned long end_i = (start_offset + start + min_len - 1) >>
5433 PAGE_CACHE_SHIFT;
5434
5435 if (i != end_i)
5436 return -EINVAL;
5437
5438 if (i == 0) {
5439 offset = start_offset;
5440 *map_start = 0;
5441 } else {
5442 offset = 0;
5443 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5444 }
Chris Masond3977122009-01-05 21:25:51 -05005445
Chris Masond1310b22008-01-24 16:13:08 -05005446 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005447 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005448 "wanted %lu %lu\n",
5449 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005450 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005451 }
5452
David Sterbafb85fc92014-07-31 01:03:53 +02005453 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005454 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005455 *map = kaddr + offset;
5456 *map_len = PAGE_CACHE_SIZE - offset;
5457 return 0;
5458}
Chris Masond1310b22008-01-24 16:13:08 -05005459
Chris Masond1310b22008-01-24 16:13:08 -05005460int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5461 unsigned long start,
5462 unsigned long len)
5463{
5464 size_t cur;
5465 size_t offset;
5466 struct page *page;
5467 char *kaddr;
5468 char *ptr = (char *)ptrv;
5469 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5470 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5471 int ret = 0;
5472
5473 WARN_ON(start > eb->len);
5474 WARN_ON(start + len > eb->start + eb->len);
5475
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005476 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005477
Chris Masond3977122009-01-05 21:25:51 -05005478 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005479 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005480
5481 cur = min(len, (PAGE_CACHE_SIZE - offset));
5482
Chris Masona6591712011-07-19 12:04:14 -04005483 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005484 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005485 if (ret)
5486 break;
5487
5488 ptr += cur;
5489 len -= cur;
5490 offset = 0;
5491 i++;
5492 }
5493 return ret;
5494}
Chris Masond1310b22008-01-24 16:13:08 -05005495
5496void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5497 unsigned long start, unsigned long len)
5498{
5499 size_t cur;
5500 size_t offset;
5501 struct page *page;
5502 char *kaddr;
5503 char *src = (char *)srcv;
5504 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5505 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5506
5507 WARN_ON(start > eb->len);
5508 WARN_ON(start + len > eb->start + eb->len);
5509
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005510 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005511
Chris Masond3977122009-01-05 21:25:51 -05005512 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005513 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005514 WARN_ON(!PageUptodate(page));
5515
5516 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005517 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005518 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005519
5520 src += cur;
5521 len -= cur;
5522 offset = 0;
5523 i++;
5524 }
5525}
Chris Masond1310b22008-01-24 16:13:08 -05005526
5527void memset_extent_buffer(struct extent_buffer *eb, char c,
5528 unsigned long start, unsigned long len)
5529{
5530 size_t cur;
5531 size_t offset;
5532 struct page *page;
5533 char *kaddr;
5534 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5535 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5536
5537 WARN_ON(start > eb->len);
5538 WARN_ON(start + len > eb->start + eb->len);
5539
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005540 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005541
Chris Masond3977122009-01-05 21:25:51 -05005542 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005543 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005544 WARN_ON(!PageUptodate(page));
5545
5546 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005547 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005548 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005549
5550 len -= cur;
5551 offset = 0;
5552 i++;
5553 }
5554}
Chris Masond1310b22008-01-24 16:13:08 -05005555
5556void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5557 unsigned long dst_offset, unsigned long src_offset,
5558 unsigned long len)
5559{
5560 u64 dst_len = dst->len;
5561 size_t cur;
5562 size_t offset;
5563 struct page *page;
5564 char *kaddr;
5565 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5566 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5567
5568 WARN_ON(src->len != dst_len);
5569
5570 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005571 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005572
Chris Masond3977122009-01-05 21:25:51 -05005573 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005574 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005575 WARN_ON(!PageUptodate(page));
5576
5577 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5578
Chris Masona6591712011-07-19 12:04:14 -04005579 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005580 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005581
5582 src_offset += cur;
5583 len -= cur;
5584 offset = 0;
5585 i++;
5586 }
5587}
Chris Masond1310b22008-01-24 16:13:08 -05005588
Sergei Trofimovich33872062011-04-11 21:52:52 +00005589static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5590{
5591 unsigned long distance = (src > dst) ? src - dst : dst - src;
5592 return distance < len;
5593}
5594
Chris Masond1310b22008-01-24 16:13:08 -05005595static void copy_pages(struct page *dst_page, struct page *src_page,
5596 unsigned long dst_off, unsigned long src_off,
5597 unsigned long len)
5598{
Chris Masona6591712011-07-19 12:04:14 -04005599 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005600 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005601 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005602
Sergei Trofimovich33872062011-04-11 21:52:52 +00005603 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005604 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005605 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005606 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005607 if (areas_overlap(src_off, dst_off, len))
5608 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005609 }
Chris Masond1310b22008-01-24 16:13:08 -05005610
Chris Mason727011e2010-08-06 13:21:20 -04005611 if (must_memmove)
5612 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5613 else
5614 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005615}
5616
5617void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5618 unsigned long src_offset, unsigned long len)
5619{
5620 size_t cur;
5621 size_t dst_off_in_page;
5622 size_t src_off_in_page;
5623 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5624 unsigned long dst_i;
5625 unsigned long src_i;
5626
5627 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005628 btrfs_err(dst->fs_info,
5629 "memmove bogus src_offset %lu move "
5630 "len %lu dst len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005631 BUG_ON(1);
5632 }
5633 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005634 btrfs_err(dst->fs_info,
5635 "memmove bogus dst_offset %lu move "
5636 "len %lu dst len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005637 BUG_ON(1);
5638 }
5639
Chris Masond3977122009-01-05 21:25:51 -05005640 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005641 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005642 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005643 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005644 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005645
5646 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5647 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5648
5649 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5650 src_off_in_page));
5651 cur = min_t(unsigned long, cur,
5652 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5653
David Sterbafb85fc92014-07-31 01:03:53 +02005654 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005655 dst_off_in_page, src_off_in_page, cur);
5656
5657 src_offset += cur;
5658 dst_offset += cur;
5659 len -= cur;
5660 }
5661}
Chris Masond1310b22008-01-24 16:13:08 -05005662
5663void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5664 unsigned long src_offset, unsigned long len)
5665{
5666 size_t cur;
5667 size_t dst_off_in_page;
5668 size_t src_off_in_page;
5669 unsigned long dst_end = dst_offset + len - 1;
5670 unsigned long src_end = src_offset + len - 1;
5671 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5672 unsigned long dst_i;
5673 unsigned long src_i;
5674
5675 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005676 btrfs_err(dst->fs_info, "memmove bogus src_offset %lu move "
5677 "len %lu len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005678 BUG_ON(1);
5679 }
5680 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005681 btrfs_err(dst->fs_info, "memmove bogus dst_offset %lu move "
5682 "len %lu len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005683 BUG_ON(1);
5684 }
Chris Mason727011e2010-08-06 13:21:20 -04005685 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005686 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5687 return;
5688 }
Chris Masond3977122009-01-05 21:25:51 -05005689 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005690 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5691 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5692
5693 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005694 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005695 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005696 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005697
5698 cur = min_t(unsigned long, len, src_off_in_page + 1);
5699 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005700 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005701 dst_off_in_page - cur + 1,
5702 src_off_in_page - cur + 1, cur);
5703
5704 dst_end -= cur;
5705 src_end -= cur;
5706 len -= cur;
5707 }
5708}
Chris Mason6af118ce2008-07-22 11:18:07 -04005709
David Sterbaf7a52a42013-04-26 14:56:29 +00005710int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005711{
Chris Mason6af118ce2008-07-22 11:18:07 -04005712 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005713
Miao Xie19fe0a82010-10-26 20:57:29 -04005714 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005715 * We need to make sure noboody is attaching this page to an eb right
5716 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005717 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005718 spin_lock(&page->mapping->private_lock);
5719 if (!PagePrivate(page)) {
5720 spin_unlock(&page->mapping->private_lock);
5721 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005722 }
5723
Josef Bacik3083ee22012-03-09 16:01:49 -05005724 eb = (struct extent_buffer *)page->private;
5725 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005726
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005727 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005728 * This is a little awful but should be ok, we need to make sure that
5729 * the eb doesn't disappear out from under us while we're looking at
5730 * this page.
5731 */
5732 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005733 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005734 spin_unlock(&eb->refs_lock);
5735 spin_unlock(&page->mapping->private_lock);
5736 return 0;
5737 }
5738 spin_unlock(&page->mapping->private_lock);
5739
Josef Bacik3083ee22012-03-09 16:01:49 -05005740 /*
5741 * If tree ref isn't set then we know the ref on this eb is a real ref,
5742 * so just return, this page will likely be freed soon anyway.
5743 */
5744 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5745 spin_unlock(&eb->refs_lock);
5746 return 0;
5747 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005748
David Sterbaf7a52a42013-04-26 14:56:29 +00005749 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005750}