blob: c7233ff1d533b653b8b9e7f29e022e9126e5f38a [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) {
99 printk_ratelimited(KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -0500100 "BTRFS: %s: ino %llu isize %llu odd range [%llu,%llu]\n",
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
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400134static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400135static inline struct btrfs_fs_info *
136tree_fs_info(struct extent_io_tree *tree)
137{
Josef Bacika5dee372013-12-13 10:02:44 -0500138 if (!tree->mapping)
139 return NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400140 return btrfs_sb(tree->mapping->host->i_sb);
141}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400142
Chris Masond1310b22008-01-24 16:13:08 -0500143int __init extent_io_init(void)
144{
David Sterba837e1972012-09-07 03:00:48 -0600145 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200146 sizeof(struct extent_state), 0,
147 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500148 if (!extent_state_cache)
149 return -ENOMEM;
150
David Sterba837e1972012-09-07 03:00:48 -0600151 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200152 sizeof(struct extent_buffer), 0,
153 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500154 if (!extent_buffer_cache)
155 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400156
157 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
158 offsetof(struct btrfs_io_bio, bio));
159 if (!btrfs_bioset)
160 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700161
162 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
163 goto free_bioset;
164
Chris Masond1310b22008-01-24 16:13:08 -0500165 return 0;
166
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700167free_bioset:
168 bioset_free(btrfs_bioset);
169 btrfs_bioset = NULL;
170
Chris Mason9be33952013-05-17 18:30:14 -0400171free_buffer_cache:
172 kmem_cache_destroy(extent_buffer_cache);
173 extent_buffer_cache = NULL;
174
Chris Masond1310b22008-01-24 16:13:08 -0500175free_state_cache:
176 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400177 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500178 return -ENOMEM;
179}
180
181void extent_io_exit(void)
182{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000183 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000184
185 /*
186 * Make sure all delayed rcu free are flushed before we
187 * destroy caches.
188 */
189 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500190 if (extent_state_cache)
191 kmem_cache_destroy(extent_state_cache);
192 if (extent_buffer_cache)
193 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400194 if (btrfs_bioset)
195 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500196}
197
198void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200199 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500200{
Eric Paris6bef4d32010-02-23 19:43:04 +0000201 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500202 tree->ops = NULL;
203 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500204 spin_lock_init(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500205 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500206}
Chris Masond1310b22008-01-24 16:13:08 -0500207
Christoph Hellwigb2950862008-12-02 09:54:17 -0500208static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500209{
210 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500211
212 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400213 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500214 return state;
215 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500216 state->private = 0;
Filipe Manana27a35072014-07-06 20:09:59 +0100217 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000218 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500219 atomic_set(&state->refs, 1);
220 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100221 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500222 return state;
223}
Chris Masond1310b22008-01-24 16:13:08 -0500224
Chris Mason4845e442010-05-25 20:56:50 -0400225void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500226{
Chris Masond1310b22008-01-24 16:13:08 -0500227 if (!state)
228 return;
229 if (atomic_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100230 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000231 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100232 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500233 kmem_cache_free(extent_state_cache, state);
234 }
235}
Chris Masond1310b22008-01-24 16:13:08 -0500236
Filipe Mananaf2071b22014-02-12 15:05:53 +0000237static struct rb_node *tree_insert(struct rb_root *root,
238 struct rb_node *search_start,
239 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000240 struct rb_node *node,
241 struct rb_node ***p_in,
242 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500243{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000244 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500245 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500246 struct tree_entry *entry;
247
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000248 if (p_in && parent_in) {
249 p = *p_in;
250 parent = *parent_in;
251 goto do_insert;
252 }
253
Filipe Mananaf2071b22014-02-12 15:05:53 +0000254 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500255 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500256 parent = *p;
257 entry = rb_entry(parent, struct tree_entry, rb_node);
258
259 if (offset < entry->start)
260 p = &(*p)->rb_left;
261 else if (offset > entry->end)
262 p = &(*p)->rb_right;
263 else
264 return parent;
265 }
266
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000267do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500268 rb_link_node(node, parent, p);
269 rb_insert_color(node, root);
270 return NULL;
271}
272
Chris Mason80ea96b2008-02-01 14:51:59 -0500273static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000274 struct rb_node **prev_ret,
275 struct rb_node **next_ret,
276 struct rb_node ***p_ret,
277 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500278{
Chris Mason80ea96b2008-02-01 14:51:59 -0500279 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000280 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500281 struct rb_node *prev = NULL;
282 struct rb_node *orig_prev = NULL;
283 struct tree_entry *entry;
284 struct tree_entry *prev_entry = NULL;
285
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000286 while (*n) {
287 prev = *n;
288 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500289 prev_entry = entry;
290
291 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000292 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500293 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000294 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500295 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000296 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500297 }
298
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000299 if (p_ret)
300 *p_ret = n;
301 if (parent_ret)
302 *parent_ret = prev;
303
Chris Masond1310b22008-01-24 16:13:08 -0500304 if (prev_ret) {
305 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500306 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500307 prev = rb_next(prev);
308 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
309 }
310 *prev_ret = prev;
311 prev = orig_prev;
312 }
313
314 if (next_ret) {
315 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500316 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500317 prev = rb_prev(prev);
318 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
319 }
320 *next_ret = prev;
321 }
322 return NULL;
323}
324
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000325static inline struct rb_node *
326tree_search_for_insert(struct extent_io_tree *tree,
327 u64 offset,
328 struct rb_node ***p_ret,
329 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500330{
Chris Mason70dec802008-01-29 09:59:12 -0500331 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500332 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500333
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000334 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500335 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500336 return prev;
337 return ret;
338}
339
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000340static inline struct rb_node *tree_search(struct extent_io_tree *tree,
341 u64 offset)
342{
343 return tree_search_for_insert(tree, offset, NULL, NULL);
344}
345
Josef Bacik9ed74f22009-09-11 16:12:44 -0400346static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
347 struct extent_state *other)
348{
349 if (tree->ops && tree->ops->merge_extent_hook)
350 tree->ops->merge_extent_hook(tree->mapping->host, new,
351 other);
352}
353
Chris Masond1310b22008-01-24 16:13:08 -0500354/*
355 * utility function to look for merge candidates inside a given range.
356 * Any extents with matching state are merged together into a single
357 * extent in the tree. Extents with EXTENT_IO in their state field
358 * are not merged because the end_io handlers need to be able to do
359 * operations on them without sleeping (or doing allocations/splits).
360 *
361 * This should be called with the tree lock held.
362 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000363static void merge_state(struct extent_io_tree *tree,
364 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500365{
366 struct extent_state *other;
367 struct rb_node *other_node;
368
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400369 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000370 return;
Chris Masond1310b22008-01-24 16:13:08 -0500371
372 other_node = rb_prev(&state->rb_node);
373 if (other_node) {
374 other = rb_entry(other_node, struct extent_state, rb_node);
375 if (other->end == state->start - 1 &&
376 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400377 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500378 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500379 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100380 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500381 free_extent_state(other);
382 }
383 }
384 other_node = rb_next(&state->rb_node);
385 if (other_node) {
386 other = rb_entry(other_node, struct extent_state, rb_node);
387 if (other->start == state->end + 1 &&
388 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400389 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400390 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400391 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100392 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400393 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500394 }
395 }
Chris Masond1310b22008-01-24 16:13:08 -0500396}
397
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000398static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100399 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500400{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000401 if (tree->ops && tree->ops->set_bit_hook)
402 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500403}
404
405static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100406 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500407{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400408 if (tree->ops && tree->ops->clear_bit_hook)
409 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500410}
411
Xiao Guangrong3150b692011-07-14 03:19:08 +0000412static void set_state_bits(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100413 struct extent_state *state, unsigned *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000414
Chris Masond1310b22008-01-24 16:13:08 -0500415/*
416 * insert an extent_state struct into the tree. 'bits' are set on the
417 * struct before it is inserted.
418 *
419 * This may return -EEXIST if the extent is already there, in which case the
420 * state struct is freed.
421 *
422 * The tree lock is not taken internally. This is a utility function and
423 * probably isn't what you want to call (see set/clear_extent_bit).
424 */
425static int insert_state(struct extent_io_tree *tree,
426 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000427 struct rb_node ***p,
428 struct rb_node **parent,
David Sterba9ee49a042015-01-14 19:52:13 +0100429 unsigned *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500430{
431 struct rb_node *node;
432
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000433 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500434 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200435 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500436 state->start = start;
437 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400438
Xiao Guangrong3150b692011-07-14 03:19:08 +0000439 set_state_bits(tree, state, bits);
440
Filipe Mananaf2071b22014-02-12 15:05:53 +0000441 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500442 if (node) {
443 struct extent_state *found;
444 found = rb_entry(node, struct extent_state, rb_node);
Frank Holtonefe120a2013-12-20 11:37:06 -0500445 printk(KERN_ERR "BTRFS: found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200446 "%llu %llu\n",
447 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500448 return -EEXIST;
449 }
450 merge_state(tree, state);
451 return 0;
452}
453
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000454static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400455 u64 split)
456{
457 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000458 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400459}
460
Chris Masond1310b22008-01-24 16:13:08 -0500461/*
462 * split a given extent state struct in two, inserting the preallocated
463 * struct 'prealloc' as the newly created second half. 'split' indicates an
464 * offset inside 'orig' where it should be split.
465 *
466 * Before calling,
467 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
468 * are two extent state structs in the tree:
469 * prealloc: [orig->start, split - 1]
470 * orig: [ split, orig->end ]
471 *
472 * The tree locks are not taken by this function. They need to be held
473 * by the caller.
474 */
475static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
476 struct extent_state *prealloc, u64 split)
477{
478 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400479
480 split_cb(tree, orig, split);
481
Chris Masond1310b22008-01-24 16:13:08 -0500482 prealloc->start = orig->start;
483 prealloc->end = split - 1;
484 prealloc->state = orig->state;
485 orig->start = split;
486
Filipe Mananaf2071b22014-02-12 15:05:53 +0000487 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
488 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500489 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500490 free_extent_state(prealloc);
491 return -EEXIST;
492 }
493 return 0;
494}
495
Li Zefancdc6a392012-03-12 16:39:48 +0800496static struct extent_state *next_state(struct extent_state *state)
497{
498 struct rb_node *next = rb_next(&state->rb_node);
499 if (next)
500 return rb_entry(next, struct extent_state, rb_node);
501 else
502 return NULL;
503}
504
Chris Masond1310b22008-01-24 16:13:08 -0500505/*
506 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800507 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500508 *
509 * If no bits are set on the state struct after clearing things, the
510 * struct is freed and removed from the tree
511 */
Li Zefancdc6a392012-03-12 16:39:48 +0800512static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
513 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +0100514 unsigned *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500515{
Li Zefancdc6a392012-03-12 16:39:48 +0800516 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100517 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500518
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400519 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500520 u64 range = state->end - state->start + 1;
521 WARN_ON(range > tree->dirty_bytes);
522 tree->dirty_bytes -= range;
523 }
Chris Mason291d6732008-01-29 15:55:23 -0500524 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400525 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500526 if (wake)
527 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400528 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800529 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100530 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500531 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100532 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500533 free_extent_state(state);
534 } else {
535 WARN_ON(1);
536 }
537 } else {
538 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800539 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500540 }
Li Zefancdc6a392012-03-12 16:39:48 +0800541 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500542}
543
Xiao Guangrong82337672011-04-20 06:44:57 +0000544static struct extent_state *
545alloc_extent_state_atomic(struct extent_state *prealloc)
546{
547 if (!prealloc)
548 prealloc = alloc_extent_state(GFP_ATOMIC);
549
550 return prealloc;
551}
552
Eric Sandeen48a3b632013-04-25 20:41:01 +0000553static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400554{
555 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
556 "Extent tree was modified by another "
557 "thread while locked.");
558}
559
Chris Masond1310b22008-01-24 16:13:08 -0500560/*
561 * clear some bits on a range in the tree. This may require splitting
562 * or inserting elements in the tree, so the gfp mask is used to
563 * indicate which allocations or sleeping are allowed.
564 *
565 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
566 * the given range from the tree regardless of state (ie for truncate).
567 *
568 * the range [start, end] is inclusive.
569 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100570 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500571 */
572int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100573 unsigned bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400574 struct extent_state **cached_state,
575 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500576{
577 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400578 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500579 struct extent_state *prealloc = NULL;
580 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400581 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500582 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000583 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500584
Josef Bacika5dee372013-12-13 10:02:44 -0500585 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000586
Josef Bacik7ee9e442013-06-21 16:37:03 -0400587 if (bits & EXTENT_DELALLOC)
588 bits |= EXTENT_NORESERVE;
589
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400590 if (delete)
591 bits |= ~EXTENT_CTLBITS;
592 bits |= EXTENT_FIRST_DELALLOC;
593
Josef Bacik2ac55d42010-02-03 19:33:23 +0000594 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
595 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500596again:
597 if (!prealloc && (mask & __GFP_WAIT)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000598 /*
599 * Don't care for allocation failure here because we might end
600 * up not needing the pre-allocated extent state at all, which
601 * is the case if we only have in the tree extent states that
602 * cover our input range and don't cover too any other range.
603 * If we end up needing a new extent state we allocate it later.
604 */
Chris Masond1310b22008-01-24 16:13:08 -0500605 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500606 }
607
Chris Masoncad321a2008-12-17 14:51:42 -0500608 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400609 if (cached_state) {
610 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000611
612 if (clear) {
613 *cached_state = NULL;
614 cached_state = NULL;
615 }
616
Filipe Manana27a35072014-07-06 20:09:59 +0100617 if (cached && extent_state_in_tree(cached) &&
618 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000619 if (clear)
620 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400621 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400622 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400623 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000624 if (clear)
625 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400626 }
Chris Masond1310b22008-01-24 16:13:08 -0500627 /*
628 * this search will find the extents that end after
629 * our range starts
630 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500631 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500632 if (!node)
633 goto out;
634 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400635hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500636 if (state->start > end)
637 goto out;
638 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400639 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500640
Liu Bo04493142012-02-16 18:34:37 +0800641 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800642 if (!(state->state & bits)) {
643 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800644 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800645 }
Liu Bo04493142012-02-16 18:34:37 +0800646
Chris Masond1310b22008-01-24 16:13:08 -0500647 /*
648 * | ---- desired range ---- |
649 * | state | or
650 * | ------------- state -------------- |
651 *
652 * We need to split the extent we found, and may flip
653 * bits on second half.
654 *
655 * If the extent we found extends past our range, we
656 * just split and search again. It'll get split again
657 * the next time though.
658 *
659 * If the extent we found is inside our range, we clear
660 * the desired bit on it.
661 */
662
663 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000664 prealloc = alloc_extent_state_atomic(prealloc);
665 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500666 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400667 if (err)
668 extent_io_tree_panic(tree, err);
669
Chris Masond1310b22008-01-24 16:13:08 -0500670 prealloc = NULL;
671 if (err)
672 goto out;
673 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800674 state = clear_state_bit(tree, state, &bits, wake);
675 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500676 }
677 goto search_again;
678 }
679 /*
680 * | ---- desired range ---- |
681 * | state |
682 * We need to split the extent, and clear the bit
683 * on the first half
684 */
685 if (state->start <= end && state->end > end) {
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, end + 1);
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 if (wake)
693 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400694
Jeff Mahoney6763af82012-03-01 14:56:29 +0100695 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400696
Chris Masond1310b22008-01-24 16:13:08 -0500697 prealloc = NULL;
698 goto out;
699 }
Chris Mason42daec22009-09-23 19:51:09 -0400700
Li Zefancdc6a392012-03-12 16:39:48 +0800701 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800702next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400703 if (last_end == (u64)-1)
704 goto out;
705 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800706 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800707 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500708 goto search_again;
709
710out:
Chris Masoncad321a2008-12-17 14:51:42 -0500711 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500712 if (prealloc)
713 free_extent_state(prealloc);
714
Jeff Mahoney6763af82012-03-01 14:56:29 +0100715 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500716
717search_again:
718 if (start > end)
719 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500720 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500721 if (mask & __GFP_WAIT)
722 cond_resched();
723 goto again;
724}
Chris Masond1310b22008-01-24 16:13:08 -0500725
Jeff Mahoney143bede2012-03-01 14:56:26 +0100726static void wait_on_state(struct extent_io_tree *tree,
727 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500728 __releases(tree->lock)
729 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500730{
731 DEFINE_WAIT(wait);
732 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500733 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500734 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500735 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500736 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500737}
738
739/*
740 * waits for one or more bits to clear on a range in the state tree.
741 * The range [start, end] is inclusive.
742 * The tree lock is taken by this function
743 */
David Sterba41074882013-04-29 13:38:46 +0000744static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
745 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500746{
747 struct extent_state *state;
748 struct rb_node *node;
749
Josef Bacika5dee372013-12-13 10:02:44 -0500750 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000751
Chris Masoncad321a2008-12-17 14:51:42 -0500752 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500753again:
754 while (1) {
755 /*
756 * this search will find all the extents that end after
757 * our range starts
758 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500759 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100760process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500761 if (!node)
762 break;
763
764 state = rb_entry(node, struct extent_state, rb_node);
765
766 if (state->start > end)
767 goto out;
768
769 if (state->state & bits) {
770 start = state->start;
771 atomic_inc(&state->refs);
772 wait_on_state(tree, state);
773 free_extent_state(state);
774 goto again;
775 }
776 start = state->end + 1;
777
778 if (start > end)
779 break;
780
Filipe Mananac50d3e72014-03-31 14:53:25 +0100781 if (!cond_resched_lock(&tree->lock)) {
782 node = rb_next(node);
783 goto process_node;
784 }
Chris Masond1310b22008-01-24 16:13:08 -0500785 }
786out:
Chris Masoncad321a2008-12-17 14:51:42 -0500787 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500788}
Chris Masond1310b22008-01-24 16:13:08 -0500789
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000790static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500791 struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +0100792 unsigned *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500793{
David Sterba9ee49a042015-01-14 19:52:13 +0100794 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400795
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000796 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400797 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500798 u64 range = state->end - state->start + 1;
799 tree->dirty_bytes += range;
800 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400801 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500802}
803
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100804static void cache_state_if_flags(struct extent_state *state,
805 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100806 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400807{
808 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100809 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400810 *cached_ptr = state;
811 atomic_inc(&state->refs);
812 }
813 }
814}
815
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100816static void cache_state(struct extent_state *state,
817 struct extent_state **cached_ptr)
818{
819 return cache_state_if_flags(state, cached_ptr,
820 EXTENT_IOBITS | EXTENT_BOUNDARY);
821}
822
Chris Masond1310b22008-01-24 16:13:08 -0500823/*
Chris Mason1edbb732009-09-02 13:24:36 -0400824 * set some bits on a range in the tree. This may require allocations or
825 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500826 *
Chris Mason1edbb732009-09-02 13:24:36 -0400827 * If any of the exclusive bits are set, this will fail with -EEXIST if some
828 * part of the range already has the desired bits set. The start of the
829 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500830 *
Chris Mason1edbb732009-09-02 13:24:36 -0400831 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500832 */
Chris Mason1edbb732009-09-02 13:24:36 -0400833
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100834static int __must_check
835__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100836 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000837 u64 *failed_start, struct extent_state **cached_state,
838 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500839{
840 struct extent_state *state;
841 struct extent_state *prealloc = NULL;
842 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000843 struct rb_node **p;
844 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500845 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500846 u64 last_start;
847 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400848
Josef Bacika5dee372013-12-13 10:02:44 -0500849 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000850
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400851 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500852again:
853 if (!prealloc && (mask & __GFP_WAIT)) {
854 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000855 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500856 }
857
Chris Masoncad321a2008-12-17 14:51:42 -0500858 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400859 if (cached_state && *cached_state) {
860 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400861 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100862 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400863 node = &state->rb_node;
864 goto hit_next;
865 }
866 }
Chris Masond1310b22008-01-24 16:13:08 -0500867 /*
868 * this search will find all the extents that end after
869 * our range starts.
870 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000871 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500872 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000873 prealloc = alloc_extent_state_atomic(prealloc);
874 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000875 err = insert_state(tree, prealloc, start, end,
876 &p, &parent, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400877 if (err)
878 extent_io_tree_panic(tree, err);
879
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000880 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500881 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500882 goto out;
883 }
Chris Masond1310b22008-01-24 16:13:08 -0500884 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400885hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500886 last_start = state->start;
887 last_end = state->end;
888
889 /*
890 * | ---- desired range ---- |
891 * | state |
892 *
893 * Just lock what we found and keep going
894 */
895 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400896 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500897 *failed_start = state->start;
898 err = -EEXIST;
899 goto out;
900 }
Chris Mason42daec22009-09-23 19:51:09 -0400901
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000902 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400903 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500904 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400905 if (last_end == (u64)-1)
906 goto out;
907 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800908 state = next_state(state);
909 if (start < end && state && state->start == start &&
910 !need_resched())
911 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500912 goto search_again;
913 }
914
915 /*
916 * | ---- desired range ---- |
917 * | state |
918 * or
919 * | ------------- state -------------- |
920 *
921 * We need to split the extent we found, and may flip bits on
922 * second half.
923 *
924 * If the extent we found extends past our
925 * range, we just split and search again. It'll get split
926 * again the next time though.
927 *
928 * If the extent we found is inside our range, we set the
929 * desired bit on it.
930 */
931 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400932 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500933 *failed_start = start;
934 err = -EEXIST;
935 goto out;
936 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000937
938 prealloc = alloc_extent_state_atomic(prealloc);
939 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500940 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400941 if (err)
942 extent_io_tree_panic(tree, err);
943
Chris Masond1310b22008-01-24 16:13:08 -0500944 prealloc = NULL;
945 if (err)
946 goto out;
947 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000948 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400949 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500950 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400951 if (last_end == (u64)-1)
952 goto out;
953 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800954 state = next_state(state);
955 if (start < end && state && state->start == start &&
956 !need_resched())
957 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500958 }
959 goto search_again;
960 }
961 /*
962 * | ---- desired range ---- |
963 * | state | or | state |
964 *
965 * There's a hole, we need to insert something in it and
966 * ignore the extent we found.
967 */
968 if (state->start > start) {
969 u64 this_end;
970 if (end < last_start)
971 this_end = end;
972 else
Chris Masond3977122009-01-05 21:25:51 -0500973 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000974
975 prealloc = alloc_extent_state_atomic(prealloc);
976 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000977
978 /*
979 * Avoid to free 'prealloc' if it can be merged with
980 * the later extent.
981 */
Chris Masond1310b22008-01-24 16:13:08 -0500982 err = insert_state(tree, prealloc, start, this_end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000983 NULL, NULL, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400984 if (err)
985 extent_io_tree_panic(tree, err);
986
Chris Mason2c64c532009-09-02 15:04:12 -0400987 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500988 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500989 start = this_end + 1;
990 goto search_again;
991 }
992 /*
993 * | ---- desired range ---- |
994 * | state |
995 * We need to split the extent, and set the bit
996 * on the first half
997 */
998 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400999 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001000 *failed_start = start;
1001 err = -EEXIST;
1002 goto out;
1003 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001004
1005 prealloc = alloc_extent_state_atomic(prealloc);
1006 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001007 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001008 if (err)
1009 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001010
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001011 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -04001012 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001013 merge_state(tree, prealloc);
1014 prealloc = NULL;
1015 goto out;
1016 }
1017
1018 goto search_again;
1019
1020out:
Chris Masoncad321a2008-12-17 14:51:42 -05001021 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001022 if (prealloc)
1023 free_extent_state(prealloc);
1024
1025 return err;
1026
1027search_again:
1028 if (start > end)
1029 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -05001030 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001031 if (mask & __GFP_WAIT)
1032 cond_resched();
1033 goto again;
1034}
Chris Masond1310b22008-01-24 16:13:08 -05001035
David Sterba41074882013-04-29 13:38:46 +00001036int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001037 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001038 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001039{
1040 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
1041 cached_state, mask);
1042}
1043
1044
Josef Bacik462d6fa2011-09-26 13:56:12 -04001045/**
Liu Bo10983f22012-07-11 15:26:19 +08001046 * convert_extent_bit - convert all bits in a given range from one bit to
1047 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001048 * @tree: the io tree to search
1049 * @start: the start offset in bytes
1050 * @end: the end offset in bytes (inclusive)
1051 * @bits: the bits to set in this range
1052 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001053 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001054 * @mask: the allocation mask
1055 *
1056 * This will go through and set bits for the given range. If any states exist
1057 * already in this range they are set with the given bit and cleared of the
1058 * clear_bits. This is only meant to be used by things that are mergeable, ie
1059 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1060 * boundary bits like LOCK.
1061 */
1062int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001063 unsigned bits, unsigned clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001064 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001065{
1066 struct extent_state *state;
1067 struct extent_state *prealloc = NULL;
1068 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001069 struct rb_node **p;
1070 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001071 int err = 0;
1072 u64 last_start;
1073 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001074 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001075
Josef Bacika5dee372013-12-13 10:02:44 -05001076 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001077
Josef Bacik462d6fa2011-09-26 13:56:12 -04001078again:
1079 if (!prealloc && (mask & __GFP_WAIT)) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001080 /*
1081 * Best effort, don't worry if extent state allocation fails
1082 * here for the first iteration. We might have a cached state
1083 * that matches exactly the target range, in which case no
1084 * extent state allocations are needed. We'll only know this
1085 * after locking the tree.
1086 */
Josef Bacik462d6fa2011-09-26 13:56:12 -04001087 prealloc = alloc_extent_state(mask);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001088 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001089 return -ENOMEM;
1090 }
1091
1092 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001093 if (cached_state && *cached_state) {
1094 state = *cached_state;
1095 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001096 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001097 node = &state->rb_node;
1098 goto hit_next;
1099 }
1100 }
1101
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102 /*
1103 * this search will find all the extents that end after
1104 * our range starts.
1105 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001106 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001107 if (!node) {
1108 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001109 if (!prealloc) {
1110 err = -ENOMEM;
1111 goto out;
1112 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001113 err = insert_state(tree, prealloc, start, end,
1114 &p, &parent, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001115 if (err)
1116 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001117 cache_state(prealloc, cached_state);
1118 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001119 goto out;
1120 }
1121 state = rb_entry(node, struct extent_state, rb_node);
1122hit_next:
1123 last_start = state->start;
1124 last_end = state->end;
1125
1126 /*
1127 * | ---- desired range ---- |
1128 * | state |
1129 *
1130 * Just lock what we found and keep going
1131 */
1132 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001133 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001134 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001135 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001136 if (last_end == (u64)-1)
1137 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001138 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001139 if (start < end && state && state->start == start &&
1140 !need_resched())
1141 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001142 goto search_again;
1143 }
1144
1145 /*
1146 * | ---- desired range ---- |
1147 * | state |
1148 * or
1149 * | ------------- state -------------- |
1150 *
1151 * We need to split the extent we found, and may flip bits on
1152 * second half.
1153 *
1154 * If the extent we found extends past our
1155 * range, we just split and search again. It'll get split
1156 * again the next time though.
1157 *
1158 * If the extent we found is inside our range, we set the
1159 * desired bit on it.
1160 */
1161 if (state->start < start) {
1162 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001163 if (!prealloc) {
1164 err = -ENOMEM;
1165 goto out;
1166 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001167 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001168 if (err)
1169 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001170 prealloc = NULL;
1171 if (err)
1172 goto out;
1173 if (state->end <= end) {
1174 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001175 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001176 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001177 if (last_end == (u64)-1)
1178 goto out;
1179 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001180 if (start < end && state && state->start == start &&
1181 !need_resched())
1182 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001183 }
1184 goto search_again;
1185 }
1186 /*
1187 * | ---- desired range ---- |
1188 * | state | or | state |
1189 *
1190 * There's a hole, we need to insert something in it and
1191 * ignore the extent we found.
1192 */
1193 if (state->start > start) {
1194 u64 this_end;
1195 if (end < last_start)
1196 this_end = end;
1197 else
1198 this_end = last_start - 1;
1199
1200 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001201 if (!prealloc) {
1202 err = -ENOMEM;
1203 goto out;
1204 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001205
1206 /*
1207 * Avoid to free 'prealloc' if it can be merged with
1208 * the later extent.
1209 */
1210 err = insert_state(tree, prealloc, start, this_end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001211 NULL, NULL, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001212 if (err)
1213 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001214 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001215 prealloc = NULL;
1216 start = this_end + 1;
1217 goto search_again;
1218 }
1219 /*
1220 * | ---- desired range ---- |
1221 * | state |
1222 * We need to split the extent, and set the bit
1223 * on the first half
1224 */
1225 if (state->start <= end && state->end > end) {
1226 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001227 if (!prealloc) {
1228 err = -ENOMEM;
1229 goto out;
1230 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001231
1232 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001233 if (err)
1234 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001235
1236 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001237 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001238 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001239 prealloc = NULL;
1240 goto out;
1241 }
1242
1243 goto search_again;
1244
1245out:
1246 spin_unlock(&tree->lock);
1247 if (prealloc)
1248 free_extent_state(prealloc);
1249
1250 return err;
1251
1252search_again:
1253 if (start > end)
1254 goto out;
1255 spin_unlock(&tree->lock);
1256 if (mask & __GFP_WAIT)
1257 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001258 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001259 goto again;
1260}
1261
Chris Masond1310b22008-01-24 16:13:08 -05001262/* wrappers around set/clear extent bit */
1263int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1264 gfp_t mask)
1265{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001266 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001267 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001268}
Chris Masond1310b22008-01-24 16:13:08 -05001269
1270int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001271 unsigned bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001272{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001273 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001274 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001275}
Chris Masond1310b22008-01-24 16:13:08 -05001276
1277int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001278 unsigned bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001279{
Chris Mason2c64c532009-09-02 15:04:12 -04001280 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001281}
Chris Masond1310b22008-01-24 16:13:08 -05001282
1283int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001284 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001285{
1286 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001287 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001288 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001289}
Chris Masond1310b22008-01-24 16:13:08 -05001290
Liu Bo9e8a4a82012-09-05 19:10:51 -06001291int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1292 struct extent_state **cached_state, gfp_t mask)
1293{
1294 return set_extent_bit(tree, start, end,
1295 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1296 NULL, cached_state, mask);
1297}
1298
Chris Masond1310b22008-01-24 16:13:08 -05001299int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1300 gfp_t mask)
1301{
1302 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001303 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001304 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001305}
Chris Masond1310b22008-01-24 16:13:08 -05001306
1307int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1308 gfp_t mask)
1309{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001310 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001311 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001312}
Chris Masond1310b22008-01-24 16:13:08 -05001313
Chris Masond1310b22008-01-24 16:13:08 -05001314int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001315 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001316{
Liu Bo6b67a322013-03-28 08:30:28 +00001317 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001318 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001319}
Chris Masond1310b22008-01-24 16:13:08 -05001320
Josef Bacik5fd02042012-05-02 14:00:54 -04001321int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1322 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001323{
Chris Mason2c64c532009-09-02 15:04:12 -04001324 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001325 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001326}
Chris Masond1310b22008-01-24 16:13:08 -05001327
Chris Masond352ac62008-09-29 15:18:18 -04001328/*
1329 * either insert or lock state struct between start and end use mask to tell
1330 * us if waiting is desired.
1331 */
Chris Mason1edbb732009-09-02 13:24:36 -04001332int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001333 unsigned bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001334{
1335 int err;
1336 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001337
Chris Masond1310b22008-01-24 16:13:08 -05001338 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001339 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1340 EXTENT_LOCKED, &failed_start,
1341 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001342 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001343 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1344 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001345 } else
Chris Masond1310b22008-01-24 16:13:08 -05001346 break;
Chris Masond1310b22008-01-24 16:13:08 -05001347 WARN_ON(start > end);
1348 }
1349 return err;
1350}
Chris Masond1310b22008-01-24 16:13:08 -05001351
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001352int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001353{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001354 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001355}
1356
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001357int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001358{
1359 int err;
1360 u64 failed_start;
1361
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001362 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1363 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001364 if (err == -EEXIST) {
1365 if (failed_start > start)
1366 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001367 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001368 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001369 }
Josef Bacik25179202008-10-29 14:49:05 -04001370 return 1;
1371}
Josef Bacik25179202008-10-29 14:49:05 -04001372
Chris Mason2c64c532009-09-02 15:04:12 -04001373int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1374 struct extent_state **cached, gfp_t mask)
1375{
1376 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1377 mask);
1378}
1379
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001380int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001381{
Chris Mason2c64c532009-09-02 15:04:12 -04001382 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001383 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001384}
Chris Masond1310b22008-01-24 16:13:08 -05001385
Chris Mason4adaa612013-03-26 13:07:00 -04001386int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1387{
1388 unsigned long index = start >> PAGE_CACHE_SHIFT;
1389 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1390 struct page *page;
1391
1392 while (index <= end_index) {
1393 page = find_get_page(inode->i_mapping, index);
1394 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1395 clear_page_dirty_for_io(page);
1396 page_cache_release(page);
1397 index++;
1398 }
1399 return 0;
1400}
1401
1402int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1403{
1404 unsigned long index = start >> PAGE_CACHE_SHIFT;
1405 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1406 struct page *page;
1407
1408 while (index <= end_index) {
1409 page = find_get_page(inode->i_mapping, index);
1410 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001411 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001412 account_page_redirty(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001413 page_cache_release(page);
1414 index++;
1415 }
1416 return 0;
1417}
1418
Chris Masond1310b22008-01-24 16:13:08 -05001419/*
Chris Masond1310b22008-01-24 16:13:08 -05001420 * helper function to set both pages and extents in the tree writeback
1421 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001422static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001423{
1424 unsigned long index = start >> PAGE_CACHE_SHIFT;
1425 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1426 struct page *page;
1427
1428 while (index <= end_index) {
1429 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001430 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001431 set_page_writeback(page);
1432 page_cache_release(page);
1433 index++;
1434 }
Chris Masond1310b22008-01-24 16:13:08 -05001435 return 0;
1436}
Chris Masond1310b22008-01-24 16:13:08 -05001437
Chris Masond352ac62008-09-29 15:18:18 -04001438/* find the first state struct with 'bits' set after 'start', and
1439 * return it. tree->lock must be held. NULL will returned if
1440 * nothing was found after 'start'
1441 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001442static struct extent_state *
1443find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001444 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001445{
1446 struct rb_node *node;
1447 struct extent_state *state;
1448
1449 /*
1450 * this search will find all the extents that end after
1451 * our range starts.
1452 */
1453 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001454 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001455 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001456
Chris Masond3977122009-01-05 21:25:51 -05001457 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001458 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001459 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001460 return state;
Chris Masond3977122009-01-05 21:25:51 -05001461
Chris Masond7fc6402008-02-18 12:12:38 -05001462 node = rb_next(node);
1463 if (!node)
1464 break;
1465 }
1466out:
1467 return NULL;
1468}
Chris Masond7fc6402008-02-18 12:12:38 -05001469
Chris Masond352ac62008-09-29 15:18:18 -04001470/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001471 * find the first offset in the io tree with 'bits' set. zero is
1472 * returned if we find something, and *start_ret and *end_ret are
1473 * set to reflect the state struct that was found.
1474 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001475 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001476 */
1477int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001478 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001479 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001480{
1481 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001482 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001483 int ret = 1;
1484
1485 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001486 if (cached_state && *cached_state) {
1487 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001488 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001489 n = rb_next(&state->rb_node);
1490 while (n) {
1491 state = rb_entry(n, struct extent_state,
1492 rb_node);
1493 if (state->state & bits)
1494 goto got_it;
1495 n = rb_next(n);
1496 }
1497 free_extent_state(*cached_state);
1498 *cached_state = NULL;
1499 goto out;
1500 }
1501 free_extent_state(*cached_state);
1502 *cached_state = NULL;
1503 }
1504
Xiao Guangrong69261c42011-07-14 03:19:45 +00001505 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001506got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001507 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001508 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001509 *start_ret = state->start;
1510 *end_ret = state->end;
1511 ret = 0;
1512 }
Josef Bacike6138872012-09-27 17:07:30 -04001513out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001514 spin_unlock(&tree->lock);
1515 return ret;
1516}
1517
1518/*
Chris Masond352ac62008-09-29 15:18:18 -04001519 * find a contiguous range of bytes in the file marked as delalloc, not
1520 * more than 'max_bytes'. start and end are used to return the range,
1521 *
1522 * 1 is returned if we find something, 0 if nothing was in the tree
1523 */
Chris Masonc8b97812008-10-29 14:49:59 -04001524static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001525 u64 *start, u64 *end, u64 max_bytes,
1526 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001527{
1528 struct rb_node *node;
1529 struct extent_state *state;
1530 u64 cur_start = *start;
1531 u64 found = 0;
1532 u64 total_bytes = 0;
1533
Chris Masoncad321a2008-12-17 14:51:42 -05001534 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001535
Chris Masond1310b22008-01-24 16:13:08 -05001536 /*
1537 * this search will find all the extents that end after
1538 * our range starts.
1539 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001540 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001541 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001542 if (!found)
1543 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001544 goto out;
1545 }
1546
Chris Masond3977122009-01-05 21:25:51 -05001547 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001548 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001549 if (found && (state->start != cur_start ||
1550 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001551 goto out;
1552 }
1553 if (!(state->state & EXTENT_DELALLOC)) {
1554 if (!found)
1555 *end = state->end;
1556 goto out;
1557 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001558 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001559 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001560 *cached_state = state;
1561 atomic_inc(&state->refs);
1562 }
Chris Masond1310b22008-01-24 16:13:08 -05001563 found++;
1564 *end = state->end;
1565 cur_start = state->end + 1;
1566 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001567 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001568 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001569 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001570 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001571 break;
1572 }
1573out:
Chris Masoncad321a2008-12-17 14:51:42 -05001574 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001575 return found;
1576}
1577
Jeff Mahoney143bede2012-03-01 14:56:26 +01001578static noinline void __unlock_for_delalloc(struct inode *inode,
1579 struct page *locked_page,
1580 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001581{
1582 int ret;
1583 struct page *pages[16];
1584 unsigned long index = start >> PAGE_CACHE_SHIFT;
1585 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1586 unsigned long nr_pages = end_index - index + 1;
1587 int i;
1588
1589 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001590 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001591
Chris Masond3977122009-01-05 21:25:51 -05001592 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001593 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001594 min_t(unsigned long, nr_pages,
1595 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001596 for (i = 0; i < ret; i++) {
1597 if (pages[i] != locked_page)
1598 unlock_page(pages[i]);
1599 page_cache_release(pages[i]);
1600 }
1601 nr_pages -= ret;
1602 index += ret;
1603 cond_resched();
1604 }
Chris Masonc8b97812008-10-29 14:49:59 -04001605}
1606
1607static noinline int lock_delalloc_pages(struct inode *inode,
1608 struct page *locked_page,
1609 u64 delalloc_start,
1610 u64 delalloc_end)
1611{
1612 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1613 unsigned long start_index = index;
1614 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1615 unsigned long pages_locked = 0;
1616 struct page *pages[16];
1617 unsigned long nrpages;
1618 int ret;
1619 int i;
1620
1621 /* the caller is responsible for locking the start index */
1622 if (index == locked_page->index && index == end_index)
1623 return 0;
1624
1625 /* skip the page at the start index */
1626 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001627 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001628 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001629 min_t(unsigned long,
1630 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001631 if (ret == 0) {
1632 ret = -EAGAIN;
1633 goto done;
1634 }
1635 /* now we have an array of pages, lock them all */
1636 for (i = 0; i < ret; i++) {
1637 /*
1638 * the caller is taking responsibility for
1639 * locked_page
1640 */
Chris Mason771ed682008-11-06 22:02:51 -05001641 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001642 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001643 if (!PageDirty(pages[i]) ||
1644 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001645 ret = -EAGAIN;
1646 unlock_page(pages[i]);
1647 page_cache_release(pages[i]);
1648 goto done;
1649 }
1650 }
Chris Masonc8b97812008-10-29 14:49:59 -04001651 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001652 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001653 }
Chris Masonc8b97812008-10-29 14:49:59 -04001654 nrpages -= ret;
1655 index += ret;
1656 cond_resched();
1657 }
1658 ret = 0;
1659done:
1660 if (ret && pages_locked) {
1661 __unlock_for_delalloc(inode, locked_page,
1662 delalloc_start,
1663 ((u64)(start_index + pages_locked - 1)) <<
1664 PAGE_CACHE_SHIFT);
1665 }
1666 return ret;
1667}
1668
1669/*
1670 * find a contiguous range of bytes in the file marked as delalloc, not
1671 * more than 'max_bytes'. start and end are used to return the range,
1672 *
1673 * 1 is returned if we find something, 0 if nothing was in the tree
1674 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001675STATIC u64 find_lock_delalloc_range(struct inode *inode,
1676 struct extent_io_tree *tree,
1677 struct page *locked_page, u64 *start,
1678 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001679{
1680 u64 delalloc_start;
1681 u64 delalloc_end;
1682 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001683 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001684 int ret;
1685 int loops = 0;
1686
1687again:
1688 /* step one, find a bunch of delalloc bytes starting at start */
1689 delalloc_start = *start;
1690 delalloc_end = 0;
1691 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001692 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001693 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001694 *start = delalloc_start;
1695 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001696 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001697 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001698 }
1699
1700 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001701 * start comes from the offset of locked_page. We have to lock
1702 * pages in order, so we can't process delalloc bytes before
1703 * locked_page
1704 */
Chris Masond3977122009-01-05 21:25:51 -05001705 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001706 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001707
1708 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001709 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001710 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001711 if (delalloc_end + 1 - delalloc_start > max_bytes)
1712 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001713
Chris Masonc8b97812008-10-29 14:49:59 -04001714 /* step two, lock all the pages after the page that has start */
1715 ret = lock_delalloc_pages(inode, locked_page,
1716 delalloc_start, delalloc_end);
1717 if (ret == -EAGAIN) {
1718 /* some of the pages are gone, lets avoid looping by
1719 * shortening the size of the delalloc range we're searching
1720 */
Chris Mason9655d292009-09-02 15:22:30 -04001721 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001722 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001723 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001724 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001725 loops = 1;
1726 goto again;
1727 } else {
1728 found = 0;
1729 goto out_failed;
1730 }
1731 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001732 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001733
1734 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001735 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001736
1737 /* then test to make sure it is all still delalloc */
1738 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001739 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001740 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001741 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1742 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001743 __unlock_for_delalloc(inode, locked_page,
1744 delalloc_start, delalloc_end);
1745 cond_resched();
1746 goto again;
1747 }
Chris Mason9655d292009-09-02 15:22:30 -04001748 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001749 *start = delalloc_start;
1750 *end = delalloc_end;
1751out_failed:
1752 return found;
1753}
1754
Josef Bacikc2790a22013-07-29 11:20:47 -04001755int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1756 struct page *locked_page,
David Sterba9ee49a042015-01-14 19:52:13 +01001757 unsigned clear_bits,
Josef Bacikc2790a22013-07-29 11:20:47 -04001758 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001759{
Josef Bacikc2790a22013-07-29 11:20:47 -04001760 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001761 int ret;
1762 struct page *pages[16];
1763 unsigned long index = start >> PAGE_CACHE_SHIFT;
1764 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1765 unsigned long nr_pages = end_index - index + 1;
1766 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001767
Chris Mason2c64c532009-09-02 15:04:12 -04001768 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001769 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001770 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001771
Filipe Manana704de492014-10-06 22:14:22 +01001772 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1773 mapping_set_error(inode->i_mapping, -EIO);
1774
Chris Masond3977122009-01-05 21:25:51 -05001775 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001776 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001777 min_t(unsigned long,
1778 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001779 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001780
Josef Bacikc2790a22013-07-29 11:20:47 -04001781 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001782 SetPagePrivate2(pages[i]);
1783
Chris Masonc8b97812008-10-29 14:49:59 -04001784 if (pages[i] == locked_page) {
1785 page_cache_release(pages[i]);
1786 continue;
1787 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001788 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001789 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001790 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001791 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001792 if (page_ops & PAGE_SET_ERROR)
1793 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001794 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001795 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001796 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001797 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001798 page_cache_release(pages[i]);
1799 }
1800 nr_pages -= ret;
1801 index += ret;
1802 cond_resched();
1803 }
1804 return 0;
1805}
Chris Masonc8b97812008-10-29 14:49:59 -04001806
Chris Masond352ac62008-09-29 15:18:18 -04001807/*
1808 * count the number of bytes in the tree that have a given bit(s)
1809 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1810 * cached. The total number found is returned.
1811 */
Chris Masond1310b22008-01-24 16:13:08 -05001812u64 count_range_bits(struct extent_io_tree *tree,
1813 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001814 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001815{
1816 struct rb_node *node;
1817 struct extent_state *state;
1818 u64 cur_start = *start;
1819 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001820 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001821 int found = 0;
1822
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301823 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001824 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001825
Chris Masoncad321a2008-12-17 14:51:42 -05001826 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001827 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1828 total_bytes = tree->dirty_bytes;
1829 goto out;
1830 }
1831 /*
1832 * this search will find all the extents that end after
1833 * our range starts.
1834 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001835 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001836 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001837 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001838
Chris Masond3977122009-01-05 21:25:51 -05001839 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001840 state = rb_entry(node, struct extent_state, rb_node);
1841 if (state->start > search_end)
1842 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001843 if (contig && found && state->start > last + 1)
1844 break;
1845 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001846 total_bytes += min(search_end, state->end) + 1 -
1847 max(cur_start, state->start);
1848 if (total_bytes >= max_bytes)
1849 break;
1850 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001851 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001852 found = 1;
1853 }
Chris Masonec29ed52011-02-23 16:23:20 -05001854 last = state->end;
1855 } else if (contig && found) {
1856 break;
Chris Masond1310b22008-01-24 16:13:08 -05001857 }
1858 node = rb_next(node);
1859 if (!node)
1860 break;
1861 }
1862out:
Chris Masoncad321a2008-12-17 14:51:42 -05001863 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001864 return total_bytes;
1865}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001866
Chris Masond352ac62008-09-29 15:18:18 -04001867/*
1868 * set the private field for a given byte offset in the tree. If there isn't
1869 * an extent_state there already, this does nothing.
1870 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001871static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001872{
1873 struct rb_node *node;
1874 struct extent_state *state;
1875 int ret = 0;
1876
Chris Masoncad321a2008-12-17 14:51:42 -05001877 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001878 /*
1879 * this search will find all the extents that end after
1880 * our range starts.
1881 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001882 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001883 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001884 ret = -ENOENT;
1885 goto out;
1886 }
1887 state = rb_entry(node, struct extent_state, rb_node);
1888 if (state->start != start) {
1889 ret = -ENOENT;
1890 goto out;
1891 }
1892 state->private = private;
1893out:
Chris Masoncad321a2008-12-17 14:51:42 -05001894 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001895 return ret;
1896}
1897
1898int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1899{
1900 struct rb_node *node;
1901 struct extent_state *state;
1902 int ret = 0;
1903
Chris Masoncad321a2008-12-17 14:51:42 -05001904 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001905 /*
1906 * this search will find all the extents that end after
1907 * our range starts.
1908 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001909 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001910 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001911 ret = -ENOENT;
1912 goto out;
1913 }
1914 state = rb_entry(node, struct extent_state, rb_node);
1915 if (state->start != start) {
1916 ret = -ENOENT;
1917 goto out;
1918 }
1919 *private = state->private;
1920out:
Chris Masoncad321a2008-12-17 14:51:42 -05001921 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001922 return ret;
1923}
1924
1925/*
1926 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001927 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001928 * has the bits set. Otherwise, 1 is returned if any bit in the
1929 * range is found set.
1930 */
1931int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001932 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001933{
1934 struct extent_state *state = NULL;
1935 struct rb_node *node;
1936 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001937
Chris Masoncad321a2008-12-17 14:51:42 -05001938 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001939 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001940 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001941 node = &cached->rb_node;
1942 else
1943 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001944 while (node && start <= end) {
1945 state = rb_entry(node, struct extent_state, rb_node);
1946
1947 if (filled && state->start > start) {
1948 bitset = 0;
1949 break;
1950 }
1951
1952 if (state->start > end)
1953 break;
1954
1955 if (state->state & bits) {
1956 bitset = 1;
1957 if (!filled)
1958 break;
1959 } else if (filled) {
1960 bitset = 0;
1961 break;
1962 }
Chris Mason46562cec2009-09-23 20:23:16 -04001963
1964 if (state->end == (u64)-1)
1965 break;
1966
Chris Masond1310b22008-01-24 16:13:08 -05001967 start = state->end + 1;
1968 if (start > end)
1969 break;
1970 node = rb_next(node);
1971 if (!node) {
1972 if (filled)
1973 bitset = 0;
1974 break;
1975 }
1976 }
Chris Masoncad321a2008-12-17 14:51:42 -05001977 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001978 return bitset;
1979}
Chris Masond1310b22008-01-24 16:13:08 -05001980
1981/*
1982 * helper function to set a given page up to date if all the
1983 * extents in the tree for that page are up to date
1984 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001985static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001986{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001987 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001988 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001989 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001990 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001991}
1992
Miao Xie8b110e32014-09-12 18:44:03 +08001993int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001994{
1995 int ret;
1996 int err = 0;
1997 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1998
1999 set_state_private(failure_tree, rec->start, 0);
2000 ret = clear_extent_bits(failure_tree, rec->start,
2001 rec->start + rec->len - 1,
2002 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2003 if (ret)
2004 err = ret;
2005
David Woodhouse53b381b2013-01-29 18:40:14 -05002006 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
2007 rec->start + rec->len - 1,
2008 EXTENT_DAMAGED, GFP_NOFS);
2009 if (ret && !err)
2010 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002011
2012 kfree(rec);
2013 return err;
2014}
2015
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002016/*
2017 * this bypasses the standard btrfs submit functions deliberately, as
2018 * the standard behavior is to write all copies in a raid setup. here we only
2019 * want to write the one bad copy. so we do the mapping for ourselves and issue
2020 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002021 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002022 * actually prevents the read that triggered the error from finishing.
2023 * currently, there can be no more than two copies of every data bit. thus,
2024 * exactly one rewrite is required.
2025 */
Miao Xie1203b682014-09-12 18:44:01 +08002026int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2027 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002028{
Miao Xie1203b682014-09-12 18:44:01 +08002029 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002030 struct bio *bio;
2031 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002032 u64 map_length = 0;
2033 u64 sector;
2034 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002035 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002036 int ret;
2037
Ilya Dryomov908960c2013-11-03 19:06:39 +02002038 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002039 BUG_ON(!mirror_num);
2040
David Woodhouse53b381b2013-01-29 18:40:14 -05002041 /* we can't repair anything in raid56 yet */
2042 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2043 return 0;
2044
Chris Mason9be33952013-05-17 18:30:14 -04002045 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002046 if (!bio)
2047 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002048 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002049 map_length = length;
2050
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002051 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002052 &map_length, &bbio, mirror_num);
2053 if (ret) {
2054 bio_put(bio);
2055 return -EIO;
2056 }
2057 BUG_ON(mirror_num != bbio->mirror_num);
2058 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002059 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002060 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002061 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002062 if (!dev || !dev->bdev || !dev->writeable) {
2063 bio_put(bio);
2064 return -EIO;
2065 }
2066 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002067 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002068
Kent Overstreet33879d42013-11-23 22:33:32 -08002069 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002070 /* try to remap that extent elsewhere? */
2071 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002072 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002073 return -EIO;
2074 }
2075
Frank Holtonefe120a2013-12-20 11:37:06 -05002076 printk_ratelimited_in_rcu(KERN_INFO
Miao Xie1203b682014-09-12 18:44:01 +08002077 "BTRFS: read error corrected: ino %llu off %llu (dev %s sector %llu)\n",
2078 btrfs_ino(inode), start,
2079 rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002080 bio_put(bio);
2081 return 0;
2082}
2083
Josef Bacikea466792012-03-26 21:57:36 -04002084int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2085 int mirror_num)
2086{
Josef Bacikea466792012-03-26 21:57:36 -04002087 u64 start = eb->start;
2088 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002089 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002090
Ilya Dryomov908960c2013-11-03 19:06:39 +02002091 if (root->fs_info->sb->s_flags & MS_RDONLY)
2092 return -EROFS;
2093
Josef Bacikea466792012-03-26 21:57:36 -04002094 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002095 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002096
2097 ret = repair_io_failure(root->fs_info->btree_inode, start,
2098 PAGE_CACHE_SIZE, start, p,
2099 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002100 if (ret)
2101 break;
2102 start += PAGE_CACHE_SIZE;
2103 }
2104
2105 return ret;
2106}
2107
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002108/*
2109 * each time an IO finishes, we do a fast check in the IO failure tree
2110 * to see if we need to process or clean up an io_failure_record
2111 */
Miao Xie8b110e32014-09-12 18:44:03 +08002112int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2113 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002114{
2115 u64 private;
2116 u64 private_failure;
2117 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002118 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002119 struct extent_state *state;
2120 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002121 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002122
2123 private = 0;
2124 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2125 (u64)-1, 1, EXTENT_DIRTY, 0);
2126 if (!ret)
2127 return 0;
2128
2129 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2130 &private_failure);
2131 if (ret)
2132 return 0;
2133
2134 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2135 BUG_ON(!failrec->this_mirror);
2136
2137 if (failrec->in_validation) {
2138 /* there was no real error, just free the record */
2139 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2140 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002141 goto out;
2142 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002143 if (fs_info->sb->s_flags & MS_RDONLY)
2144 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002145
2146 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2147 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2148 failrec->start,
2149 EXTENT_LOCKED);
2150 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2151
Miao Xie883d0de2013-07-25 19:22:35 +08002152 if (state && state->start <= failrec->start &&
2153 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002154 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2155 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002156 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002157 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002158 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002159 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002160 }
2161 }
2162
2163out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002164 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002165
Miao Xie454ff3d2014-09-12 18:43:58 +08002166 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002167}
2168
Miao Xief6124962014-09-12 18:44:04 +08002169/*
2170 * Can be called when
2171 * - hold extent lock
2172 * - under ordered extent
2173 * - the inode is freeing
2174 */
2175void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2176{
2177 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2178 struct io_failure_record *failrec;
2179 struct extent_state *state, *next;
2180
2181 if (RB_EMPTY_ROOT(&failure_tree->state))
2182 return;
2183
2184 spin_lock(&failure_tree->lock);
2185 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2186 while (state) {
2187 if (state->start > end)
2188 break;
2189
2190 ASSERT(state->end <= end);
2191
2192 next = next_state(state);
2193
Satoru Takeuchi6e1103a2014-12-25 18:21:41 +09002194 failrec = (struct io_failure_record *)(unsigned long)state->private;
Miao Xief6124962014-09-12 18:44:04 +08002195 free_extent_state(state);
2196 kfree(failrec);
2197
2198 state = next;
2199 }
2200 spin_unlock(&failure_tree->lock);
2201}
2202
Miao Xie2fe63032014-09-12 18:43:59 +08002203int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2204 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002205{
Miao Xie2fe63032014-09-12 18:43:59 +08002206 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002207 u64 private;
2208 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002209 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2210 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2211 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002212 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002213 u64 logical;
2214
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002215 ret = get_state_private(failure_tree, start, &private);
2216 if (ret) {
2217 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2218 if (!failrec)
2219 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002220
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002221 failrec->start = start;
2222 failrec->len = end - start + 1;
2223 failrec->this_mirror = 0;
2224 failrec->bio_flags = 0;
2225 failrec->in_validation = 0;
2226
2227 read_lock(&em_tree->lock);
2228 em = lookup_extent_mapping(em_tree, start, failrec->len);
2229 if (!em) {
2230 read_unlock(&em_tree->lock);
2231 kfree(failrec);
2232 return -EIO;
2233 }
2234
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002235 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002236 free_extent_map(em);
2237 em = NULL;
2238 }
2239 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002240 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002241 kfree(failrec);
2242 return -EIO;
2243 }
Miao Xie2fe63032014-09-12 18:43:59 +08002244
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002245 logical = start - em->start;
2246 logical = em->block_start + logical;
2247 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2248 logical = em->block_start;
2249 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2250 extent_set_compress_type(&failrec->bio_flags,
2251 em->compress_type);
2252 }
Miao Xie2fe63032014-09-12 18:43:59 +08002253
2254 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2255 logical, start, failrec->len);
2256
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002257 failrec->logical = logical;
2258 free_extent_map(em);
2259
2260 /* set the bits in the private failure tree */
2261 ret = set_extent_bits(failure_tree, start, end,
2262 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2263 if (ret >= 0)
2264 ret = set_state_private(failure_tree, start,
2265 (u64)(unsigned long)failrec);
2266 /* set the bits in the inode's tree */
2267 if (ret >= 0)
2268 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2269 GFP_NOFS);
2270 if (ret < 0) {
2271 kfree(failrec);
2272 return ret;
2273 }
2274 } else {
2275 failrec = (struct io_failure_record *)(unsigned long)private;
Miao Xie2fe63032014-09-12 18:43:59 +08002276 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002277 failrec->logical, failrec->start, failrec->len,
2278 failrec->in_validation);
2279 /*
2280 * when data can be on disk more than twice, add to failrec here
2281 * (e.g. with a list for failed_mirror) to make
2282 * clean_io_failure() clean all those errors at once.
2283 */
2284 }
Miao Xie2fe63032014-09-12 18:43:59 +08002285
2286 *failrec_ret = failrec;
2287
2288 return 0;
2289}
2290
2291int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2292 struct io_failure_record *failrec, int failed_mirror)
2293{
2294 int num_copies;
2295
Stefan Behrens5d964052012-11-05 14:59:07 +01002296 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2297 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002298 if (num_copies == 1) {
2299 /*
2300 * we only have a single copy of the data, so don't bother with
2301 * all the retry and error correction code that follows. no
2302 * matter what the error is, it is very likely to persist.
2303 */
Miao Xie2fe63032014-09-12 18:43:59 +08002304 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002305 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002306 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002307 }
2308
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002309 /*
2310 * there are two premises:
2311 * a) deliver good data to the caller
2312 * b) correct the bad sectors on disk
2313 */
2314 if (failed_bio->bi_vcnt > 1) {
2315 /*
2316 * to fulfill b), we need to know the exact failing sectors, as
2317 * we don't want to rewrite any more than the failed ones. thus,
2318 * we need separate read requests for the failed bio
2319 *
2320 * if the following BUG_ON triggers, our validation request got
2321 * merged. we need separate requests for our algorithm to work.
2322 */
2323 BUG_ON(failrec->in_validation);
2324 failrec->in_validation = 1;
2325 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002326 } else {
2327 /*
2328 * we're ready to fulfill a) and b) alongside. get a good copy
2329 * of the failed sector and if we succeed, we have setup
2330 * everything for repair_io_failure to do the rest for us.
2331 */
2332 if (failrec->in_validation) {
2333 BUG_ON(failrec->this_mirror != failed_mirror);
2334 failrec->in_validation = 0;
2335 failrec->this_mirror = 0;
2336 }
2337 failrec->failed_mirror = failed_mirror;
2338 failrec->this_mirror++;
2339 if (failrec->this_mirror == failed_mirror)
2340 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002341 }
2342
Miao Xiefacc8a222013-07-25 19:22:34 +08002343 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002344 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002345 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002346 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002347 }
2348
Miao Xie2fe63032014-09-12 18:43:59 +08002349 return 1;
2350}
2351
2352
2353struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2354 struct io_failure_record *failrec,
2355 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002356 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002357{
2358 struct bio *bio;
2359 struct btrfs_io_bio *btrfs_failed_bio;
2360 struct btrfs_io_bio *btrfs_bio;
2361
Chris Mason9be33952013-05-17 18:30:14 -04002362 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002363 if (!bio)
2364 return NULL;
2365
2366 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002367 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002368 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002369 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002370 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002371
Miao Xiefacc8a222013-07-25 19:22:34 +08002372 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2373 if (btrfs_failed_bio->csum) {
2374 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2375 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2376
2377 btrfs_bio = btrfs_io_bio(bio);
2378 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002379 icsum *= csum_size;
2380 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002381 csum_size);
2382 }
2383
Miao Xie2fe63032014-09-12 18:43:59 +08002384 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002385
Miao Xie2fe63032014-09-12 18:43:59 +08002386 return bio;
2387}
2388
2389/*
2390 * this is a generic handler for readpage errors (default
2391 * readpage_io_failed_hook). if other copies exist, read those and write back
2392 * good data to the failed position. does not investigate in remapping the
2393 * failed extent elsewhere, hoping the device will be smart enough to do this as
2394 * needed
2395 */
2396
2397static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2398 struct page *page, u64 start, u64 end,
2399 int failed_mirror)
2400{
2401 struct io_failure_record *failrec;
2402 struct inode *inode = page->mapping->host;
2403 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2404 struct bio *bio;
2405 int read_mode;
2406 int ret;
2407
2408 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2409
2410 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2411 if (ret)
2412 return ret;
2413
2414 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2415 if (!ret) {
2416 free_io_failure(inode, failrec);
2417 return -EIO;
2418 }
2419
2420 if (failed_bio->bi_vcnt > 1)
2421 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2422 else
2423 read_mode = READ_SYNC;
2424
2425 phy_offset >>= inode->i_sb->s_blocksize_bits;
2426 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2427 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002428 (int)phy_offset, failed_bio->bi_end_io,
2429 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002430 if (!bio) {
2431 free_io_failure(inode, failrec);
2432 return -EIO;
2433 }
2434
2435 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2436 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002437
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002438 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2439 failrec->this_mirror,
2440 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002441 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002442 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002443 bio_put(bio);
2444 }
2445
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002446 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002447}
2448
Chris Masond1310b22008-01-24 16:13:08 -05002449/* lots and lots of room for performance fixes in the end_bio funcs */
2450
Jeff Mahoney87826df2012-02-15 16:23:57 +01002451int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2452{
2453 int uptodate = (err == 0);
2454 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002455 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002456
2457 tree = &BTRFS_I(page->mapping->host)->io_tree;
2458
2459 if (tree->ops && tree->ops->writepage_end_io_hook) {
2460 ret = tree->ops->writepage_end_io_hook(page, start,
2461 end, NULL, uptodate);
2462 if (ret)
2463 uptodate = 0;
2464 }
2465
Jeff Mahoney87826df2012-02-15 16:23:57 +01002466 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002467 ClearPageUptodate(page);
2468 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002469 ret = ret < 0 ? ret : -EIO;
2470 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002471 }
2472 return 0;
2473}
2474
Chris Masond1310b22008-01-24 16:13:08 -05002475/*
2476 * after a writepage IO is done, we need to:
2477 * clear the uptodate bits on error
2478 * clear the writeback bits in the extent tree for this IO
2479 * end_page_writeback if the page has no more pending IO
2480 *
2481 * Scheduling is not allowed, so the extent state tree is expected
2482 * to have one and only one object corresponding to this IO.
2483 */
Chris Masond1310b22008-01-24 16:13:08 -05002484static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002485{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002486 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002487 u64 start;
2488 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002489 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002490
Kent Overstreet2c30c712013-11-07 12:20:26 -08002491 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002492 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002493
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002494 /* We always issue full-page reads, but if some block
2495 * in a page fails to read, blk_update_request() will
2496 * advance bv_offset and adjust bv_len to compensate.
2497 * Print a warning for nonzero offsets, and an error
2498 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002499 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2500 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2501 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2502 "partial page write in btrfs with offset %u and length %u",
2503 bvec->bv_offset, bvec->bv_len);
2504 else
2505 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2506 "incomplete page write in btrfs with offset %u and "
2507 "length %u",
2508 bvec->bv_offset, bvec->bv_len);
2509 }
Chris Masond1310b22008-01-24 16:13:08 -05002510
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002511 start = page_offset(page);
2512 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002513
Jeff Mahoney87826df2012-02-15 16:23:57 +01002514 if (end_extent_writepage(page, err, start, end))
2515 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002516
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002517 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002518 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002519
Chris Masond1310b22008-01-24 16:13:08 -05002520 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002521}
2522
Miao Xie883d0de2013-07-25 19:22:35 +08002523static void
2524endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2525 int uptodate)
2526{
2527 struct extent_state *cached = NULL;
2528 u64 end = start + len - 1;
2529
2530 if (uptodate && tree->track_uptodate)
2531 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2532 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2533}
2534
Chris Masond1310b22008-01-24 16:13:08 -05002535/*
2536 * after a readpage IO is done, we need to:
2537 * clear the uptodate bits on error
2538 * set the uptodate bits if things worked
2539 * set the page up to date if all extents in the tree are uptodate
2540 * clear the lock bit in the extent tree
2541 * unlock the page if there are no other extents locked for it
2542 *
2543 * Scheduling is not allowed, so the extent state tree is expected
2544 * to have one and only one object corresponding to this IO.
2545 */
Chris Masond1310b22008-01-24 16:13:08 -05002546static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002547{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002548 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002549 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Miao Xiefacc8a222013-07-25 19:22:34 +08002550 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002551 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002552 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002553 u64 start;
2554 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002555 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002556 u64 extent_start = 0;
2557 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002558 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002559 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002560 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002561
Chris Masond20f7042008-12-08 16:58:54 -05002562 if (err)
2563 uptodate = 0;
2564
Kent Overstreet2c30c712013-11-07 12:20:26 -08002565 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002566 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002567 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002568
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002569 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Miao Xiec1dc0892014-09-12 18:43:56 +08002570 "mirror=%u\n", (u64)bio->bi_iter.bi_sector, err,
Chris Mason9be33952013-05-17 18:30:14 -04002571 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002572 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002573
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002574 /* We always issue full-page reads, but if some block
2575 * in a page fails to read, blk_update_request() will
2576 * advance bv_offset and adjust bv_len to compensate.
2577 * Print a warning for nonzero offsets, and an error
2578 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002579 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2580 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2581 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2582 "partial page read in btrfs with offset %u and length %u",
2583 bvec->bv_offset, bvec->bv_len);
2584 else
2585 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2586 "incomplete page read in btrfs with offset %u and "
2587 "length %u",
2588 bvec->bv_offset, bvec->bv_len);
2589 }
Chris Masond1310b22008-01-24 16:13:08 -05002590
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002591 start = page_offset(page);
2592 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002593 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002594
Chris Mason9be33952013-05-17 18:30:14 -04002595 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002596 if (likely(uptodate && tree->ops &&
2597 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002598 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2599 page, start, end,
2600 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002601 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002602 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002603 else
Miao Xie1203b682014-09-12 18:44:01 +08002604 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002605 }
Josef Bacikea466792012-03-26 21:57:36 -04002606
Miao Xief2a09da2013-07-25 19:22:33 +08002607 if (likely(uptodate))
2608 goto readpage_ok;
2609
2610 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002611 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002612 if (!ret && !err &&
2613 test_bit(BIO_UPTODATE, &bio->bi_flags))
2614 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002615 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002616 /*
2617 * The generic bio_readpage_error handles errors the
2618 * following way: If possible, new read requests are
2619 * created and submitted and will end up in
2620 * end_bio_extent_readpage as well (if we're lucky, not
2621 * in the !uptodate case). In that case it returns 0 and
2622 * we just go on with the next page in our bio. If it
2623 * can't handle the error it will return -EIO and we
2624 * remain responsible for that page.
2625 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002626 ret = bio_readpage_error(bio, offset, page, start, end,
2627 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002628 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002629 uptodate =
2630 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002631 if (err)
2632 uptodate = 0;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002633 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002634 continue;
2635 }
2636 }
Miao Xief2a09da2013-07-25 19:22:33 +08002637readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002638 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002639 loff_t i_size = i_size_read(inode);
2640 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002641 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002642
2643 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002644 off = i_size & (PAGE_CACHE_SIZE-1);
2645 if (page->index == end_index && off)
2646 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002647 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002648 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002649 ClearPageUptodate(page);
2650 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002651 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002652 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002653 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002654
2655 if (unlikely(!uptodate)) {
2656 if (extent_len) {
2657 endio_readpage_release_extent(tree,
2658 extent_start,
2659 extent_len, 1);
2660 extent_start = 0;
2661 extent_len = 0;
2662 }
2663 endio_readpage_release_extent(tree, start,
2664 end - start + 1, 0);
2665 } else if (!extent_len) {
2666 extent_start = start;
2667 extent_len = end + 1 - start;
2668 } else if (extent_start + extent_len == start) {
2669 extent_len += end + 1 - start;
2670 } else {
2671 endio_readpage_release_extent(tree, extent_start,
2672 extent_len, uptodate);
2673 extent_start = start;
2674 extent_len = end + 1 - start;
2675 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002676 }
Chris Masond1310b22008-01-24 16:13:08 -05002677
Miao Xie883d0de2013-07-25 19:22:35 +08002678 if (extent_len)
2679 endio_readpage_release_extent(tree, extent_start, extent_len,
2680 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002681 if (io_bio->end_io)
2682 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002683 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002684}
2685
Chris Mason9be33952013-05-17 18:30:14 -04002686/*
2687 * this allocates from the btrfs_bioset. We're returning a bio right now
2688 * but you can call btrfs_io_bio for the appropriate container_of magic
2689 */
Miao Xie88f794e2010-11-22 03:02:55 +00002690struct bio *
2691btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2692 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002693{
Miao Xiefacc8a222013-07-25 19:22:34 +08002694 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002695 struct bio *bio;
2696
Chris Mason9be33952013-05-17 18:30:14 -04002697 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002698
2699 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002700 while (!bio && (nr_vecs /= 2)) {
2701 bio = bio_alloc_bioset(gfp_flags,
2702 nr_vecs, btrfs_bioset);
2703 }
Chris Masond1310b22008-01-24 16:13:08 -05002704 }
2705
2706 if (bio) {
2707 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002708 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002709 btrfs_bio = btrfs_io_bio(bio);
2710 btrfs_bio->csum = NULL;
2711 btrfs_bio->csum_allocated = NULL;
2712 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002713 }
2714 return bio;
2715}
2716
Chris Mason9be33952013-05-17 18:30:14 -04002717struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2718{
Miao Xie23ea8e52014-09-12 18:43:54 +08002719 struct btrfs_io_bio *btrfs_bio;
2720 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002721
Miao Xie23ea8e52014-09-12 18:43:54 +08002722 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2723 if (new) {
2724 btrfs_bio = btrfs_io_bio(new);
2725 btrfs_bio->csum = NULL;
2726 btrfs_bio->csum_allocated = NULL;
2727 btrfs_bio->end_io = NULL;
2728 }
2729 return new;
2730}
Chris Mason9be33952013-05-17 18:30:14 -04002731
2732/* this also allocates from the btrfs_bioset */
2733struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2734{
Miao Xiefacc8a222013-07-25 19:22:34 +08002735 struct btrfs_io_bio *btrfs_bio;
2736 struct bio *bio;
2737
2738 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2739 if (bio) {
2740 btrfs_bio = btrfs_io_bio(bio);
2741 btrfs_bio->csum = NULL;
2742 btrfs_bio->csum_allocated = NULL;
2743 btrfs_bio->end_io = NULL;
2744 }
2745 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002746}
2747
2748
Jeff Mahoney355808c2011-10-03 23:23:14 -04002749static int __must_check submit_one_bio(int rw, struct bio *bio,
2750 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002751{
Chris Masond1310b22008-01-24 16:13:08 -05002752 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002753 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2754 struct page *page = bvec->bv_page;
2755 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002756 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002757
Miao Xie4eee4fa2012-12-21 09:17:45 +00002758 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002759
David Woodhouse902b22f2008-08-20 08:51:49 -04002760 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002761
2762 bio_get(bio);
2763
Chris Mason065631f2008-02-20 12:07:25 -05002764 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002765 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002766 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002767 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002768 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002769
Chris Masond1310b22008-01-24 16:13:08 -05002770 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2771 ret = -EOPNOTSUPP;
2772 bio_put(bio);
2773 return ret;
2774}
2775
David Woodhouse64a16702009-07-15 23:29:37 +01002776static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002777 unsigned long offset, size_t size, struct bio *bio,
2778 unsigned long bio_flags)
2779{
2780 int ret = 0;
2781 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002782 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002783 bio_flags);
2784 BUG_ON(ret < 0);
2785 return ret;
2786
2787}
2788
Chris Masond1310b22008-01-24 16:13:08 -05002789static int submit_extent_page(int rw, struct extent_io_tree *tree,
2790 struct page *page, sector_t sector,
2791 size_t size, unsigned long offset,
2792 struct block_device *bdev,
2793 struct bio **bio_ret,
2794 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002795 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002796 int mirror_num,
2797 unsigned long prev_bio_flags,
2798 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002799{
2800 int ret = 0;
2801 struct bio *bio;
2802 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002803 int contig = 0;
2804 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2805 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002806 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002807
2808 if (bio_ret && *bio_ret) {
2809 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002810 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002811 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002812 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002813 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002814
2815 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002816 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002817 bio_add_page(bio, page, page_size, offset) < page_size) {
2818 ret = submit_one_bio(rw, bio, mirror_num,
2819 prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002820 if (ret < 0) {
2821 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002822 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002823 }
Chris Masond1310b22008-01-24 16:13:08 -05002824 bio = NULL;
2825 } else {
2826 return 0;
2827 }
2828 }
Chris Masonc8b97812008-10-29 14:49:59 -04002829 if (this_compressed)
2830 nr = BIO_MAX_PAGES;
2831 else
2832 nr = bio_get_nr_vecs(bdev);
2833
Miao Xie88f794e2010-11-22 03:02:55 +00002834 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002835 if (!bio)
2836 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002837
Chris Masonc8b97812008-10-29 14:49:59 -04002838 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002839 bio->bi_end_io = end_io_func;
2840 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002841
Chris Masond3977122009-01-05 21:25:51 -05002842 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002843 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002844 else
Chris Masonc8b97812008-10-29 14:49:59 -04002845 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002846
2847 return ret;
2848}
2849
Eric Sandeen48a3b632013-04-25 20:41:01 +00002850static void attach_extent_buffer_page(struct extent_buffer *eb,
2851 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002852{
2853 if (!PagePrivate(page)) {
2854 SetPagePrivate(page);
2855 page_cache_get(page);
2856 set_page_private(page, (unsigned long)eb);
2857 } else {
2858 WARN_ON(page->private != (unsigned long)eb);
2859 }
2860}
2861
Chris Masond1310b22008-01-24 16:13:08 -05002862void set_page_extent_mapped(struct page *page)
2863{
2864 if (!PagePrivate(page)) {
2865 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002866 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002867 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002868 }
2869}
2870
Miao Xie125bac012013-07-25 19:22:37 +08002871static struct extent_map *
2872__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2873 u64 start, u64 len, get_extent_t *get_extent,
2874 struct extent_map **em_cached)
2875{
2876 struct extent_map *em;
2877
2878 if (em_cached && *em_cached) {
2879 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002880 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002881 start < extent_map_end(em)) {
2882 atomic_inc(&em->refs);
2883 return em;
2884 }
2885
2886 free_extent_map(em);
2887 *em_cached = NULL;
2888 }
2889
2890 em = get_extent(inode, page, pg_offset, start, len, 0);
2891 if (em_cached && !IS_ERR_OR_NULL(em)) {
2892 BUG_ON(*em_cached);
2893 atomic_inc(&em->refs);
2894 *em_cached = em;
2895 }
2896 return em;
2897}
Chris Masond1310b22008-01-24 16:13:08 -05002898/*
2899 * basic readpage implementation. Locked extent state structs are inserted
2900 * into the tree that are removed when the IO is done (by the end_io
2901 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002902 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002903 */
Miao Xie99740902013-07-25 19:22:36 +08002904static int __do_readpage(struct extent_io_tree *tree,
2905 struct page *page,
2906 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002907 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002908 struct bio **bio, int mirror_num,
2909 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002910{
2911 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002912 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002913 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2914 u64 end;
2915 u64 cur = start;
2916 u64 extent_offset;
2917 u64 last_byte = i_size_read(inode);
2918 u64 block_start;
2919 u64 cur_end;
2920 sector_t sector;
2921 struct extent_map *em;
2922 struct block_device *bdev;
2923 int ret;
2924 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002925 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002926 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002927 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002928 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002929 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002930 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002931
2932 set_page_extent_mapped(page);
2933
Miao Xie99740902013-07-25 19:22:36 +08002934 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002935 if (!PageUptodate(page)) {
2936 if (cleancache_get_page(page) == 0) {
2937 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002938 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002939 goto out;
2940 }
2941 }
2942
Chris Masonc8b97812008-10-29 14:49:59 -04002943 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2944 char *userpage;
2945 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2946
2947 if (zero_offset) {
2948 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002949 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002950 memset(userpage + zero_offset, 0, iosize);
2951 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002952 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002953 }
2954 }
Chris Masond1310b22008-01-24 16:13:08 -05002955 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002956 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2957
Chris Masond1310b22008-01-24 16:13:08 -05002958 if (cur >= last_byte) {
2959 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002960 struct extent_state *cached = NULL;
2961
David Sterba306e16c2011-04-19 14:29:38 +02002962 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002963 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002964 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002965 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002966 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002967 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002968 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002969 if (!parent_locked)
2970 unlock_extent_cached(tree, cur,
2971 cur + iosize - 1,
2972 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002973 break;
2974 }
Miao Xie125bac012013-07-25 19:22:37 +08002975 em = __get_extent_map(inode, page, pg_offset, cur,
2976 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002977 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002978 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002979 if (!parent_locked)
2980 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002981 break;
2982 }
Chris Masond1310b22008-01-24 16:13:08 -05002983 extent_offset = cur - em->start;
2984 BUG_ON(extent_map_end(em) <= cur);
2985 BUG_ON(end < cur);
2986
Li Zefan261507a02010-12-17 14:21:50 +08002987 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002988 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002989 extent_set_compress_type(&this_bio_flag,
2990 em->compress_type);
2991 }
Chris Masonc8b97812008-10-29 14:49:59 -04002992
Chris Masond1310b22008-01-24 16:13:08 -05002993 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2994 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002995 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002996 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2997 disk_io_size = em->block_len;
2998 sector = em->block_start >> 9;
2999 } else {
3000 sector = (em->block_start + extent_offset) >> 9;
3001 disk_io_size = iosize;
3002 }
Chris Masond1310b22008-01-24 16:13:08 -05003003 bdev = em->bdev;
3004 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003005 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3006 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05003007 free_extent_map(em);
3008 em = NULL;
3009
3010 /* we've found a hole, just zero and go on */
3011 if (block_start == EXTENT_MAP_HOLE) {
3012 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003013 struct extent_state *cached = NULL;
3014
Cong Wang7ac687d2011-11-25 23:14:28 +08003015 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003016 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003017 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003018 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003019
3020 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003021 &cached, GFP_NOFS);
3022 unlock_extent_cached(tree, cur, cur + iosize - 1,
3023 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003024 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003025 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003026 continue;
3027 }
3028 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003029 if (test_range_bit(tree, cur, cur_end,
3030 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003031 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003032 if (!parent_locked)
3033 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003034 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003035 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003036 continue;
3037 }
Chris Mason70dec802008-01-29 09:59:12 -05003038 /* we have an inline extent but it didn't get marked up
3039 * to date. Error out
3040 */
3041 if (block_start == EXTENT_MAP_INLINE) {
3042 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003043 if (!parent_locked)
3044 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003045 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003046 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003047 continue;
3048 }
Chris Masond1310b22008-01-24 16:13:08 -05003049
Josef Bacikc8f2f242013-02-11 11:33:00 -05003050 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003051 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02003052 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003053 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003054 end_bio_extent_readpage, mirror_num,
3055 *bio_flags,
3056 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003057 if (!ret) {
3058 nr++;
3059 *bio_flags = this_bio_flag;
3060 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003061 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003062 if (!parent_locked)
3063 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04003064 }
Chris Masond1310b22008-01-24 16:13:08 -05003065 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003066 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003067 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003068out:
Chris Masond1310b22008-01-24 16:13:08 -05003069 if (!nr) {
3070 if (!PageError(page))
3071 SetPageUptodate(page);
3072 unlock_page(page);
3073 }
3074 return 0;
3075}
3076
Miao Xie99740902013-07-25 19:22:36 +08003077static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3078 struct page *pages[], int nr_pages,
3079 u64 start, u64 end,
3080 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003081 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003082 struct bio **bio, int mirror_num,
3083 unsigned long *bio_flags, int rw)
3084{
3085 struct inode *inode;
3086 struct btrfs_ordered_extent *ordered;
3087 int index;
3088
3089 inode = pages[0]->mapping->host;
3090 while (1) {
3091 lock_extent(tree, start, end);
3092 ordered = btrfs_lookup_ordered_range(inode, start,
3093 end - start + 1);
3094 if (!ordered)
3095 break;
3096 unlock_extent(tree, start, end);
3097 btrfs_start_ordered_extent(inode, ordered, 1);
3098 btrfs_put_ordered_extent(ordered);
3099 }
3100
3101 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003102 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
3103 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003104 page_cache_release(pages[index]);
3105 }
3106}
3107
3108static void __extent_readpages(struct extent_io_tree *tree,
3109 struct page *pages[],
3110 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003111 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003112 struct bio **bio, int mirror_num,
3113 unsigned long *bio_flags, int rw)
3114{
Stefan Behrens35a36212013-08-14 18:12:25 +02003115 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003116 u64 end = 0;
3117 u64 page_start;
3118 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003119 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003120
3121 for (index = 0; index < nr_pages; index++) {
3122 page_start = page_offset(pages[index]);
3123 if (!end) {
3124 start = page_start;
3125 end = start + PAGE_CACHE_SIZE - 1;
3126 first_index = index;
3127 } else if (end + 1 == page_start) {
3128 end += PAGE_CACHE_SIZE;
3129 } else {
3130 __do_contiguous_readpages(tree, &pages[first_index],
3131 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003132 end, get_extent, em_cached,
3133 bio, mirror_num, bio_flags,
3134 rw);
Miao Xie99740902013-07-25 19:22:36 +08003135 start = page_start;
3136 end = start + PAGE_CACHE_SIZE - 1;
3137 first_index = index;
3138 }
3139 }
3140
3141 if (end)
3142 __do_contiguous_readpages(tree, &pages[first_index],
3143 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003144 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08003145 mirror_num, bio_flags, rw);
3146}
3147
3148static int __extent_read_full_page(struct extent_io_tree *tree,
3149 struct page *page,
3150 get_extent_t *get_extent,
3151 struct bio **bio, int mirror_num,
3152 unsigned long *bio_flags, int rw)
3153{
3154 struct inode *inode = page->mapping->host;
3155 struct btrfs_ordered_extent *ordered;
3156 u64 start = page_offset(page);
3157 u64 end = start + PAGE_CACHE_SIZE - 1;
3158 int ret;
3159
3160 while (1) {
3161 lock_extent(tree, start, end);
3162 ordered = btrfs_lookup_ordered_extent(inode, start);
3163 if (!ordered)
3164 break;
3165 unlock_extent(tree, start, end);
3166 btrfs_start_ordered_extent(inode, ordered, 1);
3167 btrfs_put_ordered_extent(ordered);
3168 }
3169
Miao Xie125bac012013-07-25 19:22:37 +08003170 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3171 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003172 return ret;
3173}
3174
Chris Masond1310b22008-01-24 16:13:08 -05003175int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003176 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003177{
3178 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003179 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003180 int ret;
3181
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003182 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003183 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003184 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003185 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003186 return ret;
3187}
Chris Masond1310b22008-01-24 16:13:08 -05003188
Mark Fasheh4b384312013-08-06 11:42:50 -07003189int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3190 get_extent_t *get_extent, int mirror_num)
3191{
3192 struct bio *bio = NULL;
3193 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3194 int ret;
3195
3196 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3197 &bio_flags, READ);
3198 if (bio)
3199 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3200 return ret;
3201}
3202
Chris Mason11c83492009-04-20 15:50:09 -04003203static noinline void update_nr_written(struct page *page,
3204 struct writeback_control *wbc,
3205 unsigned long nr_written)
3206{
3207 wbc->nr_to_write -= nr_written;
3208 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3209 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3210 page->mapping->writeback_index = page->index + nr_written;
3211}
3212
Chris Masond1310b22008-01-24 16:13:08 -05003213/*
Chris Mason40f76582014-05-21 13:35:51 -07003214 * helper for __extent_writepage, doing all of the delayed allocation setup.
3215 *
3216 * This returns 1 if our fill_delalloc function did all the work required
3217 * to write the page (copy into inline extent). In this case the IO has
3218 * been started and the page is already unlocked.
3219 *
3220 * This returns 0 if all went well (page still locked)
3221 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003222 */
Chris Mason40f76582014-05-21 13:35:51 -07003223static noinline_for_stack int writepage_delalloc(struct inode *inode,
3224 struct page *page, struct writeback_control *wbc,
3225 struct extent_page_data *epd,
3226 u64 delalloc_start,
3227 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003228{
Chris Mason40f76582014-05-21 13:35:51 -07003229 struct extent_io_tree *tree = epd->tree;
3230 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3231 u64 nr_delalloc;
3232 u64 delalloc_to_write = 0;
3233 u64 delalloc_end = 0;
3234 int ret;
3235 int page_started = 0;
3236
3237 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3238 return 0;
3239
3240 while (delalloc_end < page_end) {
3241 nr_delalloc = find_lock_delalloc_range(inode, tree,
3242 page,
3243 &delalloc_start,
3244 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003245 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003246 if (nr_delalloc == 0) {
3247 delalloc_start = delalloc_end + 1;
3248 continue;
3249 }
3250 ret = tree->ops->fill_delalloc(inode, page,
3251 delalloc_start,
3252 delalloc_end,
3253 &page_started,
3254 nr_written);
3255 /* File system has been set read-only */
3256 if (ret) {
3257 SetPageError(page);
3258 /* fill_delalloc should be return < 0 for error
3259 * but just in case, we use > 0 here meaning the
3260 * IO is started, so we don't want to return > 0
3261 * unless things are going well.
3262 */
3263 ret = ret < 0 ? ret : -EIO;
3264 goto done;
3265 }
3266 /*
3267 * delalloc_end is already one less than the total
3268 * length, so we don't subtract one from
3269 * PAGE_CACHE_SIZE
3270 */
3271 delalloc_to_write += (delalloc_end - delalloc_start +
3272 PAGE_CACHE_SIZE) >>
3273 PAGE_CACHE_SHIFT;
3274 delalloc_start = delalloc_end + 1;
3275 }
3276 if (wbc->nr_to_write < delalloc_to_write) {
3277 int thresh = 8192;
3278
3279 if (delalloc_to_write < thresh * 2)
3280 thresh = delalloc_to_write;
3281 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3282 thresh);
3283 }
3284
3285 /* did the fill delalloc function already unlock and start
3286 * the IO?
3287 */
3288 if (page_started) {
3289 /*
3290 * we've unlocked the page, so we can't update
3291 * the mapping's writeback index, just update
3292 * nr_to_write.
3293 */
3294 wbc->nr_to_write -= *nr_written;
3295 return 1;
3296 }
3297
3298 ret = 0;
3299
3300done:
3301 return ret;
3302}
3303
3304/*
3305 * helper for __extent_writepage. This calls the writepage start hooks,
3306 * and does the loop to map the page into extents and bios.
3307 *
3308 * We return 1 if the IO is started and the page is unlocked,
3309 * 0 if all went well (page still locked)
3310 * < 0 if there were errors (page still locked)
3311 */
3312static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3313 struct page *page,
3314 struct writeback_control *wbc,
3315 struct extent_page_data *epd,
3316 loff_t i_size,
3317 unsigned long nr_written,
3318 int write_flags, int *nr_ret)
3319{
Chris Masond1310b22008-01-24 16:13:08 -05003320 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003321 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003322 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3323 u64 end;
3324 u64 cur = start;
3325 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003326 u64 block_start;
3327 u64 iosize;
3328 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003329 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003330 struct extent_map *em;
3331 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003332 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003333 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003334 int ret = 0;
3335 int nr = 0;
3336 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003337
Chris Mason247e7432008-07-17 12:53:51 -04003338 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003339 ret = tree->ops->writepage_start_hook(page, start,
3340 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003341 if (ret) {
3342 /* Fixup worker will requeue */
3343 if (ret == -EBUSY)
3344 wbc->pages_skipped++;
3345 else
3346 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003347
Chris Mason11c83492009-04-20 15:50:09 -04003348 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003349 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003350 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003351 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003352 }
3353 }
3354
Chris Mason11c83492009-04-20 15:50:09 -04003355 /*
3356 * we don't want to touch the inode after unlocking the page,
3357 * so we update the mapping writeback index now
3358 */
3359 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003360
Chris Masond1310b22008-01-24 16:13:08 -05003361 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003362 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003363 if (tree->ops && tree->ops->writepage_end_io_hook)
3364 tree->ops->writepage_end_io_hook(page, start,
3365 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003366 goto done;
3367 }
3368
Chris Masond1310b22008-01-24 16:13:08 -05003369 blocksize = inode->i_sb->s_blocksize;
3370
3371 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003372 u64 em_end;
3373 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003374 if (tree->ops && tree->ops->writepage_end_io_hook)
3375 tree->ops->writepage_end_io_hook(page, cur,
3376 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003377 break;
3378 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003379 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003380 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003381 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003382 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003383 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003384 break;
3385 }
3386
3387 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003388 em_end = extent_map_end(em);
3389 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003390 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003391 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003392 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003393 sector = (em->block_start + extent_offset) >> 9;
3394 bdev = em->bdev;
3395 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003396 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003397 free_extent_map(em);
3398 em = NULL;
3399
Chris Masonc8b97812008-10-29 14:49:59 -04003400 /*
3401 * compressed and inline extents are written through other
3402 * paths in the FS
3403 */
3404 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003405 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003406 /*
3407 * end_io notification does not happen here for
3408 * compressed extents
3409 */
3410 if (!compressed && tree->ops &&
3411 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003412 tree->ops->writepage_end_io_hook(page, cur,
3413 cur + iosize - 1,
3414 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003415 else if (compressed) {
3416 /* we don't want to end_page_writeback on
3417 * a compressed extent. this happens
3418 * elsewhere
3419 */
3420 nr++;
3421 }
3422
3423 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003424 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003425 continue;
3426 }
Chris Masonc8b97812008-10-29 14:49:59 -04003427
Chris Masond1310b22008-01-24 16:13:08 -05003428 if (tree->ops && tree->ops->writepage_io_hook) {
3429 ret = tree->ops->writepage_io_hook(page, cur,
3430 cur + iosize - 1);
3431 } else {
3432 ret = 0;
3433 }
Chris Mason1259ab72008-05-12 13:39:03 -04003434 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003435 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003436 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003437 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003438
Chris Masond1310b22008-01-24 16:13:08 -05003439 set_range_writeback(tree, cur, cur + iosize - 1);
3440 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003441 btrfs_err(BTRFS_I(inode)->root->fs_info,
3442 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003443 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003444 }
3445
Chris Masonffbd5172009-04-20 15:50:09 -04003446 ret = submit_extent_page(write_flags, tree, page,
3447 sector, iosize, pg_offset,
3448 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003449 end_bio_extent_writepage,
3450 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003451 if (ret)
3452 SetPageError(page);
3453 }
3454 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003455 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003456 nr++;
3457 }
3458done:
Chris Mason40f76582014-05-21 13:35:51 -07003459 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003460
Chris Mason11c83492009-04-20 15:50:09 -04003461done_unlocked:
3462
Chris Mason2c64c532009-09-02 15:04:12 -04003463 /* drop our reference on any cached states */
3464 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003465 return ret;
3466}
3467
3468/*
3469 * the writepage semantics are similar to regular writepage. extent
3470 * records are inserted to lock ranges in the tree, and as dirty areas
3471 * are found, they are marked writeback. Then the lock bits are removed
3472 * and the end_io handler clears the writeback ranges
3473 */
3474static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3475 void *data)
3476{
3477 struct inode *inode = page->mapping->host;
3478 struct extent_page_data *epd = data;
3479 u64 start = page_offset(page);
3480 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3481 int ret;
3482 int nr = 0;
3483 size_t pg_offset = 0;
3484 loff_t i_size = i_size_read(inode);
3485 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3486 int write_flags;
3487 unsigned long nr_written = 0;
3488
3489 if (wbc->sync_mode == WB_SYNC_ALL)
3490 write_flags = WRITE_SYNC;
3491 else
3492 write_flags = WRITE;
3493
3494 trace___extent_writepage(page, inode, wbc);
3495
3496 WARN_ON(!PageLocked(page));
3497
3498 ClearPageError(page);
3499
3500 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3501 if (page->index > end_index ||
3502 (page->index == end_index && !pg_offset)) {
3503 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3504 unlock_page(page);
3505 return 0;
3506 }
3507
3508 if (page->index == end_index) {
3509 char *userpage;
3510
3511 userpage = kmap_atomic(page);
3512 memset(userpage + pg_offset, 0,
3513 PAGE_CACHE_SIZE - pg_offset);
3514 kunmap_atomic(userpage);
3515 flush_dcache_page(page);
3516 }
3517
3518 pg_offset = 0;
3519
3520 set_page_extent_mapped(page);
3521
3522 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3523 if (ret == 1)
3524 goto done_unlocked;
3525 if (ret)
3526 goto done;
3527
3528 ret = __extent_writepage_io(inode, page, wbc, epd,
3529 i_size, nr_written, write_flags, &nr);
3530 if (ret == 1)
3531 goto done_unlocked;
3532
3533done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003534 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003535 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003536 set_page_writeback(page);
3537 end_page_writeback(page);
3538 }
Filipe Manana61391d52014-05-09 17:17:40 +01003539 if (PageError(page)) {
3540 ret = ret < 0 ? ret : -EIO;
3541 end_extent_writepage(page, ret, start, page_end);
3542 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003543 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003544 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003545
3546done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003547 return 0;
3548}
3549
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003550void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003551{
NeilBrown74316202014-07-07 15:16:04 +10003552 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3553 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003554}
3555
Chris Mason0e378df2014-05-19 20:55:27 -07003556static noinline_for_stack int
3557lock_extent_buffer_for_io(struct extent_buffer *eb,
3558 struct btrfs_fs_info *fs_info,
3559 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003560{
3561 unsigned long i, num_pages;
3562 int flush = 0;
3563 int ret = 0;
3564
3565 if (!btrfs_try_tree_write_lock(eb)) {
3566 flush = 1;
3567 flush_write_bio(epd);
3568 btrfs_tree_lock(eb);
3569 }
3570
3571 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3572 btrfs_tree_unlock(eb);
3573 if (!epd->sync_io)
3574 return 0;
3575 if (!flush) {
3576 flush_write_bio(epd);
3577 flush = 1;
3578 }
Chris Masona098d8e2012-03-21 12:09:56 -04003579 while (1) {
3580 wait_on_extent_buffer_writeback(eb);
3581 btrfs_tree_lock(eb);
3582 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3583 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003584 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003585 }
3586 }
3587
Josef Bacik51561ff2012-07-20 16:25:24 -04003588 /*
3589 * We need to do this to prevent races in people who check if the eb is
3590 * under IO since we can end up having no IO bits set for a short period
3591 * of time.
3592 */
3593 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003594 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3595 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003596 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003597 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003598 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3599 -eb->len,
3600 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003601 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003602 } else {
3603 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003604 }
3605
3606 btrfs_tree_unlock(eb);
3607
3608 if (!ret)
3609 return ret;
3610
3611 num_pages = num_extent_pages(eb->start, eb->len);
3612 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003613 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003614
3615 if (!trylock_page(p)) {
3616 if (!flush) {
3617 flush_write_bio(epd);
3618 flush = 1;
3619 }
3620 lock_page(p);
3621 }
3622 }
3623
3624 return ret;
3625}
3626
3627static void end_extent_buffer_writeback(struct extent_buffer *eb)
3628{
3629 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003630 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003631 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3632}
3633
Filipe Manana656f30d2014-09-26 12:25:56 +01003634static void set_btree_ioerr(struct page *page)
3635{
3636 struct extent_buffer *eb = (struct extent_buffer *)page->private;
3637 struct btrfs_inode *btree_ino = BTRFS_I(eb->fs_info->btree_inode);
3638
3639 SetPageError(page);
3640 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3641 return;
3642
3643 /*
3644 * If writeback for a btree extent that doesn't belong to a log tree
3645 * failed, increment the counter transaction->eb_write_errors.
3646 * We do this because while the transaction is running and before it's
3647 * committing (when we call filemap_fdata[write|wait]_range against
3648 * the btree inode), we might have
3649 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3650 * returns an error or an error happens during writeback, when we're
3651 * committing the transaction we wouldn't know about it, since the pages
3652 * can be no longer dirty nor marked anymore for writeback (if a
3653 * subsequent modification to the extent buffer didn't happen before the
3654 * transaction commit), which makes filemap_fdata[write|wait]_range not
3655 * able to find the pages tagged with SetPageError at transaction
3656 * commit time. So if this happens we must abort the transaction,
3657 * otherwise we commit a super block with btree roots that point to
3658 * btree nodes/leafs whose content on disk is invalid - either garbage
3659 * or the content of some node/leaf from a past generation that got
3660 * cowed or deleted and is no longer valid.
3661 *
3662 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3663 * not be enough - we need to distinguish between log tree extents vs
3664 * non-log tree extents, and the next filemap_fdatawait_range() call
3665 * will catch and clear such errors in the mapping - and that call might
3666 * be from a log sync and not from a transaction commit. Also, checking
3667 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3668 * not done and would not be reliable - the eb might have been released
3669 * from memory and reading it back again means that flag would not be
3670 * set (since it's a runtime flag, not persisted on disk).
3671 *
3672 * Using the flags below in the btree inode also makes us achieve the
3673 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3674 * writeback for all dirty pages and before filemap_fdatawait_range()
3675 * is called, the writeback for all dirty pages had already finished
3676 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3677 * filemap_fdatawait_range() would return success, as it could not know
3678 * that writeback errors happened (the pages were no longer tagged for
3679 * writeback).
3680 */
3681 switch (eb->log_index) {
3682 case -1:
3683 set_bit(BTRFS_INODE_BTREE_ERR, &btree_ino->runtime_flags);
3684 break;
3685 case 0:
3686 set_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
3687 break;
3688 case 1:
3689 set_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
3690 break;
3691 default:
3692 BUG(); /* unexpected, logic error */
3693 }
3694}
3695
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003696static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3697{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003698 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003699 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003700 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003701
Kent Overstreet2c30c712013-11-07 12:20:26 -08003702 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003703 struct page *page = bvec->bv_page;
3704
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003705 eb = (struct extent_buffer *)page->private;
3706 BUG_ON(!eb);
3707 done = atomic_dec_and_test(&eb->io_pages);
3708
Filipe Manana656f30d2014-09-26 12:25:56 +01003709 if (err || test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003710 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003711 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003712 }
3713
3714 end_page_writeback(page);
3715
3716 if (!done)
3717 continue;
3718
3719 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003720 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003721
3722 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003723}
3724
Chris Mason0e378df2014-05-19 20:55:27 -07003725static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003726 struct btrfs_fs_info *fs_info,
3727 struct writeback_control *wbc,
3728 struct extent_page_data *epd)
3729{
3730 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003731 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003732 u64 offset = eb->start;
3733 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003734 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003735 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003736 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003737
Filipe Manana656f30d2014-09-26 12:25:56 +01003738 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003739 num_pages = num_extent_pages(eb->start, eb->len);
3740 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003741 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3742 bio_flags = EXTENT_BIO_TREE_LOG;
3743
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003744 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003745 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003746
3747 clear_page_dirty_for_io(p);
3748 set_page_writeback(p);
Josef Bacikf28491e2013-12-16 13:24:27 -05003749 ret = submit_extent_page(rw, tree, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003750 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3751 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003752 0, epd->bio_flags, bio_flags);
3753 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003754 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003755 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003756 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003757 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3758 end_extent_buffer_writeback(eb);
3759 ret = -EIO;
3760 break;
3761 }
3762 offset += PAGE_CACHE_SIZE;
3763 update_nr_written(p, wbc, 1);
3764 unlock_page(p);
3765 }
3766
3767 if (unlikely(ret)) {
3768 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003769 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003770 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003771 unlock_page(p);
3772 }
3773 }
3774
3775 return ret;
3776}
3777
3778int btree_write_cache_pages(struct address_space *mapping,
3779 struct writeback_control *wbc)
3780{
3781 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3782 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3783 struct extent_buffer *eb, *prev_eb = NULL;
3784 struct extent_page_data epd = {
3785 .bio = NULL,
3786 .tree = tree,
3787 .extent_locked = 0,
3788 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003789 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003790 };
3791 int ret = 0;
3792 int done = 0;
3793 int nr_to_write_done = 0;
3794 struct pagevec pvec;
3795 int nr_pages;
3796 pgoff_t index;
3797 pgoff_t end; /* Inclusive */
3798 int scanned = 0;
3799 int tag;
3800
3801 pagevec_init(&pvec, 0);
3802 if (wbc->range_cyclic) {
3803 index = mapping->writeback_index; /* Start from prev offset */
3804 end = -1;
3805 } else {
3806 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3807 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3808 scanned = 1;
3809 }
3810 if (wbc->sync_mode == WB_SYNC_ALL)
3811 tag = PAGECACHE_TAG_TOWRITE;
3812 else
3813 tag = PAGECACHE_TAG_DIRTY;
3814retry:
3815 if (wbc->sync_mode == WB_SYNC_ALL)
3816 tag_pages_for_writeback(mapping, index, end);
3817 while (!done && !nr_to_write_done && (index <= end) &&
3818 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3819 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3820 unsigned i;
3821
3822 scanned = 1;
3823 for (i = 0; i < nr_pages; i++) {
3824 struct page *page = pvec.pages[i];
3825
3826 if (!PagePrivate(page))
3827 continue;
3828
3829 if (!wbc->range_cyclic && page->index > end) {
3830 done = 1;
3831 break;
3832 }
3833
Josef Bacikb5bae262012-09-14 13:43:01 -04003834 spin_lock(&mapping->private_lock);
3835 if (!PagePrivate(page)) {
3836 spin_unlock(&mapping->private_lock);
3837 continue;
3838 }
3839
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003840 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003841
3842 /*
3843 * Shouldn't happen and normally this would be a BUG_ON
3844 * but no sense in crashing the users box for something
3845 * we can survive anyway.
3846 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303847 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003848 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003849 continue;
3850 }
3851
Josef Bacikb5bae262012-09-14 13:43:01 -04003852 if (eb == prev_eb) {
3853 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003854 continue;
3855 }
3856
Josef Bacikb5bae262012-09-14 13:43:01 -04003857 ret = atomic_inc_not_zero(&eb->refs);
3858 spin_unlock(&mapping->private_lock);
3859 if (!ret)
3860 continue;
3861
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003862 prev_eb = eb;
3863 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3864 if (!ret) {
3865 free_extent_buffer(eb);
3866 continue;
3867 }
3868
3869 ret = write_one_eb(eb, fs_info, wbc, &epd);
3870 if (ret) {
3871 done = 1;
3872 free_extent_buffer(eb);
3873 break;
3874 }
3875 free_extent_buffer(eb);
3876
3877 /*
3878 * the filesystem may choose to bump up nr_to_write.
3879 * We have to make sure to honor the new nr_to_write
3880 * at any time
3881 */
3882 nr_to_write_done = wbc->nr_to_write <= 0;
3883 }
3884 pagevec_release(&pvec);
3885 cond_resched();
3886 }
3887 if (!scanned && !done) {
3888 /*
3889 * We hit the last page and there is more work to be done: wrap
3890 * back to the start of the file
3891 */
3892 scanned = 1;
3893 index = 0;
3894 goto retry;
3895 }
3896 flush_write_bio(&epd);
3897 return ret;
3898}
3899
Chris Masond1310b22008-01-24 16:13:08 -05003900/**
3901 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
3902 * @mapping: address space structure to write
3903 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3904 * @writepage: function called for each page
3905 * @data: data passed to writepage function
3906 *
3907 * If a page is already under I/O, write_cache_pages() skips it, even
3908 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3909 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3910 * and msync() need to guarantee that all the data which was dirty at the time
3911 * the call was made get new I/O started against them. If wbc->sync_mode is
3912 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3913 * existing IO to complete.
3914 */
Chris Mason4bef0842008-09-08 11:18:08 -04003915static int extent_write_cache_pages(struct extent_io_tree *tree,
3916 struct address_space *mapping,
3917 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003918 writepage_t writepage, void *data,
3919 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003920{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003921 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003922 int ret = 0;
3923 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01003924 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003925 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003926 struct pagevec pvec;
3927 int nr_pages;
3928 pgoff_t index;
3929 pgoff_t end; /* Inclusive */
3930 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003931 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003932
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003933 /*
3934 * We have to hold onto the inode so that ordered extents can do their
3935 * work when the IO finishes. The alternative to this is failing to add
3936 * an ordered extent if the igrab() fails there and that is a huge pain
3937 * to deal with, so instead just hold onto the inode throughout the
3938 * writepages operation. If it fails here we are freeing up the inode
3939 * anyway and we'd rather not waste our time writing out stuff that is
3940 * going to be truncated anyway.
3941 */
3942 if (!igrab(inode))
3943 return 0;
3944
Chris Masond1310b22008-01-24 16:13:08 -05003945 pagevec_init(&pvec, 0);
3946 if (wbc->range_cyclic) {
3947 index = mapping->writeback_index; /* Start from prev offset */
3948 end = -1;
3949 } else {
3950 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3951 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003952 scanned = 1;
3953 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003954 if (wbc->sync_mode == WB_SYNC_ALL)
3955 tag = PAGECACHE_TAG_TOWRITE;
3956 else
3957 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003958retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003959 if (wbc->sync_mode == WB_SYNC_ALL)
3960 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003961 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003962 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3963 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003964 unsigned i;
3965
3966 scanned = 1;
3967 for (i = 0; i < nr_pages; i++) {
3968 struct page *page = pvec.pages[i];
3969
3970 /*
3971 * At this point we hold neither mapping->tree_lock nor
3972 * lock on the page itself: the page may be truncated or
3973 * invalidated (changing page->mapping to NULL), or even
3974 * swizzled back from swapper_space to tmpfs file
3975 * mapping
3976 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003977 if (!trylock_page(page)) {
3978 flush_fn(data);
3979 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003980 }
Chris Masond1310b22008-01-24 16:13:08 -05003981
3982 if (unlikely(page->mapping != mapping)) {
3983 unlock_page(page);
3984 continue;
3985 }
3986
3987 if (!wbc->range_cyclic && page->index > end) {
3988 done = 1;
3989 unlock_page(page);
3990 continue;
3991 }
3992
Chris Masond2c3f4f2008-11-19 12:44:22 -05003993 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003994 if (PageWriteback(page))
3995 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003996 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003997 }
Chris Masond1310b22008-01-24 16:13:08 -05003998
3999 if (PageWriteback(page) ||
4000 !clear_page_dirty_for_io(page)) {
4001 unlock_page(page);
4002 continue;
4003 }
4004
4005 ret = (*writepage)(page, wbc, data);
4006
4007 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4008 unlock_page(page);
4009 ret = 0;
4010 }
Filipe Manana61391d52014-05-09 17:17:40 +01004011 if (!err && ret < 0)
4012 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004013
4014 /*
4015 * the filesystem may choose to bump up nr_to_write.
4016 * We have to make sure to honor the new nr_to_write
4017 * at any time
4018 */
4019 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004020 }
4021 pagevec_release(&pvec);
4022 cond_resched();
4023 }
Filipe Manana61391d52014-05-09 17:17:40 +01004024 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05004025 /*
4026 * We hit the last page and there is more work to be done: wrap
4027 * back to the start of the file
4028 */
4029 scanned = 1;
4030 index = 0;
4031 goto retry;
4032 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004033 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01004034 return err;
Chris Masond1310b22008-01-24 16:13:08 -05004035}
Chris Masond1310b22008-01-24 16:13:08 -05004036
Chris Masonffbd5172009-04-20 15:50:09 -04004037static void flush_epd_write_bio(struct extent_page_data *epd)
4038{
4039 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004040 int rw = WRITE;
4041 int ret;
4042
Chris Masonffbd5172009-04-20 15:50:09 -04004043 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04004044 rw = WRITE_SYNC;
4045
Josef Bacikde0022b2012-09-25 14:25:58 -04004046 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004047 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004048 epd->bio = NULL;
4049 }
4050}
4051
Chris Masond2c3f4f2008-11-19 12:44:22 -05004052static noinline void flush_write_bio(void *data)
4053{
4054 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004055 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004056}
4057
Chris Masond1310b22008-01-24 16:13:08 -05004058int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4059 get_extent_t *get_extent,
4060 struct writeback_control *wbc)
4061{
4062 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004063 struct extent_page_data epd = {
4064 .bio = NULL,
4065 .tree = tree,
4066 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004067 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004068 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004069 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004070 };
Chris Masond1310b22008-01-24 16:13:08 -05004071
Chris Masond1310b22008-01-24 16:13:08 -05004072 ret = __extent_writepage(page, wbc, &epd);
4073
Chris Masonffbd5172009-04-20 15:50:09 -04004074 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004075 return ret;
4076}
Chris Masond1310b22008-01-24 16:13:08 -05004077
Chris Mason771ed682008-11-06 22:02:51 -05004078int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4079 u64 start, u64 end, get_extent_t *get_extent,
4080 int mode)
4081{
4082 int ret = 0;
4083 struct address_space *mapping = inode->i_mapping;
4084 struct page *page;
4085 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
4086 PAGE_CACHE_SHIFT;
4087
4088 struct extent_page_data epd = {
4089 .bio = NULL,
4090 .tree = tree,
4091 .get_extent = get_extent,
4092 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004093 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004094 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004095 };
4096 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004097 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004098 .nr_to_write = nr_pages * 2,
4099 .range_start = start,
4100 .range_end = end + 1,
4101 };
4102
Chris Masond3977122009-01-05 21:25:51 -05004103 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05004104 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
4105 if (clear_page_dirty_for_io(page))
4106 ret = __extent_writepage(page, &wbc_writepages, &epd);
4107 else {
4108 if (tree->ops && tree->ops->writepage_end_io_hook)
4109 tree->ops->writepage_end_io_hook(page, start,
4110 start + PAGE_CACHE_SIZE - 1,
4111 NULL, 1);
4112 unlock_page(page);
4113 }
4114 page_cache_release(page);
4115 start += PAGE_CACHE_SIZE;
4116 }
4117
Chris Masonffbd5172009-04-20 15:50:09 -04004118 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004119 return ret;
4120}
Chris Masond1310b22008-01-24 16:13:08 -05004121
4122int extent_writepages(struct extent_io_tree *tree,
4123 struct address_space *mapping,
4124 get_extent_t *get_extent,
4125 struct writeback_control *wbc)
4126{
4127 int ret = 0;
4128 struct extent_page_data epd = {
4129 .bio = NULL,
4130 .tree = tree,
4131 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004132 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004133 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004134 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004135 };
4136
Chris Mason4bef0842008-09-08 11:18:08 -04004137 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004138 __extent_writepage, &epd,
4139 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004140 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004141 return ret;
4142}
Chris Masond1310b22008-01-24 16:13:08 -05004143
4144int extent_readpages(struct extent_io_tree *tree,
4145 struct address_space *mapping,
4146 struct list_head *pages, unsigned nr_pages,
4147 get_extent_t get_extent)
4148{
4149 struct bio *bio = NULL;
4150 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004151 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004152 struct page *pagepool[16];
4153 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004154 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004155 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004156
Chris Masond1310b22008-01-24 16:13:08 -05004157 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004158 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004159
4160 prefetchw(&page->flags);
4161 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004162 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004163 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004164 page_cache_release(page);
4165 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004166 }
Liu Bo67c96842012-07-20 21:43:09 -06004167
4168 pagepool[nr++] = page;
4169 if (nr < ARRAY_SIZE(pagepool))
4170 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004171 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08004172 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06004173 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004174 }
Miao Xie99740902013-07-25 19:22:36 +08004175 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004176 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08004177 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06004178
Miao Xie125bac012013-07-25 19:22:37 +08004179 if (em_cached)
4180 free_extent_map(em_cached);
4181
Chris Masond1310b22008-01-24 16:13:08 -05004182 BUG_ON(!list_empty(pages));
4183 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004184 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004185 return 0;
4186}
Chris Masond1310b22008-01-24 16:13:08 -05004187
4188/*
4189 * basic invalidatepage code, this waits on any locked or writeback
4190 * ranges corresponding to the page, and then deletes any extent state
4191 * records from the tree
4192 */
4193int extent_invalidatepage(struct extent_io_tree *tree,
4194 struct page *page, unsigned long offset)
4195{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004196 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004197 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004198 u64 end = start + PAGE_CACHE_SIZE - 1;
4199 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4200
Qu Wenruofda28322013-02-26 08:10:22 +00004201 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004202 if (start > end)
4203 return 0;
4204
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004205 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004206 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004207 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004208 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4209 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004210 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004211 return 0;
4212}
Chris Masond1310b22008-01-24 16:13:08 -05004213
4214/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004215 * a helper for releasepage, this tests for areas of the page that
4216 * are locked or under IO and drops the related state bits if it is safe
4217 * to drop the page.
4218 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004219static int try_release_extent_state(struct extent_map_tree *map,
4220 struct extent_io_tree *tree,
4221 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004222{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004223 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004224 u64 end = start + PAGE_CACHE_SIZE - 1;
4225 int ret = 1;
4226
Chris Mason211f90e2008-07-18 11:56:15 -04004227 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004228 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004229 ret = 0;
4230 else {
4231 if ((mask & GFP_NOFS) == GFP_NOFS)
4232 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004233 /*
4234 * at this point we can safely clear everything except the
4235 * locked bit and the nodatasum bit
4236 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004237 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004238 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4239 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004240
4241 /* if clear_extent_bit failed for enomem reasons,
4242 * we can't allow the release to continue.
4243 */
4244 if (ret < 0)
4245 ret = 0;
4246 else
4247 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004248 }
4249 return ret;
4250}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004251
4252/*
Chris Masond1310b22008-01-24 16:13:08 -05004253 * a helper for releasepage. As long as there are no locked extents
4254 * in the range corresponding to the page, both state records and extent
4255 * map records are removed
4256 */
4257int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004258 struct extent_io_tree *tree, struct page *page,
4259 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004260{
4261 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004262 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004263 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004264
Chris Mason70dec802008-01-29 09:59:12 -05004265 if ((mask & __GFP_WAIT) &&
4266 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004267 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004268 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004269 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004270 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004271 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004272 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004273 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004274 break;
4275 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004276 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4277 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004278 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004279 free_extent_map(em);
4280 break;
4281 }
4282 if (!test_range_bit(tree, em->start,
4283 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004284 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004285 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004286 remove_extent_mapping(map, em);
4287 /* once for the rb tree */
4288 free_extent_map(em);
4289 }
4290 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004291 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004292
4293 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004294 free_extent_map(em);
4295 }
Chris Masond1310b22008-01-24 16:13:08 -05004296 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004297 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004298}
Chris Masond1310b22008-01-24 16:13:08 -05004299
Chris Masonec29ed52011-02-23 16:23:20 -05004300/*
4301 * helper function for fiemap, which doesn't want to see any holes.
4302 * This maps until we find something past 'last'
4303 */
4304static struct extent_map *get_extent_skip_holes(struct inode *inode,
4305 u64 offset,
4306 u64 last,
4307 get_extent_t *get_extent)
4308{
4309 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4310 struct extent_map *em;
4311 u64 len;
4312
4313 if (offset >= last)
4314 return NULL;
4315
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304316 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004317 len = last - offset;
4318 if (len == 0)
4319 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004320 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004321 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004322 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004323 return em;
4324
4325 /* if this isn't a hole return it */
4326 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4327 em->block_start != EXTENT_MAP_HOLE) {
4328 return em;
4329 }
4330
4331 /* this is a hole, advance to the next extent */
4332 offset = extent_map_end(em);
4333 free_extent_map(em);
4334 if (offset >= last)
4335 break;
4336 }
4337 return NULL;
4338}
4339
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004340int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4341 __u64 start, __u64 len, get_extent_t *get_extent)
4342{
Josef Bacik975f84f2010-11-23 19:36:57 +00004343 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004344 u64 off = start;
4345 u64 max = start + len;
4346 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004347 u32 found_type;
4348 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004349 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004350 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004351 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004352 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004353 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004354 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004355 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004356 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004357 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004358 u64 em_start = 0;
4359 u64 em_len = 0;
4360 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004361
4362 if (len == 0)
4363 return -EINVAL;
4364
Josef Bacik975f84f2010-11-23 19:36:57 +00004365 path = btrfs_alloc_path();
4366 if (!path)
4367 return -ENOMEM;
4368 path->leave_spinning = 1;
4369
Qu Wenruo2c919432014-07-18 09:55:43 +08004370 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4371 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004372
Chris Masonec29ed52011-02-23 16:23:20 -05004373 /*
4374 * lookup the last file extent. We're not using i_size here
4375 * because there might be preallocation past i_size
4376 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004377 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4378 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004379 if (ret < 0) {
4380 btrfs_free_path(path);
4381 return ret;
4382 }
4383 WARN_ON(!ret);
4384 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004385 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004386 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004387
Chris Masonec29ed52011-02-23 16:23:20 -05004388 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004389 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004390 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004391 /* have to trust i_size as the end */
4392 last = (u64)-1;
4393 last_for_get_extent = isize;
4394 } else {
4395 /*
4396 * remember the start of the last extent. There are a
4397 * bunch of different factors that go into the length of the
4398 * extent, so its much less complex to remember where it started
4399 */
4400 last = found_key.offset;
4401 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004402 }
Liu Bofe09e162013-09-22 12:54:23 +08004403 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004404
Chris Masonec29ed52011-02-23 16:23:20 -05004405 /*
4406 * we might have some extents allocated but more delalloc past those
4407 * extents. so, we trust isize unless the start of the last extent is
4408 * beyond isize
4409 */
4410 if (last < isize) {
4411 last = (u64)-1;
4412 last_for_get_extent = isize;
4413 }
4414
Liu Boa52f4cd2013-05-01 16:23:41 +00004415 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004416 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004417
Josef Bacik4d479cf2011-11-17 11:34:31 -05004418 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004419 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004420 if (!em)
4421 goto out;
4422 if (IS_ERR(em)) {
4423 ret = PTR_ERR(em);
4424 goto out;
4425 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004426
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004427 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004428 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004429
Chris Masonea8efc72011-03-08 11:54:40 -05004430 /* break if the extent we found is outside the range */
4431 if (em->start >= max || extent_map_end(em) < off)
4432 break;
4433
4434 /*
4435 * get_extent may return an extent that starts before our
4436 * requested range. We have to make sure the ranges
4437 * we return to fiemap always move forward and don't
4438 * overlap, so adjust the offsets here
4439 */
4440 em_start = max(em->start, off);
4441
4442 /*
4443 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004444 * for adjusting the disk offset below. Only do this if the
4445 * extent isn't compressed since our in ram offset may be past
4446 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004447 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004448 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4449 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004450 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004451 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004452 disko = 0;
4453 flags = 0;
4454
Chris Masonea8efc72011-03-08 11:54:40 -05004455 /*
4456 * bump off for our next call to get_extent
4457 */
4458 off = extent_map_end(em);
4459 if (off >= max)
4460 end = 1;
4461
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004462 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004463 end = 1;
4464 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004465 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004466 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4467 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004468 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004469 flags |= (FIEMAP_EXTENT_DELALLOC |
4470 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004471 } else if (fieinfo->fi_extents_max) {
4472 u64 bytenr = em->block_start -
4473 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004474
Chris Masonea8efc72011-03-08 11:54:40 -05004475 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004476
4477 /*
4478 * As btrfs supports shared space, this information
4479 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004480 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4481 * then we're just getting a count and we can skip the
4482 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004483 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004484 ret = btrfs_check_shared(NULL, root->fs_info,
4485 root->objectid,
4486 btrfs_ino(inode), bytenr);
4487 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004488 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004489 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004490 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004491 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004492 }
4493 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4494 flags |= FIEMAP_EXTENT_ENCODED;
4495
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004496 free_extent_map(em);
4497 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004498 if ((em_start >= last) || em_len == (u64)-1 ||
4499 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004500 flags |= FIEMAP_EXTENT_LAST;
4501 end = 1;
4502 }
4503
Chris Masonec29ed52011-02-23 16:23:20 -05004504 /* now scan forward to see if this is really the last extent. */
4505 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4506 get_extent);
4507 if (IS_ERR(em)) {
4508 ret = PTR_ERR(em);
4509 goto out;
4510 }
4511 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004512 flags |= FIEMAP_EXTENT_LAST;
4513 end = 1;
4514 }
Chris Masonec29ed52011-02-23 16:23:20 -05004515 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4516 em_len, flags);
4517 if (ret)
4518 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004519 }
4520out_free:
4521 free_extent_map(em);
4522out:
Liu Bofe09e162013-09-22 12:54:23 +08004523 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004524 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004525 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004526 return ret;
4527}
4528
Chris Mason727011e2010-08-06 13:21:20 -04004529static void __free_extent_buffer(struct extent_buffer *eb)
4530{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004531 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004532 kmem_cache_free(extent_buffer_cache, eb);
4533}
4534
Josef Bacika26e8c92014-03-28 17:07:27 -04004535int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004536{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004537 return (atomic_read(&eb->io_pages) ||
4538 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4539 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004540}
4541
Miao Xie897ca6e2010-10-26 20:57:29 -04004542/*
4543 * Helper for releasing extent buffer page.
4544 */
David Sterbaa50924e2014-07-31 00:51:36 +02004545static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e2010-10-26 20:57:29 -04004546{
4547 unsigned long index;
4548 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004549 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004550
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004551 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004552
David Sterbaa50924e2014-07-31 00:51:36 +02004553 index = num_extent_pages(eb->start, eb->len);
4554 if (index == 0)
Miao Xie897ca6e2010-10-26 20:57:29 -04004555 return;
4556
4557 do {
4558 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004559 page = eb->pages[index];
Jan Schmidt815a51c2012-05-16 17:00:02 +02004560 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004561 spin_lock(&page->mapping->private_lock);
4562 /*
4563 * We do this since we'll remove the pages after we've
4564 * removed the eb from the radix tree, so we could race
4565 * and have this page now attached to the new eb. So
4566 * only clear page_private if it's still connected to
4567 * this eb.
4568 */
4569 if (PagePrivate(page) &&
4570 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004571 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004572 BUG_ON(PageDirty(page));
4573 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004574 /*
4575 * We need to make sure we haven't be attached
4576 * to a new eb.
4577 */
4578 ClearPagePrivate(page);
4579 set_page_private(page, 0);
4580 /* One for the page private */
4581 page_cache_release(page);
4582 }
4583 spin_unlock(&page->mapping->private_lock);
4584
Jan Schmidt815a51c2012-05-16 17:00:02 +02004585 }
4586 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004587 /* One for when we alloced the page */
Miao Xie897ca6e2010-10-26 20:57:29 -04004588 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004589 }
David Sterbaa50924e2014-07-31 00:51:36 +02004590 } while (index != 0);
Miao Xie897ca6e2010-10-26 20:57:29 -04004591}
4592
4593/*
4594 * Helper for releasing the extent buffer.
4595 */
4596static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4597{
David Sterbaa50924e2014-07-31 00:51:36 +02004598 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e2010-10-26 20:57:29 -04004599 __free_extent_buffer(eb);
4600}
4601
Josef Bacikf28491e2013-12-16 13:24:27 -05004602static struct extent_buffer *
4603__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004604 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004605{
4606 struct extent_buffer *eb = NULL;
4607
David Sterba23d79d82014-06-15 02:55:29 +02004608 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004609 if (eb == NULL)
4610 return NULL;
4611 eb->start = start;
4612 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004613 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004614 eb->bflags = 0;
4615 rwlock_init(&eb->lock);
4616 atomic_set(&eb->write_locks, 0);
4617 atomic_set(&eb->read_locks, 0);
4618 atomic_set(&eb->blocking_readers, 0);
4619 atomic_set(&eb->blocking_writers, 0);
4620 atomic_set(&eb->spinning_readers, 0);
4621 atomic_set(&eb->spinning_writers, 0);
4622 eb->lock_nested = 0;
4623 init_waitqueue_head(&eb->write_lock_wq);
4624 init_waitqueue_head(&eb->read_lock_wq);
4625
4626 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4627
4628 spin_lock_init(&eb->refs_lock);
4629 atomic_set(&eb->refs, 1);
4630 atomic_set(&eb->io_pages, 0);
4631
4632 /*
4633 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4634 */
4635 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4636 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4637 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4638
4639 return eb;
4640}
4641
4642struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4643{
4644 unsigned long i;
4645 struct page *p;
4646 struct extent_buffer *new;
4647 unsigned long num_pages = num_extent_pages(src->start, src->len);
4648
David Sterba3f556f72014-06-15 03:20:26 +02004649 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004650 if (new == NULL)
4651 return NULL;
4652
4653 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004654 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004655 if (!p) {
4656 btrfs_release_extent_buffer(new);
4657 return NULL;
4658 }
4659 attach_extent_buffer_page(new, p);
4660 WARN_ON(PageDirty(p));
4661 SetPageUptodate(p);
4662 new->pages[i] = p;
4663 }
4664
4665 copy_extent_buffer(new, src, 0, 0, src->len);
4666 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4667 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4668
4669 return new;
4670}
4671
David Sterba3f556f72014-06-15 03:20:26 +02004672struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4673 u64 start)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004674{
4675 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004676 unsigned long len;
4677 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004678 unsigned long i;
4679
David Sterba3f556f72014-06-15 03:20:26 +02004680 if (!fs_info) {
4681 /*
4682 * Called only from tests that don't always have a fs_info
4683 * available, but we know that nodesize is 4096
4684 */
4685 len = 4096;
4686 } else {
4687 len = fs_info->tree_root->nodesize;
4688 }
4689 num_pages = num_extent_pages(0, len);
4690
4691 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004692 if (!eb)
4693 return NULL;
4694
4695 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004696 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004697 if (!eb->pages[i])
4698 goto err;
4699 }
4700 set_extent_buffer_uptodate(eb);
4701 btrfs_set_header_nritems(eb, 0);
4702 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4703
4704 return eb;
4705err:
4706 for (; i > 0; i--)
4707 __free_page(eb->pages[i - 1]);
4708 __free_extent_buffer(eb);
4709 return NULL;
4710}
4711
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004712static void check_buffer_tree_ref(struct extent_buffer *eb)
4713{
Chris Mason242e18c2013-01-29 17:49:37 -05004714 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004715 /* the ref bit is tricky. We have to make sure it is set
4716 * if we have the buffer dirty. Otherwise the
4717 * code to free a buffer can end up dropping a dirty
4718 * page
4719 *
4720 * Once the ref bit is set, it won't go away while the
4721 * buffer is dirty or in writeback, and it also won't
4722 * go away while we have the reference count on the
4723 * eb bumped.
4724 *
4725 * We can't just set the ref bit without bumping the
4726 * ref on the eb because free_extent_buffer might
4727 * see the ref bit and try to clear it. If this happens
4728 * free_extent_buffer might end up dropping our original
4729 * ref by mistake and freeing the page before we are able
4730 * to add one more ref.
4731 *
4732 * So bump the ref count first, then set the bit. If someone
4733 * beat us to it, drop the ref we added.
4734 */
Chris Mason242e18c2013-01-29 17:49:37 -05004735 refs = atomic_read(&eb->refs);
4736 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4737 return;
4738
Josef Bacik594831c2012-07-20 16:11:08 -04004739 spin_lock(&eb->refs_lock);
4740 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004741 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004742 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004743}
4744
Mel Gorman2457aec2014-06-04 16:10:31 -07004745static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4746 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004747{
4748 unsigned long num_pages, i;
4749
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004750 check_buffer_tree_ref(eb);
4751
Josef Bacik5df42352012-03-15 18:24:42 -04004752 num_pages = num_extent_pages(eb->start, eb->len);
4753 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004754 struct page *p = eb->pages[i];
4755
Mel Gorman2457aec2014-06-04 16:10:31 -07004756 if (p != accessed)
4757 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004758 }
4759}
4760
Josef Bacikf28491e2013-12-16 13:24:27 -05004761struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4762 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004763{
4764 struct extent_buffer *eb;
4765
4766 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004767 eb = radix_tree_lookup(&fs_info->buffer_radix,
4768 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004769 if (eb && atomic_inc_not_zero(&eb->refs)) {
4770 rcu_read_unlock();
Mel Gorman2457aec2014-06-04 16:10:31 -07004771 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004772 return eb;
4773 }
4774 rcu_read_unlock();
4775
4776 return NULL;
4777}
4778
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004779#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4780struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004781 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004782{
4783 struct extent_buffer *eb, *exists = NULL;
4784 int ret;
4785
4786 eb = find_extent_buffer(fs_info, start);
4787 if (eb)
4788 return eb;
David Sterba3f556f72014-06-15 03:20:26 +02004789 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004790 if (!eb)
4791 return NULL;
4792 eb->fs_info = fs_info;
4793again:
4794 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4795 if (ret)
4796 goto free_eb;
4797 spin_lock(&fs_info->buffer_lock);
4798 ret = radix_tree_insert(&fs_info->buffer_radix,
4799 start >> PAGE_CACHE_SHIFT, eb);
4800 spin_unlock(&fs_info->buffer_lock);
4801 radix_tree_preload_end();
4802 if (ret == -EEXIST) {
4803 exists = find_extent_buffer(fs_info, start);
4804 if (exists)
4805 goto free_eb;
4806 else
4807 goto again;
4808 }
4809 check_buffer_tree_ref(eb);
4810 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4811
4812 /*
4813 * We will free dummy extent buffer's if they come into
4814 * free_extent_buffer with a ref count of 2, but if we are using this we
4815 * want the buffers to stay in memory until we're done with them, so
4816 * bump the ref count again.
4817 */
4818 atomic_inc(&eb->refs);
4819 return eb;
4820free_eb:
4821 btrfs_release_extent_buffer(eb);
4822 return exists;
4823}
4824#endif
4825
Josef Bacikf28491e2013-12-16 13:24:27 -05004826struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004827 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004828{
David Sterbace3e6982014-06-15 03:00:04 +02004829 unsigned long len = fs_info->tree_root->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004830 unsigned long num_pages = num_extent_pages(start, len);
4831 unsigned long i;
4832 unsigned long index = start >> PAGE_CACHE_SHIFT;
4833 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004834 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004835 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004836 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004837 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004838 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004839
Josef Bacikf28491e2013-12-16 13:24:27 -05004840 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004841 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004842 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004843
David Sterba23d79d82014-06-15 02:55:29 +02004844 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004845 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004846 return NULL;
4847
Chris Mason727011e2010-08-06 13:21:20 -04004848 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004849 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004850 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004851 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004852
4853 spin_lock(&mapping->private_lock);
4854 if (PagePrivate(p)) {
4855 /*
4856 * We could have already allocated an eb for this page
4857 * and attached one so lets see if we can get a ref on
4858 * the existing eb, and if we can we know it's good and
4859 * we can just return that one, else we know we can just
4860 * overwrite page->private.
4861 */
4862 exists = (struct extent_buffer *)p->private;
4863 if (atomic_inc_not_zero(&exists->refs)) {
4864 spin_unlock(&mapping->private_lock);
4865 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004866 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004867 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004868 goto free_eb;
4869 }
4870
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004871 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004872 * Do this so attach doesn't complain and we need to
4873 * drop the ref the old guy had.
4874 */
4875 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004876 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004877 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004878 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004879 attach_extent_buffer_page(eb, p);
4880 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004881 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004882 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004883 if (!PageUptodate(p))
4884 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004885
4886 /*
4887 * see below about how we avoid a nasty race with release page
4888 * and why we unlock later
4889 */
Chris Masond1310b22008-01-24 16:13:08 -05004890 }
4891 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004892 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004893again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004894 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4895 if (ret)
4896 goto free_eb;
4897
Josef Bacikf28491e2013-12-16 13:24:27 -05004898 spin_lock(&fs_info->buffer_lock);
4899 ret = radix_tree_insert(&fs_info->buffer_radix,
4900 start >> PAGE_CACHE_SHIFT, eb);
4901 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004902 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004903 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004904 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004905 if (exists)
4906 goto free_eb;
4907 else
Josef Bacik115391d2012-03-09 09:51:43 -05004908 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004909 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004910 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004911 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004912 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004913
4914 /*
4915 * there is a race where release page may have
4916 * tried to find this extent buffer in the radix
4917 * but failed. It will tell the VM it is safe to
4918 * reclaim the, and it will clear the page private bit.
4919 * We must make sure to set the page private bit properly
4920 * after the extent buffer is in the radix tree so
4921 * it doesn't get lost
4922 */
Chris Mason727011e2010-08-06 13:21:20 -04004923 SetPageChecked(eb->pages[0]);
4924 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004925 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04004926 ClearPageChecked(p);
4927 unlock_page(p);
4928 }
4929 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004930 return eb;
4931
Chris Mason6af118ce2008-07-22 11:18:07 -04004932free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004933 for (i = 0; i < num_pages; i++) {
4934 if (eb->pages[i])
4935 unlock_page(eb->pages[i]);
4936 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004937
Josef Bacik17de39a2012-05-04 15:16:06 -04004938 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e2010-10-26 20:57:29 -04004939 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004940 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004941}
Chris Masond1310b22008-01-24 16:13:08 -05004942
Josef Bacik3083ee22012-03-09 16:01:49 -05004943static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4944{
4945 struct extent_buffer *eb =
4946 container_of(head, struct extent_buffer, rcu_head);
4947
4948 __free_extent_buffer(eb);
4949}
4950
Josef Bacik3083ee22012-03-09 16:01:49 -05004951/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004952static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004953{
4954 WARN_ON(atomic_read(&eb->refs) == 0);
4955 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05004956 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004957 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05004958
Jan Schmidt815a51c2012-05-16 17:00:02 +02004959 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004960
Josef Bacikf28491e2013-12-16 13:24:27 -05004961 spin_lock(&fs_info->buffer_lock);
4962 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02004963 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05004964 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004965 } else {
4966 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004967 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004968
4969 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02004970 btrfs_release_extent_buffer_page(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05004971 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004972 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004973 }
4974 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004975
4976 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004977}
4978
Chris Masond1310b22008-01-24 16:13:08 -05004979void free_extent_buffer(struct extent_buffer *eb)
4980{
Chris Mason242e18c2013-01-29 17:49:37 -05004981 int refs;
4982 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004983 if (!eb)
4984 return;
4985
Chris Mason242e18c2013-01-29 17:49:37 -05004986 while (1) {
4987 refs = atomic_read(&eb->refs);
4988 if (refs <= 3)
4989 break;
4990 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4991 if (old == refs)
4992 return;
4993 }
4994
Josef Bacik3083ee22012-03-09 16:01:49 -05004995 spin_lock(&eb->refs_lock);
4996 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004997 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4998 atomic_dec(&eb->refs);
4999
5000 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005001 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005002 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005003 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5004 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005005
Josef Bacik3083ee22012-03-09 16:01:49 -05005006 /*
5007 * I know this is terrible, but it's temporary until we stop tracking
5008 * the uptodate bits and such for the extent buffers.
5009 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005010 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005011}
Chris Masond1310b22008-01-24 16:13:08 -05005012
Josef Bacik3083ee22012-03-09 16:01:49 -05005013void free_extent_buffer_stale(struct extent_buffer *eb)
5014{
5015 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005016 return;
5017
Josef Bacik3083ee22012-03-09 16:01:49 -05005018 spin_lock(&eb->refs_lock);
5019 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5020
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005021 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005022 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5023 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005024 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005025}
5026
Chris Mason1d4284b2012-03-28 20:31:37 -04005027void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005028{
Chris Masond1310b22008-01-24 16:13:08 -05005029 unsigned long i;
5030 unsigned long num_pages;
5031 struct page *page;
5032
Chris Masond1310b22008-01-24 16:13:08 -05005033 num_pages = num_extent_pages(eb->start, eb->len);
5034
5035 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005036 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005037 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005038 continue;
5039
Chris Masona61e6f22008-07-22 11:18:08 -04005040 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005041 WARN_ON(!PagePrivate(page));
5042
Chris Masond1310b22008-01-24 16:13:08 -05005043 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005044 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005045 if (!PageDirty(page)) {
5046 radix_tree_tag_clear(&page->mapping->page_tree,
5047 page_index(page),
5048 PAGECACHE_TAG_DIRTY);
5049 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005050 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005051 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005052 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005053 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005054 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005055}
Chris Masond1310b22008-01-24 16:13:08 -05005056
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005057int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005058{
5059 unsigned long i;
5060 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005061 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005062
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005063 check_buffer_tree_ref(eb);
5064
Chris Masonb9473432009-03-13 11:00:37 -04005065 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005066
Chris Masond1310b22008-01-24 16:13:08 -05005067 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005068 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005069 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5070
Chris Masonb9473432009-03-13 11:00:37 -04005071 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005072 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005073 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005074}
Chris Masond1310b22008-01-24 16:13:08 -05005075
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005076int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005077{
5078 unsigned long i;
5079 struct page *page;
5080 unsigned long num_pages;
5081
Chris Masonb4ce94d2009-02-04 09:25:08 -05005082 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005083 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005084 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005085 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005086 if (page)
5087 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005088 }
5089 return 0;
5090}
5091
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005092int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005093{
5094 unsigned long i;
5095 struct page *page;
5096 unsigned long num_pages;
5097
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005098 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005099 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005100 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005101 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005102 SetPageUptodate(page);
5103 }
5104 return 0;
5105}
Chris Masond1310b22008-01-24 16:13:08 -05005106
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005107int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005108{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005109 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005110}
Chris Masond1310b22008-01-24 16:13:08 -05005111
5112int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02005113 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005114 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005115{
5116 unsigned long i;
5117 unsigned long start_i;
5118 struct page *page;
5119 int err;
5120 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005121 int locked_pages = 0;
5122 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005123 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005124 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005125 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005126 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005127
Chris Masonb4ce94d2009-02-04 09:25:08 -05005128 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005129 return 0;
5130
Chris Masond1310b22008-01-24 16:13:08 -05005131 if (start) {
5132 WARN_ON(start < eb->start);
5133 start_i = (start >> PAGE_CACHE_SHIFT) -
5134 (eb->start >> PAGE_CACHE_SHIFT);
5135 } else {
5136 start_i = 0;
5137 }
5138
5139 num_pages = num_extent_pages(eb->start, eb->len);
5140 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005141 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005142 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005143 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005144 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005145 } else {
5146 lock_page(page);
5147 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005148 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005149 if (!PageUptodate(page)) {
5150 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005151 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005152 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005153 }
5154 if (all_uptodate) {
5155 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005156 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005157 goto unlock_exit;
5158 }
5159
Filipe Manana656f30d2014-09-26 12:25:56 +01005160 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005161 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005162 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005163 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005164 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005165 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005166 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005167 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005168 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005169 mirror_num, &bio_flags,
5170 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005171 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005172 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005173 } else {
5174 unlock_page(page);
5175 }
5176 }
5177
Jeff Mahoney355808c2011-10-03 23:23:14 -04005178 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005179 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5180 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005181 if (err)
5182 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005183 }
Chris Masona86c12c2008-02-07 10:50:54 -05005184
Arne Jansenbb82ab82011-06-10 14:06:53 +02005185 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005186 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005187
Chris Masond1310b22008-01-24 16:13:08 -05005188 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005189 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005190 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005191 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005192 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005193 }
Chris Masond3977122009-01-05 21:25:51 -05005194
Chris Masond1310b22008-01-24 16:13:08 -05005195 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005196
5197unlock_exit:
5198 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005199 while (locked_pages > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005200 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005201 i++;
5202 unlock_page(page);
5203 locked_pages--;
5204 }
5205 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005206}
Chris Masond1310b22008-01-24 16:13:08 -05005207
5208void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5209 unsigned long start,
5210 unsigned long len)
5211{
5212 size_t cur;
5213 size_t offset;
5214 struct page *page;
5215 char *kaddr;
5216 char *dst = (char *)dstv;
5217 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5218 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005219
5220 WARN_ON(start > eb->len);
5221 WARN_ON(start + len > eb->start + eb->len);
5222
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005223 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005224
Chris Masond3977122009-01-05 21:25:51 -05005225 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005226 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005227
5228 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005229 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005230 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005231
5232 dst += cur;
5233 len -= cur;
5234 offset = 0;
5235 i++;
5236 }
5237}
Chris Masond1310b22008-01-24 16:13:08 -05005238
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005239int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5240 unsigned long start,
5241 unsigned long len)
5242{
5243 size_t cur;
5244 size_t offset;
5245 struct page *page;
5246 char *kaddr;
5247 char __user *dst = (char __user *)dstv;
5248 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5249 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5250 int ret = 0;
5251
5252 WARN_ON(start > eb->len);
5253 WARN_ON(start + len > eb->start + eb->len);
5254
5255 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5256
5257 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005258 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005259
5260 cur = min(len, (PAGE_CACHE_SIZE - offset));
5261 kaddr = page_address(page);
5262 if (copy_to_user(dst, kaddr + offset, cur)) {
5263 ret = -EFAULT;
5264 break;
5265 }
5266
5267 dst += cur;
5268 len -= cur;
5269 offset = 0;
5270 i++;
5271 }
5272
5273 return ret;
5274}
5275
Chris Masond1310b22008-01-24 16:13:08 -05005276int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005277 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005278 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005279 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005280{
5281 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5282 char *kaddr;
5283 struct page *p;
5284 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5285 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5286 unsigned long end_i = (start_offset + start + min_len - 1) >>
5287 PAGE_CACHE_SHIFT;
5288
5289 if (i != end_i)
5290 return -EINVAL;
5291
5292 if (i == 0) {
5293 offset = start_offset;
5294 *map_start = 0;
5295 } else {
5296 offset = 0;
5297 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5298 }
Chris Masond3977122009-01-05 21:25:51 -05005299
Chris Masond1310b22008-01-24 16:13:08 -05005300 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005301 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005302 "wanted %lu %lu\n",
5303 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005304 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005305 }
5306
David Sterbafb85fc92014-07-31 01:03:53 +02005307 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005308 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005309 *map = kaddr + offset;
5310 *map_len = PAGE_CACHE_SIZE - offset;
5311 return 0;
5312}
Chris Masond1310b22008-01-24 16:13:08 -05005313
Chris Masond1310b22008-01-24 16:13:08 -05005314int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5315 unsigned long start,
5316 unsigned long len)
5317{
5318 size_t cur;
5319 size_t offset;
5320 struct page *page;
5321 char *kaddr;
5322 char *ptr = (char *)ptrv;
5323 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5324 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5325 int ret = 0;
5326
5327 WARN_ON(start > eb->len);
5328 WARN_ON(start + len > eb->start + eb->len);
5329
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005330 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005331
Chris Masond3977122009-01-05 21:25:51 -05005332 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005333 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005334
5335 cur = min(len, (PAGE_CACHE_SIZE - offset));
5336
Chris Masona6591712011-07-19 12:04:14 -04005337 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005338 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005339 if (ret)
5340 break;
5341
5342 ptr += cur;
5343 len -= cur;
5344 offset = 0;
5345 i++;
5346 }
5347 return ret;
5348}
Chris Masond1310b22008-01-24 16:13:08 -05005349
5350void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5351 unsigned long start, unsigned long len)
5352{
5353 size_t cur;
5354 size_t offset;
5355 struct page *page;
5356 char *kaddr;
5357 char *src = (char *)srcv;
5358 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5359 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5360
5361 WARN_ON(start > eb->len);
5362 WARN_ON(start + len > eb->start + eb->len);
5363
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005364 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005365
Chris Masond3977122009-01-05 21:25:51 -05005366 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005367 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005368 WARN_ON(!PageUptodate(page));
5369
5370 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005371 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005372 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005373
5374 src += cur;
5375 len -= cur;
5376 offset = 0;
5377 i++;
5378 }
5379}
Chris Masond1310b22008-01-24 16:13:08 -05005380
5381void memset_extent_buffer(struct extent_buffer *eb, char c,
5382 unsigned long start, unsigned long len)
5383{
5384 size_t cur;
5385 size_t offset;
5386 struct page *page;
5387 char *kaddr;
5388 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5389 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5390
5391 WARN_ON(start > eb->len);
5392 WARN_ON(start + len > eb->start + eb->len);
5393
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005394 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005395
Chris Masond3977122009-01-05 21:25:51 -05005396 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005397 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005398 WARN_ON(!PageUptodate(page));
5399
5400 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005401 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005402 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005403
5404 len -= cur;
5405 offset = 0;
5406 i++;
5407 }
5408}
Chris Masond1310b22008-01-24 16:13:08 -05005409
5410void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5411 unsigned long dst_offset, unsigned long src_offset,
5412 unsigned long len)
5413{
5414 u64 dst_len = dst->len;
5415 size_t cur;
5416 size_t offset;
5417 struct page *page;
5418 char *kaddr;
5419 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5420 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5421
5422 WARN_ON(src->len != dst_len);
5423
5424 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005425 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005426
Chris Masond3977122009-01-05 21:25:51 -05005427 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005428 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005429 WARN_ON(!PageUptodate(page));
5430
5431 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5432
Chris Masona6591712011-07-19 12:04:14 -04005433 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005434 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005435
5436 src_offset += cur;
5437 len -= cur;
5438 offset = 0;
5439 i++;
5440 }
5441}
Chris Masond1310b22008-01-24 16:13:08 -05005442
Sergei Trofimovich33872062011-04-11 21:52:52 +00005443static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5444{
5445 unsigned long distance = (src > dst) ? src - dst : dst - src;
5446 return distance < len;
5447}
5448
Chris Masond1310b22008-01-24 16:13:08 -05005449static void copy_pages(struct page *dst_page, struct page *src_page,
5450 unsigned long dst_off, unsigned long src_off,
5451 unsigned long len)
5452{
Chris Masona6591712011-07-19 12:04:14 -04005453 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005454 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005455 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005456
Sergei Trofimovich33872062011-04-11 21:52:52 +00005457 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005458 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005459 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005460 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005461 if (areas_overlap(src_off, dst_off, len))
5462 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005463 }
Chris Masond1310b22008-01-24 16:13:08 -05005464
Chris Mason727011e2010-08-06 13:21:20 -04005465 if (must_memmove)
5466 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5467 else
5468 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005469}
5470
5471void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5472 unsigned long src_offset, unsigned long len)
5473{
5474 size_t cur;
5475 size_t dst_off_in_page;
5476 size_t src_off_in_page;
5477 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5478 unsigned long dst_i;
5479 unsigned long src_i;
5480
5481 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005482 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005483 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005484 BUG_ON(1);
5485 }
5486 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005487 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005488 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005489 BUG_ON(1);
5490 }
5491
Chris Masond3977122009-01-05 21:25:51 -05005492 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005493 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005494 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005495 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005496 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005497
5498 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5499 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5500
5501 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5502 src_off_in_page));
5503 cur = min_t(unsigned long, cur,
5504 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5505
David Sterbafb85fc92014-07-31 01:03:53 +02005506 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005507 dst_off_in_page, src_off_in_page, cur);
5508
5509 src_offset += cur;
5510 dst_offset += cur;
5511 len -= cur;
5512 }
5513}
Chris Masond1310b22008-01-24 16:13:08 -05005514
5515void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5516 unsigned long src_offset, unsigned long len)
5517{
5518 size_t cur;
5519 size_t dst_off_in_page;
5520 size_t src_off_in_page;
5521 unsigned long dst_end = dst_offset + len - 1;
5522 unsigned long src_end = src_offset + len - 1;
5523 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5524 unsigned long dst_i;
5525 unsigned long src_i;
5526
5527 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005528 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005529 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005530 BUG_ON(1);
5531 }
5532 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005533 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005534 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005535 BUG_ON(1);
5536 }
Chris Mason727011e2010-08-06 13:21:20 -04005537 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005538 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5539 return;
5540 }
Chris Masond3977122009-01-05 21:25:51 -05005541 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005542 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5543 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5544
5545 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005546 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005547 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005548 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005549
5550 cur = min_t(unsigned long, len, src_off_in_page + 1);
5551 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005552 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005553 dst_off_in_page - cur + 1,
5554 src_off_in_page - cur + 1, cur);
5555
5556 dst_end -= cur;
5557 src_end -= cur;
5558 len -= cur;
5559 }
5560}
Chris Mason6af118ce2008-07-22 11:18:07 -04005561
David Sterbaf7a52a42013-04-26 14:56:29 +00005562int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005563{
Chris Mason6af118ce2008-07-22 11:18:07 -04005564 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005565
Miao Xie19fe0a82010-10-26 20:57:29 -04005566 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005567 * We need to make sure noboody is attaching this page to an eb right
5568 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005569 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005570 spin_lock(&page->mapping->private_lock);
5571 if (!PagePrivate(page)) {
5572 spin_unlock(&page->mapping->private_lock);
5573 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005574 }
5575
Josef Bacik3083ee22012-03-09 16:01:49 -05005576 eb = (struct extent_buffer *)page->private;
5577 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005578
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005579 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005580 * This is a little awful but should be ok, we need to make sure that
5581 * the eb doesn't disappear out from under us while we're looking at
5582 * this page.
5583 */
5584 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005585 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005586 spin_unlock(&eb->refs_lock);
5587 spin_unlock(&page->mapping->private_lock);
5588 return 0;
5589 }
5590 spin_unlock(&page->mapping->private_lock);
5591
Josef Bacik3083ee22012-03-09 16:01:49 -05005592 /*
5593 * If tree ref isn't set then we know the ref on this eb is a real ref,
5594 * so just return, this page will likely be freed soon anyway.
5595 */
5596 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5597 spin_unlock(&eb->refs_lock);
5598 return 0;
5599 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005600
David Sterbaf7a52a42013-04-26 14:56:29 +00005601 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005602}