blob: e55a728408bbb649f5cacca2b2d1212a4ab725f5 [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
1469int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1470{
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 }
1483 return 0;
1484}
1485
Chris Masond1310b22008-01-24 16:13:08 -05001486/*
Chris Masond1310b22008-01-24 16:13:08 -05001487 * helper function to set both pages and extents in the tree writeback
1488 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001489static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001490{
1491 unsigned long index = start >> PAGE_CACHE_SHIFT;
1492 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1493 struct page *page;
1494
1495 while (index <= end_index) {
1496 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001497 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001498 set_page_writeback(page);
1499 page_cache_release(page);
1500 index++;
1501 }
Chris Masond1310b22008-01-24 16:13:08 -05001502 return 0;
1503}
Chris Masond1310b22008-01-24 16:13:08 -05001504
Chris Masond352ac62008-09-29 15:18:18 -04001505/* find the first state struct with 'bits' set after 'start', and
1506 * return it. tree->lock must be held. NULL will returned if
1507 * nothing was found after 'start'
1508 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001509static struct extent_state *
1510find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001511 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001512{
1513 struct rb_node *node;
1514 struct extent_state *state;
1515
1516 /*
1517 * this search will find all the extents that end after
1518 * our range starts.
1519 */
1520 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001521 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001522 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001523
Chris Masond3977122009-01-05 21:25:51 -05001524 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001525 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001526 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001527 return state;
Chris Masond3977122009-01-05 21:25:51 -05001528
Chris Masond7fc6402008-02-18 12:12:38 -05001529 node = rb_next(node);
1530 if (!node)
1531 break;
1532 }
1533out:
1534 return NULL;
1535}
Chris Masond7fc6402008-02-18 12:12:38 -05001536
Chris Masond352ac62008-09-29 15:18:18 -04001537/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001538 * find the first offset in the io tree with 'bits' set. zero is
1539 * returned if we find something, and *start_ret and *end_ret are
1540 * set to reflect the state struct that was found.
1541 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001542 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001543 */
1544int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001545 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001546 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001547{
1548 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001549 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001550 int ret = 1;
1551
1552 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001553 if (cached_state && *cached_state) {
1554 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001555 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001556 n = rb_next(&state->rb_node);
1557 while (n) {
1558 state = rb_entry(n, struct extent_state,
1559 rb_node);
1560 if (state->state & bits)
1561 goto got_it;
1562 n = rb_next(n);
1563 }
1564 free_extent_state(*cached_state);
1565 *cached_state = NULL;
1566 goto out;
1567 }
1568 free_extent_state(*cached_state);
1569 *cached_state = NULL;
1570 }
1571
Xiao Guangrong69261c42011-07-14 03:19:45 +00001572 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001573got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001574 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001575 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001576 *start_ret = state->start;
1577 *end_ret = state->end;
1578 ret = 0;
1579 }
Josef Bacike6138872012-09-27 17:07:30 -04001580out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001581 spin_unlock(&tree->lock);
1582 return ret;
1583}
1584
1585/*
Chris Masond352ac62008-09-29 15:18:18 -04001586 * find a contiguous range of bytes in the file marked as delalloc, not
1587 * more than 'max_bytes'. start and end are used to return the range,
1588 *
1589 * 1 is returned if we find something, 0 if nothing was in the tree
1590 */
Chris Masonc8b97812008-10-29 14:49:59 -04001591static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001592 u64 *start, u64 *end, u64 max_bytes,
1593 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001594{
1595 struct rb_node *node;
1596 struct extent_state *state;
1597 u64 cur_start = *start;
1598 u64 found = 0;
1599 u64 total_bytes = 0;
1600
Chris Masoncad321a2008-12-17 14:51:42 -05001601 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001602
Chris Masond1310b22008-01-24 16:13:08 -05001603 /*
1604 * this search will find all the extents that end after
1605 * our range starts.
1606 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001607 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001608 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001609 if (!found)
1610 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001611 goto out;
1612 }
1613
Chris Masond3977122009-01-05 21:25:51 -05001614 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001615 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001616 if (found && (state->start != cur_start ||
1617 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001618 goto out;
1619 }
1620 if (!(state->state & EXTENT_DELALLOC)) {
1621 if (!found)
1622 *end = state->end;
1623 goto out;
1624 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001625 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001626 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001627 *cached_state = state;
1628 atomic_inc(&state->refs);
1629 }
Chris Masond1310b22008-01-24 16:13:08 -05001630 found++;
1631 *end = state->end;
1632 cur_start = state->end + 1;
1633 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001634 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001635 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001636 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001637 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001638 break;
1639 }
1640out:
Chris Masoncad321a2008-12-17 14:51:42 -05001641 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001642 return found;
1643}
1644
Jeff Mahoney143bede2012-03-01 14:56:26 +01001645static noinline void __unlock_for_delalloc(struct inode *inode,
1646 struct page *locked_page,
1647 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001648{
1649 int ret;
1650 struct page *pages[16];
1651 unsigned long index = start >> PAGE_CACHE_SHIFT;
1652 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1653 unsigned long nr_pages = end_index - index + 1;
1654 int i;
1655
1656 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001657 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001658
Chris Masond3977122009-01-05 21:25:51 -05001659 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001660 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001661 min_t(unsigned long, nr_pages,
1662 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001663 for (i = 0; i < ret; i++) {
1664 if (pages[i] != locked_page)
1665 unlock_page(pages[i]);
1666 page_cache_release(pages[i]);
1667 }
1668 nr_pages -= ret;
1669 index += ret;
1670 cond_resched();
1671 }
Chris Masonc8b97812008-10-29 14:49:59 -04001672}
1673
1674static noinline int lock_delalloc_pages(struct inode *inode,
1675 struct page *locked_page,
1676 u64 delalloc_start,
1677 u64 delalloc_end)
1678{
1679 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1680 unsigned long start_index = index;
1681 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1682 unsigned long pages_locked = 0;
1683 struct page *pages[16];
1684 unsigned long nrpages;
1685 int ret;
1686 int i;
1687
1688 /* the caller is responsible for locking the start index */
1689 if (index == locked_page->index && index == end_index)
1690 return 0;
1691
1692 /* skip the page at the start index */
1693 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001694 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001695 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001696 min_t(unsigned long,
1697 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001698 if (ret == 0) {
1699 ret = -EAGAIN;
1700 goto done;
1701 }
1702 /* now we have an array of pages, lock them all */
1703 for (i = 0; i < ret; i++) {
1704 /*
1705 * the caller is taking responsibility for
1706 * locked_page
1707 */
Chris Mason771ed682008-11-06 22:02:51 -05001708 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001709 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001710 if (!PageDirty(pages[i]) ||
1711 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001712 ret = -EAGAIN;
1713 unlock_page(pages[i]);
1714 page_cache_release(pages[i]);
1715 goto done;
1716 }
1717 }
Chris Masonc8b97812008-10-29 14:49:59 -04001718 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001719 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001720 }
Chris Masonc8b97812008-10-29 14:49:59 -04001721 nrpages -= ret;
1722 index += ret;
1723 cond_resched();
1724 }
1725 ret = 0;
1726done:
1727 if (ret && pages_locked) {
1728 __unlock_for_delalloc(inode, locked_page,
1729 delalloc_start,
1730 ((u64)(start_index + pages_locked - 1)) <<
1731 PAGE_CACHE_SHIFT);
1732 }
1733 return ret;
1734}
1735
1736/*
1737 * find a contiguous range of bytes in the file marked as delalloc, not
1738 * more than 'max_bytes'. start and end are used to return the range,
1739 *
1740 * 1 is returned if we find something, 0 if nothing was in the tree
1741 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001742STATIC u64 find_lock_delalloc_range(struct inode *inode,
1743 struct extent_io_tree *tree,
1744 struct page *locked_page, u64 *start,
1745 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001746{
1747 u64 delalloc_start;
1748 u64 delalloc_end;
1749 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001750 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001751 int ret;
1752 int loops = 0;
1753
1754again:
1755 /* step one, find a bunch of delalloc bytes starting at start */
1756 delalloc_start = *start;
1757 delalloc_end = 0;
1758 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001759 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001760 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001761 *start = delalloc_start;
1762 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001763 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001764 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001765 }
1766
1767 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001768 * start comes from the offset of locked_page. We have to lock
1769 * pages in order, so we can't process delalloc bytes before
1770 * locked_page
1771 */
Chris Masond3977122009-01-05 21:25:51 -05001772 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001773 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001774
1775 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001776 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001777 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001778 if (delalloc_end + 1 - delalloc_start > max_bytes)
1779 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001780
Chris Masonc8b97812008-10-29 14:49:59 -04001781 /* step two, lock all the pages after the page that has start */
1782 ret = lock_delalloc_pages(inode, locked_page,
1783 delalloc_start, delalloc_end);
1784 if (ret == -EAGAIN) {
1785 /* some of the pages are gone, lets avoid looping by
1786 * shortening the size of the delalloc range we're searching
1787 */
Chris Mason9655d292009-09-02 15:22:30 -04001788 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001789 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001790 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001791 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001792 loops = 1;
1793 goto again;
1794 } else {
1795 found = 0;
1796 goto out_failed;
1797 }
1798 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001799 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001800
1801 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001802 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001803
1804 /* then test to make sure it is all still delalloc */
1805 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001806 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001807 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001808 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1809 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001810 __unlock_for_delalloc(inode, locked_page,
1811 delalloc_start, delalloc_end);
1812 cond_resched();
1813 goto again;
1814 }
Chris Mason9655d292009-09-02 15:22:30 -04001815 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001816 *start = delalloc_start;
1817 *end = delalloc_end;
1818out_failed:
1819 return found;
1820}
1821
David Sterbaa9d93e12015-12-03 13:08:59 +01001822void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001823 struct page *locked_page,
David Sterba9ee49a042015-01-14 19:52:13 +01001824 unsigned clear_bits,
Josef Bacikc2790a22013-07-29 11:20:47 -04001825 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001826{
Josef Bacikc2790a22013-07-29 11:20:47 -04001827 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001828 int ret;
1829 struct page *pages[16];
1830 unsigned long index = start >> PAGE_CACHE_SHIFT;
1831 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1832 unsigned long nr_pages = end_index - index + 1;
1833 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001834
Chris Mason2c64c532009-09-02 15:04:12 -04001835 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001836 if (page_ops == 0)
David Sterbaa9d93e12015-12-03 13:08:59 +01001837 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001838
Filipe Manana704de492014-10-06 22:14:22 +01001839 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1840 mapping_set_error(inode->i_mapping, -EIO);
1841
Chris Masond3977122009-01-05 21:25:51 -05001842 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001843 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001844 min_t(unsigned long,
1845 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001846 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001847
Josef Bacikc2790a22013-07-29 11:20:47 -04001848 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001849 SetPagePrivate2(pages[i]);
1850
Chris Masonc8b97812008-10-29 14:49:59 -04001851 if (pages[i] == locked_page) {
1852 page_cache_release(pages[i]);
1853 continue;
1854 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001855 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001856 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001857 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001858 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001859 if (page_ops & PAGE_SET_ERROR)
1860 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001861 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001862 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001863 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001864 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001865 page_cache_release(pages[i]);
1866 }
1867 nr_pages -= ret;
1868 index += ret;
1869 cond_resched();
1870 }
Chris Masonc8b97812008-10-29 14:49:59 -04001871}
Chris Masonc8b97812008-10-29 14:49:59 -04001872
Chris Masond352ac62008-09-29 15:18:18 -04001873/*
1874 * count the number of bytes in the tree that have a given bit(s)
1875 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1876 * cached. The total number found is returned.
1877 */
Chris Masond1310b22008-01-24 16:13:08 -05001878u64 count_range_bits(struct extent_io_tree *tree,
1879 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001880 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001881{
1882 struct rb_node *node;
1883 struct extent_state *state;
1884 u64 cur_start = *start;
1885 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001886 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001887 int found = 0;
1888
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301889 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001890 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001891
Chris Masoncad321a2008-12-17 14:51:42 -05001892 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001893 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1894 total_bytes = tree->dirty_bytes;
1895 goto out;
1896 }
1897 /*
1898 * this search will find all the extents that end after
1899 * our range starts.
1900 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001901 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001902 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001903 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001904
Chris Masond3977122009-01-05 21:25:51 -05001905 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001906 state = rb_entry(node, struct extent_state, rb_node);
1907 if (state->start > search_end)
1908 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001909 if (contig && found && state->start > last + 1)
1910 break;
1911 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001912 total_bytes += min(search_end, state->end) + 1 -
1913 max(cur_start, state->start);
1914 if (total_bytes >= max_bytes)
1915 break;
1916 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001917 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001918 found = 1;
1919 }
Chris Masonec29ed52011-02-23 16:23:20 -05001920 last = state->end;
1921 } else if (contig && found) {
1922 break;
Chris Masond1310b22008-01-24 16:13:08 -05001923 }
1924 node = rb_next(node);
1925 if (!node)
1926 break;
1927 }
1928out:
Chris Masoncad321a2008-12-17 14:51:42 -05001929 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001930 return total_bytes;
1931}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001932
Chris Masond352ac62008-09-29 15:18:18 -04001933/*
1934 * set the private field for a given byte offset in the tree. If there isn't
1935 * an extent_state there already, this does nothing.
1936 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001937static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001938{
1939 struct rb_node *node;
1940 struct extent_state *state;
1941 int ret = 0;
1942
Chris Masoncad321a2008-12-17 14:51:42 -05001943 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001944 /*
1945 * this search will find all the extents that end after
1946 * our range starts.
1947 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001948 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001949 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001950 ret = -ENOENT;
1951 goto out;
1952 }
1953 state = rb_entry(node, struct extent_state, rb_node);
1954 if (state->start != start) {
1955 ret = -ENOENT;
1956 goto out;
1957 }
1958 state->private = private;
1959out:
Chris Masoncad321a2008-12-17 14:51:42 -05001960 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001961 return ret;
1962}
1963
1964int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1965{
1966 struct rb_node *node;
1967 struct extent_state *state;
1968 int ret = 0;
1969
Chris Masoncad321a2008-12-17 14:51:42 -05001970 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001971 /*
1972 * this search will find all the extents that end after
1973 * our range starts.
1974 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001975 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001976 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001977 ret = -ENOENT;
1978 goto out;
1979 }
1980 state = rb_entry(node, struct extent_state, rb_node);
1981 if (state->start != start) {
1982 ret = -ENOENT;
1983 goto out;
1984 }
1985 *private = state->private;
1986out:
Chris Masoncad321a2008-12-17 14:51:42 -05001987 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001988 return ret;
1989}
1990
1991/*
1992 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001993 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001994 * has the bits set. Otherwise, 1 is returned if any bit in the
1995 * range is found set.
1996 */
1997int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001998 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001999{
2000 struct extent_state *state = NULL;
2001 struct rb_node *node;
2002 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002003
Chris Masoncad321a2008-12-17 14:51:42 -05002004 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01002005 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04002006 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04002007 node = &cached->rb_node;
2008 else
2009 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05002010 while (node && start <= end) {
2011 state = rb_entry(node, struct extent_state, rb_node);
2012
2013 if (filled && state->start > start) {
2014 bitset = 0;
2015 break;
2016 }
2017
2018 if (state->start > end)
2019 break;
2020
2021 if (state->state & bits) {
2022 bitset = 1;
2023 if (!filled)
2024 break;
2025 } else if (filled) {
2026 bitset = 0;
2027 break;
2028 }
Chris Mason46562cec2009-09-23 20:23:16 -04002029
2030 if (state->end == (u64)-1)
2031 break;
2032
Chris Masond1310b22008-01-24 16:13:08 -05002033 start = state->end + 1;
2034 if (start > end)
2035 break;
2036 node = rb_next(node);
2037 if (!node) {
2038 if (filled)
2039 bitset = 0;
2040 break;
2041 }
2042 }
Chris Masoncad321a2008-12-17 14:51:42 -05002043 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05002044 return bitset;
2045}
Chris Masond1310b22008-01-24 16:13:08 -05002046
2047/*
2048 * helper function to set a given page up to date if all the
2049 * extents in the tree for that page are up to date
2050 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002051static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05002052{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002053 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002054 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04002055 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05002056 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002057}
2058
Miao Xie8b110e32014-09-12 18:44:03 +08002059int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002060{
2061 int ret;
2062 int err = 0;
2063 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2064
2065 set_state_private(failure_tree, rec->start, 0);
2066 ret = clear_extent_bits(failure_tree, rec->start,
2067 rec->start + rec->len - 1,
2068 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2069 if (ret)
2070 err = ret;
2071
David Woodhouse53b381b2013-01-29 18:40:14 -05002072 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
2073 rec->start + rec->len - 1,
2074 EXTENT_DAMAGED, GFP_NOFS);
2075 if (ret && !err)
2076 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002077
2078 kfree(rec);
2079 return err;
2080}
2081
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002082/*
2083 * this bypasses the standard btrfs submit functions deliberately, as
2084 * the standard behavior is to write all copies in a raid setup. here we only
2085 * want to write the one bad copy. so we do the mapping for ourselves and issue
2086 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002087 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002088 * actually prevents the read that triggered the error from finishing.
2089 * currently, there can be no more than two copies of every data bit. thus,
2090 * exactly one rewrite is required.
2091 */
Miao Xie1203b682014-09-12 18:44:01 +08002092int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2093 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002094{
Miao Xie1203b682014-09-12 18:44:01 +08002095 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002096 struct bio *bio;
2097 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002098 u64 map_length = 0;
2099 u64 sector;
2100 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002101 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002102 int ret;
2103
Ilya Dryomov908960c2013-11-03 19:06:39 +02002104 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002105 BUG_ON(!mirror_num);
2106
David Woodhouse53b381b2013-01-29 18:40:14 -05002107 /* we can't repair anything in raid56 yet */
2108 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2109 return 0;
2110
Chris Mason9be33952013-05-17 18:30:14 -04002111 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002112 if (!bio)
2113 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002114 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002115 map_length = length;
2116
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002117 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002118 &map_length, &bbio, mirror_num);
2119 if (ret) {
2120 bio_put(bio);
2121 return -EIO;
2122 }
2123 BUG_ON(mirror_num != bbio->mirror_num);
2124 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002125 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002126 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002127 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002128 if (!dev || !dev->bdev || !dev->writeable) {
2129 bio_put(bio);
2130 return -EIO;
2131 }
2132 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002133 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002134
Kent Overstreet33879d42013-11-23 22:33:32 -08002135 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002136 /* try to remap that extent elsewhere? */
2137 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002138 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002139 return -EIO;
2140 }
2141
David Sterbab14af3b2015-10-08 10:43:10 +02002142 btrfs_info_rl_in_rcu(fs_info,
2143 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Miao Xie1203b682014-09-12 18:44:01 +08002144 btrfs_ino(inode), start,
2145 rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002146 bio_put(bio);
2147 return 0;
2148}
2149
Josef Bacikea466792012-03-26 21:57:36 -04002150int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2151 int mirror_num)
2152{
Josef Bacikea466792012-03-26 21:57:36 -04002153 u64 start = eb->start;
2154 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002155 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002156
Ilya Dryomov908960c2013-11-03 19:06:39 +02002157 if (root->fs_info->sb->s_flags & MS_RDONLY)
2158 return -EROFS;
2159
Josef Bacikea466792012-03-26 21:57:36 -04002160 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002161 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002162
2163 ret = repair_io_failure(root->fs_info->btree_inode, start,
2164 PAGE_CACHE_SIZE, start, p,
2165 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002166 if (ret)
2167 break;
2168 start += PAGE_CACHE_SIZE;
2169 }
2170
2171 return ret;
2172}
2173
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002174/*
2175 * each time an IO finishes, we do a fast check in the IO failure tree
2176 * to see if we need to process or clean up an io_failure_record
2177 */
Miao Xie8b110e32014-09-12 18:44:03 +08002178int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2179 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002180{
2181 u64 private;
2182 u64 private_failure;
2183 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002184 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002185 struct extent_state *state;
2186 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002187 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002188
2189 private = 0;
2190 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2191 (u64)-1, 1, EXTENT_DIRTY, 0);
2192 if (!ret)
2193 return 0;
2194
2195 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2196 &private_failure);
2197 if (ret)
2198 return 0;
2199
2200 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2201 BUG_ON(!failrec->this_mirror);
2202
2203 if (failrec->in_validation) {
2204 /* there was no real error, just free the record */
2205 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2206 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002207 goto out;
2208 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002209 if (fs_info->sb->s_flags & MS_RDONLY)
2210 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002211
2212 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2213 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2214 failrec->start,
2215 EXTENT_LOCKED);
2216 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2217
Miao Xie883d0de2013-07-25 19:22:35 +08002218 if (state && state->start <= failrec->start &&
2219 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002220 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2221 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002222 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002223 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002224 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002225 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002226 }
2227 }
2228
2229out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002230 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002231
Miao Xie454ff3d2014-09-12 18:43:58 +08002232 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002233}
2234
Miao Xief6124962014-09-12 18:44:04 +08002235/*
2236 * Can be called when
2237 * - hold extent lock
2238 * - under ordered extent
2239 * - the inode is freeing
2240 */
2241void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2242{
2243 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2244 struct io_failure_record *failrec;
2245 struct extent_state *state, *next;
2246
2247 if (RB_EMPTY_ROOT(&failure_tree->state))
2248 return;
2249
2250 spin_lock(&failure_tree->lock);
2251 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2252 while (state) {
2253 if (state->start > end)
2254 break;
2255
2256 ASSERT(state->end <= end);
2257
2258 next = next_state(state);
2259
Satoru Takeuchi6e1103a2014-12-25 18:21:41 +09002260 failrec = (struct io_failure_record *)(unsigned long)state->private;
Miao Xief6124962014-09-12 18:44:04 +08002261 free_extent_state(state);
2262 kfree(failrec);
2263
2264 state = next;
2265 }
2266 spin_unlock(&failure_tree->lock);
2267}
2268
Miao Xie2fe63032014-09-12 18:43:59 +08002269int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2270 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002271{
Miao Xie2fe63032014-09-12 18:43:59 +08002272 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002273 u64 private;
2274 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002275 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2276 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2277 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002278 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002279 u64 logical;
2280
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002281 ret = get_state_private(failure_tree, start, &private);
2282 if (ret) {
2283 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2284 if (!failrec)
2285 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002286
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002287 failrec->start = start;
2288 failrec->len = end - start + 1;
2289 failrec->this_mirror = 0;
2290 failrec->bio_flags = 0;
2291 failrec->in_validation = 0;
2292
2293 read_lock(&em_tree->lock);
2294 em = lookup_extent_mapping(em_tree, start, failrec->len);
2295 if (!em) {
2296 read_unlock(&em_tree->lock);
2297 kfree(failrec);
2298 return -EIO;
2299 }
2300
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002301 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002302 free_extent_map(em);
2303 em = NULL;
2304 }
2305 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002306 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002307 kfree(failrec);
2308 return -EIO;
2309 }
Miao Xie2fe63032014-09-12 18:43:59 +08002310
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002311 logical = start - em->start;
2312 logical = em->block_start + logical;
2313 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2314 logical = em->block_start;
2315 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2316 extent_set_compress_type(&failrec->bio_flags,
2317 em->compress_type);
2318 }
Miao Xie2fe63032014-09-12 18:43:59 +08002319
2320 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2321 logical, start, failrec->len);
2322
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002323 failrec->logical = logical;
2324 free_extent_map(em);
2325
2326 /* set the bits in the private failure tree */
2327 ret = set_extent_bits(failure_tree, start, end,
2328 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2329 if (ret >= 0)
2330 ret = set_state_private(failure_tree, start,
2331 (u64)(unsigned long)failrec);
2332 /* set the bits in the inode's tree */
2333 if (ret >= 0)
2334 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2335 GFP_NOFS);
2336 if (ret < 0) {
2337 kfree(failrec);
2338 return ret;
2339 }
2340 } else {
2341 failrec = (struct io_failure_record *)(unsigned long)private;
Miao Xie2fe63032014-09-12 18:43:59 +08002342 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002343 failrec->logical, failrec->start, failrec->len,
2344 failrec->in_validation);
2345 /*
2346 * when data can be on disk more than twice, add to failrec here
2347 * (e.g. with a list for failed_mirror) to make
2348 * clean_io_failure() clean all those errors at once.
2349 */
2350 }
Miao Xie2fe63032014-09-12 18:43:59 +08002351
2352 *failrec_ret = failrec;
2353
2354 return 0;
2355}
2356
2357int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2358 struct io_failure_record *failrec, int failed_mirror)
2359{
2360 int num_copies;
2361
Stefan Behrens5d964052012-11-05 14:59:07 +01002362 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2363 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002364 if (num_copies == 1) {
2365 /*
2366 * we only have a single copy of the data, so don't bother with
2367 * all the retry and error correction code that follows. no
2368 * matter what the error is, it is very likely to persist.
2369 */
Miao Xie2fe63032014-09-12 18:43:59 +08002370 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002371 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002372 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002373 }
2374
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002375 /*
2376 * there are two premises:
2377 * a) deliver good data to the caller
2378 * b) correct the bad sectors on disk
2379 */
2380 if (failed_bio->bi_vcnt > 1) {
2381 /*
2382 * to fulfill b), we need to know the exact failing sectors, as
2383 * we don't want to rewrite any more than the failed ones. thus,
2384 * we need separate read requests for the failed bio
2385 *
2386 * if the following BUG_ON triggers, our validation request got
2387 * merged. we need separate requests for our algorithm to work.
2388 */
2389 BUG_ON(failrec->in_validation);
2390 failrec->in_validation = 1;
2391 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002392 } else {
2393 /*
2394 * we're ready to fulfill a) and b) alongside. get a good copy
2395 * of the failed sector and if we succeed, we have setup
2396 * everything for repair_io_failure to do the rest for us.
2397 */
2398 if (failrec->in_validation) {
2399 BUG_ON(failrec->this_mirror != failed_mirror);
2400 failrec->in_validation = 0;
2401 failrec->this_mirror = 0;
2402 }
2403 failrec->failed_mirror = failed_mirror;
2404 failrec->this_mirror++;
2405 if (failrec->this_mirror == failed_mirror)
2406 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002407 }
2408
Miao Xiefacc8a22013-07-25 19:22:34 +08002409 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002410 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002411 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002412 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002413 }
2414
Miao Xie2fe63032014-09-12 18:43:59 +08002415 return 1;
2416}
2417
2418
2419struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2420 struct io_failure_record *failrec,
2421 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002422 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002423{
2424 struct bio *bio;
2425 struct btrfs_io_bio *btrfs_failed_bio;
2426 struct btrfs_io_bio *btrfs_bio;
2427
Chris Mason9be33952013-05-17 18:30:14 -04002428 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002429 if (!bio)
2430 return NULL;
2431
2432 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002433 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002434 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002435 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002436 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002437
Miao Xiefacc8a22013-07-25 19:22:34 +08002438 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2439 if (btrfs_failed_bio->csum) {
2440 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2441 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2442
2443 btrfs_bio = btrfs_io_bio(bio);
2444 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002445 icsum *= csum_size;
2446 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a22013-07-25 19:22:34 +08002447 csum_size);
2448 }
2449
Miao Xie2fe63032014-09-12 18:43:59 +08002450 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002451
Miao Xie2fe63032014-09-12 18:43:59 +08002452 return bio;
2453}
2454
2455/*
2456 * this is a generic handler for readpage errors (default
2457 * readpage_io_failed_hook). if other copies exist, read those and write back
2458 * good data to the failed position. does not investigate in remapping the
2459 * failed extent elsewhere, hoping the device will be smart enough to do this as
2460 * needed
2461 */
2462
2463static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2464 struct page *page, u64 start, u64 end,
2465 int failed_mirror)
2466{
2467 struct io_failure_record *failrec;
2468 struct inode *inode = page->mapping->host;
2469 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2470 struct bio *bio;
2471 int read_mode;
2472 int ret;
2473
2474 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2475
2476 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2477 if (ret)
2478 return ret;
2479
2480 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2481 if (!ret) {
2482 free_io_failure(inode, failrec);
2483 return -EIO;
2484 }
2485
2486 if (failed_bio->bi_vcnt > 1)
2487 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2488 else
2489 read_mode = READ_SYNC;
2490
2491 phy_offset >>= inode->i_sb->s_blocksize_bits;
2492 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2493 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002494 (int)phy_offset, failed_bio->bi_end_io,
2495 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002496 if (!bio) {
2497 free_io_failure(inode, failrec);
2498 return -EIO;
2499 }
2500
2501 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2502 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002503
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002504 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2505 failrec->this_mirror,
2506 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002507 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002508 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002509 bio_put(bio);
2510 }
2511
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002512 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002513}
2514
Chris Masond1310b22008-01-24 16:13:08 -05002515/* lots and lots of room for performance fixes in the end_bio funcs */
2516
David Sterbab5227c02015-12-03 13:08:59 +01002517void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002518{
2519 int uptodate = (err == 0);
2520 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002521 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002522
2523 tree = &BTRFS_I(page->mapping->host)->io_tree;
2524
2525 if (tree->ops && tree->ops->writepage_end_io_hook) {
2526 ret = tree->ops->writepage_end_io_hook(page, start,
2527 end, NULL, uptodate);
2528 if (ret)
2529 uptodate = 0;
2530 }
2531
Jeff Mahoney87826df2012-02-15 16:23:57 +01002532 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002533 ClearPageUptodate(page);
2534 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002535 ret = ret < 0 ? ret : -EIO;
2536 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002537 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002538}
2539
Chris Masond1310b22008-01-24 16:13:08 -05002540/*
2541 * after a writepage IO is done, we need to:
2542 * clear the uptodate bits on error
2543 * clear the writeback bits in the extent tree for this IO
2544 * end_page_writeback if the page has no more pending IO
2545 *
2546 * Scheduling is not allowed, so the extent state tree is expected
2547 * to have one and only one object corresponding to this IO.
2548 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002549static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002550{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002551 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002552 u64 start;
2553 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002554 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002555
Kent Overstreet2c30c712013-11-07 12:20:26 -08002556 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002557 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002558
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002559 /* We always issue full-page reads, but if some block
2560 * in a page fails to read, blk_update_request() will
2561 * advance bv_offset and adjust bv_len to compensate.
2562 * Print a warning for nonzero offsets, and an error
2563 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002564 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2565 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2566 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2567 "partial page write in btrfs with offset %u and length %u",
2568 bvec->bv_offset, bvec->bv_len);
2569 else
2570 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2571 "incomplete page write in btrfs with offset %u and "
2572 "length %u",
2573 bvec->bv_offset, bvec->bv_len);
2574 }
Chris Masond1310b22008-01-24 16:13:08 -05002575
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002576 start = page_offset(page);
2577 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002578
David Sterbab5227c02015-12-03 13:08:59 +01002579 end_extent_writepage(page, bio->bi_error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002580 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002581 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002582
Chris Masond1310b22008-01-24 16:13:08 -05002583 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002584}
2585
Miao Xie883d0de2013-07-25 19:22:35 +08002586static void
2587endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2588 int uptodate)
2589{
2590 struct extent_state *cached = NULL;
2591 u64 end = start + len - 1;
2592
2593 if (uptodate && tree->track_uptodate)
2594 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2595 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2596}
2597
Chris Masond1310b22008-01-24 16:13:08 -05002598/*
2599 * after a readpage IO is done, we need to:
2600 * clear the uptodate bits on error
2601 * set the uptodate bits if things worked
2602 * set the page up to date if all extents in the tree are uptodate
2603 * clear the lock bit in the extent tree
2604 * unlock the page if there are no other extents locked for it
2605 *
2606 * Scheduling is not allowed, so the extent state tree is expected
2607 * to have one and only one object corresponding to this IO.
2608 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002609static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002610{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002611 struct bio_vec *bvec;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002612 int uptodate = !bio->bi_error;
Miao Xiefacc8a22013-07-25 19:22:34 +08002613 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002614 struct extent_io_tree *tree;
Miao Xiefacc8a22013-07-25 19:22:34 +08002615 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002616 u64 start;
2617 u64 end;
Miao Xiefacc8a22013-07-25 19:22:34 +08002618 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002619 u64 extent_start = 0;
2620 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002621 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002622 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002623 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002624
Kent Overstreet2c30c712013-11-07 12:20:26 -08002625 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002626 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002627 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002628
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002629 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002630 "mirror=%u\n", (u64)bio->bi_iter.bi_sector,
2631 bio->bi_error, io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002632 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002633
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002634 /* We always issue full-page reads, but if some block
2635 * in a page fails to read, blk_update_request() will
2636 * advance bv_offset and adjust bv_len to compensate.
2637 * Print a warning for nonzero offsets, and an error
2638 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002639 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2640 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2641 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2642 "partial page read in btrfs with offset %u and length %u",
2643 bvec->bv_offset, bvec->bv_len);
2644 else
2645 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2646 "incomplete page read in btrfs with offset %u and "
2647 "length %u",
2648 bvec->bv_offset, bvec->bv_len);
2649 }
Chris Masond1310b22008-01-24 16:13:08 -05002650
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002651 start = page_offset(page);
2652 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a22013-07-25 19:22:34 +08002653 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002654
Chris Mason9be33952013-05-17 18:30:14 -04002655 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002656 if (likely(uptodate && tree->ops &&
2657 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a22013-07-25 19:22:34 +08002658 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2659 page, start, end,
2660 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002661 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002662 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002663 else
Miao Xie1203b682014-09-12 18:44:01 +08002664 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002665 }
Josef Bacikea466792012-03-26 21:57:36 -04002666
Miao Xief2a09da2013-07-25 19:22:33 +08002667 if (likely(uptodate))
2668 goto readpage_ok;
2669
2670 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002671 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002672 if (!ret && !bio->bi_error)
Josef Bacikea466792012-03-26 21:57:36 -04002673 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002674 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002675 /*
2676 * The generic bio_readpage_error handles errors the
2677 * following way: If possible, new read requests are
2678 * created and submitted and will end up in
2679 * end_bio_extent_readpage as well (if we're lucky, not
2680 * in the !uptodate case). In that case it returns 0 and
2681 * we just go on with the next page in our bio. If it
2682 * can't handle the error it will return -EIO and we
2683 * remain responsible for that page.
2684 */
Miao Xiefacc8a22013-07-25 19:22:34 +08002685 ret = bio_readpage_error(bio, offset, page, start, end,
2686 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002687 if (ret == 0) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002688 uptodate = !bio->bi_error;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002689 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002690 continue;
2691 }
2692 }
Miao Xief2a09da2013-07-25 19:22:33 +08002693readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002694 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002695 loff_t i_size = i_size_read(inode);
2696 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002697 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002698
2699 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002700 off = i_size & (PAGE_CACHE_SIZE-1);
2701 if (page->index == end_index && off)
2702 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002703 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002704 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002705 ClearPageUptodate(page);
2706 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002707 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002708 unlock_page(page);
Miao Xiefacc8a22013-07-25 19:22:34 +08002709 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002710
2711 if (unlikely(!uptodate)) {
2712 if (extent_len) {
2713 endio_readpage_release_extent(tree,
2714 extent_start,
2715 extent_len, 1);
2716 extent_start = 0;
2717 extent_len = 0;
2718 }
2719 endio_readpage_release_extent(tree, start,
2720 end - start + 1, 0);
2721 } else if (!extent_len) {
2722 extent_start = start;
2723 extent_len = end + 1 - start;
2724 } else if (extent_start + extent_len == start) {
2725 extent_len += end + 1 - start;
2726 } else {
2727 endio_readpage_release_extent(tree, extent_start,
2728 extent_len, uptodate);
2729 extent_start = start;
2730 extent_len = end + 1 - start;
2731 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002732 }
Chris Masond1310b22008-01-24 16:13:08 -05002733
Miao Xie883d0de2013-07-25 19:22:35 +08002734 if (extent_len)
2735 endio_readpage_release_extent(tree, extent_start, extent_len,
2736 uptodate);
Miao Xiefacc8a22013-07-25 19:22:34 +08002737 if (io_bio->end_io)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002738 io_bio->end_io(io_bio, bio->bi_error);
Chris Masond1310b22008-01-24 16:13:08 -05002739 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002740}
2741
Chris Mason9be33952013-05-17 18:30:14 -04002742/*
2743 * this allocates from the btrfs_bioset. We're returning a bio right now
2744 * but you can call btrfs_io_bio for the appropriate container_of magic
2745 */
Miao Xie88f794e2010-11-22 03:02:55 +00002746struct bio *
2747btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2748 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002749{
Miao Xiefacc8a22013-07-25 19:22:34 +08002750 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002751 struct bio *bio;
2752
Chris Mason9be33952013-05-17 18:30:14 -04002753 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002754
2755 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002756 while (!bio && (nr_vecs /= 2)) {
2757 bio = bio_alloc_bioset(gfp_flags,
2758 nr_vecs, btrfs_bioset);
2759 }
Chris Masond1310b22008-01-24 16:13:08 -05002760 }
2761
2762 if (bio) {
2763 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002764 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a22013-07-25 19:22:34 +08002765 btrfs_bio = btrfs_io_bio(bio);
2766 btrfs_bio->csum = NULL;
2767 btrfs_bio->csum_allocated = NULL;
2768 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002769 }
2770 return bio;
2771}
2772
Chris Mason9be33952013-05-17 18:30:14 -04002773struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2774{
Miao Xie23ea8e52014-09-12 18:43:54 +08002775 struct btrfs_io_bio *btrfs_bio;
2776 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002777
Miao Xie23ea8e52014-09-12 18:43:54 +08002778 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2779 if (new) {
2780 btrfs_bio = btrfs_io_bio(new);
2781 btrfs_bio->csum = NULL;
2782 btrfs_bio->csum_allocated = NULL;
2783 btrfs_bio->end_io = NULL;
Chris Mason3a9508b2015-08-21 10:05:39 -07002784
2785#ifdef CONFIG_BLK_CGROUP
Chris Masonda2f0f72015-07-02 13:57:22 -07002786 /* FIXME, put this into bio_clone_bioset */
2787 if (bio->bi_css)
2788 bio_associate_blkcg(new, bio->bi_css);
Chris Mason3a9508b2015-08-21 10:05:39 -07002789#endif
Miao Xie23ea8e52014-09-12 18:43:54 +08002790 }
2791 return new;
2792}
Chris Mason9be33952013-05-17 18:30:14 -04002793
2794/* this also allocates from the btrfs_bioset */
2795struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2796{
Miao Xiefacc8a22013-07-25 19:22:34 +08002797 struct btrfs_io_bio *btrfs_bio;
2798 struct bio *bio;
2799
2800 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2801 if (bio) {
2802 btrfs_bio = btrfs_io_bio(bio);
2803 btrfs_bio->csum = NULL;
2804 btrfs_bio->csum_allocated = NULL;
2805 btrfs_bio->end_io = NULL;
2806 }
2807 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002808}
2809
2810
Jeff Mahoney355808c2011-10-03 23:23:14 -04002811static int __must_check submit_one_bio(int rw, struct bio *bio,
2812 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002813{
Chris Masond1310b22008-01-24 16:13:08 -05002814 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002815 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2816 struct page *page = bvec->bv_page;
2817 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002818 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002819
Miao Xie4eee4fa2012-12-21 09:17:45 +00002820 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002821
David Woodhouse902b22f2008-08-20 08:51:49 -04002822 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002823
2824 bio_get(bio);
2825
Chris Mason065631f2008-02-20 12:07:25 -05002826 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002827 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002828 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002829 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002830 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002831
Chris Masond1310b22008-01-24 16:13:08 -05002832 bio_put(bio);
2833 return ret;
2834}
2835
David Woodhouse64a16702009-07-15 23:29:37 +01002836static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002837 unsigned long offset, size_t size, struct bio *bio,
2838 unsigned long bio_flags)
2839{
2840 int ret = 0;
2841 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002842 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002843 bio_flags);
2844 BUG_ON(ret < 0);
2845 return ret;
2846
2847}
2848
Chris Masond1310b22008-01-24 16:13:08 -05002849static int submit_extent_page(int rw, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002850 struct writeback_control *wbc,
Chris Masond1310b22008-01-24 16:13:08 -05002851 struct page *page, sector_t sector,
2852 size_t size, unsigned long offset,
2853 struct block_device *bdev,
2854 struct bio **bio_ret,
2855 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002856 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002857 int mirror_num,
2858 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002859 unsigned long bio_flags,
2860 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002861{
2862 int ret = 0;
2863 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002864 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002865 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002866 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002867
2868 if (bio_ret && *bio_ret) {
2869 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002870 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002871 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002872 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002873 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002874
2875 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002876 force_bio_submit ||
David Woodhouse64a16702009-07-15 23:29:37 +01002877 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002878 bio_add_page(bio, page, page_size, offset) < page_size) {
2879 ret = submit_one_bio(rw, bio, mirror_num,
2880 prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002881 if (ret < 0) {
2882 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002883 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002884 }
Chris Masond1310b22008-01-24 16:13:08 -05002885 bio = NULL;
2886 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002887 if (wbc)
2888 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002889 return 0;
2890 }
2891 }
Chris Masonc8b97812008-10-29 14:49:59 -04002892
Kent Overstreetb54ffb72015-05-19 14:31:01 +02002893 bio = btrfs_bio_alloc(bdev, sector, BIO_MAX_PAGES,
2894 GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002895 if (!bio)
2896 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002897
Chris Masonc8b97812008-10-29 14:49:59 -04002898 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002899 bio->bi_end_io = end_io_func;
2900 bio->bi_private = tree;
Chris Masonda2f0f72015-07-02 13:57:22 -07002901 if (wbc) {
2902 wbc_init_bio(wbc, bio);
2903 wbc_account_io(wbc, page, page_size);
2904 }
Chris Mason70dec802008-01-29 09:59:12 -05002905
Chris Masond3977122009-01-05 21:25:51 -05002906 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002907 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002908 else
Chris Masonc8b97812008-10-29 14:49:59 -04002909 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002910
2911 return ret;
2912}
2913
Eric Sandeen48a3b632013-04-25 20:41:01 +00002914static void attach_extent_buffer_page(struct extent_buffer *eb,
2915 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002916{
2917 if (!PagePrivate(page)) {
2918 SetPagePrivate(page);
2919 page_cache_get(page);
2920 set_page_private(page, (unsigned long)eb);
2921 } else {
2922 WARN_ON(page->private != (unsigned long)eb);
2923 }
2924}
2925
Chris Masond1310b22008-01-24 16:13:08 -05002926void set_page_extent_mapped(struct page *page)
2927{
2928 if (!PagePrivate(page)) {
2929 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002930 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002931 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002932 }
2933}
2934
Miao Xie125bac012013-07-25 19:22:37 +08002935static struct extent_map *
2936__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2937 u64 start, u64 len, get_extent_t *get_extent,
2938 struct extent_map **em_cached)
2939{
2940 struct extent_map *em;
2941
2942 if (em_cached && *em_cached) {
2943 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002944 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002945 start < extent_map_end(em)) {
2946 atomic_inc(&em->refs);
2947 return em;
2948 }
2949
2950 free_extent_map(em);
2951 *em_cached = NULL;
2952 }
2953
2954 em = get_extent(inode, page, pg_offset, start, len, 0);
2955 if (em_cached && !IS_ERR_OR_NULL(em)) {
2956 BUG_ON(*em_cached);
2957 atomic_inc(&em->refs);
2958 *em_cached = em;
2959 }
2960 return em;
2961}
Chris Masond1310b22008-01-24 16:13:08 -05002962/*
2963 * basic readpage implementation. Locked extent state structs are inserted
2964 * into the tree that are removed when the IO is done (by the end_io
2965 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002966 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002967 */
Miao Xie99740902013-07-25 19:22:36 +08002968static int __do_readpage(struct extent_io_tree *tree,
2969 struct page *page,
2970 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002971 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002972 struct bio **bio, int mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01002973 unsigned long *bio_flags, int rw,
2974 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002975{
2976 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002977 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002978 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2979 u64 end;
2980 u64 cur = start;
2981 u64 extent_offset;
2982 u64 last_byte = i_size_read(inode);
2983 u64 block_start;
2984 u64 cur_end;
2985 sector_t sector;
2986 struct extent_map *em;
2987 struct block_device *bdev;
2988 int ret;
2989 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002990 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002991 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002992 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002993 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002994 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002995 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002996
2997 set_page_extent_mapped(page);
2998
Miao Xie99740902013-07-25 19:22:36 +08002999 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003000 if (!PageUptodate(page)) {
3001 if (cleancache_get_page(page) == 0) {
3002 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003003 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003004 goto out;
3005 }
3006 }
3007
Chris Masonc8b97812008-10-29 14:49:59 -04003008 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
3009 char *userpage;
3010 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
3011
3012 if (zero_offset) {
3013 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003014 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04003015 memset(userpage + zero_offset, 0, iosize);
3016 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003017 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04003018 }
3019 }
Chris Masond1310b22008-01-24 16:13:08 -05003020 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05003021 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
Filipe Manana005efed2015-09-14 09:09:31 +01003022 bool force_bio_submit = false;
Josef Bacikc8f2f242013-02-11 11:33:00 -05003023
Chris Masond1310b22008-01-24 16:13:08 -05003024 if (cur >= last_byte) {
3025 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003026 struct extent_state *cached = NULL;
3027
David Sterba306e16c2011-04-19 14:29:38 +02003028 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08003029 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003030 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003031 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003032 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003033 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003034 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07003035 if (!parent_locked)
3036 unlock_extent_cached(tree, cur,
3037 cur + iosize - 1,
3038 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003039 break;
3040 }
Miao Xie125bac012013-07-25 19:22:37 +08003041 em = __get_extent_map(inode, page, pg_offset, cur,
3042 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02003043 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003044 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003045 if (!parent_locked)
3046 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003047 break;
3048 }
Chris Masond1310b22008-01-24 16:13:08 -05003049 extent_offset = cur - em->start;
3050 BUG_ON(extent_map_end(em) <= cur);
3051 BUG_ON(end < cur);
3052
Li Zefan261507a02010-12-17 14:21:50 +08003053 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003054 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003055 extent_set_compress_type(&this_bio_flag,
3056 em->compress_type);
3057 }
Chris Masonc8b97812008-10-29 14:49:59 -04003058
Chris Masond1310b22008-01-24 16:13:08 -05003059 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3060 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003061 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003062 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3063 disk_io_size = em->block_len;
3064 sector = em->block_start >> 9;
3065 } else {
3066 sector = (em->block_start + extent_offset) >> 9;
3067 disk_io_size = iosize;
3068 }
Chris Masond1310b22008-01-24 16:13:08 -05003069 bdev = em->bdev;
3070 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003071 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3072 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003073
3074 /*
3075 * If we have a file range that points to a compressed extent
3076 * and it's followed by a consecutive file range that points to
3077 * to the same compressed extent (possibly with a different
3078 * offset and/or length, so it either points to the whole extent
3079 * or only part of it), we must make sure we do not submit a
3080 * single bio to populate the pages for the 2 ranges because
3081 * this makes the compressed extent read zero out the pages
3082 * belonging to the 2nd range. Imagine the following scenario:
3083 *
3084 * File layout
3085 * [0 - 8K] [8K - 24K]
3086 * | |
3087 * | |
3088 * points to extent X, points to extent X,
3089 * offset 4K, length of 8K offset 0, length 16K
3090 *
3091 * [extent X, compressed length = 4K uncompressed length = 16K]
3092 *
3093 * If the bio to read the compressed extent covers both ranges,
3094 * it will decompress extent X into the pages belonging to the
3095 * first range and then it will stop, zeroing out the remaining
3096 * pages that belong to the other range that points to extent X.
3097 * So here we make sure we submit 2 bios, one for the first
3098 * range and another one for the third range. Both will target
3099 * the same physical extent from disk, but we can't currently
3100 * make the compressed bio endio callback populate the pages
3101 * for both ranges because each compressed bio is tightly
3102 * coupled with a single extent map, and each range can have
3103 * an extent map with a different offset value relative to the
3104 * uncompressed data of our extent and different lengths. This
3105 * is a corner case so we prioritize correctness over
3106 * non-optimal behavior (submitting 2 bios for the same extent).
3107 */
3108 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3109 prev_em_start && *prev_em_start != (u64)-1 &&
3110 *prev_em_start != em->orig_start)
3111 force_bio_submit = true;
3112
3113 if (prev_em_start)
3114 *prev_em_start = em->orig_start;
3115
Chris Masond1310b22008-01-24 16:13:08 -05003116 free_extent_map(em);
3117 em = NULL;
3118
3119 /* we've found a hole, just zero and go on */
3120 if (block_start == EXTENT_MAP_HOLE) {
3121 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003122 struct extent_state *cached = NULL;
3123
Cong Wang7ac687d2011-11-25 23:14:28 +08003124 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003125 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003126 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003127 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003128
3129 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003130 &cached, GFP_NOFS);
Filipe Manana5e6ecb32015-10-13 16:36:09 +01003131 if (parent_locked)
3132 free_extent_state(cached);
3133 else
3134 unlock_extent_cached(tree, cur,
3135 cur + iosize - 1,
3136 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003137 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003138 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003139 continue;
3140 }
3141 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003142 if (test_range_bit(tree, cur, cur_end,
3143 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003144 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003145 if (!parent_locked)
3146 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003147 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003148 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003149 continue;
3150 }
Chris Mason70dec802008-01-29 09:59:12 -05003151 /* we have an inline extent but it didn't get marked up
3152 * to date. Error out
3153 */
3154 if (block_start == EXTENT_MAP_INLINE) {
3155 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003156 if (!parent_locked)
3157 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003158 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003159 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003160 continue;
3161 }
Chris Masond1310b22008-01-24 16:13:08 -05003162
Josef Bacikc8f2f242013-02-11 11:33:00 -05003163 pnr -= page->index;
Chris Masonda2f0f72015-07-02 13:57:22 -07003164 ret = submit_extent_page(rw, tree, NULL, page,
David Sterba306e16c2011-04-19 14:29:38 +02003165 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003166 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003167 end_bio_extent_readpage, mirror_num,
3168 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003169 this_bio_flag,
3170 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003171 if (!ret) {
3172 nr++;
3173 *bio_flags = this_bio_flag;
3174 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003175 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003176 if (!parent_locked)
3177 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04003178 }
Chris Masond1310b22008-01-24 16:13:08 -05003179 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003180 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003181 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003182out:
Chris Masond1310b22008-01-24 16:13:08 -05003183 if (!nr) {
3184 if (!PageError(page))
3185 SetPageUptodate(page);
3186 unlock_page(page);
3187 }
3188 return 0;
3189}
3190
Miao Xie99740902013-07-25 19:22:36 +08003191static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3192 struct page *pages[], int nr_pages,
3193 u64 start, u64 end,
3194 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003195 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003196 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003197 unsigned long *bio_flags, int rw,
3198 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003199{
3200 struct inode *inode;
3201 struct btrfs_ordered_extent *ordered;
3202 int index;
3203
3204 inode = pages[0]->mapping->host;
3205 while (1) {
3206 lock_extent(tree, start, end);
3207 ordered = btrfs_lookup_ordered_range(inode, start,
3208 end - start + 1);
3209 if (!ordered)
3210 break;
3211 unlock_extent(tree, start, end);
3212 btrfs_start_ordered_extent(inode, ordered, 1);
3213 btrfs_put_ordered_extent(ordered);
3214 }
3215
3216 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003217 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003218 mirror_num, bio_flags, rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003219 page_cache_release(pages[index]);
3220 }
3221}
3222
3223static void __extent_readpages(struct extent_io_tree *tree,
3224 struct page *pages[],
3225 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003226 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003227 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003228 unsigned long *bio_flags, int rw,
3229 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003230{
Stefan Behrens35a36212013-08-14 18:12:25 +02003231 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003232 u64 end = 0;
3233 u64 page_start;
3234 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003235 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003236
3237 for (index = 0; index < nr_pages; index++) {
3238 page_start = page_offset(pages[index]);
3239 if (!end) {
3240 start = page_start;
3241 end = start + PAGE_CACHE_SIZE - 1;
3242 first_index = index;
3243 } else if (end + 1 == page_start) {
3244 end += PAGE_CACHE_SIZE;
3245 } else {
3246 __do_contiguous_readpages(tree, &pages[first_index],
3247 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003248 end, get_extent, em_cached,
3249 bio, mirror_num, bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003250 rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003251 start = page_start;
3252 end = start + PAGE_CACHE_SIZE - 1;
3253 first_index = index;
3254 }
3255 }
3256
3257 if (end)
3258 __do_contiguous_readpages(tree, &pages[first_index],
3259 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003260 end, get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003261 mirror_num, bio_flags, rw,
3262 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003263}
3264
3265static int __extent_read_full_page(struct extent_io_tree *tree,
3266 struct page *page,
3267 get_extent_t *get_extent,
3268 struct bio **bio, int mirror_num,
3269 unsigned long *bio_flags, int rw)
3270{
3271 struct inode *inode = page->mapping->host;
3272 struct btrfs_ordered_extent *ordered;
3273 u64 start = page_offset(page);
3274 u64 end = start + PAGE_CACHE_SIZE - 1;
3275 int ret;
3276
3277 while (1) {
3278 lock_extent(tree, start, end);
3279 ordered = btrfs_lookup_ordered_extent(inode, start);
3280 if (!ordered)
3281 break;
3282 unlock_extent(tree, start, end);
3283 btrfs_start_ordered_extent(inode, ordered, 1);
3284 btrfs_put_ordered_extent(ordered);
3285 }
3286
Miao Xie125bac012013-07-25 19:22:37 +08003287 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003288 bio_flags, rw, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003289 return ret;
3290}
3291
Chris Masond1310b22008-01-24 16:13:08 -05003292int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003293 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003294{
3295 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003296 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003297 int ret;
3298
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003299 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003300 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003301 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003302 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003303 return ret;
3304}
Chris Masond1310b22008-01-24 16:13:08 -05003305
Mark Fasheh4b384312013-08-06 11:42:50 -07003306int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3307 get_extent_t *get_extent, int mirror_num)
3308{
3309 struct bio *bio = NULL;
3310 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3311 int ret;
3312
3313 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003314 &bio_flags, READ, NULL);
Mark Fasheh4b384312013-08-06 11:42:50 -07003315 if (bio)
3316 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3317 return ret;
3318}
3319
Chris Mason11c83492009-04-20 15:50:09 -04003320static noinline void update_nr_written(struct page *page,
3321 struct writeback_control *wbc,
3322 unsigned long nr_written)
3323{
3324 wbc->nr_to_write -= nr_written;
3325 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3326 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3327 page->mapping->writeback_index = page->index + nr_written;
3328}
3329
Chris Masond1310b22008-01-24 16:13:08 -05003330/*
Chris Mason40f76582014-05-21 13:35:51 -07003331 * helper for __extent_writepage, doing all of the delayed allocation setup.
3332 *
3333 * This returns 1 if our fill_delalloc function did all the work required
3334 * to write the page (copy into inline extent). In this case the IO has
3335 * been started and the page is already unlocked.
3336 *
3337 * This returns 0 if all went well (page still locked)
3338 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003339 */
Chris Mason40f76582014-05-21 13:35:51 -07003340static noinline_for_stack int writepage_delalloc(struct inode *inode,
3341 struct page *page, struct writeback_control *wbc,
3342 struct extent_page_data *epd,
3343 u64 delalloc_start,
3344 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003345{
Chris Mason40f76582014-05-21 13:35:51 -07003346 struct extent_io_tree *tree = epd->tree;
3347 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3348 u64 nr_delalloc;
3349 u64 delalloc_to_write = 0;
3350 u64 delalloc_end = 0;
3351 int ret;
3352 int page_started = 0;
3353
3354 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3355 return 0;
3356
3357 while (delalloc_end < page_end) {
3358 nr_delalloc = find_lock_delalloc_range(inode, tree,
3359 page,
3360 &delalloc_start,
3361 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003362 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003363 if (nr_delalloc == 0) {
3364 delalloc_start = delalloc_end + 1;
3365 continue;
3366 }
3367 ret = tree->ops->fill_delalloc(inode, page,
3368 delalloc_start,
3369 delalloc_end,
3370 &page_started,
3371 nr_written);
3372 /* File system has been set read-only */
3373 if (ret) {
3374 SetPageError(page);
3375 /* fill_delalloc should be return < 0 for error
3376 * but just in case, we use > 0 here meaning the
3377 * IO is started, so we don't want to return > 0
3378 * unless things are going well.
3379 */
3380 ret = ret < 0 ? ret : -EIO;
3381 goto done;
3382 }
3383 /*
3384 * delalloc_end is already one less than the total
3385 * length, so we don't subtract one from
3386 * PAGE_CACHE_SIZE
3387 */
3388 delalloc_to_write += (delalloc_end - delalloc_start +
3389 PAGE_CACHE_SIZE) >>
3390 PAGE_CACHE_SHIFT;
3391 delalloc_start = delalloc_end + 1;
3392 }
3393 if (wbc->nr_to_write < delalloc_to_write) {
3394 int thresh = 8192;
3395
3396 if (delalloc_to_write < thresh * 2)
3397 thresh = delalloc_to_write;
3398 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3399 thresh);
3400 }
3401
3402 /* did the fill delalloc function already unlock and start
3403 * the IO?
3404 */
3405 if (page_started) {
3406 /*
3407 * we've unlocked the page, so we can't update
3408 * the mapping's writeback index, just update
3409 * nr_to_write.
3410 */
3411 wbc->nr_to_write -= *nr_written;
3412 return 1;
3413 }
3414
3415 ret = 0;
3416
3417done:
3418 return ret;
3419}
3420
3421/*
3422 * helper for __extent_writepage. This calls the writepage start hooks,
3423 * and does the loop to map the page into extents and bios.
3424 *
3425 * We return 1 if the IO is started and the page is unlocked,
3426 * 0 if all went well (page still locked)
3427 * < 0 if there were errors (page still locked)
3428 */
3429static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3430 struct page *page,
3431 struct writeback_control *wbc,
3432 struct extent_page_data *epd,
3433 loff_t i_size,
3434 unsigned long nr_written,
3435 int write_flags, int *nr_ret)
3436{
Chris Masond1310b22008-01-24 16:13:08 -05003437 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003438 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003439 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3440 u64 end;
3441 u64 cur = start;
3442 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003443 u64 block_start;
3444 u64 iosize;
3445 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003446 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003447 struct extent_map *em;
3448 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003449 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003450 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003451 int ret = 0;
3452 int nr = 0;
3453 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003454
Chris Mason247e7432008-07-17 12:53:51 -04003455 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003456 ret = tree->ops->writepage_start_hook(page, start,
3457 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003458 if (ret) {
3459 /* Fixup worker will requeue */
3460 if (ret == -EBUSY)
3461 wbc->pages_skipped++;
3462 else
3463 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003464
Chris Mason11c83492009-04-20 15:50:09 -04003465 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003466 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003467 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003468 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003469 }
3470 }
3471
Chris Mason11c83492009-04-20 15:50:09 -04003472 /*
3473 * we don't want to touch the inode after unlocking the page,
3474 * so we update the mapping writeback index now
3475 */
3476 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003477
Chris Masond1310b22008-01-24 16:13:08 -05003478 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003479 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003480 if (tree->ops && tree->ops->writepage_end_io_hook)
3481 tree->ops->writepage_end_io_hook(page, start,
3482 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003483 goto done;
3484 }
3485
Chris Masond1310b22008-01-24 16:13:08 -05003486 blocksize = inode->i_sb->s_blocksize;
3487
3488 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003489 u64 em_end;
3490 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003491 if (tree->ops && tree->ops->writepage_end_io_hook)
3492 tree->ops->writepage_end_io_hook(page, cur,
3493 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003494 break;
3495 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003496 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003497 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003498 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003499 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003500 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003501 break;
3502 }
3503
3504 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003505 em_end = extent_map_end(em);
3506 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003507 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003508 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003509 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003510 sector = (em->block_start + extent_offset) >> 9;
3511 bdev = em->bdev;
3512 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003513 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003514 free_extent_map(em);
3515 em = NULL;
3516
Chris Masonc8b97812008-10-29 14:49:59 -04003517 /*
3518 * compressed and inline extents are written through other
3519 * paths in the FS
3520 */
3521 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003522 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003523 /*
3524 * end_io notification does not happen here for
3525 * compressed extents
3526 */
3527 if (!compressed && tree->ops &&
3528 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003529 tree->ops->writepage_end_io_hook(page, cur,
3530 cur + iosize - 1,
3531 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003532 else if (compressed) {
3533 /* we don't want to end_page_writeback on
3534 * a compressed extent. this happens
3535 * elsewhere
3536 */
3537 nr++;
3538 }
3539
3540 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003541 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003542 continue;
3543 }
Chris Masonc8b97812008-10-29 14:49:59 -04003544
Chris Masond1310b22008-01-24 16:13:08 -05003545 if (tree->ops && tree->ops->writepage_io_hook) {
3546 ret = tree->ops->writepage_io_hook(page, cur,
3547 cur + iosize - 1);
3548 } else {
3549 ret = 0;
3550 }
Chris Mason1259ab72008-05-12 13:39:03 -04003551 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003552 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003553 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003554 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003555
Chris Masond1310b22008-01-24 16:13:08 -05003556 set_range_writeback(tree, cur, cur + iosize - 1);
3557 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003558 btrfs_err(BTRFS_I(inode)->root->fs_info,
3559 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003560 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003561 }
3562
Chris Masonda2f0f72015-07-02 13:57:22 -07003563 ret = submit_extent_page(write_flags, tree, wbc, page,
Chris Masonffbd5172009-04-20 15:50:09 -04003564 sector, iosize, pg_offset,
3565 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003566 end_bio_extent_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003567 0, 0, 0, false);
Chris Masond1310b22008-01-24 16:13:08 -05003568 if (ret)
3569 SetPageError(page);
3570 }
3571 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003572 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003573 nr++;
3574 }
3575done:
Chris Mason40f76582014-05-21 13:35:51 -07003576 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003577
Chris Mason11c83492009-04-20 15:50:09 -04003578done_unlocked:
3579
Chris Mason2c64c532009-09-02 15:04:12 -04003580 /* drop our reference on any cached states */
3581 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003582 return ret;
3583}
3584
3585/*
3586 * the writepage semantics are similar to regular writepage. extent
3587 * records are inserted to lock ranges in the tree, and as dirty areas
3588 * are found, they are marked writeback. Then the lock bits are removed
3589 * and the end_io handler clears the writeback ranges
3590 */
3591static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3592 void *data)
3593{
3594 struct inode *inode = page->mapping->host;
3595 struct extent_page_data *epd = data;
3596 u64 start = page_offset(page);
3597 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3598 int ret;
3599 int nr = 0;
3600 size_t pg_offset = 0;
3601 loff_t i_size = i_size_read(inode);
3602 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3603 int write_flags;
3604 unsigned long nr_written = 0;
3605
3606 if (wbc->sync_mode == WB_SYNC_ALL)
3607 write_flags = WRITE_SYNC;
3608 else
3609 write_flags = WRITE;
3610
3611 trace___extent_writepage(page, inode, wbc);
3612
3613 WARN_ON(!PageLocked(page));
3614
3615 ClearPageError(page);
3616
3617 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3618 if (page->index > end_index ||
3619 (page->index == end_index && !pg_offset)) {
3620 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3621 unlock_page(page);
3622 return 0;
3623 }
3624
3625 if (page->index == end_index) {
3626 char *userpage;
3627
3628 userpage = kmap_atomic(page);
3629 memset(userpage + pg_offset, 0,
3630 PAGE_CACHE_SIZE - pg_offset);
3631 kunmap_atomic(userpage);
3632 flush_dcache_page(page);
3633 }
3634
3635 pg_offset = 0;
3636
3637 set_page_extent_mapped(page);
3638
3639 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3640 if (ret == 1)
3641 goto done_unlocked;
3642 if (ret)
3643 goto done;
3644
3645 ret = __extent_writepage_io(inode, page, wbc, epd,
3646 i_size, nr_written, write_flags, &nr);
3647 if (ret == 1)
3648 goto done_unlocked;
3649
3650done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003651 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003652 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003653 set_page_writeback(page);
3654 end_page_writeback(page);
3655 }
Filipe Manana61391d52014-05-09 17:17:40 +01003656 if (PageError(page)) {
3657 ret = ret < 0 ? ret : -EIO;
3658 end_extent_writepage(page, ret, start, page_end);
3659 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003660 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003661 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003662
3663done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003664 return 0;
3665}
3666
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003667void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003668{
NeilBrown74316202014-07-07 15:16:04 +10003669 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3670 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003671}
3672
Chris Mason0e378df2014-05-19 20:55:27 -07003673static noinline_for_stack int
3674lock_extent_buffer_for_io(struct extent_buffer *eb,
3675 struct btrfs_fs_info *fs_info,
3676 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003677{
3678 unsigned long i, num_pages;
3679 int flush = 0;
3680 int ret = 0;
3681
3682 if (!btrfs_try_tree_write_lock(eb)) {
3683 flush = 1;
3684 flush_write_bio(epd);
3685 btrfs_tree_lock(eb);
3686 }
3687
3688 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3689 btrfs_tree_unlock(eb);
3690 if (!epd->sync_io)
3691 return 0;
3692 if (!flush) {
3693 flush_write_bio(epd);
3694 flush = 1;
3695 }
Chris Masona098d8e2012-03-21 12:09:56 -04003696 while (1) {
3697 wait_on_extent_buffer_writeback(eb);
3698 btrfs_tree_lock(eb);
3699 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3700 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003701 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003702 }
3703 }
3704
Josef Bacik51561ff2012-07-20 16:25:24 -04003705 /*
3706 * We need to do this to prevent races in people who check if the eb is
3707 * under IO since we can end up having no IO bits set for a short period
3708 * of time.
3709 */
3710 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003711 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3712 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003713 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003714 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003715 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3716 -eb->len,
3717 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003718 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003719 } else {
3720 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003721 }
3722
3723 btrfs_tree_unlock(eb);
3724
3725 if (!ret)
3726 return ret;
3727
3728 num_pages = num_extent_pages(eb->start, eb->len);
3729 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003730 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003731
3732 if (!trylock_page(p)) {
3733 if (!flush) {
3734 flush_write_bio(epd);
3735 flush = 1;
3736 }
3737 lock_page(p);
3738 }
3739 }
3740
3741 return ret;
3742}
3743
3744static void end_extent_buffer_writeback(struct extent_buffer *eb)
3745{
3746 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003747 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003748 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3749}
3750
Filipe Manana656f30d2014-09-26 12:25:56 +01003751static void set_btree_ioerr(struct page *page)
3752{
3753 struct extent_buffer *eb = (struct extent_buffer *)page->private;
3754 struct btrfs_inode *btree_ino = BTRFS_I(eb->fs_info->btree_inode);
3755
3756 SetPageError(page);
3757 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3758 return;
3759
3760 /*
3761 * If writeback for a btree extent that doesn't belong to a log tree
3762 * failed, increment the counter transaction->eb_write_errors.
3763 * We do this because while the transaction is running and before it's
3764 * committing (when we call filemap_fdata[write|wait]_range against
3765 * the btree inode), we might have
3766 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3767 * returns an error or an error happens during writeback, when we're
3768 * committing the transaction we wouldn't know about it, since the pages
3769 * can be no longer dirty nor marked anymore for writeback (if a
3770 * subsequent modification to the extent buffer didn't happen before the
3771 * transaction commit), which makes filemap_fdata[write|wait]_range not
3772 * able to find the pages tagged with SetPageError at transaction
3773 * commit time. So if this happens we must abort the transaction,
3774 * otherwise we commit a super block with btree roots that point to
3775 * btree nodes/leafs whose content on disk is invalid - either garbage
3776 * or the content of some node/leaf from a past generation that got
3777 * cowed or deleted and is no longer valid.
3778 *
3779 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3780 * not be enough - we need to distinguish between log tree extents vs
3781 * non-log tree extents, and the next filemap_fdatawait_range() call
3782 * will catch and clear such errors in the mapping - and that call might
3783 * be from a log sync and not from a transaction commit. Also, checking
3784 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3785 * not done and would not be reliable - the eb might have been released
3786 * from memory and reading it back again means that flag would not be
3787 * set (since it's a runtime flag, not persisted on disk).
3788 *
3789 * Using the flags below in the btree inode also makes us achieve the
3790 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3791 * writeback for all dirty pages and before filemap_fdatawait_range()
3792 * is called, the writeback for all dirty pages had already finished
3793 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3794 * filemap_fdatawait_range() would return success, as it could not know
3795 * that writeback errors happened (the pages were no longer tagged for
3796 * writeback).
3797 */
3798 switch (eb->log_index) {
3799 case -1:
3800 set_bit(BTRFS_INODE_BTREE_ERR, &btree_ino->runtime_flags);
3801 break;
3802 case 0:
3803 set_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
3804 break;
3805 case 1:
3806 set_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
3807 break;
3808 default:
3809 BUG(); /* unexpected, logic error */
3810 }
3811}
3812
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003813static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003814{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003815 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003816 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003817 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003818
Kent Overstreet2c30c712013-11-07 12:20:26 -08003819 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003820 struct page *page = bvec->bv_page;
3821
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003822 eb = (struct extent_buffer *)page->private;
3823 BUG_ON(!eb);
3824 done = atomic_dec_and_test(&eb->io_pages);
3825
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003826 if (bio->bi_error ||
3827 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003828 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003829 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003830 }
3831
3832 end_page_writeback(page);
3833
3834 if (!done)
3835 continue;
3836
3837 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003838 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003839
3840 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003841}
3842
Chris Mason0e378df2014-05-19 20:55:27 -07003843static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003844 struct btrfs_fs_info *fs_info,
3845 struct writeback_control *wbc,
3846 struct extent_page_data *epd)
3847{
3848 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003849 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003850 u64 offset = eb->start;
3851 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003852 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003853 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003854 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003855
Filipe Manana656f30d2014-09-26 12:25:56 +01003856 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003857 num_pages = num_extent_pages(eb->start, eb->len);
3858 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003859 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3860 bio_flags = EXTENT_BIO_TREE_LOG;
3861
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003862 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003863 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003864
3865 clear_page_dirty_for_io(p);
3866 set_page_writeback(p);
Chris Masonda2f0f72015-07-02 13:57:22 -07003867 ret = submit_extent_page(rw, tree, wbc, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003868 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3869 -1, end_bio_extent_buffer_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003870 0, epd->bio_flags, bio_flags, false);
Josef Bacikde0022b2012-09-25 14:25:58 -04003871 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003872 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003873 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003874 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003875 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3876 end_extent_buffer_writeback(eb);
3877 ret = -EIO;
3878 break;
3879 }
3880 offset += PAGE_CACHE_SIZE;
3881 update_nr_written(p, wbc, 1);
3882 unlock_page(p);
3883 }
3884
3885 if (unlikely(ret)) {
3886 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003887 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003888 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003889 unlock_page(p);
3890 }
3891 }
3892
3893 return ret;
3894}
3895
3896int btree_write_cache_pages(struct address_space *mapping,
3897 struct writeback_control *wbc)
3898{
3899 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3900 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3901 struct extent_buffer *eb, *prev_eb = NULL;
3902 struct extent_page_data epd = {
3903 .bio = NULL,
3904 .tree = tree,
3905 .extent_locked = 0,
3906 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003907 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003908 };
3909 int ret = 0;
3910 int done = 0;
3911 int nr_to_write_done = 0;
3912 struct pagevec pvec;
3913 int nr_pages;
3914 pgoff_t index;
3915 pgoff_t end; /* Inclusive */
3916 int scanned = 0;
3917 int tag;
3918
3919 pagevec_init(&pvec, 0);
3920 if (wbc->range_cyclic) {
3921 index = mapping->writeback_index; /* Start from prev offset */
3922 end = -1;
3923 } else {
3924 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3925 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3926 scanned = 1;
3927 }
3928 if (wbc->sync_mode == WB_SYNC_ALL)
3929 tag = PAGECACHE_TAG_TOWRITE;
3930 else
3931 tag = PAGECACHE_TAG_DIRTY;
3932retry:
3933 if (wbc->sync_mode == WB_SYNC_ALL)
3934 tag_pages_for_writeback(mapping, index, end);
3935 while (!done && !nr_to_write_done && (index <= end) &&
3936 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3937 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3938 unsigned i;
3939
3940 scanned = 1;
3941 for (i = 0; i < nr_pages; i++) {
3942 struct page *page = pvec.pages[i];
3943
3944 if (!PagePrivate(page))
3945 continue;
3946
3947 if (!wbc->range_cyclic && page->index > end) {
3948 done = 1;
3949 break;
3950 }
3951
Josef Bacikb5bae262012-09-14 13:43:01 -04003952 spin_lock(&mapping->private_lock);
3953 if (!PagePrivate(page)) {
3954 spin_unlock(&mapping->private_lock);
3955 continue;
3956 }
3957
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003958 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003959
3960 /*
3961 * Shouldn't happen and normally this would be a BUG_ON
3962 * but no sense in crashing the users box for something
3963 * we can survive anyway.
3964 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303965 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003966 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003967 continue;
3968 }
3969
Josef Bacikb5bae262012-09-14 13:43:01 -04003970 if (eb == prev_eb) {
3971 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003972 continue;
3973 }
3974
Josef Bacikb5bae262012-09-14 13:43:01 -04003975 ret = atomic_inc_not_zero(&eb->refs);
3976 spin_unlock(&mapping->private_lock);
3977 if (!ret)
3978 continue;
3979
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003980 prev_eb = eb;
3981 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3982 if (!ret) {
3983 free_extent_buffer(eb);
3984 continue;
3985 }
3986
3987 ret = write_one_eb(eb, fs_info, wbc, &epd);
3988 if (ret) {
3989 done = 1;
3990 free_extent_buffer(eb);
3991 break;
3992 }
3993 free_extent_buffer(eb);
3994
3995 /*
3996 * the filesystem may choose to bump up nr_to_write.
3997 * We have to make sure to honor the new nr_to_write
3998 * at any time
3999 */
4000 nr_to_write_done = wbc->nr_to_write <= 0;
4001 }
4002 pagevec_release(&pvec);
4003 cond_resched();
4004 }
4005 if (!scanned && !done) {
4006 /*
4007 * We hit the last page and there is more work to be done: wrap
4008 * back to the start of the file
4009 */
4010 scanned = 1;
4011 index = 0;
4012 goto retry;
4013 }
4014 flush_write_bio(&epd);
4015 return ret;
4016}
4017
Chris Masond1310b22008-01-24 16:13:08 -05004018/**
4019 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
4020 * @mapping: address space structure to write
4021 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
4022 * @writepage: function called for each page
4023 * @data: data passed to writepage function
4024 *
4025 * If a page is already under I/O, write_cache_pages() skips it, even
4026 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
4027 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
4028 * and msync() need to guarantee that all the data which was dirty at the time
4029 * the call was made get new I/O started against them. If wbc->sync_mode is
4030 * WB_SYNC_ALL then we were called for data integrity and we must wait for
4031 * existing IO to complete.
4032 */
Chris Mason4bef0842008-09-08 11:18:08 -04004033static int extent_write_cache_pages(struct extent_io_tree *tree,
4034 struct address_space *mapping,
4035 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004036 writepage_t writepage, void *data,
4037 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05004038{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004039 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05004040 int ret = 0;
4041 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01004042 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004043 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004044 struct pagevec pvec;
4045 int nr_pages;
4046 pgoff_t index;
4047 pgoff_t end; /* Inclusive */
4048 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00004049 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05004050
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004051 /*
4052 * We have to hold onto the inode so that ordered extents can do their
4053 * work when the IO finishes. The alternative to this is failing to add
4054 * an ordered extent if the igrab() fails there and that is a huge pain
4055 * to deal with, so instead just hold onto the inode throughout the
4056 * writepages operation. If it fails here we are freeing up the inode
4057 * anyway and we'd rather not waste our time writing out stuff that is
4058 * going to be truncated anyway.
4059 */
4060 if (!igrab(inode))
4061 return 0;
4062
Chris Masond1310b22008-01-24 16:13:08 -05004063 pagevec_init(&pvec, 0);
4064 if (wbc->range_cyclic) {
4065 index = mapping->writeback_index; /* Start from prev offset */
4066 end = -1;
4067 } else {
4068 index = wbc->range_start >> PAGE_CACHE_SHIFT;
4069 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004070 scanned = 1;
4071 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00004072 if (wbc->sync_mode == WB_SYNC_ALL)
4073 tag = PAGECACHE_TAG_TOWRITE;
4074 else
4075 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004076retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00004077 if (wbc->sync_mode == WB_SYNC_ALL)
4078 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004079 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00004080 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
4081 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05004082 unsigned i;
4083
4084 scanned = 1;
4085 for (i = 0; i < nr_pages; i++) {
4086 struct page *page = pvec.pages[i];
4087
4088 /*
4089 * At this point we hold neither mapping->tree_lock nor
4090 * lock on the page itself: the page may be truncated or
4091 * invalidated (changing page->mapping to NULL), or even
4092 * swizzled back from swapper_space to tmpfs file
4093 * mapping
4094 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004095 if (!trylock_page(page)) {
4096 flush_fn(data);
4097 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004098 }
Chris Masond1310b22008-01-24 16:13:08 -05004099
4100 if (unlikely(page->mapping != mapping)) {
4101 unlock_page(page);
4102 continue;
4103 }
4104
4105 if (!wbc->range_cyclic && page->index > end) {
4106 done = 1;
4107 unlock_page(page);
4108 continue;
4109 }
4110
Chris Masond2c3f4f2008-11-19 12:44:22 -05004111 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05004112 if (PageWriteback(page))
4113 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05004114 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004115 }
Chris Masond1310b22008-01-24 16:13:08 -05004116
4117 if (PageWriteback(page) ||
4118 !clear_page_dirty_for_io(page)) {
4119 unlock_page(page);
4120 continue;
4121 }
4122
4123 ret = (*writepage)(page, wbc, data);
4124
4125 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4126 unlock_page(page);
4127 ret = 0;
4128 }
Filipe Manana61391d52014-05-09 17:17:40 +01004129 if (!err && ret < 0)
4130 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004131
4132 /*
4133 * the filesystem may choose to bump up nr_to_write.
4134 * We have to make sure to honor the new nr_to_write
4135 * at any time
4136 */
4137 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004138 }
4139 pagevec_release(&pvec);
4140 cond_resched();
4141 }
Filipe Manana61391d52014-05-09 17:17:40 +01004142 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05004143 /*
4144 * We hit the last page and there is more work to be done: wrap
4145 * back to the start of the file
4146 */
4147 scanned = 1;
4148 index = 0;
4149 goto retry;
4150 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004151 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01004152 return err;
Chris Masond1310b22008-01-24 16:13:08 -05004153}
Chris Masond1310b22008-01-24 16:13:08 -05004154
Chris Masonffbd5172009-04-20 15:50:09 -04004155static void flush_epd_write_bio(struct extent_page_data *epd)
4156{
4157 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004158 int rw = WRITE;
4159 int ret;
4160
Chris Masonffbd5172009-04-20 15:50:09 -04004161 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04004162 rw = WRITE_SYNC;
4163
Josef Bacikde0022b2012-09-25 14:25:58 -04004164 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004165 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004166 epd->bio = NULL;
4167 }
4168}
4169
Chris Masond2c3f4f2008-11-19 12:44:22 -05004170static noinline void flush_write_bio(void *data)
4171{
4172 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004173 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004174}
4175
Chris Masond1310b22008-01-24 16:13:08 -05004176int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4177 get_extent_t *get_extent,
4178 struct writeback_control *wbc)
4179{
4180 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004181 struct extent_page_data epd = {
4182 .bio = NULL,
4183 .tree = tree,
4184 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004185 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004186 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004187 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004188 };
Chris Masond1310b22008-01-24 16:13:08 -05004189
Chris Masond1310b22008-01-24 16:13:08 -05004190 ret = __extent_writepage(page, wbc, &epd);
4191
Chris Masonffbd5172009-04-20 15:50:09 -04004192 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004193 return ret;
4194}
Chris Masond1310b22008-01-24 16:13:08 -05004195
Chris Mason771ed682008-11-06 22:02:51 -05004196int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4197 u64 start, u64 end, get_extent_t *get_extent,
4198 int mode)
4199{
4200 int ret = 0;
4201 struct address_space *mapping = inode->i_mapping;
4202 struct page *page;
4203 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
4204 PAGE_CACHE_SHIFT;
4205
4206 struct extent_page_data epd = {
4207 .bio = NULL,
4208 .tree = tree,
4209 .get_extent = get_extent,
4210 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004211 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004212 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004213 };
4214 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004215 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004216 .nr_to_write = nr_pages * 2,
4217 .range_start = start,
4218 .range_end = end + 1,
4219 };
4220
Chris Masond3977122009-01-05 21:25:51 -05004221 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05004222 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
4223 if (clear_page_dirty_for_io(page))
4224 ret = __extent_writepage(page, &wbc_writepages, &epd);
4225 else {
4226 if (tree->ops && tree->ops->writepage_end_io_hook)
4227 tree->ops->writepage_end_io_hook(page, start,
4228 start + PAGE_CACHE_SIZE - 1,
4229 NULL, 1);
4230 unlock_page(page);
4231 }
4232 page_cache_release(page);
4233 start += PAGE_CACHE_SIZE;
4234 }
4235
Chris Masonffbd5172009-04-20 15:50:09 -04004236 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004237 return ret;
4238}
Chris Masond1310b22008-01-24 16:13:08 -05004239
4240int extent_writepages(struct extent_io_tree *tree,
4241 struct address_space *mapping,
4242 get_extent_t *get_extent,
4243 struct writeback_control *wbc)
4244{
4245 int ret = 0;
4246 struct extent_page_data epd = {
4247 .bio = NULL,
4248 .tree = tree,
4249 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004250 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004251 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004252 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004253 };
4254
Chris Mason4bef0842008-09-08 11:18:08 -04004255 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004256 __extent_writepage, &epd,
4257 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004258 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004259 return ret;
4260}
Chris Masond1310b22008-01-24 16:13:08 -05004261
4262int extent_readpages(struct extent_io_tree *tree,
4263 struct address_space *mapping,
4264 struct list_head *pages, unsigned nr_pages,
4265 get_extent_t get_extent)
4266{
4267 struct bio *bio = NULL;
4268 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004269 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004270 struct page *pagepool[16];
4271 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004272 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004273 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004274 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004275
Chris Masond1310b22008-01-24 16:13:08 -05004276 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004277 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004278
4279 prefetchw(&page->flags);
4280 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004281 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004282 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004283 page_cache_release(page);
4284 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004285 }
Liu Bo67c96842012-07-20 21:43:09 -06004286
4287 pagepool[nr++] = page;
4288 if (nr < ARRAY_SIZE(pagepool))
4289 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004290 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004291 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004292 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004293 }
Miao Xie99740902013-07-25 19:22:36 +08004294 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004295 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004296 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004297
Miao Xie125bac012013-07-25 19:22:37 +08004298 if (em_cached)
4299 free_extent_map(em_cached);
4300
Chris Masond1310b22008-01-24 16:13:08 -05004301 BUG_ON(!list_empty(pages));
4302 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004303 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004304 return 0;
4305}
Chris Masond1310b22008-01-24 16:13:08 -05004306
4307/*
4308 * basic invalidatepage code, this waits on any locked or writeback
4309 * ranges corresponding to the page, and then deletes any extent state
4310 * records from the tree
4311 */
4312int extent_invalidatepage(struct extent_io_tree *tree,
4313 struct page *page, unsigned long offset)
4314{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004315 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004316 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004317 u64 end = start + PAGE_CACHE_SIZE - 1;
4318 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4319
Qu Wenruofda28322013-02-26 08:10:22 +00004320 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004321 if (start > end)
4322 return 0;
4323
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004324 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004325 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004326 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004327 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4328 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004329 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004330 return 0;
4331}
Chris Masond1310b22008-01-24 16:13:08 -05004332
4333/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004334 * a helper for releasepage, this tests for areas of the page that
4335 * are locked or under IO and drops the related state bits if it is safe
4336 * to drop the page.
4337 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004338static int try_release_extent_state(struct extent_map_tree *map,
4339 struct extent_io_tree *tree,
4340 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004341{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004342 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004343 u64 end = start + PAGE_CACHE_SIZE - 1;
4344 int ret = 1;
4345
Chris Mason211f90e2008-07-18 11:56:15 -04004346 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004347 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004348 ret = 0;
4349 else {
4350 if ((mask & GFP_NOFS) == GFP_NOFS)
4351 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004352 /*
4353 * at this point we can safely clear everything except the
4354 * locked bit and the nodatasum bit
4355 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004356 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004357 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4358 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004359
4360 /* if clear_extent_bit failed for enomem reasons,
4361 * we can't allow the release to continue.
4362 */
4363 if (ret < 0)
4364 ret = 0;
4365 else
4366 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004367 }
4368 return ret;
4369}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004370
4371/*
Chris Masond1310b22008-01-24 16:13:08 -05004372 * a helper for releasepage. As long as there are no locked extents
4373 * in the range corresponding to the page, both state records and extent
4374 * map records are removed
4375 */
4376int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004377 struct extent_io_tree *tree, struct page *page,
4378 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004379{
4380 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004381 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004382 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004383
Mel Gormand0164ad2015-11-06 16:28:21 -08004384 if (gfpflags_allow_blocking(mask) &&
Chris Mason70dec802008-01-29 09:59:12 -05004385 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004386 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004387 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004388 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004389 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004390 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004391 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004392 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004393 break;
4394 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004395 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4396 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004397 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004398 free_extent_map(em);
4399 break;
4400 }
4401 if (!test_range_bit(tree, em->start,
4402 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004403 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004404 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004405 remove_extent_mapping(map, em);
4406 /* once for the rb tree */
4407 free_extent_map(em);
4408 }
4409 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004410 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004411
4412 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004413 free_extent_map(em);
4414 }
Chris Masond1310b22008-01-24 16:13:08 -05004415 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004416 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004417}
Chris Masond1310b22008-01-24 16:13:08 -05004418
Chris Masonec29ed52011-02-23 16:23:20 -05004419/*
4420 * helper function for fiemap, which doesn't want to see any holes.
4421 * This maps until we find something past 'last'
4422 */
4423static struct extent_map *get_extent_skip_holes(struct inode *inode,
4424 u64 offset,
4425 u64 last,
4426 get_extent_t *get_extent)
4427{
4428 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4429 struct extent_map *em;
4430 u64 len;
4431
4432 if (offset >= last)
4433 return NULL;
4434
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304435 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004436 len = last - offset;
4437 if (len == 0)
4438 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004439 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004440 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004441 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004442 return em;
4443
4444 /* if this isn't a hole return it */
4445 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4446 em->block_start != EXTENT_MAP_HOLE) {
4447 return em;
4448 }
4449
4450 /* this is a hole, advance to the next extent */
4451 offset = extent_map_end(em);
4452 free_extent_map(em);
4453 if (offset >= last)
4454 break;
4455 }
4456 return NULL;
4457}
4458
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004459int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4460 __u64 start, __u64 len, get_extent_t *get_extent)
4461{
Josef Bacik975f84f2010-11-23 19:36:57 +00004462 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004463 u64 off = start;
4464 u64 max = start + len;
4465 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004466 u32 found_type;
4467 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004468 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004469 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004470 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004471 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004472 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004473 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004474 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004475 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004476 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004477 u64 em_start = 0;
4478 u64 em_len = 0;
4479 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004480
4481 if (len == 0)
4482 return -EINVAL;
4483
Josef Bacik975f84f2010-11-23 19:36:57 +00004484 path = btrfs_alloc_path();
4485 if (!path)
4486 return -ENOMEM;
4487 path->leave_spinning = 1;
4488
Qu Wenruo2c919432014-07-18 09:55:43 +08004489 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4490 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004491
Chris Masonec29ed52011-02-23 16:23:20 -05004492 /*
4493 * lookup the last file extent. We're not using i_size here
4494 * because there might be preallocation past i_size
4495 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004496 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4497 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004498 if (ret < 0) {
4499 btrfs_free_path(path);
4500 return ret;
4501 }
4502 WARN_ON(!ret);
4503 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004504 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004505 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004506
Chris Masonec29ed52011-02-23 16:23:20 -05004507 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004508 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004509 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004510 /* have to trust i_size as the end */
4511 last = (u64)-1;
4512 last_for_get_extent = isize;
4513 } else {
4514 /*
4515 * remember the start of the last extent. There are a
4516 * bunch of different factors that go into the length of the
4517 * extent, so its much less complex to remember where it started
4518 */
4519 last = found_key.offset;
4520 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004521 }
Liu Bofe09e162013-09-22 12:54:23 +08004522 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004523
Chris Masonec29ed52011-02-23 16:23:20 -05004524 /*
4525 * we might have some extents allocated but more delalloc past those
4526 * extents. so, we trust isize unless the start of the last extent is
4527 * beyond isize
4528 */
4529 if (last < isize) {
4530 last = (u64)-1;
4531 last_for_get_extent = isize;
4532 }
4533
Liu Boa52f4cd2013-05-01 16:23:41 +00004534 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004535 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004536
Josef Bacik4d479cf2011-11-17 11:34:31 -05004537 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004538 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004539 if (!em)
4540 goto out;
4541 if (IS_ERR(em)) {
4542 ret = PTR_ERR(em);
4543 goto out;
4544 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004545
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004546 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004547 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004548
Chris Masonea8efc72011-03-08 11:54:40 -05004549 /* break if the extent we found is outside the range */
4550 if (em->start >= max || extent_map_end(em) < off)
4551 break;
4552
4553 /*
4554 * get_extent may return an extent that starts before our
4555 * requested range. We have to make sure the ranges
4556 * we return to fiemap always move forward and don't
4557 * overlap, so adjust the offsets here
4558 */
4559 em_start = max(em->start, off);
4560
4561 /*
4562 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004563 * for adjusting the disk offset below. Only do this if the
4564 * extent isn't compressed since our in ram offset may be past
4565 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004566 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004567 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4568 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004569 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004570 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004571 disko = 0;
4572 flags = 0;
4573
Chris Masonea8efc72011-03-08 11:54:40 -05004574 /*
4575 * bump off for our next call to get_extent
4576 */
4577 off = extent_map_end(em);
4578 if (off >= max)
4579 end = 1;
4580
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004581 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004582 end = 1;
4583 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004584 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004585 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4586 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004587 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004588 flags |= (FIEMAP_EXTENT_DELALLOC |
4589 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004590 } else if (fieinfo->fi_extents_max) {
4591 u64 bytenr = em->block_start -
4592 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004593
Chris Masonea8efc72011-03-08 11:54:40 -05004594 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004595
4596 /*
4597 * As btrfs supports shared space, this information
4598 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004599 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4600 * then we're just getting a count and we can skip the
4601 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004602 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004603 ret = btrfs_check_shared(NULL, root->fs_info,
4604 root->objectid,
4605 btrfs_ino(inode), bytenr);
4606 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004607 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004608 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004609 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004610 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004611 }
4612 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4613 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004614 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4615 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004616
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004617 free_extent_map(em);
4618 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004619 if ((em_start >= last) || em_len == (u64)-1 ||
4620 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004621 flags |= FIEMAP_EXTENT_LAST;
4622 end = 1;
4623 }
4624
Chris Masonec29ed52011-02-23 16:23:20 -05004625 /* now scan forward to see if this is really the last extent. */
4626 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4627 get_extent);
4628 if (IS_ERR(em)) {
4629 ret = PTR_ERR(em);
4630 goto out;
4631 }
4632 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004633 flags |= FIEMAP_EXTENT_LAST;
4634 end = 1;
4635 }
Chris Masonec29ed52011-02-23 16:23:20 -05004636 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4637 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004638 if (ret) {
4639 if (ret == 1)
4640 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004641 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004642 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004643 }
4644out_free:
4645 free_extent_map(em);
4646out:
Liu Bofe09e162013-09-22 12:54:23 +08004647 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004648 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004649 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004650 return ret;
4651}
4652
Chris Mason727011e2010-08-06 13:21:20 -04004653static void __free_extent_buffer(struct extent_buffer *eb)
4654{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004655 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004656 kmem_cache_free(extent_buffer_cache, eb);
4657}
4658
Josef Bacika26e8c92014-03-28 17:07:27 -04004659int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004660{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004661 return (atomic_read(&eb->io_pages) ||
4662 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4663 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004664}
4665
Miao Xie897ca6e2010-10-26 20:57:29 -04004666/*
4667 * Helper for releasing extent buffer page.
4668 */
David Sterbaa50924e2014-07-31 00:51:36 +02004669static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e2010-10-26 20:57:29 -04004670{
4671 unsigned long index;
4672 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004673 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004674
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004675 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004676
David Sterbaa50924e2014-07-31 00:51:36 +02004677 index = num_extent_pages(eb->start, eb->len);
4678 if (index == 0)
Miao Xie897ca6e2010-10-26 20:57:29 -04004679 return;
4680
4681 do {
4682 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004683 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004684 if (!page)
4685 continue;
4686 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004687 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004688 /*
4689 * We do this since we'll remove the pages after we've
4690 * removed the eb from the radix tree, so we could race
4691 * and have this page now attached to the new eb. So
4692 * only clear page_private if it's still connected to
4693 * this eb.
4694 */
4695 if (PagePrivate(page) &&
4696 page->private == (unsigned long)eb) {
4697 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4698 BUG_ON(PageDirty(page));
4699 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004700 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004701 * We need to make sure we haven't be attached
4702 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004703 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004704 ClearPagePrivate(page);
4705 set_page_private(page, 0);
4706 /* One for the page private */
Miao Xie897ca6e2010-10-26 20:57:29 -04004707 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004708 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004709
4710 if (mapped)
4711 spin_unlock(&page->mapping->private_lock);
4712
4713 /* One for when we alloced the page */
4714 page_cache_release(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004715 } while (index != 0);
Miao Xie897ca6e2010-10-26 20:57:29 -04004716}
4717
4718/*
4719 * Helper for releasing the extent buffer.
4720 */
4721static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4722{
David Sterbaa50924e2014-07-31 00:51:36 +02004723 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e2010-10-26 20:57:29 -04004724 __free_extent_buffer(eb);
4725}
4726
Josef Bacikf28491e2013-12-16 13:24:27 -05004727static struct extent_buffer *
4728__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004729 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004730{
4731 struct extent_buffer *eb = NULL;
4732
Michal Hockod1b5c562015-08-19 14:17:40 +02004733 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004734 eb->start = start;
4735 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004736 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004737 eb->bflags = 0;
4738 rwlock_init(&eb->lock);
4739 atomic_set(&eb->write_locks, 0);
4740 atomic_set(&eb->read_locks, 0);
4741 atomic_set(&eb->blocking_readers, 0);
4742 atomic_set(&eb->blocking_writers, 0);
4743 atomic_set(&eb->spinning_readers, 0);
4744 atomic_set(&eb->spinning_writers, 0);
4745 eb->lock_nested = 0;
4746 init_waitqueue_head(&eb->write_lock_wq);
4747 init_waitqueue_head(&eb->read_lock_wq);
4748
4749 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4750
4751 spin_lock_init(&eb->refs_lock);
4752 atomic_set(&eb->refs, 1);
4753 atomic_set(&eb->io_pages, 0);
4754
4755 /*
4756 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4757 */
4758 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4759 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4760 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4761
4762 return eb;
4763}
4764
4765struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4766{
4767 unsigned long i;
4768 struct page *p;
4769 struct extent_buffer *new;
4770 unsigned long num_pages = num_extent_pages(src->start, src->len);
4771
David Sterba3f556f72014-06-15 03:20:26 +02004772 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004773 if (new == NULL)
4774 return NULL;
4775
4776 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004777 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004778 if (!p) {
4779 btrfs_release_extent_buffer(new);
4780 return NULL;
4781 }
4782 attach_extent_buffer_page(new, p);
4783 WARN_ON(PageDirty(p));
4784 SetPageUptodate(p);
4785 new->pages[i] = p;
4786 }
4787
4788 copy_extent_buffer(new, src, 0, 0, src->len);
4789 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4790 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4791
4792 return new;
4793}
4794
David Sterba3f556f72014-06-15 03:20:26 +02004795struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4796 u64 start)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004797{
4798 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004799 unsigned long len;
4800 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004801 unsigned long i;
4802
David Sterba3f556f72014-06-15 03:20:26 +02004803 if (!fs_info) {
4804 /*
4805 * Called only from tests that don't always have a fs_info
4806 * available, but we know that nodesize is 4096
4807 */
4808 len = 4096;
4809 } else {
4810 len = fs_info->tree_root->nodesize;
4811 }
4812 num_pages = num_extent_pages(0, len);
4813
4814 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004815 if (!eb)
4816 return NULL;
4817
4818 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004819 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004820 if (!eb->pages[i])
4821 goto err;
4822 }
4823 set_extent_buffer_uptodate(eb);
4824 btrfs_set_header_nritems(eb, 0);
4825 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4826
4827 return eb;
4828err:
4829 for (; i > 0; i--)
4830 __free_page(eb->pages[i - 1]);
4831 __free_extent_buffer(eb);
4832 return NULL;
4833}
4834
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004835static void check_buffer_tree_ref(struct extent_buffer *eb)
4836{
Chris Mason242e18c2013-01-29 17:49:37 -05004837 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004838 /* the ref bit is tricky. We have to make sure it is set
4839 * if we have the buffer dirty. Otherwise the
4840 * code to free a buffer can end up dropping a dirty
4841 * page
4842 *
4843 * Once the ref bit is set, it won't go away while the
4844 * buffer is dirty or in writeback, and it also won't
4845 * go away while we have the reference count on the
4846 * eb bumped.
4847 *
4848 * We can't just set the ref bit without bumping the
4849 * ref on the eb because free_extent_buffer might
4850 * see the ref bit and try to clear it. If this happens
4851 * free_extent_buffer might end up dropping our original
4852 * ref by mistake and freeing the page before we are able
4853 * to add one more ref.
4854 *
4855 * So bump the ref count first, then set the bit. If someone
4856 * beat us to it, drop the ref we added.
4857 */
Chris Mason242e18c2013-01-29 17:49:37 -05004858 refs = atomic_read(&eb->refs);
4859 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4860 return;
4861
Josef Bacik594831c2012-07-20 16:11:08 -04004862 spin_lock(&eb->refs_lock);
4863 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004864 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004865 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004866}
4867
Mel Gorman2457aec2014-06-04 16:10:31 -07004868static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4869 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004870{
4871 unsigned long num_pages, i;
4872
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004873 check_buffer_tree_ref(eb);
4874
Josef Bacik5df42352012-03-15 18:24:42 -04004875 num_pages = num_extent_pages(eb->start, eb->len);
4876 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004877 struct page *p = eb->pages[i];
4878
Mel Gorman2457aec2014-06-04 16:10:31 -07004879 if (p != accessed)
4880 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004881 }
4882}
4883
Josef Bacikf28491e2013-12-16 13:24:27 -05004884struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4885 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004886{
4887 struct extent_buffer *eb;
4888
4889 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004890 eb = radix_tree_lookup(&fs_info->buffer_radix,
4891 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004892 if (eb && atomic_inc_not_zero(&eb->refs)) {
4893 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004894 /*
4895 * Lock our eb's refs_lock to avoid races with
4896 * free_extent_buffer. When we get our eb it might be flagged
4897 * with EXTENT_BUFFER_STALE and another task running
4898 * free_extent_buffer might have seen that flag set,
4899 * eb->refs == 2, that the buffer isn't under IO (dirty and
4900 * writeback flags not set) and it's still in the tree (flag
4901 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4902 * of decrementing the extent buffer's reference count twice.
4903 * So here we could race and increment the eb's reference count,
4904 * clear its stale flag, mark it as dirty and drop our reference
4905 * before the other task finishes executing free_extent_buffer,
4906 * which would later result in an attempt to free an extent
4907 * buffer that is dirty.
4908 */
4909 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4910 spin_lock(&eb->refs_lock);
4911 spin_unlock(&eb->refs_lock);
4912 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004913 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004914 return eb;
4915 }
4916 rcu_read_unlock();
4917
4918 return NULL;
4919}
4920
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004921#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4922struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004923 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004924{
4925 struct extent_buffer *eb, *exists = NULL;
4926 int ret;
4927
4928 eb = find_extent_buffer(fs_info, start);
4929 if (eb)
4930 return eb;
David Sterba3f556f72014-06-15 03:20:26 +02004931 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004932 if (!eb)
4933 return NULL;
4934 eb->fs_info = fs_info;
4935again:
4936 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4937 if (ret)
4938 goto free_eb;
4939 spin_lock(&fs_info->buffer_lock);
4940 ret = radix_tree_insert(&fs_info->buffer_radix,
4941 start >> PAGE_CACHE_SHIFT, eb);
4942 spin_unlock(&fs_info->buffer_lock);
4943 radix_tree_preload_end();
4944 if (ret == -EEXIST) {
4945 exists = find_extent_buffer(fs_info, start);
4946 if (exists)
4947 goto free_eb;
4948 else
4949 goto again;
4950 }
4951 check_buffer_tree_ref(eb);
4952 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4953
4954 /*
4955 * We will free dummy extent buffer's if they come into
4956 * free_extent_buffer with a ref count of 2, but if we are using this we
4957 * want the buffers to stay in memory until we're done with them, so
4958 * bump the ref count again.
4959 */
4960 atomic_inc(&eb->refs);
4961 return eb;
4962free_eb:
4963 btrfs_release_extent_buffer(eb);
4964 return exists;
4965}
4966#endif
4967
Josef Bacikf28491e2013-12-16 13:24:27 -05004968struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004969 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004970{
David Sterbace3e6982014-06-15 03:00:04 +02004971 unsigned long len = fs_info->tree_root->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004972 unsigned long num_pages = num_extent_pages(start, len);
4973 unsigned long i;
4974 unsigned long index = start >> PAGE_CACHE_SHIFT;
4975 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004976 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004977 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004978 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004979 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004980 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004981
Josef Bacikf28491e2013-12-16 13:24:27 -05004982 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004983 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004984 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004985
David Sterba23d79d82014-06-15 02:55:29 +02004986 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004987 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004988 return NULL;
4989
Chris Mason727011e2010-08-06 13:21:20 -04004990 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004991 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Josef Bacik4804b382012-10-05 16:43:45 -04004992 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004993 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004994
4995 spin_lock(&mapping->private_lock);
4996 if (PagePrivate(p)) {
4997 /*
4998 * We could have already allocated an eb for this page
4999 * and attached one so lets see if we can get a ref on
5000 * the existing eb, and if we can we know it's good and
5001 * we can just return that one, else we know we can just
5002 * overwrite page->private.
5003 */
5004 exists = (struct extent_buffer *)p->private;
5005 if (atomic_inc_not_zero(&exists->refs)) {
5006 spin_unlock(&mapping->private_lock);
5007 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04005008 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07005009 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005010 goto free_eb;
5011 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005012 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005013
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005014 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005015 * Do this so attach doesn't complain and we need to
5016 * drop the ref the old guy had.
5017 */
5018 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005019 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005020 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05005021 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05005022 attach_extent_buffer_page(eb, p);
5023 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005024 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04005025 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05005026 if (!PageUptodate(p))
5027 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05005028
5029 /*
5030 * see below about how we avoid a nasty race with release page
5031 * and why we unlock later
5032 */
Chris Masond1310b22008-01-24 16:13:08 -05005033 }
5034 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005035 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05005036again:
Miao Xie19fe0a82010-10-26 20:57:29 -04005037 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
5038 if (ret)
5039 goto free_eb;
5040
Josef Bacikf28491e2013-12-16 13:24:27 -05005041 spin_lock(&fs_info->buffer_lock);
5042 ret = radix_tree_insert(&fs_info->buffer_radix,
5043 start >> PAGE_CACHE_SHIFT, eb);
5044 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005045 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04005046 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005047 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05005048 if (exists)
5049 goto free_eb;
5050 else
Josef Bacik115391d2012-03-09 09:51:43 -05005051 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04005052 }
Chris Mason6af118ce2008-07-22 11:18:07 -04005053 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005054 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005055 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005056
5057 /*
5058 * there is a race where release page may have
5059 * tried to find this extent buffer in the radix
5060 * but failed. It will tell the VM it is safe to
5061 * reclaim the, and it will clear the page private bit.
5062 * We must make sure to set the page private bit properly
5063 * after the extent buffer is in the radix tree so
5064 * it doesn't get lost
5065 */
Chris Mason727011e2010-08-06 13:21:20 -04005066 SetPageChecked(eb->pages[0]);
5067 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005068 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005069 ClearPageChecked(p);
5070 unlock_page(p);
5071 }
5072 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005073 return eb;
5074
Chris Mason6af118ce2008-07-22 11:18:07 -04005075free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005076 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005077 for (i = 0; i < num_pages; i++) {
5078 if (eb->pages[i])
5079 unlock_page(eb->pages[i]);
5080 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005081
Miao Xie897ca6e2010-10-26 20:57:29 -04005082 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005083 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005084}
Chris Masond1310b22008-01-24 16:13:08 -05005085
Josef Bacik3083ee22012-03-09 16:01:49 -05005086static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5087{
5088 struct extent_buffer *eb =
5089 container_of(head, struct extent_buffer, rcu_head);
5090
5091 __free_extent_buffer(eb);
5092}
5093
Josef Bacik3083ee22012-03-09 16:01:49 -05005094/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005095static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005096{
5097 WARN_ON(atomic_read(&eb->refs) == 0);
5098 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005099 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005100 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005101
Jan Schmidt815a51c2012-05-16 17:00:02 +02005102 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005103
Josef Bacikf28491e2013-12-16 13:24:27 -05005104 spin_lock(&fs_info->buffer_lock);
5105 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02005106 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005107 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005108 } else {
5109 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005110 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005111
5112 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005113 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005114#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5115 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5116 __free_extent_buffer(eb);
5117 return 1;
5118 }
5119#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005120 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005121 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005122 }
5123 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005124
5125 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005126}
5127
Chris Masond1310b22008-01-24 16:13:08 -05005128void free_extent_buffer(struct extent_buffer *eb)
5129{
Chris Mason242e18c2013-01-29 17:49:37 -05005130 int refs;
5131 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005132 if (!eb)
5133 return;
5134
Chris Mason242e18c2013-01-29 17:49:37 -05005135 while (1) {
5136 refs = atomic_read(&eb->refs);
5137 if (refs <= 3)
5138 break;
5139 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5140 if (old == refs)
5141 return;
5142 }
5143
Josef Bacik3083ee22012-03-09 16:01:49 -05005144 spin_lock(&eb->refs_lock);
5145 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005146 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5147 atomic_dec(&eb->refs);
5148
5149 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005150 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005151 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005152 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5153 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005154
Josef Bacik3083ee22012-03-09 16:01:49 -05005155 /*
5156 * I know this is terrible, but it's temporary until we stop tracking
5157 * the uptodate bits and such for the extent buffers.
5158 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005159 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005160}
Chris Masond1310b22008-01-24 16:13:08 -05005161
Josef Bacik3083ee22012-03-09 16:01:49 -05005162void free_extent_buffer_stale(struct extent_buffer *eb)
5163{
5164 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005165 return;
5166
Josef Bacik3083ee22012-03-09 16:01:49 -05005167 spin_lock(&eb->refs_lock);
5168 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5169
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005170 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005171 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5172 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005173 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005174}
5175
Chris Mason1d4284b2012-03-28 20:31:37 -04005176void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005177{
Chris Masond1310b22008-01-24 16:13:08 -05005178 unsigned long i;
5179 unsigned long num_pages;
5180 struct page *page;
5181
Chris Masond1310b22008-01-24 16:13:08 -05005182 num_pages = num_extent_pages(eb->start, eb->len);
5183
5184 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005185 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005186 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005187 continue;
5188
Chris Masona61e6f22008-07-22 11:18:08 -04005189 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005190 WARN_ON(!PagePrivate(page));
5191
Chris Masond1310b22008-01-24 16:13:08 -05005192 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005193 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005194 if (!PageDirty(page)) {
5195 radix_tree_tag_clear(&page->mapping->page_tree,
5196 page_index(page),
5197 PAGECACHE_TAG_DIRTY);
5198 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005199 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005200 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005201 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005202 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005203 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005204}
Chris Masond1310b22008-01-24 16:13:08 -05005205
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005206int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005207{
5208 unsigned long i;
5209 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005210 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005211
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005212 check_buffer_tree_ref(eb);
5213
Chris Masonb9473432009-03-13 11:00:37 -04005214 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005215
Chris Masond1310b22008-01-24 16:13:08 -05005216 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005217 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005218 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5219
Chris Masonb9473432009-03-13 11:00:37 -04005220 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005221 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005222 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005223}
Chris Masond1310b22008-01-24 16:13:08 -05005224
David Sterba69ba3922015-12-03 13:08:59 +01005225void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005226{
5227 unsigned long i;
5228 struct page *page;
5229 unsigned long num_pages;
5230
Chris Masonb4ce94d2009-02-04 09:25:08 -05005231 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005232 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005233 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005234 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005235 if (page)
5236 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005237 }
Chris Mason1259ab72008-05-12 13:39:03 -04005238}
5239
David Sterba09c25a82015-12-03 13:08:59 +01005240void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005241{
5242 unsigned long i;
5243 struct page *page;
5244 unsigned long num_pages;
5245
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005246 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005247 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005248 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005249 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005250 SetPageUptodate(page);
5251 }
Chris Masond1310b22008-01-24 16:13:08 -05005252}
Chris Masond1310b22008-01-24 16:13:08 -05005253
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005254int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005255{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005256 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005257}
Chris Masond1310b22008-01-24 16:13:08 -05005258
5259int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02005260 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005261 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005262{
5263 unsigned long i;
5264 unsigned long start_i;
5265 struct page *page;
5266 int err;
5267 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005268 int locked_pages = 0;
5269 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005270 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005271 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005272 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005273 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005274
Chris Masonb4ce94d2009-02-04 09:25:08 -05005275 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005276 return 0;
5277
Chris Masond1310b22008-01-24 16:13:08 -05005278 if (start) {
5279 WARN_ON(start < eb->start);
5280 start_i = (start >> PAGE_CACHE_SHIFT) -
5281 (eb->start >> PAGE_CACHE_SHIFT);
5282 } else {
5283 start_i = 0;
5284 }
5285
5286 num_pages = num_extent_pages(eb->start, eb->len);
5287 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005288 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005289 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005290 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005291 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005292 } else {
5293 lock_page(page);
5294 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005295 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005296 if (!PageUptodate(page)) {
5297 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005298 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005299 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005300 }
5301 if (all_uptodate) {
5302 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005303 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005304 goto unlock_exit;
5305 }
5306
Filipe Manana656f30d2014-09-26 12:25:56 +01005307 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005308 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005309 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005310 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005311 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005312 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005313 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005314 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005315 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005316 mirror_num, &bio_flags,
5317 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005318 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005319 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005320 } else {
5321 unlock_page(page);
5322 }
5323 }
5324
Jeff Mahoney355808c2011-10-03 23:23:14 -04005325 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005326 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5327 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005328 if (err)
5329 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005330 }
Chris Masona86c12c2008-02-07 10:50:54 -05005331
Arne Jansenbb82ab82011-06-10 14:06:53 +02005332 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005333 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005334
Chris Masond1310b22008-01-24 16:13:08 -05005335 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005336 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005337 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005338 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005339 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005340 }
Chris Masond3977122009-01-05 21:25:51 -05005341
Chris Masond1310b22008-01-24 16:13:08 -05005342 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005343
5344unlock_exit:
5345 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005346 while (locked_pages > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005347 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005348 i++;
5349 unlock_page(page);
5350 locked_pages--;
5351 }
5352 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005353}
Chris Masond1310b22008-01-24 16:13:08 -05005354
5355void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5356 unsigned long start,
5357 unsigned long len)
5358{
5359 size_t cur;
5360 size_t offset;
5361 struct page *page;
5362 char *kaddr;
5363 char *dst = (char *)dstv;
5364 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5365 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005366
5367 WARN_ON(start > eb->len);
5368 WARN_ON(start + len > eb->start + eb->len);
5369
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005370 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005371
Chris Masond3977122009-01-05 21:25:51 -05005372 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005373 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005374
5375 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005376 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005377 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005378
5379 dst += cur;
5380 len -= cur;
5381 offset = 0;
5382 i++;
5383 }
5384}
Chris Masond1310b22008-01-24 16:13:08 -05005385
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005386int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5387 unsigned long start,
5388 unsigned long len)
5389{
5390 size_t cur;
5391 size_t offset;
5392 struct page *page;
5393 char *kaddr;
5394 char __user *dst = (char __user *)dstv;
5395 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5396 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5397 int ret = 0;
5398
5399 WARN_ON(start > eb->len);
5400 WARN_ON(start + len > eb->start + eb->len);
5401
5402 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5403
5404 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005405 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005406
5407 cur = min(len, (PAGE_CACHE_SIZE - offset));
5408 kaddr = page_address(page);
5409 if (copy_to_user(dst, kaddr + offset, cur)) {
5410 ret = -EFAULT;
5411 break;
5412 }
5413
5414 dst += cur;
5415 len -= cur;
5416 offset = 0;
5417 i++;
5418 }
5419
5420 return ret;
5421}
5422
Chris Masond1310b22008-01-24 16:13:08 -05005423int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005424 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005425 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005426 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005427{
5428 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5429 char *kaddr;
5430 struct page *p;
5431 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5432 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5433 unsigned long end_i = (start_offset + start + min_len - 1) >>
5434 PAGE_CACHE_SHIFT;
5435
5436 if (i != end_i)
5437 return -EINVAL;
5438
5439 if (i == 0) {
5440 offset = start_offset;
5441 *map_start = 0;
5442 } else {
5443 offset = 0;
5444 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5445 }
Chris Masond3977122009-01-05 21:25:51 -05005446
Chris Masond1310b22008-01-24 16:13:08 -05005447 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005448 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005449 "wanted %lu %lu\n",
5450 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005451 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005452 }
5453
David Sterbafb85fc92014-07-31 01:03:53 +02005454 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005455 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005456 *map = kaddr + offset;
5457 *map_len = PAGE_CACHE_SIZE - offset;
5458 return 0;
5459}
Chris Masond1310b22008-01-24 16:13:08 -05005460
Chris Masond1310b22008-01-24 16:13:08 -05005461int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5462 unsigned long start,
5463 unsigned long len)
5464{
5465 size_t cur;
5466 size_t offset;
5467 struct page *page;
5468 char *kaddr;
5469 char *ptr = (char *)ptrv;
5470 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5471 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5472 int ret = 0;
5473
5474 WARN_ON(start > eb->len);
5475 WARN_ON(start + len > eb->start + eb->len);
5476
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005477 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005478
Chris Masond3977122009-01-05 21:25:51 -05005479 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005480 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005481
5482 cur = min(len, (PAGE_CACHE_SIZE - offset));
5483
Chris Masona6591712011-07-19 12:04:14 -04005484 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005485 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005486 if (ret)
5487 break;
5488
5489 ptr += cur;
5490 len -= cur;
5491 offset = 0;
5492 i++;
5493 }
5494 return ret;
5495}
Chris Masond1310b22008-01-24 16:13:08 -05005496
5497void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5498 unsigned long start, unsigned long len)
5499{
5500 size_t cur;
5501 size_t offset;
5502 struct page *page;
5503 char *kaddr;
5504 char *src = (char *)srcv;
5505 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5506 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5507
5508 WARN_ON(start > eb->len);
5509 WARN_ON(start + len > eb->start + eb->len);
5510
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005511 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005512
Chris Masond3977122009-01-05 21:25:51 -05005513 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005514 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005515 WARN_ON(!PageUptodate(page));
5516
5517 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005518 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005519 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005520
5521 src += cur;
5522 len -= cur;
5523 offset = 0;
5524 i++;
5525 }
5526}
Chris Masond1310b22008-01-24 16:13:08 -05005527
5528void memset_extent_buffer(struct extent_buffer *eb, char c,
5529 unsigned long start, unsigned long len)
5530{
5531 size_t cur;
5532 size_t offset;
5533 struct page *page;
5534 char *kaddr;
5535 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5536 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5537
5538 WARN_ON(start > eb->len);
5539 WARN_ON(start + len > eb->start + eb->len);
5540
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005541 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005542
Chris Masond3977122009-01-05 21:25:51 -05005543 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005544 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005545 WARN_ON(!PageUptodate(page));
5546
5547 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005548 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005549 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005550
5551 len -= cur;
5552 offset = 0;
5553 i++;
5554 }
5555}
Chris Masond1310b22008-01-24 16:13:08 -05005556
5557void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5558 unsigned long dst_offset, unsigned long src_offset,
5559 unsigned long len)
5560{
5561 u64 dst_len = dst->len;
5562 size_t cur;
5563 size_t offset;
5564 struct page *page;
5565 char *kaddr;
5566 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5567 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5568
5569 WARN_ON(src->len != dst_len);
5570
5571 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005572 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005573
Chris Masond3977122009-01-05 21:25:51 -05005574 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005575 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005576 WARN_ON(!PageUptodate(page));
5577
5578 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5579
Chris Masona6591712011-07-19 12:04:14 -04005580 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005581 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005582
5583 src_offset += cur;
5584 len -= cur;
5585 offset = 0;
5586 i++;
5587 }
5588}
Chris Masond1310b22008-01-24 16:13:08 -05005589
Sergei Trofimovich33872062011-04-11 21:52:52 +00005590static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5591{
5592 unsigned long distance = (src > dst) ? src - dst : dst - src;
5593 return distance < len;
5594}
5595
Chris Masond1310b22008-01-24 16:13:08 -05005596static void copy_pages(struct page *dst_page, struct page *src_page,
5597 unsigned long dst_off, unsigned long src_off,
5598 unsigned long len)
5599{
Chris Masona6591712011-07-19 12:04:14 -04005600 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005601 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005602 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005603
Sergei Trofimovich33872062011-04-11 21:52:52 +00005604 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005605 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005606 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005607 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005608 if (areas_overlap(src_off, dst_off, len))
5609 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005610 }
Chris Masond1310b22008-01-24 16:13:08 -05005611
Chris Mason727011e2010-08-06 13:21:20 -04005612 if (must_memmove)
5613 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5614 else
5615 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005616}
5617
5618void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5619 unsigned long src_offset, unsigned long len)
5620{
5621 size_t cur;
5622 size_t dst_off_in_page;
5623 size_t src_off_in_page;
5624 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5625 unsigned long dst_i;
5626 unsigned long src_i;
5627
5628 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005629 btrfs_err(dst->fs_info,
5630 "memmove bogus src_offset %lu move "
5631 "len %lu dst len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005632 BUG_ON(1);
5633 }
5634 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005635 btrfs_err(dst->fs_info,
5636 "memmove bogus dst_offset %lu move "
5637 "len %lu dst len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005638 BUG_ON(1);
5639 }
5640
Chris Masond3977122009-01-05 21:25:51 -05005641 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005642 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005643 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005644 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005645 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005646
5647 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5648 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5649
5650 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5651 src_off_in_page));
5652 cur = min_t(unsigned long, cur,
5653 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5654
David Sterbafb85fc92014-07-31 01:03:53 +02005655 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005656 dst_off_in_page, src_off_in_page, cur);
5657
5658 src_offset += cur;
5659 dst_offset += cur;
5660 len -= cur;
5661 }
5662}
Chris Masond1310b22008-01-24 16:13:08 -05005663
5664void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5665 unsigned long src_offset, unsigned long len)
5666{
5667 size_t cur;
5668 size_t dst_off_in_page;
5669 size_t src_off_in_page;
5670 unsigned long dst_end = dst_offset + len - 1;
5671 unsigned long src_end = src_offset + len - 1;
5672 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5673 unsigned long dst_i;
5674 unsigned long src_i;
5675
5676 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005677 btrfs_err(dst->fs_info, "memmove bogus src_offset %lu move "
5678 "len %lu len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005679 BUG_ON(1);
5680 }
5681 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005682 btrfs_err(dst->fs_info, "memmove bogus dst_offset %lu move "
5683 "len %lu len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005684 BUG_ON(1);
5685 }
Chris Mason727011e2010-08-06 13:21:20 -04005686 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005687 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5688 return;
5689 }
Chris Masond3977122009-01-05 21:25:51 -05005690 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005691 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5692 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5693
5694 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005695 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005696 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005697 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005698
5699 cur = min_t(unsigned long, len, src_off_in_page + 1);
5700 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005701 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005702 dst_off_in_page - cur + 1,
5703 src_off_in_page - cur + 1, cur);
5704
5705 dst_end -= cur;
5706 src_end -= cur;
5707 len -= cur;
5708 }
5709}
Chris Mason6af118ce2008-07-22 11:18:07 -04005710
David Sterbaf7a52a42013-04-26 14:56:29 +00005711int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005712{
Chris Mason6af118ce2008-07-22 11:18:07 -04005713 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005714
Miao Xie19fe0a82010-10-26 20:57:29 -04005715 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005716 * We need to make sure noboody is attaching this page to an eb right
5717 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005718 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005719 spin_lock(&page->mapping->private_lock);
5720 if (!PagePrivate(page)) {
5721 spin_unlock(&page->mapping->private_lock);
5722 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005723 }
5724
Josef Bacik3083ee22012-03-09 16:01:49 -05005725 eb = (struct extent_buffer *)page->private;
5726 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005727
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005728 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005729 * This is a little awful but should be ok, we need to make sure that
5730 * the eb doesn't disappear out from under us while we're looking at
5731 * this page.
5732 */
5733 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005734 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005735 spin_unlock(&eb->refs_lock);
5736 spin_unlock(&page->mapping->private_lock);
5737 return 0;
5738 }
5739 spin_unlock(&page->mapping->private_lock);
5740
Josef Bacik3083ee22012-03-09 16:01:49 -05005741 /*
5742 * If tree ref isn't set then we know the ref on this eb is a real ref,
5743 * so just return, this page will likely be freed soon anyway.
5744 */
5745 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5746 spin_unlock(&eb->refs_lock);
5747 return 0;
5748 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005749
David Sterbaf7a52a42013-04-26 14:56:29 +00005750 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005751}