blob: 11aa8f743b9041b1baa1414c6f310a02d7d60a42 [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{
Filipe Manana0f318712015-05-14 20:41:07 +01001280 int wake = 0;
1281
1282 if (bits & EXTENT_LOCKED)
1283 wake = 1;
1284
1285 return clear_extent_bit(tree, start, end, bits, wake, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001286}
Chris Masond1310b22008-01-24 16:13:08 -05001287
1288int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001289 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001290{
1291 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001292 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001293 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001294}
Chris Masond1310b22008-01-24 16:13:08 -05001295
Liu Bo9e8a4a82012-09-05 19:10:51 -06001296int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1297 struct extent_state **cached_state, gfp_t mask)
1298{
1299 return set_extent_bit(tree, start, end,
1300 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1301 NULL, cached_state, mask);
1302}
1303
Chris Masond1310b22008-01-24 16:13:08 -05001304int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1305 gfp_t mask)
1306{
1307 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001308 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001309 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001310}
Chris Masond1310b22008-01-24 16:13:08 -05001311
1312int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1313 gfp_t mask)
1314{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001315 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001316 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001317}
Chris Masond1310b22008-01-24 16:13:08 -05001318
Chris Masond1310b22008-01-24 16:13:08 -05001319int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001320 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001321{
Liu Bo6b67a322013-03-28 08:30:28 +00001322 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001323 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001324}
Chris Masond1310b22008-01-24 16:13:08 -05001325
Josef Bacik5fd02042012-05-02 14:00:54 -04001326int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1327 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001328{
Chris Mason2c64c532009-09-02 15:04:12 -04001329 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001330 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001331}
Chris Masond1310b22008-01-24 16:13:08 -05001332
Chris Masond352ac62008-09-29 15:18:18 -04001333/*
1334 * either insert or lock state struct between start and end use mask to tell
1335 * us if waiting is desired.
1336 */
Chris Mason1edbb732009-09-02 13:24:36 -04001337int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001338 unsigned bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001339{
1340 int err;
1341 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001342
Chris Masond1310b22008-01-24 16:13:08 -05001343 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001344 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1345 EXTENT_LOCKED, &failed_start,
1346 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001347 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001348 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1349 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001350 } else
Chris Masond1310b22008-01-24 16:13:08 -05001351 break;
Chris Masond1310b22008-01-24 16:13:08 -05001352 WARN_ON(start > end);
1353 }
1354 return err;
1355}
Chris Masond1310b22008-01-24 16:13:08 -05001356
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001357int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001358{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001359 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001360}
1361
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001362int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik251792012008-10-29 14:49:05 -04001363{
1364 int err;
1365 u64 failed_start;
1366
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001367 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1368 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001369 if (err == -EEXIST) {
1370 if (failed_start > start)
1371 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001372 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik251792012008-10-29 14:49:05 -04001373 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001374 }
Josef Bacik251792012008-10-29 14:49:05 -04001375 return 1;
1376}
Josef Bacik251792012008-10-29 14:49:05 -04001377
Chris Mason2c64c532009-09-02 15:04:12 -04001378int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1379 struct extent_state **cached, gfp_t mask)
1380{
1381 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1382 mask);
1383}
1384
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001385int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001386{
Chris Mason2c64c532009-09-02 15:04:12 -04001387 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001388 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001389}
Chris Masond1310b22008-01-24 16:13:08 -05001390
Chris Mason4adaa612013-03-26 13:07:00 -04001391int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1392{
1393 unsigned long index = start >> PAGE_CACHE_SHIFT;
1394 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1395 struct page *page;
1396
1397 while (index <= end_index) {
1398 page = find_get_page(inode->i_mapping, index);
1399 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1400 clear_page_dirty_for_io(page);
1401 page_cache_release(page);
1402 index++;
1403 }
1404 return 0;
1405}
1406
1407int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1408{
1409 unsigned long index = start >> PAGE_CACHE_SHIFT;
1410 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1411 struct page *page;
1412
1413 while (index <= end_index) {
1414 page = find_get_page(inode->i_mapping, index);
1415 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001416 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001417 account_page_redirty(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001418 page_cache_release(page);
1419 index++;
1420 }
1421 return 0;
1422}
1423
Chris Masond1310b22008-01-24 16:13:08 -05001424/*
Chris Masond1310b22008-01-24 16:13:08 -05001425 * helper function to set both pages and extents in the tree writeback
1426 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001427static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001428{
1429 unsigned long index = start >> PAGE_CACHE_SHIFT;
1430 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1431 struct page *page;
1432
1433 while (index <= end_index) {
1434 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001435 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001436 set_page_writeback(page);
1437 page_cache_release(page);
1438 index++;
1439 }
Chris Masond1310b22008-01-24 16:13:08 -05001440 return 0;
1441}
Chris Masond1310b22008-01-24 16:13:08 -05001442
Chris Masond352ac62008-09-29 15:18:18 -04001443/* find the first state struct with 'bits' set after 'start', and
1444 * return it. tree->lock must be held. NULL will returned if
1445 * nothing was found after 'start'
1446 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001447static struct extent_state *
1448find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001449 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001450{
1451 struct rb_node *node;
1452 struct extent_state *state;
1453
1454 /*
1455 * this search will find all the extents that end after
1456 * our range starts.
1457 */
1458 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001459 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001460 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001461
Chris Masond3977122009-01-05 21:25:51 -05001462 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001463 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001464 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001465 return state;
Chris Masond3977122009-01-05 21:25:51 -05001466
Chris Masond7fc6402008-02-18 12:12:38 -05001467 node = rb_next(node);
1468 if (!node)
1469 break;
1470 }
1471out:
1472 return NULL;
1473}
Chris Masond7fc6402008-02-18 12:12:38 -05001474
Chris Masond352ac62008-09-29 15:18:18 -04001475/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001476 * find the first offset in the io tree with 'bits' set. zero is
1477 * returned if we find something, and *start_ret and *end_ret are
1478 * set to reflect the state struct that was found.
1479 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001480 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001481 */
1482int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001483 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001484 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001485{
1486 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001487 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001488 int ret = 1;
1489
1490 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001491 if (cached_state && *cached_state) {
1492 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001493 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001494 n = rb_next(&state->rb_node);
1495 while (n) {
1496 state = rb_entry(n, struct extent_state,
1497 rb_node);
1498 if (state->state & bits)
1499 goto got_it;
1500 n = rb_next(n);
1501 }
1502 free_extent_state(*cached_state);
1503 *cached_state = NULL;
1504 goto out;
1505 }
1506 free_extent_state(*cached_state);
1507 *cached_state = NULL;
1508 }
1509
Xiao Guangrong69261c42011-07-14 03:19:45 +00001510 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001511got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001512 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001513 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001514 *start_ret = state->start;
1515 *end_ret = state->end;
1516 ret = 0;
1517 }
Josef Bacike6138872012-09-27 17:07:30 -04001518out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001519 spin_unlock(&tree->lock);
1520 return ret;
1521}
1522
1523/*
Chris Masond352ac62008-09-29 15:18:18 -04001524 * find a contiguous range of bytes in the file marked as delalloc, not
1525 * more than 'max_bytes'. start and end are used to return the range,
1526 *
1527 * 1 is returned if we find something, 0 if nothing was in the tree
1528 */
Chris Masonc8b97812008-10-29 14:49:59 -04001529static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001530 u64 *start, u64 *end, u64 max_bytes,
1531 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001532{
1533 struct rb_node *node;
1534 struct extent_state *state;
1535 u64 cur_start = *start;
1536 u64 found = 0;
1537 u64 total_bytes = 0;
1538
Chris Masoncad321a2008-12-17 14:51:42 -05001539 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001540
Chris Masond1310b22008-01-24 16:13:08 -05001541 /*
1542 * this search will find all the extents that end after
1543 * our range starts.
1544 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001545 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001546 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001547 if (!found)
1548 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001549 goto out;
1550 }
1551
Chris Masond3977122009-01-05 21:25:51 -05001552 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001553 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001554 if (found && (state->start != cur_start ||
1555 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001556 goto out;
1557 }
1558 if (!(state->state & EXTENT_DELALLOC)) {
1559 if (!found)
1560 *end = state->end;
1561 goto out;
1562 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001563 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001564 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001565 *cached_state = state;
1566 atomic_inc(&state->refs);
1567 }
Chris Masond1310b22008-01-24 16:13:08 -05001568 found++;
1569 *end = state->end;
1570 cur_start = state->end + 1;
1571 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001572 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001573 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001574 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001575 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001576 break;
1577 }
1578out:
Chris Masoncad321a2008-12-17 14:51:42 -05001579 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001580 return found;
1581}
1582
Jeff Mahoney143bede2012-03-01 14:56:26 +01001583static noinline void __unlock_for_delalloc(struct inode *inode,
1584 struct page *locked_page,
1585 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001586{
1587 int ret;
1588 struct page *pages[16];
1589 unsigned long index = start >> PAGE_CACHE_SHIFT;
1590 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1591 unsigned long nr_pages = end_index - index + 1;
1592 int i;
1593
1594 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001595 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001596
Chris Masond3977122009-01-05 21:25:51 -05001597 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001598 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001599 min_t(unsigned long, nr_pages,
1600 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001601 for (i = 0; i < ret; i++) {
1602 if (pages[i] != locked_page)
1603 unlock_page(pages[i]);
1604 page_cache_release(pages[i]);
1605 }
1606 nr_pages -= ret;
1607 index += ret;
1608 cond_resched();
1609 }
Chris Masonc8b97812008-10-29 14:49:59 -04001610}
1611
1612static noinline int lock_delalloc_pages(struct inode *inode,
1613 struct page *locked_page,
1614 u64 delalloc_start,
1615 u64 delalloc_end)
1616{
1617 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1618 unsigned long start_index = index;
1619 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1620 unsigned long pages_locked = 0;
1621 struct page *pages[16];
1622 unsigned long nrpages;
1623 int ret;
1624 int i;
1625
1626 /* the caller is responsible for locking the start index */
1627 if (index == locked_page->index && index == end_index)
1628 return 0;
1629
1630 /* skip the page at the start index */
1631 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001632 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001633 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001634 min_t(unsigned long,
1635 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001636 if (ret == 0) {
1637 ret = -EAGAIN;
1638 goto done;
1639 }
1640 /* now we have an array of pages, lock them all */
1641 for (i = 0; i < ret; i++) {
1642 /*
1643 * the caller is taking responsibility for
1644 * locked_page
1645 */
Chris Mason771ed682008-11-06 22:02:51 -05001646 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001647 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001648 if (!PageDirty(pages[i]) ||
1649 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001650 ret = -EAGAIN;
1651 unlock_page(pages[i]);
1652 page_cache_release(pages[i]);
1653 goto done;
1654 }
1655 }
Chris Masonc8b97812008-10-29 14:49:59 -04001656 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001657 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001658 }
Chris Masonc8b97812008-10-29 14:49:59 -04001659 nrpages -= ret;
1660 index += ret;
1661 cond_resched();
1662 }
1663 ret = 0;
1664done:
1665 if (ret && pages_locked) {
1666 __unlock_for_delalloc(inode, locked_page,
1667 delalloc_start,
1668 ((u64)(start_index + pages_locked - 1)) <<
1669 PAGE_CACHE_SHIFT);
1670 }
1671 return ret;
1672}
1673
1674/*
1675 * find a contiguous range of bytes in the file marked as delalloc, not
1676 * more than 'max_bytes'. start and end are used to return the range,
1677 *
1678 * 1 is returned if we find something, 0 if nothing was in the tree
1679 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001680STATIC u64 find_lock_delalloc_range(struct inode *inode,
1681 struct extent_io_tree *tree,
1682 struct page *locked_page, u64 *start,
1683 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001684{
1685 u64 delalloc_start;
1686 u64 delalloc_end;
1687 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001688 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001689 int ret;
1690 int loops = 0;
1691
1692again:
1693 /* step one, find a bunch of delalloc bytes starting at start */
1694 delalloc_start = *start;
1695 delalloc_end = 0;
1696 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001697 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001698 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001699 *start = delalloc_start;
1700 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001701 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001702 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001703 }
1704
1705 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001706 * start comes from the offset of locked_page. We have to lock
1707 * pages in order, so we can't process delalloc bytes before
1708 * locked_page
1709 */
Chris Masond3977122009-01-05 21:25:51 -05001710 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001711 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001712
1713 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001714 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001715 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001716 if (delalloc_end + 1 - delalloc_start > max_bytes)
1717 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001718
Chris Masonc8b97812008-10-29 14:49:59 -04001719 /* step two, lock all the pages after the page that has start */
1720 ret = lock_delalloc_pages(inode, locked_page,
1721 delalloc_start, delalloc_end);
1722 if (ret == -EAGAIN) {
1723 /* some of the pages are gone, lets avoid looping by
1724 * shortening the size of the delalloc range we're searching
1725 */
Chris Mason9655d292009-09-02 15:22:30 -04001726 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001727 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001728 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001729 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001730 loops = 1;
1731 goto again;
1732 } else {
1733 found = 0;
1734 goto out_failed;
1735 }
1736 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001737 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001738
1739 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001740 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001741
1742 /* then test to make sure it is all still delalloc */
1743 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001744 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001745 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001746 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1747 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001748 __unlock_for_delalloc(inode, locked_page,
1749 delalloc_start, delalloc_end);
1750 cond_resched();
1751 goto again;
1752 }
Chris Mason9655d292009-09-02 15:22:30 -04001753 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001754 *start = delalloc_start;
1755 *end = delalloc_end;
1756out_failed:
1757 return found;
1758}
1759
Josef Bacikc2790a22013-07-29 11:20:47 -04001760int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1761 struct page *locked_page,
David Sterba9ee49a042015-01-14 19:52:13 +01001762 unsigned clear_bits,
Josef Bacikc2790a22013-07-29 11:20:47 -04001763 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001764{
Josef Bacikc2790a22013-07-29 11:20:47 -04001765 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001766 int ret;
1767 struct page *pages[16];
1768 unsigned long index = start >> PAGE_CACHE_SHIFT;
1769 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1770 unsigned long nr_pages = end_index - index + 1;
1771 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001772
Chris Mason2c64c532009-09-02 15:04:12 -04001773 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001774 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001775 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001776
Filipe Manana704de492014-10-06 22:14:22 +01001777 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1778 mapping_set_error(inode->i_mapping, -EIO);
1779
Chris Masond3977122009-01-05 21:25:51 -05001780 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001781 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001782 min_t(unsigned long,
1783 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001784 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001785
Josef Bacikc2790a22013-07-29 11:20:47 -04001786 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001787 SetPagePrivate2(pages[i]);
1788
Chris Masonc8b97812008-10-29 14:49:59 -04001789 if (pages[i] == locked_page) {
1790 page_cache_release(pages[i]);
1791 continue;
1792 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001793 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001794 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001795 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001796 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001797 if (page_ops & PAGE_SET_ERROR)
1798 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001799 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001800 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001801 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001802 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001803 page_cache_release(pages[i]);
1804 }
1805 nr_pages -= ret;
1806 index += ret;
1807 cond_resched();
1808 }
1809 return 0;
1810}
Chris Masonc8b97812008-10-29 14:49:59 -04001811
Chris Masond352ac62008-09-29 15:18:18 -04001812/*
1813 * count the number of bytes in the tree that have a given bit(s)
1814 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1815 * cached. The total number found is returned.
1816 */
Chris Masond1310b22008-01-24 16:13:08 -05001817u64 count_range_bits(struct extent_io_tree *tree,
1818 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001819 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001820{
1821 struct rb_node *node;
1822 struct extent_state *state;
1823 u64 cur_start = *start;
1824 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001825 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001826 int found = 0;
1827
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301828 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001829 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001830
Chris Masoncad321a2008-12-17 14:51:42 -05001831 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001832 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1833 total_bytes = tree->dirty_bytes;
1834 goto out;
1835 }
1836 /*
1837 * this search will find all the extents that end after
1838 * our range starts.
1839 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001840 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001841 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001842 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001843
Chris Masond3977122009-01-05 21:25:51 -05001844 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001845 state = rb_entry(node, struct extent_state, rb_node);
1846 if (state->start > search_end)
1847 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001848 if (contig && found && state->start > last + 1)
1849 break;
1850 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001851 total_bytes += min(search_end, state->end) + 1 -
1852 max(cur_start, state->start);
1853 if (total_bytes >= max_bytes)
1854 break;
1855 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001856 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001857 found = 1;
1858 }
Chris Masonec29ed52011-02-23 16:23:20 -05001859 last = state->end;
1860 } else if (contig && found) {
1861 break;
Chris Masond1310b22008-01-24 16:13:08 -05001862 }
1863 node = rb_next(node);
1864 if (!node)
1865 break;
1866 }
1867out:
Chris Masoncad321a2008-12-17 14:51:42 -05001868 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001869 return total_bytes;
1870}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001871
Chris Masond352ac62008-09-29 15:18:18 -04001872/*
1873 * set the private field for a given byte offset in the tree. If there isn't
1874 * an extent_state there already, this does nothing.
1875 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001876static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001877{
1878 struct rb_node *node;
1879 struct extent_state *state;
1880 int ret = 0;
1881
Chris Masoncad321a2008-12-17 14:51:42 -05001882 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001883 /*
1884 * this search will find all the extents that end after
1885 * our range starts.
1886 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001887 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001888 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001889 ret = -ENOENT;
1890 goto out;
1891 }
1892 state = rb_entry(node, struct extent_state, rb_node);
1893 if (state->start != start) {
1894 ret = -ENOENT;
1895 goto out;
1896 }
1897 state->private = private;
1898out:
Chris Masoncad321a2008-12-17 14:51:42 -05001899 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001900 return ret;
1901}
1902
1903int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1904{
1905 struct rb_node *node;
1906 struct extent_state *state;
1907 int ret = 0;
1908
Chris Masoncad321a2008-12-17 14:51:42 -05001909 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001910 /*
1911 * this search will find all the extents that end after
1912 * our range starts.
1913 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001914 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001915 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001916 ret = -ENOENT;
1917 goto out;
1918 }
1919 state = rb_entry(node, struct extent_state, rb_node);
1920 if (state->start != start) {
1921 ret = -ENOENT;
1922 goto out;
1923 }
1924 *private = state->private;
1925out:
Chris Masoncad321a2008-12-17 14:51:42 -05001926 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001927 return ret;
1928}
1929
1930/*
1931 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001932 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001933 * has the bits set. Otherwise, 1 is returned if any bit in the
1934 * range is found set.
1935 */
1936int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001937 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001938{
1939 struct extent_state *state = NULL;
1940 struct rb_node *node;
1941 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001942
Chris Masoncad321a2008-12-17 14:51:42 -05001943 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001944 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001945 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001946 node = &cached->rb_node;
1947 else
1948 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001949 while (node && start <= end) {
1950 state = rb_entry(node, struct extent_state, rb_node);
1951
1952 if (filled && state->start > start) {
1953 bitset = 0;
1954 break;
1955 }
1956
1957 if (state->start > end)
1958 break;
1959
1960 if (state->state & bits) {
1961 bitset = 1;
1962 if (!filled)
1963 break;
1964 } else if (filled) {
1965 bitset = 0;
1966 break;
1967 }
Chris Mason46562cec2009-09-23 20:23:16 -04001968
1969 if (state->end == (u64)-1)
1970 break;
1971
Chris Masond1310b22008-01-24 16:13:08 -05001972 start = state->end + 1;
1973 if (start > end)
1974 break;
1975 node = rb_next(node);
1976 if (!node) {
1977 if (filled)
1978 bitset = 0;
1979 break;
1980 }
1981 }
Chris Masoncad321a2008-12-17 14:51:42 -05001982 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001983 return bitset;
1984}
Chris Masond1310b22008-01-24 16:13:08 -05001985
1986/*
1987 * helper function to set a given page up to date if all the
1988 * extents in the tree for that page are up to date
1989 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001990static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001991{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001992 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001993 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001994 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001995 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001996}
1997
Miao Xie8b110e32014-09-12 18:44:03 +08001998int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001999{
2000 int ret;
2001 int err = 0;
2002 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2003
2004 set_state_private(failure_tree, rec->start, 0);
2005 ret = clear_extent_bits(failure_tree, rec->start,
2006 rec->start + rec->len - 1,
2007 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2008 if (ret)
2009 err = ret;
2010
David Woodhouse53b381b2013-01-29 18:40:14 -05002011 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
2012 rec->start + rec->len - 1,
2013 EXTENT_DAMAGED, GFP_NOFS);
2014 if (ret && !err)
2015 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002016
2017 kfree(rec);
2018 return err;
2019}
2020
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002021/*
2022 * this bypasses the standard btrfs submit functions deliberately, as
2023 * the standard behavior is to write all copies in a raid setup. here we only
2024 * want to write the one bad copy. so we do the mapping for ourselves and issue
2025 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002026 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002027 * actually prevents the read that triggered the error from finishing.
2028 * currently, there can be no more than two copies of every data bit. thus,
2029 * exactly one rewrite is required.
2030 */
Miao Xie1203b682014-09-12 18:44:01 +08002031int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2032 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002033{
Miao Xie1203b682014-09-12 18:44:01 +08002034 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002035 struct bio *bio;
2036 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002037 u64 map_length = 0;
2038 u64 sector;
2039 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002040 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002041 int ret;
2042
Ilya Dryomov908960c2013-11-03 19:06:39 +02002043 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002044 BUG_ON(!mirror_num);
2045
David Woodhouse53b381b2013-01-29 18:40:14 -05002046 /* we can't repair anything in raid56 yet */
2047 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2048 return 0;
2049
Chris Mason9be33952013-05-17 18:30:14 -04002050 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002051 if (!bio)
2052 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002053 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002054 map_length = length;
2055
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002056 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002057 &map_length, &bbio, mirror_num);
2058 if (ret) {
2059 bio_put(bio);
2060 return -EIO;
2061 }
2062 BUG_ON(mirror_num != bbio->mirror_num);
2063 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002064 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002065 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002066 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002067 if (!dev || !dev->bdev || !dev->writeable) {
2068 bio_put(bio);
2069 return -EIO;
2070 }
2071 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002072 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002073
Kent Overstreet33879d42013-11-23 22:33:32 -08002074 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002075 /* try to remap that extent elsewhere? */
2076 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002077 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002078 return -EIO;
2079 }
2080
Frank Holtonefe120a2013-12-20 11:37:06 -05002081 printk_ratelimited_in_rcu(KERN_INFO
Miao Xie1203b682014-09-12 18:44:01 +08002082 "BTRFS: read error corrected: ino %llu off %llu (dev %s sector %llu)\n",
2083 btrfs_ino(inode), start,
2084 rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002085 bio_put(bio);
2086 return 0;
2087}
2088
Josef Bacikea466792012-03-26 21:57:36 -04002089int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2090 int mirror_num)
2091{
Josef Bacikea466792012-03-26 21:57:36 -04002092 u64 start = eb->start;
2093 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002094 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002095
Ilya Dryomov908960c2013-11-03 19:06:39 +02002096 if (root->fs_info->sb->s_flags & MS_RDONLY)
2097 return -EROFS;
2098
Josef Bacikea466792012-03-26 21:57:36 -04002099 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002100 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002101
2102 ret = repair_io_failure(root->fs_info->btree_inode, start,
2103 PAGE_CACHE_SIZE, start, p,
2104 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002105 if (ret)
2106 break;
2107 start += PAGE_CACHE_SIZE;
2108 }
2109
2110 return ret;
2111}
2112
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002113/*
2114 * each time an IO finishes, we do a fast check in the IO failure tree
2115 * to see if we need to process or clean up an io_failure_record
2116 */
Miao Xie8b110e32014-09-12 18:44:03 +08002117int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2118 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002119{
2120 u64 private;
2121 u64 private_failure;
2122 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002123 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002124 struct extent_state *state;
2125 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002126 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002127
2128 private = 0;
2129 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2130 (u64)-1, 1, EXTENT_DIRTY, 0);
2131 if (!ret)
2132 return 0;
2133
2134 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2135 &private_failure);
2136 if (ret)
2137 return 0;
2138
2139 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2140 BUG_ON(!failrec->this_mirror);
2141
2142 if (failrec->in_validation) {
2143 /* there was no real error, just free the record */
2144 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2145 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002146 goto out;
2147 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002148 if (fs_info->sb->s_flags & MS_RDONLY)
2149 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002150
2151 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2152 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2153 failrec->start,
2154 EXTENT_LOCKED);
2155 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2156
Miao Xie883d0de2013-07-25 19:22:35 +08002157 if (state && state->start <= failrec->start &&
2158 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002159 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2160 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002161 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002162 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002163 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002164 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002165 }
2166 }
2167
2168out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002169 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002170
Miao Xie454ff3d2014-09-12 18:43:58 +08002171 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002172}
2173
Miao Xief6124962014-09-12 18:44:04 +08002174/*
2175 * Can be called when
2176 * - hold extent lock
2177 * - under ordered extent
2178 * - the inode is freeing
2179 */
2180void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2181{
2182 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2183 struct io_failure_record *failrec;
2184 struct extent_state *state, *next;
2185
2186 if (RB_EMPTY_ROOT(&failure_tree->state))
2187 return;
2188
2189 spin_lock(&failure_tree->lock);
2190 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2191 while (state) {
2192 if (state->start > end)
2193 break;
2194
2195 ASSERT(state->end <= end);
2196
2197 next = next_state(state);
2198
Satoru Takeuchi6e1103a2014-12-25 18:21:41 +09002199 failrec = (struct io_failure_record *)(unsigned long)state->private;
Miao Xief6124962014-09-12 18:44:04 +08002200 free_extent_state(state);
2201 kfree(failrec);
2202
2203 state = next;
2204 }
2205 spin_unlock(&failure_tree->lock);
2206}
2207
Miao Xie2fe63032014-09-12 18:43:59 +08002208int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2209 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002210{
Miao Xie2fe63032014-09-12 18:43:59 +08002211 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002212 u64 private;
2213 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002214 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2215 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2216 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002217 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002218 u64 logical;
2219
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002220 ret = get_state_private(failure_tree, start, &private);
2221 if (ret) {
2222 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2223 if (!failrec)
2224 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002225
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002226 failrec->start = start;
2227 failrec->len = end - start + 1;
2228 failrec->this_mirror = 0;
2229 failrec->bio_flags = 0;
2230 failrec->in_validation = 0;
2231
2232 read_lock(&em_tree->lock);
2233 em = lookup_extent_mapping(em_tree, start, failrec->len);
2234 if (!em) {
2235 read_unlock(&em_tree->lock);
2236 kfree(failrec);
2237 return -EIO;
2238 }
2239
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002240 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002241 free_extent_map(em);
2242 em = NULL;
2243 }
2244 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002245 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002246 kfree(failrec);
2247 return -EIO;
2248 }
Miao Xie2fe63032014-09-12 18:43:59 +08002249
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002250 logical = start - em->start;
2251 logical = em->block_start + logical;
2252 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2253 logical = em->block_start;
2254 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2255 extent_set_compress_type(&failrec->bio_flags,
2256 em->compress_type);
2257 }
Miao Xie2fe63032014-09-12 18:43:59 +08002258
2259 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2260 logical, start, failrec->len);
2261
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002262 failrec->logical = logical;
2263 free_extent_map(em);
2264
2265 /* set the bits in the private failure tree */
2266 ret = set_extent_bits(failure_tree, start, end,
2267 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2268 if (ret >= 0)
2269 ret = set_state_private(failure_tree, start,
2270 (u64)(unsigned long)failrec);
2271 /* set the bits in the inode's tree */
2272 if (ret >= 0)
2273 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2274 GFP_NOFS);
2275 if (ret < 0) {
2276 kfree(failrec);
2277 return ret;
2278 }
2279 } else {
2280 failrec = (struct io_failure_record *)(unsigned long)private;
Miao Xie2fe63032014-09-12 18:43:59 +08002281 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002282 failrec->logical, failrec->start, failrec->len,
2283 failrec->in_validation);
2284 /*
2285 * when data can be on disk more than twice, add to failrec here
2286 * (e.g. with a list for failed_mirror) to make
2287 * clean_io_failure() clean all those errors at once.
2288 */
2289 }
Miao Xie2fe63032014-09-12 18:43:59 +08002290
2291 *failrec_ret = failrec;
2292
2293 return 0;
2294}
2295
2296int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2297 struct io_failure_record *failrec, int failed_mirror)
2298{
2299 int num_copies;
2300
Stefan Behrens5d964052012-11-05 14:59:07 +01002301 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2302 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002303 if (num_copies == 1) {
2304 /*
2305 * we only have a single copy of the data, so don't bother with
2306 * all the retry and error correction code that follows. no
2307 * matter what the error is, it is very likely to persist.
2308 */
Miao Xie2fe63032014-09-12 18:43:59 +08002309 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002310 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002311 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002312 }
2313
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002314 /*
2315 * there are two premises:
2316 * a) deliver good data to the caller
2317 * b) correct the bad sectors on disk
2318 */
2319 if (failed_bio->bi_vcnt > 1) {
2320 /*
2321 * to fulfill b), we need to know the exact failing sectors, as
2322 * we don't want to rewrite any more than the failed ones. thus,
2323 * we need separate read requests for the failed bio
2324 *
2325 * if the following BUG_ON triggers, our validation request got
2326 * merged. we need separate requests for our algorithm to work.
2327 */
2328 BUG_ON(failrec->in_validation);
2329 failrec->in_validation = 1;
2330 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002331 } else {
2332 /*
2333 * we're ready to fulfill a) and b) alongside. get a good copy
2334 * of the failed sector and if we succeed, we have setup
2335 * everything for repair_io_failure to do the rest for us.
2336 */
2337 if (failrec->in_validation) {
2338 BUG_ON(failrec->this_mirror != failed_mirror);
2339 failrec->in_validation = 0;
2340 failrec->this_mirror = 0;
2341 }
2342 failrec->failed_mirror = failed_mirror;
2343 failrec->this_mirror++;
2344 if (failrec->this_mirror == failed_mirror)
2345 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002346 }
2347
Miao Xiefacc8a222013-07-25 19:22:34 +08002348 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002349 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002350 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002351 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002352 }
2353
Miao Xie2fe63032014-09-12 18:43:59 +08002354 return 1;
2355}
2356
2357
2358struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2359 struct io_failure_record *failrec,
2360 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002361 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002362{
2363 struct bio *bio;
2364 struct btrfs_io_bio *btrfs_failed_bio;
2365 struct btrfs_io_bio *btrfs_bio;
2366
Chris Mason9be33952013-05-17 18:30:14 -04002367 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002368 if (!bio)
2369 return NULL;
2370
2371 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002372 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002373 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002374 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002375 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002376
Miao Xiefacc8a222013-07-25 19:22:34 +08002377 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2378 if (btrfs_failed_bio->csum) {
2379 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2380 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2381
2382 btrfs_bio = btrfs_io_bio(bio);
2383 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002384 icsum *= csum_size;
2385 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002386 csum_size);
2387 }
2388
Miao Xie2fe63032014-09-12 18:43:59 +08002389 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002390
Miao Xie2fe63032014-09-12 18:43:59 +08002391 return bio;
2392}
2393
2394/*
2395 * this is a generic handler for readpage errors (default
2396 * readpage_io_failed_hook). if other copies exist, read those and write back
2397 * good data to the failed position. does not investigate in remapping the
2398 * failed extent elsewhere, hoping the device will be smart enough to do this as
2399 * needed
2400 */
2401
2402static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2403 struct page *page, u64 start, u64 end,
2404 int failed_mirror)
2405{
2406 struct io_failure_record *failrec;
2407 struct inode *inode = page->mapping->host;
2408 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2409 struct bio *bio;
2410 int read_mode;
2411 int ret;
2412
2413 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2414
2415 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2416 if (ret)
2417 return ret;
2418
2419 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2420 if (!ret) {
2421 free_io_failure(inode, failrec);
2422 return -EIO;
2423 }
2424
2425 if (failed_bio->bi_vcnt > 1)
2426 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2427 else
2428 read_mode = READ_SYNC;
2429
2430 phy_offset >>= inode->i_sb->s_blocksize_bits;
2431 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2432 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002433 (int)phy_offset, failed_bio->bi_end_io,
2434 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002435 if (!bio) {
2436 free_io_failure(inode, failrec);
2437 return -EIO;
2438 }
2439
2440 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2441 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002442
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002443 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2444 failrec->this_mirror,
2445 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002446 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002447 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002448 bio_put(bio);
2449 }
2450
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002451 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002452}
2453
Chris Masond1310b22008-01-24 16:13:08 -05002454/* lots and lots of room for performance fixes in the end_bio funcs */
2455
Jeff Mahoney87826df2012-02-15 16:23:57 +01002456int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2457{
2458 int uptodate = (err == 0);
2459 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002460 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002461
2462 tree = &BTRFS_I(page->mapping->host)->io_tree;
2463
2464 if (tree->ops && tree->ops->writepage_end_io_hook) {
2465 ret = tree->ops->writepage_end_io_hook(page, start,
2466 end, NULL, uptodate);
2467 if (ret)
2468 uptodate = 0;
2469 }
2470
Jeff Mahoney87826df2012-02-15 16:23:57 +01002471 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002472 ClearPageUptodate(page);
2473 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002474 ret = ret < 0 ? ret : -EIO;
2475 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002476 }
2477 return 0;
2478}
2479
Chris Masond1310b22008-01-24 16:13:08 -05002480/*
2481 * after a writepage IO is done, we need to:
2482 * clear the uptodate bits on error
2483 * clear the writeback bits in the extent tree for this IO
2484 * end_page_writeback if the page has no more pending IO
2485 *
2486 * Scheduling is not allowed, so the extent state tree is expected
2487 * to have one and only one object corresponding to this IO.
2488 */
Chris Masond1310b22008-01-24 16:13:08 -05002489static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002490{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002491 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002492 u64 start;
2493 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002494 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002495
Kent Overstreet2c30c712013-11-07 12:20:26 -08002496 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002497 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002498
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002499 /* We always issue full-page reads, but if some block
2500 * in a page fails to read, blk_update_request() will
2501 * advance bv_offset and adjust bv_len to compensate.
2502 * Print a warning for nonzero offsets, and an error
2503 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002504 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2505 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2506 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2507 "partial page write in btrfs with offset %u and length %u",
2508 bvec->bv_offset, bvec->bv_len);
2509 else
2510 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2511 "incomplete page write in btrfs with offset %u and "
2512 "length %u",
2513 bvec->bv_offset, bvec->bv_len);
2514 }
Chris Masond1310b22008-01-24 16:13:08 -05002515
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002516 start = page_offset(page);
2517 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002518
Jeff Mahoney87826df2012-02-15 16:23:57 +01002519 if (end_extent_writepage(page, err, start, end))
2520 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002521
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002522 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002523 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002524
Chris Masond1310b22008-01-24 16:13:08 -05002525 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002526}
2527
Miao Xie883d0de2013-07-25 19:22:35 +08002528static void
2529endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2530 int uptodate)
2531{
2532 struct extent_state *cached = NULL;
2533 u64 end = start + len - 1;
2534
2535 if (uptodate && tree->track_uptodate)
2536 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2537 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2538}
2539
Chris Masond1310b22008-01-24 16:13:08 -05002540/*
2541 * after a readpage IO is done, we need to:
2542 * clear the uptodate bits on error
2543 * set the uptodate bits if things worked
2544 * set the page up to date if all extents in the tree are uptodate
2545 * clear the lock bit in the extent tree
2546 * unlock the page if there are no other extents locked for it
2547 *
2548 * Scheduling is not allowed, so the extent state tree is expected
2549 * to have one and only one object corresponding to this IO.
2550 */
Chris Masond1310b22008-01-24 16:13:08 -05002551static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002552{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002553 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002554 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Miao Xiefacc8a222013-07-25 19:22:34 +08002555 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002556 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002557 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002558 u64 start;
2559 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002560 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002561 u64 extent_start = 0;
2562 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002563 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002564 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002565 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002566
Chris Masond20f7042008-12-08 16:58:54 -05002567 if (err)
2568 uptodate = 0;
2569
Kent Overstreet2c30c712013-11-07 12:20:26 -08002570 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002571 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002572 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002573
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002574 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Miao Xiec1dc0892014-09-12 18:43:56 +08002575 "mirror=%u\n", (u64)bio->bi_iter.bi_sector, err,
Chris Mason9be33952013-05-17 18:30:14 -04002576 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002577 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002578
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002579 /* We always issue full-page reads, but if some block
2580 * in a page fails to read, blk_update_request() will
2581 * advance bv_offset and adjust bv_len to compensate.
2582 * Print a warning for nonzero offsets, and an error
2583 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002584 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2585 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2586 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2587 "partial page read in btrfs with offset %u and length %u",
2588 bvec->bv_offset, bvec->bv_len);
2589 else
2590 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2591 "incomplete page read in btrfs with offset %u and "
2592 "length %u",
2593 bvec->bv_offset, bvec->bv_len);
2594 }
Chris Masond1310b22008-01-24 16:13:08 -05002595
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002596 start = page_offset(page);
2597 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002598 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002599
Chris Mason9be33952013-05-17 18:30:14 -04002600 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002601 if (likely(uptodate && tree->ops &&
2602 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002603 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2604 page, start, end,
2605 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002606 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002607 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002608 else
Miao Xie1203b682014-09-12 18:44:01 +08002609 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002610 }
Josef Bacikea466792012-03-26 21:57:36 -04002611
Miao Xief2a09da2013-07-25 19:22:33 +08002612 if (likely(uptodate))
2613 goto readpage_ok;
2614
2615 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002616 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002617 if (!ret && !err &&
2618 test_bit(BIO_UPTODATE, &bio->bi_flags))
2619 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002620 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002621 /*
2622 * The generic bio_readpage_error handles errors the
2623 * following way: If possible, new read requests are
2624 * created and submitted and will end up in
2625 * end_bio_extent_readpage as well (if we're lucky, not
2626 * in the !uptodate case). In that case it returns 0 and
2627 * we just go on with the next page in our bio. If it
2628 * can't handle the error it will return -EIO and we
2629 * remain responsible for that page.
2630 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002631 ret = bio_readpage_error(bio, offset, page, start, end,
2632 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002633 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002634 uptodate =
2635 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002636 if (err)
2637 uptodate = 0;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002638 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002639 continue;
2640 }
2641 }
Miao Xief2a09da2013-07-25 19:22:33 +08002642readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002643 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002644 loff_t i_size = i_size_read(inode);
2645 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002646 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002647
2648 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002649 off = i_size & (PAGE_CACHE_SIZE-1);
2650 if (page->index == end_index && off)
2651 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002652 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002653 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002654 ClearPageUptodate(page);
2655 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002656 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002657 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002658 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002659
2660 if (unlikely(!uptodate)) {
2661 if (extent_len) {
2662 endio_readpage_release_extent(tree,
2663 extent_start,
2664 extent_len, 1);
2665 extent_start = 0;
2666 extent_len = 0;
2667 }
2668 endio_readpage_release_extent(tree, start,
2669 end - start + 1, 0);
2670 } else if (!extent_len) {
2671 extent_start = start;
2672 extent_len = end + 1 - start;
2673 } else if (extent_start + extent_len == start) {
2674 extent_len += end + 1 - start;
2675 } else {
2676 endio_readpage_release_extent(tree, extent_start,
2677 extent_len, uptodate);
2678 extent_start = start;
2679 extent_len = end + 1 - start;
2680 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002681 }
Chris Masond1310b22008-01-24 16:13:08 -05002682
Miao Xie883d0de2013-07-25 19:22:35 +08002683 if (extent_len)
2684 endio_readpage_release_extent(tree, extent_start, extent_len,
2685 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002686 if (io_bio->end_io)
2687 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002688 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002689}
2690
Chris Mason9be33952013-05-17 18:30:14 -04002691/*
2692 * this allocates from the btrfs_bioset. We're returning a bio right now
2693 * but you can call btrfs_io_bio for the appropriate container_of magic
2694 */
Miao Xie88f794e2010-11-22 03:02:55 +00002695struct bio *
2696btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2697 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002698{
Miao Xiefacc8a222013-07-25 19:22:34 +08002699 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002700 struct bio *bio;
2701
Chris Mason9be33952013-05-17 18:30:14 -04002702 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002703
2704 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002705 while (!bio && (nr_vecs /= 2)) {
2706 bio = bio_alloc_bioset(gfp_flags,
2707 nr_vecs, btrfs_bioset);
2708 }
Chris Masond1310b22008-01-24 16:13:08 -05002709 }
2710
2711 if (bio) {
2712 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002713 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002714 btrfs_bio = btrfs_io_bio(bio);
2715 btrfs_bio->csum = NULL;
2716 btrfs_bio->csum_allocated = NULL;
2717 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002718 }
2719 return bio;
2720}
2721
Chris Mason9be33952013-05-17 18:30:14 -04002722struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2723{
Miao Xie23ea8e52014-09-12 18:43:54 +08002724 struct btrfs_io_bio *btrfs_bio;
2725 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002726
Miao Xie23ea8e52014-09-12 18:43:54 +08002727 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2728 if (new) {
2729 btrfs_bio = btrfs_io_bio(new);
2730 btrfs_bio->csum = NULL;
2731 btrfs_bio->csum_allocated = NULL;
2732 btrfs_bio->end_io = NULL;
Chris Mason3a9508b2015-08-21 10:05:39 -07002733
2734#ifdef CONFIG_BLK_CGROUP
Chris Masonda2f0f72015-07-02 13:57:22 -07002735 /* FIXME, put this into bio_clone_bioset */
2736 if (bio->bi_css)
2737 bio_associate_blkcg(new, bio->bi_css);
Chris Mason3a9508b2015-08-21 10:05:39 -07002738#endif
Miao Xie23ea8e52014-09-12 18:43:54 +08002739 }
2740 return new;
2741}
Chris Mason9be33952013-05-17 18:30:14 -04002742
2743/* this also allocates from the btrfs_bioset */
2744struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2745{
Miao Xiefacc8a222013-07-25 19:22:34 +08002746 struct btrfs_io_bio *btrfs_bio;
2747 struct bio *bio;
2748
2749 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2750 if (bio) {
2751 btrfs_bio = btrfs_io_bio(bio);
2752 btrfs_bio->csum = NULL;
2753 btrfs_bio->csum_allocated = NULL;
2754 btrfs_bio->end_io = NULL;
2755 }
2756 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002757}
2758
2759
Jeff Mahoney355808c2011-10-03 23:23:14 -04002760static int __must_check submit_one_bio(int rw, struct bio *bio,
2761 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002762{
Chris Masond1310b22008-01-24 16:13:08 -05002763 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002764 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2765 struct page *page = bvec->bv_page;
2766 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002767 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002768
Miao Xie4eee4fa2012-12-21 09:17:45 +00002769 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002770
David Woodhouse902b22f2008-08-20 08:51:49 -04002771 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002772
2773 bio_get(bio);
2774
Chris Mason065631f2008-02-20 12:07:25 -05002775 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002776 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002777 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002778 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002779 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002780
Chris Masond1310b22008-01-24 16:13:08 -05002781 bio_put(bio);
2782 return ret;
2783}
2784
David Woodhouse64a16702009-07-15 23:29:37 +01002785static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002786 unsigned long offset, size_t size, struct bio *bio,
2787 unsigned long bio_flags)
2788{
2789 int ret = 0;
2790 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002791 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002792 bio_flags);
2793 BUG_ON(ret < 0);
2794 return ret;
2795
2796}
2797
Chris Masond1310b22008-01-24 16:13:08 -05002798static int submit_extent_page(int rw, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002799 struct writeback_control *wbc,
Chris Masond1310b22008-01-24 16:13:08 -05002800 struct page *page, sector_t sector,
2801 size_t size, unsigned long offset,
2802 struct block_device *bdev,
2803 struct bio **bio_ret,
2804 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002805 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002806 int mirror_num,
2807 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002808 unsigned long bio_flags,
2809 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002810{
2811 int ret = 0;
2812 struct bio *bio;
2813 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002814 int contig = 0;
2815 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2816 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002817 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002818
2819 if (bio_ret && *bio_ret) {
2820 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002821 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002822 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002823 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002824 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002825
2826 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002827 force_bio_submit ||
David Woodhouse64a16702009-07-15 23:29:37 +01002828 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002829 bio_add_page(bio, page, page_size, offset) < page_size) {
2830 ret = submit_one_bio(rw, bio, mirror_num,
2831 prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002832 if (ret < 0) {
2833 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002834 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002835 }
Chris Masond1310b22008-01-24 16:13:08 -05002836 bio = NULL;
2837 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002838 if (wbc)
2839 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002840 return 0;
2841 }
2842 }
Chris Masonc8b97812008-10-29 14:49:59 -04002843 if (this_compressed)
2844 nr = BIO_MAX_PAGES;
2845 else
2846 nr = bio_get_nr_vecs(bdev);
2847
Miao Xie88f794e2010-11-22 03:02:55 +00002848 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002849 if (!bio)
2850 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002851
Chris Masonc8b97812008-10-29 14:49:59 -04002852 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002853 bio->bi_end_io = end_io_func;
2854 bio->bi_private = tree;
Chris Masonda2f0f72015-07-02 13:57:22 -07002855 if (wbc) {
2856 wbc_init_bio(wbc, bio);
2857 wbc_account_io(wbc, page, page_size);
2858 }
Chris Mason70dec802008-01-29 09:59:12 -05002859
Chris Masond3977122009-01-05 21:25:51 -05002860 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002861 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002862 else
Chris Masonc8b97812008-10-29 14:49:59 -04002863 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002864
2865 return ret;
2866}
2867
Eric Sandeen48a3b632013-04-25 20:41:01 +00002868static void attach_extent_buffer_page(struct extent_buffer *eb,
2869 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002870{
2871 if (!PagePrivate(page)) {
2872 SetPagePrivate(page);
2873 page_cache_get(page);
2874 set_page_private(page, (unsigned long)eb);
2875 } else {
2876 WARN_ON(page->private != (unsigned long)eb);
2877 }
2878}
2879
Chris Masond1310b22008-01-24 16:13:08 -05002880void set_page_extent_mapped(struct page *page)
2881{
2882 if (!PagePrivate(page)) {
2883 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002884 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002885 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002886 }
2887}
2888
Miao Xie125bac012013-07-25 19:22:37 +08002889static struct extent_map *
2890__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2891 u64 start, u64 len, get_extent_t *get_extent,
2892 struct extent_map **em_cached)
2893{
2894 struct extent_map *em;
2895
2896 if (em_cached && *em_cached) {
2897 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002898 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002899 start < extent_map_end(em)) {
2900 atomic_inc(&em->refs);
2901 return em;
2902 }
2903
2904 free_extent_map(em);
2905 *em_cached = NULL;
2906 }
2907
2908 em = get_extent(inode, page, pg_offset, start, len, 0);
2909 if (em_cached && !IS_ERR_OR_NULL(em)) {
2910 BUG_ON(*em_cached);
2911 atomic_inc(&em->refs);
2912 *em_cached = em;
2913 }
2914 return em;
2915}
Chris Masond1310b22008-01-24 16:13:08 -05002916/*
2917 * basic readpage implementation. Locked extent state structs are inserted
2918 * into the tree that are removed when the IO is done (by the end_io
2919 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002920 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002921 */
Miao Xie99740902013-07-25 19:22:36 +08002922static int __do_readpage(struct extent_io_tree *tree,
2923 struct page *page,
2924 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002925 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002926 struct bio **bio, int mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01002927 unsigned long *bio_flags, int rw,
2928 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002929{
2930 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002931 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002932 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2933 u64 end;
2934 u64 cur = start;
2935 u64 extent_offset;
2936 u64 last_byte = i_size_read(inode);
2937 u64 block_start;
2938 u64 cur_end;
2939 sector_t sector;
2940 struct extent_map *em;
2941 struct block_device *bdev;
2942 int ret;
2943 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002944 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002945 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002946 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002947 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002948 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002949 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002950
2951 set_page_extent_mapped(page);
2952
Miao Xie99740902013-07-25 19:22:36 +08002953 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002954 if (!PageUptodate(page)) {
2955 if (cleancache_get_page(page) == 0) {
2956 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002957 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002958 goto out;
2959 }
2960 }
2961
Chris Masonc8b97812008-10-29 14:49:59 -04002962 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2963 char *userpage;
2964 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2965
2966 if (zero_offset) {
2967 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002968 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002969 memset(userpage + zero_offset, 0, iosize);
2970 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002971 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002972 }
2973 }
Chris Masond1310b22008-01-24 16:13:08 -05002974 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002975 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
Filipe Manana005efed2015-09-14 09:09:31 +01002976 bool force_bio_submit = false;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002977
Chris Masond1310b22008-01-24 16:13:08 -05002978 if (cur >= last_byte) {
2979 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002980 struct extent_state *cached = NULL;
2981
David Sterba306e16c2011-04-19 14:29:38 +02002982 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002983 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002984 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002985 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002986 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002987 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002988 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002989 if (!parent_locked)
2990 unlock_extent_cached(tree, cur,
2991 cur + iosize - 1,
2992 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002993 break;
2994 }
Miao Xie125bac012013-07-25 19:22:37 +08002995 em = __get_extent_map(inode, page, pg_offset, cur,
2996 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002997 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002998 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002999 if (!parent_locked)
3000 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003001 break;
3002 }
Chris Masond1310b22008-01-24 16:13:08 -05003003 extent_offset = cur - em->start;
3004 BUG_ON(extent_map_end(em) <= cur);
3005 BUG_ON(end < cur);
3006
Li Zefan261507a02010-12-17 14:21:50 +08003007 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07003008 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08003009 extent_set_compress_type(&this_bio_flag,
3010 em->compress_type);
3011 }
Chris Masonc8b97812008-10-29 14:49:59 -04003012
Chris Masond1310b22008-01-24 16:13:08 -05003013 iosize = min(extent_map_end(em) - cur, end - cur + 1);
3014 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00003015 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04003016 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
3017 disk_io_size = em->block_len;
3018 sector = em->block_start >> 9;
3019 } else {
3020 sector = (em->block_start + extent_offset) >> 9;
3021 disk_io_size = iosize;
3022 }
Chris Masond1310b22008-01-24 16:13:08 -05003023 bdev = em->bdev;
3024 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04003025 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
3026 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01003027
3028 /*
3029 * If we have a file range that points to a compressed extent
3030 * and it's followed by a consecutive file range that points to
3031 * to the same compressed extent (possibly with a different
3032 * offset and/or length, so it either points to the whole extent
3033 * or only part of it), we must make sure we do not submit a
3034 * single bio to populate the pages for the 2 ranges because
3035 * this makes the compressed extent read zero out the pages
3036 * belonging to the 2nd range. Imagine the following scenario:
3037 *
3038 * File layout
3039 * [0 - 8K] [8K - 24K]
3040 * | |
3041 * | |
3042 * points to extent X, points to extent X,
3043 * offset 4K, length of 8K offset 0, length 16K
3044 *
3045 * [extent X, compressed length = 4K uncompressed length = 16K]
3046 *
3047 * If the bio to read the compressed extent covers both ranges,
3048 * it will decompress extent X into the pages belonging to the
3049 * first range and then it will stop, zeroing out the remaining
3050 * pages that belong to the other range that points to extent X.
3051 * So here we make sure we submit 2 bios, one for the first
3052 * range and another one for the third range. Both will target
3053 * the same physical extent from disk, but we can't currently
3054 * make the compressed bio endio callback populate the pages
3055 * for both ranges because each compressed bio is tightly
3056 * coupled with a single extent map, and each range can have
3057 * an extent map with a different offset value relative to the
3058 * uncompressed data of our extent and different lengths. This
3059 * is a corner case so we prioritize correctness over
3060 * non-optimal behavior (submitting 2 bios for the same extent).
3061 */
3062 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3063 prev_em_start && *prev_em_start != (u64)-1 &&
3064 *prev_em_start != em->orig_start)
3065 force_bio_submit = true;
3066
3067 if (prev_em_start)
3068 *prev_em_start = em->orig_start;
3069
Chris Masond1310b22008-01-24 16:13:08 -05003070 free_extent_map(em);
3071 em = NULL;
3072
3073 /* we've found a hole, just zero and go on */
3074 if (block_start == EXTENT_MAP_HOLE) {
3075 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003076 struct extent_state *cached = NULL;
3077
Cong Wang7ac687d2011-11-25 23:14:28 +08003078 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003079 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003080 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003081 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003082
3083 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003084 &cached, GFP_NOFS);
3085 unlock_extent_cached(tree, cur, cur + iosize - 1,
3086 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003087 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003088 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003089 continue;
3090 }
3091 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003092 if (test_range_bit(tree, cur, cur_end,
3093 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003094 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003095 if (!parent_locked)
3096 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003097 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003098 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003099 continue;
3100 }
Chris Mason70dec802008-01-29 09:59:12 -05003101 /* we have an inline extent but it didn't get marked up
3102 * to date. Error out
3103 */
3104 if (block_start == EXTENT_MAP_INLINE) {
3105 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003106 if (!parent_locked)
3107 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003108 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003109 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003110 continue;
3111 }
Chris Masond1310b22008-01-24 16:13:08 -05003112
Josef Bacikc8f2f242013-02-11 11:33:00 -05003113 pnr -= page->index;
Chris Masonda2f0f72015-07-02 13:57:22 -07003114 ret = submit_extent_page(rw, tree, NULL, page,
David Sterba306e16c2011-04-19 14:29:38 +02003115 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003116 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003117 end_bio_extent_readpage, mirror_num,
3118 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003119 this_bio_flag,
3120 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003121 if (!ret) {
3122 nr++;
3123 *bio_flags = this_bio_flag;
3124 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003125 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003126 if (!parent_locked)
3127 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04003128 }
Chris Masond1310b22008-01-24 16:13:08 -05003129 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003130 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003131 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003132out:
Chris Masond1310b22008-01-24 16:13:08 -05003133 if (!nr) {
3134 if (!PageError(page))
3135 SetPageUptodate(page);
3136 unlock_page(page);
3137 }
3138 return 0;
3139}
3140
Miao Xie99740902013-07-25 19:22:36 +08003141static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3142 struct page *pages[], int nr_pages,
3143 u64 start, u64 end,
3144 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003145 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003146 struct bio **bio, int mirror_num,
3147 unsigned long *bio_flags, int rw)
3148{
3149 struct inode *inode;
3150 struct btrfs_ordered_extent *ordered;
3151 int index;
Filipe Manana005efed2015-09-14 09:09:31 +01003152 u64 prev_em_start = (u64)-1;
Miao Xie99740902013-07-25 19:22:36 +08003153
3154 inode = pages[0]->mapping->host;
3155 while (1) {
3156 lock_extent(tree, start, end);
3157 ordered = btrfs_lookup_ordered_range(inode, start,
3158 end - start + 1);
3159 if (!ordered)
3160 break;
3161 unlock_extent(tree, start, end);
3162 btrfs_start_ordered_extent(inode, ordered, 1);
3163 btrfs_put_ordered_extent(ordered);
3164 }
3165
3166 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003167 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
Filipe Manana005efed2015-09-14 09:09:31 +01003168 mirror_num, bio_flags, rw, &prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003169 page_cache_release(pages[index]);
3170 }
3171}
3172
3173static void __extent_readpages(struct extent_io_tree *tree,
3174 struct page *pages[],
3175 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003176 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003177 struct bio **bio, int mirror_num,
3178 unsigned long *bio_flags, int rw)
3179{
Stefan Behrens35a36212013-08-14 18:12:25 +02003180 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003181 u64 end = 0;
3182 u64 page_start;
3183 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003184 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003185
3186 for (index = 0; index < nr_pages; index++) {
3187 page_start = page_offset(pages[index]);
3188 if (!end) {
3189 start = page_start;
3190 end = start + PAGE_CACHE_SIZE - 1;
3191 first_index = index;
3192 } else if (end + 1 == page_start) {
3193 end += PAGE_CACHE_SIZE;
3194 } else {
3195 __do_contiguous_readpages(tree, &pages[first_index],
3196 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003197 end, get_extent, em_cached,
3198 bio, mirror_num, bio_flags,
3199 rw);
Miao Xie99740902013-07-25 19:22:36 +08003200 start = page_start;
3201 end = start + PAGE_CACHE_SIZE - 1;
3202 first_index = index;
3203 }
3204 }
3205
3206 if (end)
3207 __do_contiguous_readpages(tree, &pages[first_index],
3208 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003209 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08003210 mirror_num, bio_flags, rw);
3211}
3212
3213static int __extent_read_full_page(struct extent_io_tree *tree,
3214 struct page *page,
3215 get_extent_t *get_extent,
3216 struct bio **bio, int mirror_num,
3217 unsigned long *bio_flags, int rw)
3218{
3219 struct inode *inode = page->mapping->host;
3220 struct btrfs_ordered_extent *ordered;
3221 u64 start = page_offset(page);
3222 u64 end = start + PAGE_CACHE_SIZE - 1;
3223 int ret;
3224
3225 while (1) {
3226 lock_extent(tree, start, end);
3227 ordered = btrfs_lookup_ordered_extent(inode, start);
3228 if (!ordered)
3229 break;
3230 unlock_extent(tree, start, end);
3231 btrfs_start_ordered_extent(inode, ordered, 1);
3232 btrfs_put_ordered_extent(ordered);
3233 }
3234
Miao Xie125bac012013-07-25 19:22:37 +08003235 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003236 bio_flags, rw, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003237 return ret;
3238}
3239
Chris Masond1310b22008-01-24 16:13:08 -05003240int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003241 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003242{
3243 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003244 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003245 int ret;
3246
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003247 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003248 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003249 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003250 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003251 return ret;
3252}
Chris Masond1310b22008-01-24 16:13:08 -05003253
Mark Fasheh4b384312013-08-06 11:42:50 -07003254int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3255 get_extent_t *get_extent, int mirror_num)
3256{
3257 struct bio *bio = NULL;
3258 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3259 int ret;
3260
3261 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003262 &bio_flags, READ, NULL);
Mark Fasheh4b384312013-08-06 11:42:50 -07003263 if (bio)
3264 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3265 return ret;
3266}
3267
Chris Mason11c83492009-04-20 15:50:09 -04003268static noinline void update_nr_written(struct page *page,
3269 struct writeback_control *wbc,
3270 unsigned long nr_written)
3271{
3272 wbc->nr_to_write -= nr_written;
3273 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3274 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3275 page->mapping->writeback_index = page->index + nr_written;
3276}
3277
Chris Masond1310b22008-01-24 16:13:08 -05003278/*
Chris Mason40f76582014-05-21 13:35:51 -07003279 * helper for __extent_writepage, doing all of the delayed allocation setup.
3280 *
3281 * This returns 1 if our fill_delalloc function did all the work required
3282 * to write the page (copy into inline extent). In this case the IO has
3283 * been started and the page is already unlocked.
3284 *
3285 * This returns 0 if all went well (page still locked)
3286 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003287 */
Chris Mason40f76582014-05-21 13:35:51 -07003288static noinline_for_stack int writepage_delalloc(struct inode *inode,
3289 struct page *page, struct writeback_control *wbc,
3290 struct extent_page_data *epd,
3291 u64 delalloc_start,
3292 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003293{
Chris Mason40f76582014-05-21 13:35:51 -07003294 struct extent_io_tree *tree = epd->tree;
3295 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3296 u64 nr_delalloc;
3297 u64 delalloc_to_write = 0;
3298 u64 delalloc_end = 0;
3299 int ret;
3300 int page_started = 0;
3301
3302 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3303 return 0;
3304
3305 while (delalloc_end < page_end) {
3306 nr_delalloc = find_lock_delalloc_range(inode, tree,
3307 page,
3308 &delalloc_start,
3309 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003310 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003311 if (nr_delalloc == 0) {
3312 delalloc_start = delalloc_end + 1;
3313 continue;
3314 }
3315 ret = tree->ops->fill_delalloc(inode, page,
3316 delalloc_start,
3317 delalloc_end,
3318 &page_started,
3319 nr_written);
3320 /* File system has been set read-only */
3321 if (ret) {
3322 SetPageError(page);
3323 /* fill_delalloc should be return < 0 for error
3324 * but just in case, we use > 0 here meaning the
3325 * IO is started, so we don't want to return > 0
3326 * unless things are going well.
3327 */
3328 ret = ret < 0 ? ret : -EIO;
3329 goto done;
3330 }
3331 /*
3332 * delalloc_end is already one less than the total
3333 * length, so we don't subtract one from
3334 * PAGE_CACHE_SIZE
3335 */
3336 delalloc_to_write += (delalloc_end - delalloc_start +
3337 PAGE_CACHE_SIZE) >>
3338 PAGE_CACHE_SHIFT;
3339 delalloc_start = delalloc_end + 1;
3340 }
3341 if (wbc->nr_to_write < delalloc_to_write) {
3342 int thresh = 8192;
3343
3344 if (delalloc_to_write < thresh * 2)
3345 thresh = delalloc_to_write;
3346 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3347 thresh);
3348 }
3349
3350 /* did the fill delalloc function already unlock and start
3351 * the IO?
3352 */
3353 if (page_started) {
3354 /*
3355 * we've unlocked the page, so we can't update
3356 * the mapping's writeback index, just update
3357 * nr_to_write.
3358 */
3359 wbc->nr_to_write -= *nr_written;
3360 return 1;
3361 }
3362
3363 ret = 0;
3364
3365done:
3366 return ret;
3367}
3368
3369/*
3370 * helper for __extent_writepage. This calls the writepage start hooks,
3371 * and does the loop to map the page into extents and bios.
3372 *
3373 * We return 1 if the IO is started and the page is unlocked,
3374 * 0 if all went well (page still locked)
3375 * < 0 if there were errors (page still locked)
3376 */
3377static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3378 struct page *page,
3379 struct writeback_control *wbc,
3380 struct extent_page_data *epd,
3381 loff_t i_size,
3382 unsigned long nr_written,
3383 int write_flags, int *nr_ret)
3384{
Chris Masond1310b22008-01-24 16:13:08 -05003385 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003386 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003387 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3388 u64 end;
3389 u64 cur = start;
3390 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003391 u64 block_start;
3392 u64 iosize;
3393 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003394 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003395 struct extent_map *em;
3396 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003397 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003398 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003399 int ret = 0;
3400 int nr = 0;
3401 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003402
Chris Mason247e7432008-07-17 12:53:51 -04003403 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003404 ret = tree->ops->writepage_start_hook(page, start,
3405 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003406 if (ret) {
3407 /* Fixup worker will requeue */
3408 if (ret == -EBUSY)
3409 wbc->pages_skipped++;
3410 else
3411 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003412
Chris Mason11c83492009-04-20 15:50:09 -04003413 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003414 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003415 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003416 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003417 }
3418 }
3419
Chris Mason11c83492009-04-20 15:50:09 -04003420 /*
3421 * we don't want to touch the inode after unlocking the page,
3422 * so we update the mapping writeback index now
3423 */
3424 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003425
Chris Masond1310b22008-01-24 16:13:08 -05003426 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003427 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003428 if (tree->ops && tree->ops->writepage_end_io_hook)
3429 tree->ops->writepage_end_io_hook(page, start,
3430 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003431 goto done;
3432 }
3433
Chris Masond1310b22008-01-24 16:13:08 -05003434 blocksize = inode->i_sb->s_blocksize;
3435
3436 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003437 u64 em_end;
3438 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003439 if (tree->ops && tree->ops->writepage_end_io_hook)
3440 tree->ops->writepage_end_io_hook(page, cur,
3441 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003442 break;
3443 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003444 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003445 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003446 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003447 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003448 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003449 break;
3450 }
3451
3452 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003453 em_end = extent_map_end(em);
3454 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003455 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003456 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003457 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003458 sector = (em->block_start + extent_offset) >> 9;
3459 bdev = em->bdev;
3460 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003461 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003462 free_extent_map(em);
3463 em = NULL;
3464
Chris Masonc8b97812008-10-29 14:49:59 -04003465 /*
3466 * compressed and inline extents are written through other
3467 * paths in the FS
3468 */
3469 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003470 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003471 /*
3472 * end_io notification does not happen here for
3473 * compressed extents
3474 */
3475 if (!compressed && tree->ops &&
3476 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003477 tree->ops->writepage_end_io_hook(page, cur,
3478 cur + iosize - 1,
3479 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003480 else if (compressed) {
3481 /* we don't want to end_page_writeback on
3482 * a compressed extent. this happens
3483 * elsewhere
3484 */
3485 nr++;
3486 }
3487
3488 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003489 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003490 continue;
3491 }
Chris Masonc8b97812008-10-29 14:49:59 -04003492
Chris Masond1310b22008-01-24 16:13:08 -05003493 if (tree->ops && tree->ops->writepage_io_hook) {
3494 ret = tree->ops->writepage_io_hook(page, cur,
3495 cur + iosize - 1);
3496 } else {
3497 ret = 0;
3498 }
Chris Mason1259ab72008-05-12 13:39:03 -04003499 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003500 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003501 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003502 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003503
Chris Masond1310b22008-01-24 16:13:08 -05003504 set_range_writeback(tree, cur, cur + iosize - 1);
3505 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003506 btrfs_err(BTRFS_I(inode)->root->fs_info,
3507 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003508 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003509 }
3510
Chris Masonda2f0f72015-07-02 13:57:22 -07003511 ret = submit_extent_page(write_flags, tree, wbc, page,
Chris Masonffbd5172009-04-20 15:50:09 -04003512 sector, iosize, pg_offset,
3513 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003514 end_bio_extent_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003515 0, 0, 0, false);
Chris Masond1310b22008-01-24 16:13:08 -05003516 if (ret)
3517 SetPageError(page);
3518 }
3519 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003520 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003521 nr++;
3522 }
3523done:
Chris Mason40f76582014-05-21 13:35:51 -07003524 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003525
Chris Mason11c83492009-04-20 15:50:09 -04003526done_unlocked:
3527
Chris Mason2c64c532009-09-02 15:04:12 -04003528 /* drop our reference on any cached states */
3529 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003530 return ret;
3531}
3532
3533/*
3534 * the writepage semantics are similar to regular writepage. extent
3535 * records are inserted to lock ranges in the tree, and as dirty areas
3536 * are found, they are marked writeback. Then the lock bits are removed
3537 * and the end_io handler clears the writeback ranges
3538 */
3539static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3540 void *data)
3541{
3542 struct inode *inode = page->mapping->host;
3543 struct extent_page_data *epd = data;
3544 u64 start = page_offset(page);
3545 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3546 int ret;
3547 int nr = 0;
3548 size_t pg_offset = 0;
3549 loff_t i_size = i_size_read(inode);
3550 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3551 int write_flags;
3552 unsigned long nr_written = 0;
3553
3554 if (wbc->sync_mode == WB_SYNC_ALL)
3555 write_flags = WRITE_SYNC;
3556 else
3557 write_flags = WRITE;
3558
3559 trace___extent_writepage(page, inode, wbc);
3560
3561 WARN_ON(!PageLocked(page));
3562
3563 ClearPageError(page);
3564
3565 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3566 if (page->index > end_index ||
3567 (page->index == end_index && !pg_offset)) {
3568 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3569 unlock_page(page);
3570 return 0;
3571 }
3572
3573 if (page->index == end_index) {
3574 char *userpage;
3575
3576 userpage = kmap_atomic(page);
3577 memset(userpage + pg_offset, 0,
3578 PAGE_CACHE_SIZE - pg_offset);
3579 kunmap_atomic(userpage);
3580 flush_dcache_page(page);
3581 }
3582
3583 pg_offset = 0;
3584
3585 set_page_extent_mapped(page);
3586
3587 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3588 if (ret == 1)
3589 goto done_unlocked;
3590 if (ret)
3591 goto done;
3592
3593 ret = __extent_writepage_io(inode, page, wbc, epd,
3594 i_size, nr_written, write_flags, &nr);
3595 if (ret == 1)
3596 goto done_unlocked;
3597
3598done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003599 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003600 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003601 set_page_writeback(page);
3602 end_page_writeback(page);
3603 }
Filipe Manana61391d52014-05-09 17:17:40 +01003604 if (PageError(page)) {
3605 ret = ret < 0 ? ret : -EIO;
3606 end_extent_writepage(page, ret, start, page_end);
3607 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003608 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003609 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003610
3611done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003612 return 0;
3613}
3614
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003615void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003616{
NeilBrown74316202014-07-07 15:16:04 +10003617 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3618 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003619}
3620
Chris Mason0e378df2014-05-19 20:55:27 -07003621static noinline_for_stack int
3622lock_extent_buffer_for_io(struct extent_buffer *eb,
3623 struct btrfs_fs_info *fs_info,
3624 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003625{
3626 unsigned long i, num_pages;
3627 int flush = 0;
3628 int ret = 0;
3629
3630 if (!btrfs_try_tree_write_lock(eb)) {
3631 flush = 1;
3632 flush_write_bio(epd);
3633 btrfs_tree_lock(eb);
3634 }
3635
3636 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3637 btrfs_tree_unlock(eb);
3638 if (!epd->sync_io)
3639 return 0;
3640 if (!flush) {
3641 flush_write_bio(epd);
3642 flush = 1;
3643 }
Chris Masona098d8e82012-03-21 12:09:56 -04003644 while (1) {
3645 wait_on_extent_buffer_writeback(eb);
3646 btrfs_tree_lock(eb);
3647 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3648 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003649 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003650 }
3651 }
3652
Josef Bacik51561ff2012-07-20 16:25:24 -04003653 /*
3654 * We need to do this to prevent races in people who check if the eb is
3655 * under IO since we can end up having no IO bits set for a short period
3656 * of time.
3657 */
3658 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003659 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3660 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003661 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003662 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003663 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3664 -eb->len,
3665 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003666 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003667 } else {
3668 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003669 }
3670
3671 btrfs_tree_unlock(eb);
3672
3673 if (!ret)
3674 return ret;
3675
3676 num_pages = num_extent_pages(eb->start, eb->len);
3677 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003678 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003679
3680 if (!trylock_page(p)) {
3681 if (!flush) {
3682 flush_write_bio(epd);
3683 flush = 1;
3684 }
3685 lock_page(p);
3686 }
3687 }
3688
3689 return ret;
3690}
3691
3692static void end_extent_buffer_writeback(struct extent_buffer *eb)
3693{
3694 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003695 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003696 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3697}
3698
Filipe Manana656f30d2014-09-26 12:25:56 +01003699static void set_btree_ioerr(struct page *page)
3700{
3701 struct extent_buffer *eb = (struct extent_buffer *)page->private;
3702 struct btrfs_inode *btree_ino = BTRFS_I(eb->fs_info->btree_inode);
3703
3704 SetPageError(page);
3705 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3706 return;
3707
3708 /*
3709 * If writeback for a btree extent that doesn't belong to a log tree
3710 * failed, increment the counter transaction->eb_write_errors.
3711 * We do this because while the transaction is running and before it's
3712 * committing (when we call filemap_fdata[write|wait]_range against
3713 * the btree inode), we might have
3714 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3715 * returns an error or an error happens during writeback, when we're
3716 * committing the transaction we wouldn't know about it, since the pages
3717 * can be no longer dirty nor marked anymore for writeback (if a
3718 * subsequent modification to the extent buffer didn't happen before the
3719 * transaction commit), which makes filemap_fdata[write|wait]_range not
3720 * able to find the pages tagged with SetPageError at transaction
3721 * commit time. So if this happens we must abort the transaction,
3722 * otherwise we commit a super block with btree roots that point to
3723 * btree nodes/leafs whose content on disk is invalid - either garbage
3724 * or the content of some node/leaf from a past generation that got
3725 * cowed or deleted and is no longer valid.
3726 *
3727 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3728 * not be enough - we need to distinguish between log tree extents vs
3729 * non-log tree extents, and the next filemap_fdatawait_range() call
3730 * will catch and clear such errors in the mapping - and that call might
3731 * be from a log sync and not from a transaction commit. Also, checking
3732 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3733 * not done and would not be reliable - the eb might have been released
3734 * from memory and reading it back again means that flag would not be
3735 * set (since it's a runtime flag, not persisted on disk).
3736 *
3737 * Using the flags below in the btree inode also makes us achieve the
3738 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3739 * writeback for all dirty pages and before filemap_fdatawait_range()
3740 * is called, the writeback for all dirty pages had already finished
3741 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3742 * filemap_fdatawait_range() would return success, as it could not know
3743 * that writeback errors happened (the pages were no longer tagged for
3744 * writeback).
3745 */
3746 switch (eb->log_index) {
3747 case -1:
3748 set_bit(BTRFS_INODE_BTREE_ERR, &btree_ino->runtime_flags);
3749 break;
3750 case 0:
3751 set_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
3752 break;
3753 case 1:
3754 set_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
3755 break;
3756 default:
3757 BUG(); /* unexpected, logic error */
3758 }
3759}
3760
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003761static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3762{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003763 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003764 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003765 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003766
Kent Overstreet2c30c712013-11-07 12:20:26 -08003767 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003768 struct page *page = bvec->bv_page;
3769
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003770 eb = (struct extent_buffer *)page->private;
3771 BUG_ON(!eb);
3772 done = atomic_dec_and_test(&eb->io_pages);
3773
Filipe Manana656f30d2014-09-26 12:25:56 +01003774 if (err || test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003775 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003776 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003777 }
3778
3779 end_page_writeback(page);
3780
3781 if (!done)
3782 continue;
3783
3784 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003785 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003786
3787 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003788}
3789
Chris Mason0e378df2014-05-19 20:55:27 -07003790static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003791 struct btrfs_fs_info *fs_info,
3792 struct writeback_control *wbc,
3793 struct extent_page_data *epd)
3794{
3795 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003796 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003797 u64 offset = eb->start;
3798 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003799 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003800 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003801 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003802
Filipe Manana656f30d2014-09-26 12:25:56 +01003803 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003804 num_pages = num_extent_pages(eb->start, eb->len);
3805 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003806 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3807 bio_flags = EXTENT_BIO_TREE_LOG;
3808
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003809 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003810 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003811
3812 clear_page_dirty_for_io(p);
3813 set_page_writeback(p);
Chris Masonda2f0f72015-07-02 13:57:22 -07003814 ret = submit_extent_page(rw, tree, wbc, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003815 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3816 -1, end_bio_extent_buffer_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003817 0, epd->bio_flags, bio_flags, false);
Josef Bacikde0022b2012-09-25 14:25:58 -04003818 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003819 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003820 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003821 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003822 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3823 end_extent_buffer_writeback(eb);
3824 ret = -EIO;
3825 break;
3826 }
3827 offset += PAGE_CACHE_SIZE;
3828 update_nr_written(p, wbc, 1);
3829 unlock_page(p);
3830 }
3831
3832 if (unlikely(ret)) {
3833 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003834 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003835 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003836 unlock_page(p);
3837 }
3838 }
3839
3840 return ret;
3841}
3842
3843int btree_write_cache_pages(struct address_space *mapping,
3844 struct writeback_control *wbc)
3845{
3846 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3847 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3848 struct extent_buffer *eb, *prev_eb = NULL;
3849 struct extent_page_data epd = {
3850 .bio = NULL,
3851 .tree = tree,
3852 .extent_locked = 0,
3853 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003854 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003855 };
3856 int ret = 0;
3857 int done = 0;
3858 int nr_to_write_done = 0;
3859 struct pagevec pvec;
3860 int nr_pages;
3861 pgoff_t index;
3862 pgoff_t end; /* Inclusive */
3863 int scanned = 0;
3864 int tag;
3865
3866 pagevec_init(&pvec, 0);
3867 if (wbc->range_cyclic) {
3868 index = mapping->writeback_index; /* Start from prev offset */
3869 end = -1;
3870 } else {
3871 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3872 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3873 scanned = 1;
3874 }
3875 if (wbc->sync_mode == WB_SYNC_ALL)
3876 tag = PAGECACHE_TAG_TOWRITE;
3877 else
3878 tag = PAGECACHE_TAG_DIRTY;
3879retry:
3880 if (wbc->sync_mode == WB_SYNC_ALL)
3881 tag_pages_for_writeback(mapping, index, end);
3882 while (!done && !nr_to_write_done && (index <= end) &&
3883 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3884 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3885 unsigned i;
3886
3887 scanned = 1;
3888 for (i = 0; i < nr_pages; i++) {
3889 struct page *page = pvec.pages[i];
3890
3891 if (!PagePrivate(page))
3892 continue;
3893
3894 if (!wbc->range_cyclic && page->index > end) {
3895 done = 1;
3896 break;
3897 }
3898
Josef Bacikb5bae262012-09-14 13:43:01 -04003899 spin_lock(&mapping->private_lock);
3900 if (!PagePrivate(page)) {
3901 spin_unlock(&mapping->private_lock);
3902 continue;
3903 }
3904
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003905 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003906
3907 /*
3908 * Shouldn't happen and normally this would be a BUG_ON
3909 * but no sense in crashing the users box for something
3910 * we can survive anyway.
3911 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303912 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003913 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003914 continue;
3915 }
3916
Josef Bacikb5bae262012-09-14 13:43:01 -04003917 if (eb == prev_eb) {
3918 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003919 continue;
3920 }
3921
Josef Bacikb5bae262012-09-14 13:43:01 -04003922 ret = atomic_inc_not_zero(&eb->refs);
3923 spin_unlock(&mapping->private_lock);
3924 if (!ret)
3925 continue;
3926
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003927 prev_eb = eb;
3928 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3929 if (!ret) {
3930 free_extent_buffer(eb);
3931 continue;
3932 }
3933
3934 ret = write_one_eb(eb, fs_info, wbc, &epd);
3935 if (ret) {
3936 done = 1;
3937 free_extent_buffer(eb);
3938 break;
3939 }
3940 free_extent_buffer(eb);
3941
3942 /*
3943 * the filesystem may choose to bump up nr_to_write.
3944 * We have to make sure to honor the new nr_to_write
3945 * at any time
3946 */
3947 nr_to_write_done = wbc->nr_to_write <= 0;
3948 }
3949 pagevec_release(&pvec);
3950 cond_resched();
3951 }
3952 if (!scanned && !done) {
3953 /*
3954 * We hit the last page and there is more work to be done: wrap
3955 * back to the start of the file
3956 */
3957 scanned = 1;
3958 index = 0;
3959 goto retry;
3960 }
3961 flush_write_bio(&epd);
3962 return ret;
3963}
3964
Chris Masond1310b22008-01-24 16:13:08 -05003965/**
3966 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
3967 * @mapping: address space structure to write
3968 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3969 * @writepage: function called for each page
3970 * @data: data passed to writepage function
3971 *
3972 * If a page is already under I/O, write_cache_pages() skips it, even
3973 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3974 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3975 * and msync() need to guarantee that all the data which was dirty at the time
3976 * the call was made get new I/O started against them. If wbc->sync_mode is
3977 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3978 * existing IO to complete.
3979 */
Chris Mason4bef0842008-09-08 11:18:08 -04003980static int extent_write_cache_pages(struct extent_io_tree *tree,
3981 struct address_space *mapping,
3982 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003983 writepage_t writepage, void *data,
3984 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003985{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003986 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003987 int ret = 0;
3988 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01003989 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003990 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003991 struct pagevec pvec;
3992 int nr_pages;
3993 pgoff_t index;
3994 pgoff_t end; /* Inclusive */
3995 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003996 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003997
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003998 /*
3999 * We have to hold onto the inode so that ordered extents can do their
4000 * work when the IO finishes. The alternative to this is failing to add
4001 * an ordered extent if the igrab() fails there and that is a huge pain
4002 * to deal with, so instead just hold onto the inode throughout the
4003 * writepages operation. If it fails here we are freeing up the inode
4004 * anyway and we'd rather not waste our time writing out stuff that is
4005 * going to be truncated anyway.
4006 */
4007 if (!igrab(inode))
4008 return 0;
4009
Chris Masond1310b22008-01-24 16:13:08 -05004010 pagevec_init(&pvec, 0);
4011 if (wbc->range_cyclic) {
4012 index = mapping->writeback_index; /* Start from prev offset */
4013 end = -1;
4014 } else {
4015 index = wbc->range_start >> PAGE_CACHE_SHIFT;
4016 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004017 scanned = 1;
4018 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00004019 if (wbc->sync_mode == WB_SYNC_ALL)
4020 tag = PAGECACHE_TAG_TOWRITE;
4021 else
4022 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05004023retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00004024 if (wbc->sync_mode == WB_SYNC_ALL)
4025 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004026 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00004027 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
4028 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05004029 unsigned i;
4030
4031 scanned = 1;
4032 for (i = 0; i < nr_pages; i++) {
4033 struct page *page = pvec.pages[i];
4034
4035 /*
4036 * At this point we hold neither mapping->tree_lock nor
4037 * lock on the page itself: the page may be truncated or
4038 * invalidated (changing page->mapping to NULL), or even
4039 * swizzled back from swapper_space to tmpfs file
4040 * mapping
4041 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004042 if (!trylock_page(page)) {
4043 flush_fn(data);
4044 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004045 }
Chris Masond1310b22008-01-24 16:13:08 -05004046
4047 if (unlikely(page->mapping != mapping)) {
4048 unlock_page(page);
4049 continue;
4050 }
4051
4052 if (!wbc->range_cyclic && page->index > end) {
4053 done = 1;
4054 unlock_page(page);
4055 continue;
4056 }
4057
Chris Masond2c3f4f2008-11-19 12:44:22 -05004058 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05004059 if (PageWriteback(page))
4060 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05004061 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004062 }
Chris Masond1310b22008-01-24 16:13:08 -05004063
4064 if (PageWriteback(page) ||
4065 !clear_page_dirty_for_io(page)) {
4066 unlock_page(page);
4067 continue;
4068 }
4069
4070 ret = (*writepage)(page, wbc, data);
4071
4072 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4073 unlock_page(page);
4074 ret = 0;
4075 }
Filipe Manana61391d52014-05-09 17:17:40 +01004076 if (!err && ret < 0)
4077 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004078
4079 /*
4080 * the filesystem may choose to bump up nr_to_write.
4081 * We have to make sure to honor the new nr_to_write
4082 * at any time
4083 */
4084 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004085 }
4086 pagevec_release(&pvec);
4087 cond_resched();
4088 }
Filipe Manana61391d52014-05-09 17:17:40 +01004089 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05004090 /*
4091 * We hit the last page and there is more work to be done: wrap
4092 * back to the start of the file
4093 */
4094 scanned = 1;
4095 index = 0;
4096 goto retry;
4097 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004098 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01004099 return err;
Chris Masond1310b22008-01-24 16:13:08 -05004100}
Chris Masond1310b22008-01-24 16:13:08 -05004101
Chris Masonffbd5172009-04-20 15:50:09 -04004102static void flush_epd_write_bio(struct extent_page_data *epd)
4103{
4104 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004105 int rw = WRITE;
4106 int ret;
4107
Chris Masonffbd5172009-04-20 15:50:09 -04004108 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04004109 rw = WRITE_SYNC;
4110
Josef Bacikde0022b2012-09-25 14:25:58 -04004111 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004112 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004113 epd->bio = NULL;
4114 }
4115}
4116
Chris Masond2c3f4f2008-11-19 12:44:22 -05004117static noinline void flush_write_bio(void *data)
4118{
4119 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004120 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004121}
4122
Chris Masond1310b22008-01-24 16:13:08 -05004123int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4124 get_extent_t *get_extent,
4125 struct writeback_control *wbc)
4126{
4127 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004128 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 };
Chris Masond1310b22008-01-24 16:13:08 -05004136
Chris Masond1310b22008-01-24 16:13:08 -05004137 ret = __extent_writepage(page, wbc, &epd);
4138
Chris Masonffbd5172009-04-20 15:50:09 -04004139 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004140 return ret;
4141}
Chris Masond1310b22008-01-24 16:13:08 -05004142
Chris Mason771ed682008-11-06 22:02:51 -05004143int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4144 u64 start, u64 end, get_extent_t *get_extent,
4145 int mode)
4146{
4147 int ret = 0;
4148 struct address_space *mapping = inode->i_mapping;
4149 struct page *page;
4150 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
4151 PAGE_CACHE_SHIFT;
4152
4153 struct extent_page_data epd = {
4154 .bio = NULL,
4155 .tree = tree,
4156 .get_extent = get_extent,
4157 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004158 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004159 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004160 };
4161 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004162 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004163 .nr_to_write = nr_pages * 2,
4164 .range_start = start,
4165 .range_end = end + 1,
4166 };
4167
Chris Masond3977122009-01-05 21:25:51 -05004168 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05004169 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
4170 if (clear_page_dirty_for_io(page))
4171 ret = __extent_writepage(page, &wbc_writepages, &epd);
4172 else {
4173 if (tree->ops && tree->ops->writepage_end_io_hook)
4174 tree->ops->writepage_end_io_hook(page, start,
4175 start + PAGE_CACHE_SIZE - 1,
4176 NULL, 1);
4177 unlock_page(page);
4178 }
4179 page_cache_release(page);
4180 start += PAGE_CACHE_SIZE;
4181 }
4182
Chris Masonffbd5172009-04-20 15:50:09 -04004183 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004184 return ret;
4185}
Chris Masond1310b22008-01-24 16:13:08 -05004186
4187int extent_writepages(struct extent_io_tree *tree,
4188 struct address_space *mapping,
4189 get_extent_t *get_extent,
4190 struct writeback_control *wbc)
4191{
4192 int ret = 0;
4193 struct extent_page_data epd = {
4194 .bio = NULL,
4195 .tree = tree,
4196 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004197 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004198 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004199 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004200 };
4201
Chris Mason4bef0842008-09-08 11:18:08 -04004202 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004203 __extent_writepage, &epd,
4204 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004205 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004206 return ret;
4207}
Chris Masond1310b22008-01-24 16:13:08 -05004208
4209int extent_readpages(struct extent_io_tree *tree,
4210 struct address_space *mapping,
4211 struct list_head *pages, unsigned nr_pages,
4212 get_extent_t get_extent)
4213{
4214 struct bio *bio = NULL;
4215 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004216 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004217 struct page *pagepool[16];
4218 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004219 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004220 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004221
Chris Masond1310b22008-01-24 16:13:08 -05004222 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004223 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004224
4225 prefetchw(&page->flags);
4226 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004227 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004228 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004229 page_cache_release(page);
4230 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004231 }
Liu Bo67c96842012-07-20 21:43:09 -06004232
4233 pagepool[nr++] = page;
4234 if (nr < ARRAY_SIZE(pagepool))
4235 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004236 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08004237 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06004238 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004239 }
Miao Xie99740902013-07-25 19:22:36 +08004240 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004241 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08004242 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06004243
Miao Xie125bac012013-07-25 19:22:37 +08004244 if (em_cached)
4245 free_extent_map(em_cached);
4246
Chris Masond1310b22008-01-24 16:13:08 -05004247 BUG_ON(!list_empty(pages));
4248 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004249 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004250 return 0;
4251}
Chris Masond1310b22008-01-24 16:13:08 -05004252
4253/*
4254 * basic invalidatepage code, this waits on any locked or writeback
4255 * ranges corresponding to the page, and then deletes any extent state
4256 * records from the tree
4257 */
4258int extent_invalidatepage(struct extent_io_tree *tree,
4259 struct page *page, unsigned long offset)
4260{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004261 struct extent_state *cached_state = NULL;
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;
4264 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4265
Qu Wenruofda28322013-02-26 08:10:22 +00004266 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004267 if (start > end)
4268 return 0;
4269
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004270 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004271 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004272 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004273 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4274 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004275 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004276 return 0;
4277}
Chris Masond1310b22008-01-24 16:13:08 -05004278
4279/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004280 * a helper for releasepage, this tests for areas of the page that
4281 * are locked or under IO and drops the related state bits if it is safe
4282 * to drop the page.
4283 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004284static int try_release_extent_state(struct extent_map_tree *map,
4285 struct extent_io_tree *tree,
4286 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004287{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004288 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004289 u64 end = start + PAGE_CACHE_SIZE - 1;
4290 int ret = 1;
4291
Chris Mason211f90e2008-07-18 11:56:15 -04004292 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004293 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004294 ret = 0;
4295 else {
4296 if ((mask & GFP_NOFS) == GFP_NOFS)
4297 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004298 /*
4299 * at this point we can safely clear everything except the
4300 * locked bit and the nodatasum bit
4301 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004302 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004303 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4304 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004305
4306 /* if clear_extent_bit failed for enomem reasons,
4307 * we can't allow the release to continue.
4308 */
4309 if (ret < 0)
4310 ret = 0;
4311 else
4312 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004313 }
4314 return ret;
4315}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004316
4317/*
Chris Masond1310b22008-01-24 16:13:08 -05004318 * a helper for releasepage. As long as there are no locked extents
4319 * in the range corresponding to the page, both state records and extent
4320 * map records are removed
4321 */
4322int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004323 struct extent_io_tree *tree, struct page *page,
4324 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004325{
4326 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004327 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004328 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004329
Chris Mason70dec802008-01-29 09:59:12 -05004330 if ((mask & __GFP_WAIT) &&
4331 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004332 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004333 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004334 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004335 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004336 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004337 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004338 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004339 break;
4340 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004341 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4342 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004343 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004344 free_extent_map(em);
4345 break;
4346 }
4347 if (!test_range_bit(tree, em->start,
4348 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004349 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004350 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004351 remove_extent_mapping(map, em);
4352 /* once for the rb tree */
4353 free_extent_map(em);
4354 }
4355 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004356 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004357
4358 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004359 free_extent_map(em);
4360 }
Chris Masond1310b22008-01-24 16:13:08 -05004361 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004362 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004363}
Chris Masond1310b22008-01-24 16:13:08 -05004364
Chris Masonec29ed52011-02-23 16:23:20 -05004365/*
4366 * helper function for fiemap, which doesn't want to see any holes.
4367 * This maps until we find something past 'last'
4368 */
4369static struct extent_map *get_extent_skip_holes(struct inode *inode,
4370 u64 offset,
4371 u64 last,
4372 get_extent_t *get_extent)
4373{
4374 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4375 struct extent_map *em;
4376 u64 len;
4377
4378 if (offset >= last)
4379 return NULL;
4380
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304381 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004382 len = last - offset;
4383 if (len == 0)
4384 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004385 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004386 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004387 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004388 return em;
4389
4390 /* if this isn't a hole return it */
4391 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4392 em->block_start != EXTENT_MAP_HOLE) {
4393 return em;
4394 }
4395
4396 /* this is a hole, advance to the next extent */
4397 offset = extent_map_end(em);
4398 free_extent_map(em);
4399 if (offset >= last)
4400 break;
4401 }
4402 return NULL;
4403}
4404
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004405int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4406 __u64 start, __u64 len, get_extent_t *get_extent)
4407{
Josef Bacik975f84f2010-11-23 19:36:57 +00004408 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004409 u64 off = start;
4410 u64 max = start + len;
4411 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004412 u32 found_type;
4413 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004414 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004415 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004416 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004417 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004418 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004419 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004420 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004421 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004422 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004423 u64 em_start = 0;
4424 u64 em_len = 0;
4425 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004426
4427 if (len == 0)
4428 return -EINVAL;
4429
Josef Bacik975f84f2010-11-23 19:36:57 +00004430 path = btrfs_alloc_path();
4431 if (!path)
4432 return -ENOMEM;
4433 path->leave_spinning = 1;
4434
Qu Wenruo2c919432014-07-18 09:55:43 +08004435 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4436 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004437
Chris Masonec29ed52011-02-23 16:23:20 -05004438 /*
4439 * lookup the last file extent. We're not using i_size here
4440 * because there might be preallocation past i_size
4441 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004442 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4443 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004444 if (ret < 0) {
4445 btrfs_free_path(path);
4446 return ret;
4447 }
4448 WARN_ON(!ret);
4449 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004450 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004451 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004452
Chris Masonec29ed52011-02-23 16:23:20 -05004453 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004454 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004455 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004456 /* have to trust i_size as the end */
4457 last = (u64)-1;
4458 last_for_get_extent = isize;
4459 } else {
4460 /*
4461 * remember the start of the last extent. There are a
4462 * bunch of different factors that go into the length of the
4463 * extent, so its much less complex to remember where it started
4464 */
4465 last = found_key.offset;
4466 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004467 }
Liu Bofe09e162013-09-22 12:54:23 +08004468 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004469
Chris Masonec29ed52011-02-23 16:23:20 -05004470 /*
4471 * we might have some extents allocated but more delalloc past those
4472 * extents. so, we trust isize unless the start of the last extent is
4473 * beyond isize
4474 */
4475 if (last < isize) {
4476 last = (u64)-1;
4477 last_for_get_extent = isize;
4478 }
4479
Liu Boa52f4cd2013-05-01 16:23:41 +00004480 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004481 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004482
Josef Bacik4d479cf2011-11-17 11:34:31 -05004483 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004484 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004485 if (!em)
4486 goto out;
4487 if (IS_ERR(em)) {
4488 ret = PTR_ERR(em);
4489 goto out;
4490 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004491
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004492 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004493 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004494
Chris Masonea8efc72011-03-08 11:54:40 -05004495 /* break if the extent we found is outside the range */
4496 if (em->start >= max || extent_map_end(em) < off)
4497 break;
4498
4499 /*
4500 * get_extent may return an extent that starts before our
4501 * requested range. We have to make sure the ranges
4502 * we return to fiemap always move forward and don't
4503 * overlap, so adjust the offsets here
4504 */
4505 em_start = max(em->start, off);
4506
4507 /*
4508 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004509 * for adjusting the disk offset below. Only do this if the
4510 * extent isn't compressed since our in ram offset may be past
4511 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004512 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004513 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4514 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004515 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004516 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004517 disko = 0;
4518 flags = 0;
4519
Chris Masonea8efc72011-03-08 11:54:40 -05004520 /*
4521 * bump off for our next call to get_extent
4522 */
4523 off = extent_map_end(em);
4524 if (off >= max)
4525 end = 1;
4526
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004527 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004528 end = 1;
4529 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004530 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004531 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4532 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004533 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004534 flags |= (FIEMAP_EXTENT_DELALLOC |
4535 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004536 } else if (fieinfo->fi_extents_max) {
4537 u64 bytenr = em->block_start -
4538 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004539
Chris Masonea8efc72011-03-08 11:54:40 -05004540 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004541
4542 /*
4543 * As btrfs supports shared space, this information
4544 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004545 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4546 * then we're just getting a count and we can skip the
4547 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004548 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004549 ret = btrfs_check_shared(NULL, root->fs_info,
4550 root->objectid,
4551 btrfs_ino(inode), bytenr);
4552 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004553 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004554 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004555 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004556 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004557 }
4558 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4559 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004560 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4561 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004562
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004563 free_extent_map(em);
4564 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004565 if ((em_start >= last) || em_len == (u64)-1 ||
4566 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004567 flags |= FIEMAP_EXTENT_LAST;
4568 end = 1;
4569 }
4570
Chris Masonec29ed52011-02-23 16:23:20 -05004571 /* now scan forward to see if this is really the last extent. */
4572 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4573 get_extent);
4574 if (IS_ERR(em)) {
4575 ret = PTR_ERR(em);
4576 goto out;
4577 }
4578 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004579 flags |= FIEMAP_EXTENT_LAST;
4580 end = 1;
4581 }
Chris Masonec29ed52011-02-23 16:23:20 -05004582 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4583 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004584 if (ret) {
4585 if (ret == 1)
4586 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004587 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004588 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004589 }
4590out_free:
4591 free_extent_map(em);
4592out:
Liu Bofe09e162013-09-22 12:54:23 +08004593 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004594 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004595 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004596 return ret;
4597}
4598
Chris Mason727011e2010-08-06 13:21:20 -04004599static void __free_extent_buffer(struct extent_buffer *eb)
4600{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004601 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004602 kmem_cache_free(extent_buffer_cache, eb);
4603}
4604
Josef Bacika26e8c92014-03-28 17:07:27 -04004605int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004606{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004607 return (atomic_read(&eb->io_pages) ||
4608 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4609 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004610}
4611
Miao Xie897ca6e92010-10-26 20:57:29 -04004612/*
4613 * Helper for releasing extent buffer page.
4614 */
David Sterbaa50924e2014-07-31 00:51:36 +02004615static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004616{
4617 unsigned long index;
4618 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004619 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004620
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004621 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004622
David Sterbaa50924e2014-07-31 00:51:36 +02004623 index = num_extent_pages(eb->start, eb->len);
4624 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004625 return;
4626
4627 do {
4628 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004629 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004630 if (!page)
4631 continue;
4632 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004633 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004634 /*
4635 * We do this since we'll remove the pages after we've
4636 * removed the eb from the radix tree, so we could race
4637 * and have this page now attached to the new eb. So
4638 * only clear page_private if it's still connected to
4639 * this eb.
4640 */
4641 if (PagePrivate(page) &&
4642 page->private == (unsigned long)eb) {
4643 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4644 BUG_ON(PageDirty(page));
4645 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004646 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004647 * We need to make sure we haven't be attached
4648 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004649 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004650 ClearPagePrivate(page);
4651 set_page_private(page, 0);
4652 /* One for the page private */
Miao Xie897ca6e92010-10-26 20:57:29 -04004653 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004654 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004655
4656 if (mapped)
4657 spin_unlock(&page->mapping->private_lock);
4658
4659 /* One for when we alloced the page */
4660 page_cache_release(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004661 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004662}
4663
4664/*
4665 * Helper for releasing the extent buffer.
4666 */
4667static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4668{
David Sterbaa50924e2014-07-31 00:51:36 +02004669 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004670 __free_extent_buffer(eb);
4671}
4672
Josef Bacikf28491e2013-12-16 13:24:27 -05004673static struct extent_buffer *
4674__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004675 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004676{
4677 struct extent_buffer *eb = NULL;
4678
Michal Hockod1b5c562015-08-19 14:17:40 +02004679 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004680 eb->start = start;
4681 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004682 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004683 eb->bflags = 0;
4684 rwlock_init(&eb->lock);
4685 atomic_set(&eb->write_locks, 0);
4686 atomic_set(&eb->read_locks, 0);
4687 atomic_set(&eb->blocking_readers, 0);
4688 atomic_set(&eb->blocking_writers, 0);
4689 atomic_set(&eb->spinning_readers, 0);
4690 atomic_set(&eb->spinning_writers, 0);
4691 eb->lock_nested = 0;
4692 init_waitqueue_head(&eb->write_lock_wq);
4693 init_waitqueue_head(&eb->read_lock_wq);
4694
4695 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4696
4697 spin_lock_init(&eb->refs_lock);
4698 atomic_set(&eb->refs, 1);
4699 atomic_set(&eb->io_pages, 0);
4700
4701 /*
4702 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4703 */
4704 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4705 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4706 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4707
4708 return eb;
4709}
4710
4711struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4712{
4713 unsigned long i;
4714 struct page *p;
4715 struct extent_buffer *new;
4716 unsigned long num_pages = num_extent_pages(src->start, src->len);
4717
David Sterba3f556f72014-06-15 03:20:26 +02004718 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004719 if (new == NULL)
4720 return NULL;
4721
4722 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004723 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004724 if (!p) {
4725 btrfs_release_extent_buffer(new);
4726 return NULL;
4727 }
4728 attach_extent_buffer_page(new, p);
4729 WARN_ON(PageDirty(p));
4730 SetPageUptodate(p);
4731 new->pages[i] = p;
4732 }
4733
4734 copy_extent_buffer(new, src, 0, 0, src->len);
4735 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4736 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4737
4738 return new;
4739}
4740
David Sterba3f556f72014-06-15 03:20:26 +02004741struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4742 u64 start)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004743{
4744 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004745 unsigned long len;
4746 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004747 unsigned long i;
4748
David Sterba3f556f72014-06-15 03:20:26 +02004749 if (!fs_info) {
4750 /*
4751 * Called only from tests that don't always have a fs_info
4752 * available, but we know that nodesize is 4096
4753 */
4754 len = 4096;
4755 } else {
4756 len = fs_info->tree_root->nodesize;
4757 }
4758 num_pages = num_extent_pages(0, len);
4759
4760 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004761 if (!eb)
4762 return NULL;
4763
4764 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004765 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004766 if (!eb->pages[i])
4767 goto err;
4768 }
4769 set_extent_buffer_uptodate(eb);
4770 btrfs_set_header_nritems(eb, 0);
4771 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4772
4773 return eb;
4774err:
4775 for (; i > 0; i--)
4776 __free_page(eb->pages[i - 1]);
4777 __free_extent_buffer(eb);
4778 return NULL;
4779}
4780
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004781static void check_buffer_tree_ref(struct extent_buffer *eb)
4782{
Chris Mason242e18c2013-01-29 17:49:37 -05004783 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004784 /* the ref bit is tricky. We have to make sure it is set
4785 * if we have the buffer dirty. Otherwise the
4786 * code to free a buffer can end up dropping a dirty
4787 * page
4788 *
4789 * Once the ref bit is set, it won't go away while the
4790 * buffer is dirty or in writeback, and it also won't
4791 * go away while we have the reference count on the
4792 * eb bumped.
4793 *
4794 * We can't just set the ref bit without bumping the
4795 * ref on the eb because free_extent_buffer might
4796 * see the ref bit and try to clear it. If this happens
4797 * free_extent_buffer might end up dropping our original
4798 * ref by mistake and freeing the page before we are able
4799 * to add one more ref.
4800 *
4801 * So bump the ref count first, then set the bit. If someone
4802 * beat us to it, drop the ref we added.
4803 */
Chris Mason242e18c2013-01-29 17:49:37 -05004804 refs = atomic_read(&eb->refs);
4805 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4806 return;
4807
Josef Bacik594831c2012-07-20 16:11:08 -04004808 spin_lock(&eb->refs_lock);
4809 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004810 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004811 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004812}
4813
Mel Gorman2457aec2014-06-04 16:10:31 -07004814static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4815 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004816{
4817 unsigned long num_pages, i;
4818
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004819 check_buffer_tree_ref(eb);
4820
Josef Bacik5df42352012-03-15 18:24:42 -04004821 num_pages = num_extent_pages(eb->start, eb->len);
4822 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004823 struct page *p = eb->pages[i];
4824
Mel Gorman2457aec2014-06-04 16:10:31 -07004825 if (p != accessed)
4826 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004827 }
4828}
4829
Josef Bacikf28491e2013-12-16 13:24:27 -05004830struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4831 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004832{
4833 struct extent_buffer *eb;
4834
4835 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004836 eb = radix_tree_lookup(&fs_info->buffer_radix,
4837 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004838 if (eb && atomic_inc_not_zero(&eb->refs)) {
4839 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004840 /*
4841 * Lock our eb's refs_lock to avoid races with
4842 * free_extent_buffer. When we get our eb it might be flagged
4843 * with EXTENT_BUFFER_STALE and another task running
4844 * free_extent_buffer might have seen that flag set,
4845 * eb->refs == 2, that the buffer isn't under IO (dirty and
4846 * writeback flags not set) and it's still in the tree (flag
4847 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4848 * of decrementing the extent buffer's reference count twice.
4849 * So here we could race and increment the eb's reference count,
4850 * clear its stale flag, mark it as dirty and drop our reference
4851 * before the other task finishes executing free_extent_buffer,
4852 * which would later result in an attempt to free an extent
4853 * buffer that is dirty.
4854 */
4855 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4856 spin_lock(&eb->refs_lock);
4857 spin_unlock(&eb->refs_lock);
4858 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004859 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004860 return eb;
4861 }
4862 rcu_read_unlock();
4863
4864 return NULL;
4865}
4866
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004867#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4868struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004869 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004870{
4871 struct extent_buffer *eb, *exists = NULL;
4872 int ret;
4873
4874 eb = find_extent_buffer(fs_info, start);
4875 if (eb)
4876 return eb;
David Sterba3f556f72014-06-15 03:20:26 +02004877 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004878 if (!eb)
4879 return NULL;
4880 eb->fs_info = fs_info;
4881again:
4882 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4883 if (ret)
4884 goto free_eb;
4885 spin_lock(&fs_info->buffer_lock);
4886 ret = radix_tree_insert(&fs_info->buffer_radix,
4887 start >> PAGE_CACHE_SHIFT, eb);
4888 spin_unlock(&fs_info->buffer_lock);
4889 radix_tree_preload_end();
4890 if (ret == -EEXIST) {
4891 exists = find_extent_buffer(fs_info, start);
4892 if (exists)
4893 goto free_eb;
4894 else
4895 goto again;
4896 }
4897 check_buffer_tree_ref(eb);
4898 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4899
4900 /*
4901 * We will free dummy extent buffer's if they come into
4902 * free_extent_buffer with a ref count of 2, but if we are using this we
4903 * want the buffers to stay in memory until we're done with them, so
4904 * bump the ref count again.
4905 */
4906 atomic_inc(&eb->refs);
4907 return eb;
4908free_eb:
4909 btrfs_release_extent_buffer(eb);
4910 return exists;
4911}
4912#endif
4913
Josef Bacikf28491e2013-12-16 13:24:27 -05004914struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004915 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004916{
David Sterbace3e6982014-06-15 03:00:04 +02004917 unsigned long len = fs_info->tree_root->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004918 unsigned long num_pages = num_extent_pages(start, len);
4919 unsigned long i;
4920 unsigned long index = start >> PAGE_CACHE_SHIFT;
4921 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004922 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004923 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004924 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004925 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004926 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004927
Josef Bacikf28491e2013-12-16 13:24:27 -05004928 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004929 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004930 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004931
David Sterba23d79d82014-06-15 02:55:29 +02004932 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004933 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004934 return NULL;
4935
Chris Mason727011e2010-08-06 13:21:20 -04004936 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004937 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Josef Bacik4804b382012-10-05 16:43:45 -04004938 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004939 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004940
4941 spin_lock(&mapping->private_lock);
4942 if (PagePrivate(p)) {
4943 /*
4944 * We could have already allocated an eb for this page
4945 * and attached one so lets see if we can get a ref on
4946 * the existing eb, and if we can we know it's good and
4947 * we can just return that one, else we know we can just
4948 * overwrite page->private.
4949 */
4950 exists = (struct extent_buffer *)p->private;
4951 if (atomic_inc_not_zero(&exists->refs)) {
4952 spin_unlock(&mapping->private_lock);
4953 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004954 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004955 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004956 goto free_eb;
4957 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004958 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004959
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004960 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004961 * Do this so attach doesn't complain and we need to
4962 * drop the ref the old guy had.
4963 */
4964 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004965 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004966 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004967 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004968 attach_extent_buffer_page(eb, p);
4969 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004970 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004971 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004972 if (!PageUptodate(p))
4973 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004974
4975 /*
4976 * see below about how we avoid a nasty race with release page
4977 * and why we unlock later
4978 */
Chris Masond1310b22008-01-24 16:13:08 -05004979 }
4980 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004981 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004982again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004983 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4984 if (ret)
4985 goto free_eb;
4986
Josef Bacikf28491e2013-12-16 13:24:27 -05004987 spin_lock(&fs_info->buffer_lock);
4988 ret = radix_tree_insert(&fs_info->buffer_radix,
4989 start >> PAGE_CACHE_SHIFT, eb);
4990 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004991 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004992 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004993 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004994 if (exists)
4995 goto free_eb;
4996 else
Josef Bacik115391d2012-03-09 09:51:43 -05004997 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004998 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004999 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005000 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005001 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05005002
5003 /*
5004 * there is a race where release page may have
5005 * tried to find this extent buffer in the radix
5006 * but failed. It will tell the VM it is safe to
5007 * reclaim the, and it will clear the page private bit.
5008 * We must make sure to set the page private bit properly
5009 * after the extent buffer is in the radix tree so
5010 * it doesn't get lost
5011 */
Chris Mason727011e2010-08-06 13:21:20 -04005012 SetPageChecked(eb->pages[0]);
5013 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005014 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005015 ClearPageChecked(p);
5016 unlock_page(p);
5017 }
5018 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005019 return eb;
5020
Chris Mason6af118ce2008-07-22 11:18:07 -04005021free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005022 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005023 for (i = 0; i < num_pages; i++) {
5024 if (eb->pages[i])
5025 unlock_page(eb->pages[i]);
5026 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005027
Miao Xie897ca6e92010-10-26 20:57:29 -04005028 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005029 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005030}
Chris Masond1310b22008-01-24 16:13:08 -05005031
Josef Bacik3083ee22012-03-09 16:01:49 -05005032static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5033{
5034 struct extent_buffer *eb =
5035 container_of(head, struct extent_buffer, rcu_head);
5036
5037 __free_extent_buffer(eb);
5038}
5039
Josef Bacik3083ee22012-03-09 16:01:49 -05005040/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005041static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005042{
5043 WARN_ON(atomic_read(&eb->refs) == 0);
5044 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005045 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005046 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005047
Jan Schmidt815a51c2012-05-16 17:00:02 +02005048 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005049
Josef Bacikf28491e2013-12-16 13:24:27 -05005050 spin_lock(&fs_info->buffer_lock);
5051 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02005052 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005053 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005054 } else {
5055 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005056 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005057
5058 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005059 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005060#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5061 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5062 __free_extent_buffer(eb);
5063 return 1;
5064 }
5065#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005066 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005067 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005068 }
5069 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005070
5071 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005072}
5073
Chris Masond1310b22008-01-24 16:13:08 -05005074void free_extent_buffer(struct extent_buffer *eb)
5075{
Chris Mason242e18c2013-01-29 17:49:37 -05005076 int refs;
5077 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005078 if (!eb)
5079 return;
5080
Chris Mason242e18c2013-01-29 17:49:37 -05005081 while (1) {
5082 refs = atomic_read(&eb->refs);
5083 if (refs <= 3)
5084 break;
5085 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5086 if (old == refs)
5087 return;
5088 }
5089
Josef Bacik3083ee22012-03-09 16:01:49 -05005090 spin_lock(&eb->refs_lock);
5091 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005092 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5093 atomic_dec(&eb->refs);
5094
5095 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005096 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005097 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005098 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5099 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005100
Josef Bacik3083ee22012-03-09 16:01:49 -05005101 /*
5102 * I know this is terrible, but it's temporary until we stop tracking
5103 * the uptodate bits and such for the extent buffers.
5104 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005105 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005106}
Chris Masond1310b22008-01-24 16:13:08 -05005107
Josef Bacik3083ee22012-03-09 16:01:49 -05005108void free_extent_buffer_stale(struct extent_buffer *eb)
5109{
5110 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005111 return;
5112
Josef Bacik3083ee22012-03-09 16:01:49 -05005113 spin_lock(&eb->refs_lock);
5114 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5115
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005116 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005117 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5118 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005119 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005120}
5121
Chris Mason1d4284b2012-03-28 20:31:37 -04005122void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005123{
Chris Masond1310b22008-01-24 16:13:08 -05005124 unsigned long i;
5125 unsigned long num_pages;
5126 struct page *page;
5127
Chris Masond1310b22008-01-24 16:13:08 -05005128 num_pages = num_extent_pages(eb->start, eb->len);
5129
5130 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005131 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005132 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005133 continue;
5134
Chris Masona61e6f22008-07-22 11:18:08 -04005135 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005136 WARN_ON(!PagePrivate(page));
5137
Chris Masond1310b22008-01-24 16:13:08 -05005138 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005139 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005140 if (!PageDirty(page)) {
5141 radix_tree_tag_clear(&page->mapping->page_tree,
5142 page_index(page),
5143 PAGECACHE_TAG_DIRTY);
5144 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005145 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005146 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005147 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005148 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005149 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005150}
Chris Masond1310b22008-01-24 16:13:08 -05005151
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005152int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005153{
5154 unsigned long i;
5155 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005156 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005157
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005158 check_buffer_tree_ref(eb);
5159
Chris Masonb9473432009-03-13 11:00:37 -04005160 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005161
Chris Masond1310b22008-01-24 16:13:08 -05005162 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005163 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005164 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5165
Chris Masonb9473432009-03-13 11:00:37 -04005166 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005167 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005168 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005169}
Chris Masond1310b22008-01-24 16:13:08 -05005170
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005171int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005172{
5173 unsigned long i;
5174 struct page *page;
5175 unsigned long num_pages;
5176
Chris Masonb4ce94d2009-02-04 09:25:08 -05005177 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005178 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005179 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005180 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005181 if (page)
5182 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005183 }
5184 return 0;
5185}
5186
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005187int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005188{
5189 unsigned long i;
5190 struct page *page;
5191 unsigned long num_pages;
5192
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005193 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005194 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005195 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005196 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005197 SetPageUptodate(page);
5198 }
5199 return 0;
5200}
Chris Masond1310b22008-01-24 16:13:08 -05005201
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005202int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005203{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005204 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005205}
Chris Masond1310b22008-01-24 16:13:08 -05005206
5207int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02005208 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005209 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005210{
5211 unsigned long i;
5212 unsigned long start_i;
5213 struct page *page;
5214 int err;
5215 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005216 int locked_pages = 0;
5217 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005218 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005219 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005220 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005221 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005222
Chris Masonb4ce94d2009-02-04 09:25:08 -05005223 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005224 return 0;
5225
Chris Masond1310b22008-01-24 16:13:08 -05005226 if (start) {
5227 WARN_ON(start < eb->start);
5228 start_i = (start >> PAGE_CACHE_SHIFT) -
5229 (eb->start >> PAGE_CACHE_SHIFT);
5230 } else {
5231 start_i = 0;
5232 }
5233
5234 num_pages = num_extent_pages(eb->start, eb->len);
5235 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005236 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005237 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005238 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005239 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005240 } else {
5241 lock_page(page);
5242 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005243 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005244 if (!PageUptodate(page)) {
5245 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005246 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005247 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005248 }
5249 if (all_uptodate) {
5250 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005251 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005252 goto unlock_exit;
5253 }
5254
Filipe Manana656f30d2014-09-26 12:25:56 +01005255 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005256 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005257 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005258 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005259 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005260 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005261 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005262 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005263 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005264 mirror_num, &bio_flags,
5265 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005266 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005267 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005268 } else {
5269 unlock_page(page);
5270 }
5271 }
5272
Jeff Mahoney355808c2011-10-03 23:23:14 -04005273 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005274 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5275 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005276 if (err)
5277 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005278 }
Chris Masona86c12c2008-02-07 10:50:54 -05005279
Arne Jansenbb82ab82011-06-10 14:06:53 +02005280 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005281 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005282
Chris Masond1310b22008-01-24 16:13:08 -05005283 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005284 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005285 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005286 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005287 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005288 }
Chris Masond3977122009-01-05 21:25:51 -05005289
Chris Masond1310b22008-01-24 16:13:08 -05005290 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005291
5292unlock_exit:
5293 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005294 while (locked_pages > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005295 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005296 i++;
5297 unlock_page(page);
5298 locked_pages--;
5299 }
5300 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005301}
Chris Masond1310b22008-01-24 16:13:08 -05005302
5303void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5304 unsigned long start,
5305 unsigned long len)
5306{
5307 size_t cur;
5308 size_t offset;
5309 struct page *page;
5310 char *kaddr;
5311 char *dst = (char *)dstv;
5312 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5313 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005314
5315 WARN_ON(start > eb->len);
5316 WARN_ON(start + len > eb->start + eb->len);
5317
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005318 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005319
Chris Masond3977122009-01-05 21:25:51 -05005320 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005321 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005322
5323 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005324 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005325 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005326
5327 dst += cur;
5328 len -= cur;
5329 offset = 0;
5330 i++;
5331 }
5332}
Chris Masond1310b22008-01-24 16:13:08 -05005333
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005334int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5335 unsigned long start,
5336 unsigned long len)
5337{
5338 size_t cur;
5339 size_t offset;
5340 struct page *page;
5341 char *kaddr;
5342 char __user *dst = (char __user *)dstv;
5343 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5344 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5345 int ret = 0;
5346
5347 WARN_ON(start > eb->len);
5348 WARN_ON(start + len > eb->start + eb->len);
5349
5350 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5351
5352 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005353 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005354
5355 cur = min(len, (PAGE_CACHE_SIZE - offset));
5356 kaddr = page_address(page);
5357 if (copy_to_user(dst, kaddr + offset, cur)) {
5358 ret = -EFAULT;
5359 break;
5360 }
5361
5362 dst += cur;
5363 len -= cur;
5364 offset = 0;
5365 i++;
5366 }
5367
5368 return ret;
5369}
5370
Chris Masond1310b22008-01-24 16:13:08 -05005371int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005372 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005373 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005374 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005375{
5376 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5377 char *kaddr;
5378 struct page *p;
5379 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5380 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5381 unsigned long end_i = (start_offset + start + min_len - 1) >>
5382 PAGE_CACHE_SHIFT;
5383
5384 if (i != end_i)
5385 return -EINVAL;
5386
5387 if (i == 0) {
5388 offset = start_offset;
5389 *map_start = 0;
5390 } else {
5391 offset = 0;
5392 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5393 }
Chris Masond3977122009-01-05 21:25:51 -05005394
Chris Masond1310b22008-01-24 16:13:08 -05005395 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005396 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005397 "wanted %lu %lu\n",
5398 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005399 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005400 }
5401
David Sterbafb85fc92014-07-31 01:03:53 +02005402 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005403 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005404 *map = kaddr + offset;
5405 *map_len = PAGE_CACHE_SIZE - offset;
5406 return 0;
5407}
Chris Masond1310b22008-01-24 16:13:08 -05005408
Chris Masond1310b22008-01-24 16:13:08 -05005409int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5410 unsigned long start,
5411 unsigned long len)
5412{
5413 size_t cur;
5414 size_t offset;
5415 struct page *page;
5416 char *kaddr;
5417 char *ptr = (char *)ptrv;
5418 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5419 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5420 int ret = 0;
5421
5422 WARN_ON(start > eb->len);
5423 WARN_ON(start + len > eb->start + eb->len);
5424
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005425 offset = (start_offset + start) & (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 = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005429
5430 cur = min(len, (PAGE_CACHE_SIZE - offset));
5431
Chris Masona6591712011-07-19 12:04:14 -04005432 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005433 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005434 if (ret)
5435 break;
5436
5437 ptr += cur;
5438 len -= cur;
5439 offset = 0;
5440 i++;
5441 }
5442 return ret;
5443}
Chris Masond1310b22008-01-24 16:13:08 -05005444
5445void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5446 unsigned long start, unsigned long len)
5447{
5448 size_t cur;
5449 size_t offset;
5450 struct page *page;
5451 char *kaddr;
5452 char *src = (char *)srcv;
5453 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5454 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5455
5456 WARN_ON(start > eb->len);
5457 WARN_ON(start + len > eb->start + eb->len);
5458
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005459 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005460
Chris Masond3977122009-01-05 21:25:51 -05005461 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005462 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005463 WARN_ON(!PageUptodate(page));
5464
5465 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005466 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005467 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005468
5469 src += cur;
5470 len -= cur;
5471 offset = 0;
5472 i++;
5473 }
5474}
Chris Masond1310b22008-01-24 16:13:08 -05005475
5476void memset_extent_buffer(struct extent_buffer *eb, char c,
5477 unsigned long start, unsigned long len)
5478{
5479 size_t cur;
5480 size_t offset;
5481 struct page *page;
5482 char *kaddr;
5483 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5484 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5485
5486 WARN_ON(start > eb->len);
5487 WARN_ON(start + len > eb->start + eb->len);
5488
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005489 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005490
Chris Masond3977122009-01-05 21:25:51 -05005491 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005492 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005493 WARN_ON(!PageUptodate(page));
5494
5495 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005496 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005497 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005498
5499 len -= cur;
5500 offset = 0;
5501 i++;
5502 }
5503}
Chris Masond1310b22008-01-24 16:13:08 -05005504
5505void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5506 unsigned long dst_offset, unsigned long src_offset,
5507 unsigned long len)
5508{
5509 u64 dst_len = dst->len;
5510 size_t cur;
5511 size_t offset;
5512 struct page *page;
5513 char *kaddr;
5514 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5515 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5516
5517 WARN_ON(src->len != dst_len);
5518
5519 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005520 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005521
Chris Masond3977122009-01-05 21:25:51 -05005522 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005523 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005524 WARN_ON(!PageUptodate(page));
5525
5526 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5527
Chris Masona6591712011-07-19 12:04:14 -04005528 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005529 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005530
5531 src_offset += cur;
5532 len -= cur;
5533 offset = 0;
5534 i++;
5535 }
5536}
Chris Masond1310b22008-01-24 16:13:08 -05005537
Sergei Trofimovich33872062011-04-11 21:52:52 +00005538static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5539{
5540 unsigned long distance = (src > dst) ? src - dst : dst - src;
5541 return distance < len;
5542}
5543
Chris Masond1310b22008-01-24 16:13:08 -05005544static void copy_pages(struct page *dst_page, struct page *src_page,
5545 unsigned long dst_off, unsigned long src_off,
5546 unsigned long len)
5547{
Chris Masona6591712011-07-19 12:04:14 -04005548 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005549 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005550 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005551
Sergei Trofimovich33872062011-04-11 21:52:52 +00005552 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005553 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005554 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005555 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005556 if (areas_overlap(src_off, dst_off, len))
5557 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005558 }
Chris Masond1310b22008-01-24 16:13:08 -05005559
Chris Mason727011e2010-08-06 13:21:20 -04005560 if (must_memmove)
5561 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5562 else
5563 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005564}
5565
5566void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5567 unsigned long src_offset, unsigned long len)
5568{
5569 size_t cur;
5570 size_t dst_off_in_page;
5571 size_t src_off_in_page;
5572 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5573 unsigned long dst_i;
5574 unsigned long src_i;
5575
5576 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005577 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005578 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005579 BUG_ON(1);
5580 }
5581 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005582 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005583 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005584 BUG_ON(1);
5585 }
5586
Chris Masond3977122009-01-05 21:25:51 -05005587 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005588 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005589 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005590 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005591 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005592
5593 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5594 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5595
5596 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5597 src_off_in_page));
5598 cur = min_t(unsigned long, cur,
5599 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5600
David Sterbafb85fc92014-07-31 01:03:53 +02005601 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005602 dst_off_in_page, src_off_in_page, cur);
5603
5604 src_offset += cur;
5605 dst_offset += cur;
5606 len -= cur;
5607 }
5608}
Chris Masond1310b22008-01-24 16:13:08 -05005609
5610void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5611 unsigned long src_offset, unsigned long len)
5612{
5613 size_t cur;
5614 size_t dst_off_in_page;
5615 size_t src_off_in_page;
5616 unsigned long dst_end = dst_offset + len - 1;
5617 unsigned long src_end = src_offset + len - 1;
5618 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5619 unsigned long dst_i;
5620 unsigned long src_i;
5621
5622 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005623 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005624 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005625 BUG_ON(1);
5626 }
5627 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005628 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005629 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005630 BUG_ON(1);
5631 }
Chris Mason727011e2010-08-06 13:21:20 -04005632 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005633 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5634 return;
5635 }
Chris Masond3977122009-01-05 21:25:51 -05005636 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005637 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5638 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5639
5640 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005641 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005642 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005643 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005644
5645 cur = min_t(unsigned long, len, src_off_in_page + 1);
5646 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005647 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005648 dst_off_in_page - cur + 1,
5649 src_off_in_page - cur + 1, cur);
5650
5651 dst_end -= cur;
5652 src_end -= cur;
5653 len -= cur;
5654 }
5655}
Chris Mason6af118ce2008-07-22 11:18:07 -04005656
David Sterbaf7a52a42013-04-26 14:56:29 +00005657int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005658{
Chris Mason6af118ce2008-07-22 11:18:07 -04005659 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005660
Miao Xie19fe0a82010-10-26 20:57:29 -04005661 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005662 * We need to make sure noboody is attaching this page to an eb right
5663 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005664 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005665 spin_lock(&page->mapping->private_lock);
5666 if (!PagePrivate(page)) {
5667 spin_unlock(&page->mapping->private_lock);
5668 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005669 }
5670
Josef Bacik3083ee22012-03-09 16:01:49 -05005671 eb = (struct extent_buffer *)page->private;
5672 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005673
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005674 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005675 * This is a little awful but should be ok, we need to make sure that
5676 * the eb doesn't disappear out from under us while we're looking at
5677 * this page.
5678 */
5679 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005680 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005681 spin_unlock(&eb->refs_lock);
5682 spin_unlock(&page->mapping->private_lock);
5683 return 0;
5684 }
5685 spin_unlock(&page->mapping->private_lock);
5686
Josef Bacik3083ee22012-03-09 16:01:49 -05005687 /*
5688 * If tree ref isn't set then we know the ref on this eb is a real ref,
5689 * so just return, this page will likely be freed soon anyway.
5690 */
5691 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5692 spin_unlock(&eb->refs_lock);
5693 return 0;
5694 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005695
David Sterbaf7a52a42013-04-26 14:56:29 +00005696 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005697}