blob: 420fe26d32d56b60f57454f9daa8356b9318ed50 [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);
Filipe Manana27a35072014-07-06 20:09:59 +010067 pr_err("BTRFS: state leak: start %llu end %llu state %lu in tree %d refs %d\n",
68 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 Sterba41074882013-04-29 13:38:46 +0000399 struct extent_state *state, unsigned long *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 Sterba41074882013-04-29 13:38:46 +0000406 struct extent_state *state, unsigned long *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 Sterba41074882013-04-29 13:38:46 +0000413 struct extent_state *state, unsigned long *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 Sterba41074882013-04-29 13:38:46 +0000429 unsigned long *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 Sterba41074882013-04-29 13:38:46 +0000514 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500515{
Li Zefancdc6a392012-03-12 16:39:48 +0800516 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000517 unsigned long 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 Sterba41074882013-04-29 13:38:46 +0000573 unsigned long 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)) {
598 prealloc = alloc_extent_state(mask);
599 if (!prealloc)
600 return -ENOMEM;
601 }
602
Chris Masoncad321a2008-12-17 14:51:42 -0500603 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400604 if (cached_state) {
605 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000606
607 if (clear) {
608 *cached_state = NULL;
609 cached_state = NULL;
610 }
611
Filipe Manana27a35072014-07-06 20:09:59 +0100612 if (cached && extent_state_in_tree(cached) &&
613 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000614 if (clear)
615 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400616 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400617 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400618 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000619 if (clear)
620 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400621 }
Chris Masond1310b22008-01-24 16:13:08 -0500622 /*
623 * this search will find the extents that end after
624 * our range starts
625 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500626 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500627 if (!node)
628 goto out;
629 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400630hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500631 if (state->start > end)
632 goto out;
633 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400634 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500635
Liu Bo04493142012-02-16 18:34:37 +0800636 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800637 if (!(state->state & bits)) {
638 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800639 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800640 }
Liu Bo04493142012-02-16 18:34:37 +0800641
Chris Masond1310b22008-01-24 16:13:08 -0500642 /*
643 * | ---- desired range ---- |
644 * | state | or
645 * | ------------- state -------------- |
646 *
647 * We need to split the extent we found, and may flip
648 * bits on second half.
649 *
650 * If the extent we found extends past our range, we
651 * just split and search again. It'll get split again
652 * the next time though.
653 *
654 * If the extent we found is inside our range, we clear
655 * the desired bit on it.
656 */
657
658 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000659 prealloc = alloc_extent_state_atomic(prealloc);
660 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500661 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400662 if (err)
663 extent_io_tree_panic(tree, err);
664
Chris Masond1310b22008-01-24 16:13:08 -0500665 prealloc = NULL;
666 if (err)
667 goto out;
668 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800669 state = clear_state_bit(tree, state, &bits, wake);
670 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500671 }
672 goto search_again;
673 }
674 /*
675 * | ---- desired range ---- |
676 * | state |
677 * We need to split the extent, and clear the bit
678 * on the first half
679 */
680 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000681 prealloc = alloc_extent_state_atomic(prealloc);
682 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500683 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400684 if (err)
685 extent_io_tree_panic(tree, err);
686
Chris Masond1310b22008-01-24 16:13:08 -0500687 if (wake)
688 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400689
Jeff Mahoney6763af82012-03-01 14:56:29 +0100690 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400691
Chris Masond1310b22008-01-24 16:13:08 -0500692 prealloc = NULL;
693 goto out;
694 }
Chris Mason42daec22009-09-23 19:51:09 -0400695
Li Zefancdc6a392012-03-12 16:39:48 +0800696 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800697next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400698 if (last_end == (u64)-1)
699 goto out;
700 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800701 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800702 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500703 goto search_again;
704
705out:
Chris Masoncad321a2008-12-17 14:51:42 -0500706 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500707 if (prealloc)
708 free_extent_state(prealloc);
709
Jeff Mahoney6763af82012-03-01 14:56:29 +0100710 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500711
712search_again:
713 if (start > end)
714 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500715 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500716 if (mask & __GFP_WAIT)
717 cond_resched();
718 goto again;
719}
Chris Masond1310b22008-01-24 16:13:08 -0500720
Jeff Mahoney143bede2012-03-01 14:56:26 +0100721static void wait_on_state(struct extent_io_tree *tree,
722 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500723 __releases(tree->lock)
724 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500725{
726 DEFINE_WAIT(wait);
727 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500728 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500729 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500730 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500731 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500732}
733
734/*
735 * waits for one or more bits to clear on a range in the state tree.
736 * The range [start, end] is inclusive.
737 * The tree lock is taken by this function
738 */
David Sterba41074882013-04-29 13:38:46 +0000739static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
740 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500741{
742 struct extent_state *state;
743 struct rb_node *node;
744
Josef Bacika5dee372013-12-13 10:02:44 -0500745 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000746
Chris Masoncad321a2008-12-17 14:51:42 -0500747 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500748again:
749 while (1) {
750 /*
751 * this search will find all the extents that end after
752 * our range starts
753 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500754 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100755process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500756 if (!node)
757 break;
758
759 state = rb_entry(node, struct extent_state, rb_node);
760
761 if (state->start > end)
762 goto out;
763
764 if (state->state & bits) {
765 start = state->start;
766 atomic_inc(&state->refs);
767 wait_on_state(tree, state);
768 free_extent_state(state);
769 goto again;
770 }
771 start = state->end + 1;
772
773 if (start > end)
774 break;
775
Filipe Mananac50d3e72014-03-31 14:53:25 +0100776 if (!cond_resched_lock(&tree->lock)) {
777 node = rb_next(node);
778 goto process_node;
779 }
Chris Masond1310b22008-01-24 16:13:08 -0500780 }
781out:
Chris Masoncad321a2008-12-17 14:51:42 -0500782 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500783}
Chris Masond1310b22008-01-24 16:13:08 -0500784
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000785static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500786 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000787 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500788{
David Sterba41074882013-04-29 13:38:46 +0000789 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400790
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000791 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400792 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500793 u64 range = state->end - state->start + 1;
794 tree->dirty_bytes += range;
795 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400796 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500797}
798
Chris Mason2c64c532009-09-02 15:04:12 -0400799static void cache_state(struct extent_state *state,
800 struct extent_state **cached_ptr)
801{
802 if (cached_ptr && !(*cached_ptr)) {
803 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
804 *cached_ptr = state;
805 atomic_inc(&state->refs);
806 }
807 }
808}
809
Chris Masond1310b22008-01-24 16:13:08 -0500810/*
Chris Mason1edbb732009-09-02 13:24:36 -0400811 * set some bits on a range in the tree. This may require allocations or
812 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500813 *
Chris Mason1edbb732009-09-02 13:24:36 -0400814 * If any of the exclusive bits are set, this will fail with -EEXIST if some
815 * part of the range already has the desired bits set. The start of the
816 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500817 *
Chris Mason1edbb732009-09-02 13:24:36 -0400818 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500819 */
Chris Mason1edbb732009-09-02 13:24:36 -0400820
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100821static int __must_check
822__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000823 unsigned long bits, unsigned long exclusive_bits,
824 u64 *failed_start, struct extent_state **cached_state,
825 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500826{
827 struct extent_state *state;
828 struct extent_state *prealloc = NULL;
829 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000830 struct rb_node **p;
831 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500832 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500833 u64 last_start;
834 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400835
Josef Bacika5dee372013-12-13 10:02:44 -0500836 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000837
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400838 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500839again:
840 if (!prealloc && (mask & __GFP_WAIT)) {
841 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000842 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500843 }
844
Chris Masoncad321a2008-12-17 14:51:42 -0500845 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400846 if (cached_state && *cached_state) {
847 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400848 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100849 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400850 node = &state->rb_node;
851 goto hit_next;
852 }
853 }
Chris Masond1310b22008-01-24 16:13:08 -0500854 /*
855 * this search will find all the extents that end after
856 * our range starts.
857 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000858 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500859 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000860 prealloc = alloc_extent_state_atomic(prealloc);
861 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000862 err = insert_state(tree, prealloc, start, end,
863 &p, &parent, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400864 if (err)
865 extent_io_tree_panic(tree, err);
866
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000867 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500868 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500869 goto out;
870 }
Chris Masond1310b22008-01-24 16:13:08 -0500871 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400872hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500873 last_start = state->start;
874 last_end = state->end;
875
876 /*
877 * | ---- desired range ---- |
878 * | state |
879 *
880 * Just lock what we found and keep going
881 */
882 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400883 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500884 *failed_start = state->start;
885 err = -EEXIST;
886 goto out;
887 }
Chris Mason42daec22009-09-23 19:51:09 -0400888
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000889 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400890 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500891 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400892 if (last_end == (u64)-1)
893 goto out;
894 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800895 state = next_state(state);
896 if (start < end && state && state->start == start &&
897 !need_resched())
898 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500899 goto search_again;
900 }
901
902 /*
903 * | ---- desired range ---- |
904 * | state |
905 * or
906 * | ------------- state -------------- |
907 *
908 * We need to split the extent we found, and may flip bits on
909 * second half.
910 *
911 * If the extent we found extends past our
912 * range, we just split and search again. It'll get split
913 * again the next time though.
914 *
915 * If the extent we found is inside our range, we set the
916 * desired bit on it.
917 */
918 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400919 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500920 *failed_start = start;
921 err = -EEXIST;
922 goto out;
923 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000924
925 prealloc = alloc_extent_state_atomic(prealloc);
926 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500927 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400928 if (err)
929 extent_io_tree_panic(tree, err);
930
Chris Masond1310b22008-01-24 16:13:08 -0500931 prealloc = NULL;
932 if (err)
933 goto out;
934 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000935 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400936 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500937 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400938 if (last_end == (u64)-1)
939 goto out;
940 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800941 state = next_state(state);
942 if (start < end && state && state->start == start &&
943 !need_resched())
944 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500945 }
946 goto search_again;
947 }
948 /*
949 * | ---- desired range ---- |
950 * | state | or | state |
951 *
952 * There's a hole, we need to insert something in it and
953 * ignore the extent we found.
954 */
955 if (state->start > start) {
956 u64 this_end;
957 if (end < last_start)
958 this_end = end;
959 else
Chris Masond3977122009-01-05 21:25:51 -0500960 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000961
962 prealloc = alloc_extent_state_atomic(prealloc);
963 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000964
965 /*
966 * Avoid to free 'prealloc' if it can be merged with
967 * the later extent.
968 */
Chris Masond1310b22008-01-24 16:13:08 -0500969 err = insert_state(tree, prealloc, start, this_end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000970 NULL, NULL, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400971 if (err)
972 extent_io_tree_panic(tree, err);
973
Chris Mason2c64c532009-09-02 15:04:12 -0400974 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500975 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500976 start = this_end + 1;
977 goto search_again;
978 }
979 /*
980 * | ---- desired range ---- |
981 * | state |
982 * We need to split the extent, and set the bit
983 * on the first half
984 */
985 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400986 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500987 *failed_start = start;
988 err = -EEXIST;
989 goto out;
990 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000991
992 prealloc = alloc_extent_state_atomic(prealloc);
993 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500994 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400995 if (err)
996 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500997
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000998 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400999 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001000 merge_state(tree, prealloc);
1001 prealloc = NULL;
1002 goto out;
1003 }
1004
1005 goto search_again;
1006
1007out:
Chris Masoncad321a2008-12-17 14:51:42 -05001008 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001009 if (prealloc)
1010 free_extent_state(prealloc);
1011
1012 return err;
1013
1014search_again:
1015 if (start > end)
1016 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -05001017 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001018 if (mask & __GFP_WAIT)
1019 cond_resched();
1020 goto again;
1021}
Chris Masond1310b22008-01-24 16:13:08 -05001022
David Sterba41074882013-04-29 13:38:46 +00001023int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1024 unsigned long bits, u64 * failed_start,
1025 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001026{
1027 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
1028 cached_state, mask);
1029}
1030
1031
Josef Bacik462d6fa2011-09-26 13:56:12 -04001032/**
Liu Bo10983f22012-07-11 15:26:19 +08001033 * convert_extent_bit - convert all bits in a given range from one bit to
1034 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001035 * @tree: the io tree to search
1036 * @start: the start offset in bytes
1037 * @end: the end offset in bytes (inclusive)
1038 * @bits: the bits to set in this range
1039 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001040 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001041 * @mask: the allocation mask
1042 *
1043 * This will go through and set bits for the given range. If any states exist
1044 * already in this range they are set with the given bit and cleared of the
1045 * clear_bits. This is only meant to be used by things that are mergeable, ie
1046 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1047 * boundary bits like LOCK.
1048 */
1049int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001050 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001051 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001052{
1053 struct extent_state *state;
1054 struct extent_state *prealloc = NULL;
1055 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001056 struct rb_node **p;
1057 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001058 int err = 0;
1059 u64 last_start;
1060 u64 last_end;
1061
Josef Bacika5dee372013-12-13 10:02:44 -05001062 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001063
Josef Bacik462d6fa2011-09-26 13:56:12 -04001064again:
1065 if (!prealloc && (mask & __GFP_WAIT)) {
1066 prealloc = alloc_extent_state(mask);
1067 if (!prealloc)
1068 return -ENOMEM;
1069 }
1070
1071 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001072 if (cached_state && *cached_state) {
1073 state = *cached_state;
1074 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001075 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001076 node = &state->rb_node;
1077 goto hit_next;
1078 }
1079 }
1080
Josef Bacik462d6fa2011-09-26 13:56:12 -04001081 /*
1082 * this search will find all the extents that end after
1083 * our range starts.
1084 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001085 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001086 if (!node) {
1087 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001088 if (!prealloc) {
1089 err = -ENOMEM;
1090 goto out;
1091 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001092 err = insert_state(tree, prealloc, start, end,
1093 &p, &parent, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001094 if (err)
1095 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001096 cache_state(prealloc, cached_state);
1097 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001098 goto out;
1099 }
1100 state = rb_entry(node, struct extent_state, rb_node);
1101hit_next:
1102 last_start = state->start;
1103 last_end = state->end;
1104
1105 /*
1106 * | ---- desired range ---- |
1107 * | state |
1108 *
1109 * Just lock what we found and keep going
1110 */
1111 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001112 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001113 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001114 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001115 if (last_end == (u64)-1)
1116 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001117 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001118 if (start < end && state && state->start == start &&
1119 !need_resched())
1120 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001121 goto search_again;
1122 }
1123
1124 /*
1125 * | ---- desired range ---- |
1126 * | state |
1127 * or
1128 * | ------------- state -------------- |
1129 *
1130 * We need to split the extent we found, and may flip bits on
1131 * second half.
1132 *
1133 * If the extent we found extends past our
1134 * range, we just split and search again. It'll get split
1135 * again the next time though.
1136 *
1137 * If the extent we found is inside our range, we set the
1138 * desired bit on it.
1139 */
1140 if (state->start < start) {
1141 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001142 if (!prealloc) {
1143 err = -ENOMEM;
1144 goto out;
1145 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001146 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001147 if (err)
1148 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001149 prealloc = NULL;
1150 if (err)
1151 goto out;
1152 if (state->end <= end) {
1153 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001154 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001155 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001156 if (last_end == (u64)-1)
1157 goto out;
1158 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001159 if (start < end && state && state->start == start &&
1160 !need_resched())
1161 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162 }
1163 goto search_again;
1164 }
1165 /*
1166 * | ---- desired range ---- |
1167 * | state | or | state |
1168 *
1169 * There's a hole, we need to insert something in it and
1170 * ignore the extent we found.
1171 */
1172 if (state->start > start) {
1173 u64 this_end;
1174 if (end < last_start)
1175 this_end = end;
1176 else
1177 this_end = last_start - 1;
1178
1179 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001180 if (!prealloc) {
1181 err = -ENOMEM;
1182 goto out;
1183 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001184
1185 /*
1186 * Avoid to free 'prealloc' if it can be merged with
1187 * the later extent.
1188 */
1189 err = insert_state(tree, prealloc, start, this_end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001190 NULL, NULL, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001191 if (err)
1192 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001193 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001194 prealloc = NULL;
1195 start = this_end + 1;
1196 goto search_again;
1197 }
1198 /*
1199 * | ---- desired range ---- |
1200 * | state |
1201 * We need to split the extent, and set the bit
1202 * on the first half
1203 */
1204 if (state->start <= end && state->end > end) {
1205 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001206 if (!prealloc) {
1207 err = -ENOMEM;
1208 goto out;
1209 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001210
1211 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001212 if (err)
1213 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001214
1215 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001216 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001217 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001218 prealloc = NULL;
1219 goto out;
1220 }
1221
1222 goto search_again;
1223
1224out:
1225 spin_unlock(&tree->lock);
1226 if (prealloc)
1227 free_extent_state(prealloc);
1228
1229 return err;
1230
1231search_again:
1232 if (start > end)
1233 goto out;
1234 spin_unlock(&tree->lock);
1235 if (mask & __GFP_WAIT)
1236 cond_resched();
1237 goto again;
1238}
1239
Chris Masond1310b22008-01-24 16:13:08 -05001240/* wrappers around set/clear extent bit */
1241int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1242 gfp_t mask)
1243{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001244 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001245 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001246}
Chris Masond1310b22008-01-24 16:13:08 -05001247
1248int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001249 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001250{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001251 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001252 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001253}
Chris Masond1310b22008-01-24 16:13:08 -05001254
1255int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001256 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001257{
Chris Mason2c64c532009-09-02 15:04:12 -04001258 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001259}
Chris Masond1310b22008-01-24 16:13:08 -05001260
1261int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001262 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001263{
1264 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001265 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001266 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001267}
Chris Masond1310b22008-01-24 16:13:08 -05001268
Liu Bo9e8a4a82012-09-05 19:10:51 -06001269int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1270 struct extent_state **cached_state, gfp_t mask)
1271{
1272 return set_extent_bit(tree, start, end,
1273 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1274 NULL, cached_state, mask);
1275}
1276
Chris Masond1310b22008-01-24 16:13:08 -05001277int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1278 gfp_t mask)
1279{
1280 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001281 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001282 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001283}
Chris Masond1310b22008-01-24 16:13:08 -05001284
1285int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1286 gfp_t mask)
1287{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001288 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001289 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001290}
Chris Masond1310b22008-01-24 16:13:08 -05001291
Chris Masond1310b22008-01-24 16:13:08 -05001292int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001293 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001294{
Liu Bo6b67a322013-03-28 08:30:28 +00001295 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001296 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001297}
Chris Masond1310b22008-01-24 16:13:08 -05001298
Josef Bacik5fd02042012-05-02 14:00:54 -04001299int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1300 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001301{
Chris Mason2c64c532009-09-02 15:04:12 -04001302 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001303 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001304}
Chris Masond1310b22008-01-24 16:13:08 -05001305
Chris Masond352ac62008-09-29 15:18:18 -04001306/*
1307 * either insert or lock state struct between start and end use mask to tell
1308 * us if waiting is desired.
1309 */
Chris Mason1edbb732009-09-02 13:24:36 -04001310int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001311 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001312{
1313 int err;
1314 u64 failed_start;
1315 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001316 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1317 EXTENT_LOCKED, &failed_start,
1318 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001319 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001320 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1321 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001322 } else
Chris Masond1310b22008-01-24 16:13:08 -05001323 break;
Chris Masond1310b22008-01-24 16:13:08 -05001324 WARN_ON(start > end);
1325 }
1326 return err;
1327}
Chris Masond1310b22008-01-24 16:13:08 -05001328
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001329int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001330{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001331 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001332}
1333
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001334int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001335{
1336 int err;
1337 u64 failed_start;
1338
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001339 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1340 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001341 if (err == -EEXIST) {
1342 if (failed_start > start)
1343 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001344 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001345 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001346 }
Josef Bacik25179202008-10-29 14:49:05 -04001347 return 1;
1348}
Josef Bacik25179202008-10-29 14:49:05 -04001349
Chris Mason2c64c532009-09-02 15:04:12 -04001350int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1351 struct extent_state **cached, gfp_t mask)
1352{
1353 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1354 mask);
1355}
1356
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001357int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001358{
Chris Mason2c64c532009-09-02 15:04:12 -04001359 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001360 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001361}
Chris Masond1310b22008-01-24 16:13:08 -05001362
Chris Mason4adaa612013-03-26 13:07:00 -04001363int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1364{
1365 unsigned long index = start >> PAGE_CACHE_SHIFT;
1366 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1367 struct page *page;
1368
1369 while (index <= end_index) {
1370 page = find_get_page(inode->i_mapping, index);
1371 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1372 clear_page_dirty_for_io(page);
1373 page_cache_release(page);
1374 index++;
1375 }
1376 return 0;
1377}
1378
1379int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1380{
1381 unsigned long index = start >> PAGE_CACHE_SHIFT;
1382 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1383 struct page *page;
1384
1385 while (index <= end_index) {
1386 page = find_get_page(inode->i_mapping, index);
1387 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1388 account_page_redirty(page);
1389 __set_page_dirty_nobuffers(page);
1390 page_cache_release(page);
1391 index++;
1392 }
1393 return 0;
1394}
1395
Chris Masond1310b22008-01-24 16:13:08 -05001396/*
Chris Masond1310b22008-01-24 16:13:08 -05001397 * helper function to set both pages and extents in the tree writeback
1398 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001399static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001400{
1401 unsigned long index = start >> PAGE_CACHE_SHIFT;
1402 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1403 struct page *page;
1404
1405 while (index <= end_index) {
1406 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001407 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001408 set_page_writeback(page);
1409 page_cache_release(page);
1410 index++;
1411 }
Chris Masond1310b22008-01-24 16:13:08 -05001412 return 0;
1413}
Chris Masond1310b22008-01-24 16:13:08 -05001414
Chris Masond352ac62008-09-29 15:18:18 -04001415/* find the first state struct with 'bits' set after 'start', and
1416 * return it. tree->lock must be held. NULL will returned if
1417 * nothing was found after 'start'
1418 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001419static struct extent_state *
1420find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001421 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001422{
1423 struct rb_node *node;
1424 struct extent_state *state;
1425
1426 /*
1427 * this search will find all the extents that end after
1428 * our range starts.
1429 */
1430 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001431 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001432 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001433
Chris Masond3977122009-01-05 21:25:51 -05001434 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001435 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001436 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001437 return state;
Chris Masond3977122009-01-05 21:25:51 -05001438
Chris Masond7fc6402008-02-18 12:12:38 -05001439 node = rb_next(node);
1440 if (!node)
1441 break;
1442 }
1443out:
1444 return NULL;
1445}
Chris Masond7fc6402008-02-18 12:12:38 -05001446
Chris Masond352ac62008-09-29 15:18:18 -04001447/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001448 * find the first offset in the io tree with 'bits' set. zero is
1449 * returned if we find something, and *start_ret and *end_ret are
1450 * set to reflect the state struct that was found.
1451 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001452 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001453 */
1454int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001455 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001456 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001457{
1458 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001459 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001460 int ret = 1;
1461
1462 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001463 if (cached_state && *cached_state) {
1464 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001465 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001466 n = rb_next(&state->rb_node);
1467 while (n) {
1468 state = rb_entry(n, struct extent_state,
1469 rb_node);
1470 if (state->state & bits)
1471 goto got_it;
1472 n = rb_next(n);
1473 }
1474 free_extent_state(*cached_state);
1475 *cached_state = NULL;
1476 goto out;
1477 }
1478 free_extent_state(*cached_state);
1479 *cached_state = NULL;
1480 }
1481
Xiao Guangrong69261c42011-07-14 03:19:45 +00001482 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001483got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001484 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001485 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001486 *start_ret = state->start;
1487 *end_ret = state->end;
1488 ret = 0;
1489 }
Josef Bacike6138872012-09-27 17:07:30 -04001490out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001491 spin_unlock(&tree->lock);
1492 return ret;
1493}
1494
1495/*
Chris Masond352ac62008-09-29 15:18:18 -04001496 * find a contiguous range of bytes in the file marked as delalloc, not
1497 * more than 'max_bytes'. start and end are used to return the range,
1498 *
1499 * 1 is returned if we find something, 0 if nothing was in the tree
1500 */
Chris Masonc8b97812008-10-29 14:49:59 -04001501static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001502 u64 *start, u64 *end, u64 max_bytes,
1503 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001504{
1505 struct rb_node *node;
1506 struct extent_state *state;
1507 u64 cur_start = *start;
1508 u64 found = 0;
1509 u64 total_bytes = 0;
1510
Chris Masoncad321a2008-12-17 14:51:42 -05001511 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001512
Chris Masond1310b22008-01-24 16:13:08 -05001513 /*
1514 * this search will find all the extents that end after
1515 * our range starts.
1516 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001517 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001518 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001519 if (!found)
1520 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001521 goto out;
1522 }
1523
Chris Masond3977122009-01-05 21:25:51 -05001524 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001525 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001526 if (found && (state->start != cur_start ||
1527 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001528 goto out;
1529 }
1530 if (!(state->state & EXTENT_DELALLOC)) {
1531 if (!found)
1532 *end = state->end;
1533 goto out;
1534 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001535 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001536 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001537 *cached_state = state;
1538 atomic_inc(&state->refs);
1539 }
Chris Masond1310b22008-01-24 16:13:08 -05001540 found++;
1541 *end = state->end;
1542 cur_start = state->end + 1;
1543 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001544 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001545 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001546 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001547 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001548 break;
1549 }
1550out:
Chris Masoncad321a2008-12-17 14:51:42 -05001551 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001552 return found;
1553}
1554
Jeff Mahoney143bede2012-03-01 14:56:26 +01001555static noinline void __unlock_for_delalloc(struct inode *inode,
1556 struct page *locked_page,
1557 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001558{
1559 int ret;
1560 struct page *pages[16];
1561 unsigned long index = start >> PAGE_CACHE_SHIFT;
1562 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1563 unsigned long nr_pages = end_index - index + 1;
1564 int i;
1565
1566 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001567 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001568
Chris Masond3977122009-01-05 21:25:51 -05001569 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001570 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001571 min_t(unsigned long, nr_pages,
1572 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001573 for (i = 0; i < ret; i++) {
1574 if (pages[i] != locked_page)
1575 unlock_page(pages[i]);
1576 page_cache_release(pages[i]);
1577 }
1578 nr_pages -= ret;
1579 index += ret;
1580 cond_resched();
1581 }
Chris Masonc8b97812008-10-29 14:49:59 -04001582}
1583
1584static noinline int lock_delalloc_pages(struct inode *inode,
1585 struct page *locked_page,
1586 u64 delalloc_start,
1587 u64 delalloc_end)
1588{
1589 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1590 unsigned long start_index = index;
1591 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1592 unsigned long pages_locked = 0;
1593 struct page *pages[16];
1594 unsigned long nrpages;
1595 int ret;
1596 int i;
1597
1598 /* the caller is responsible for locking the start index */
1599 if (index == locked_page->index && index == end_index)
1600 return 0;
1601
1602 /* skip the page at the start index */
1603 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001604 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001605 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001606 min_t(unsigned long,
1607 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001608 if (ret == 0) {
1609 ret = -EAGAIN;
1610 goto done;
1611 }
1612 /* now we have an array of pages, lock them all */
1613 for (i = 0; i < ret; i++) {
1614 /*
1615 * the caller is taking responsibility for
1616 * locked_page
1617 */
Chris Mason771ed682008-11-06 22:02:51 -05001618 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001619 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001620 if (!PageDirty(pages[i]) ||
1621 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001622 ret = -EAGAIN;
1623 unlock_page(pages[i]);
1624 page_cache_release(pages[i]);
1625 goto done;
1626 }
1627 }
Chris Masonc8b97812008-10-29 14:49:59 -04001628 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001629 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001630 }
Chris Masonc8b97812008-10-29 14:49:59 -04001631 nrpages -= ret;
1632 index += ret;
1633 cond_resched();
1634 }
1635 ret = 0;
1636done:
1637 if (ret && pages_locked) {
1638 __unlock_for_delalloc(inode, locked_page,
1639 delalloc_start,
1640 ((u64)(start_index + pages_locked - 1)) <<
1641 PAGE_CACHE_SHIFT);
1642 }
1643 return ret;
1644}
1645
1646/*
1647 * find a contiguous range of bytes in the file marked as delalloc, not
1648 * more than 'max_bytes'. start and end are used to return the range,
1649 *
1650 * 1 is returned if we find something, 0 if nothing was in the tree
1651 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001652STATIC u64 find_lock_delalloc_range(struct inode *inode,
1653 struct extent_io_tree *tree,
1654 struct page *locked_page, u64 *start,
1655 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001656{
1657 u64 delalloc_start;
1658 u64 delalloc_end;
1659 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001660 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001661 int ret;
1662 int loops = 0;
1663
1664again:
1665 /* step one, find a bunch of delalloc bytes starting at start */
1666 delalloc_start = *start;
1667 delalloc_end = 0;
1668 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001669 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001670 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001671 *start = delalloc_start;
1672 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001673 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001674 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001675 }
1676
1677 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001678 * start comes from the offset of locked_page. We have to lock
1679 * pages in order, so we can't process delalloc bytes before
1680 * locked_page
1681 */
Chris Masond3977122009-01-05 21:25:51 -05001682 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001683 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001684
1685 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001686 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001687 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001688 if (delalloc_end + 1 - delalloc_start > max_bytes)
1689 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001690
Chris Masonc8b97812008-10-29 14:49:59 -04001691 /* step two, lock all the pages after the page that has start */
1692 ret = lock_delalloc_pages(inode, locked_page,
1693 delalloc_start, delalloc_end);
1694 if (ret == -EAGAIN) {
1695 /* some of the pages are gone, lets avoid looping by
1696 * shortening the size of the delalloc range we're searching
1697 */
Chris Mason9655d292009-09-02 15:22:30 -04001698 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001699 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001700 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001701 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001702 loops = 1;
1703 goto again;
1704 } else {
1705 found = 0;
1706 goto out_failed;
1707 }
1708 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001709 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001710
1711 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001712 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001713
1714 /* then test to make sure it is all still delalloc */
1715 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001716 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001717 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001718 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1719 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001720 __unlock_for_delalloc(inode, locked_page,
1721 delalloc_start, delalloc_end);
1722 cond_resched();
1723 goto again;
1724 }
Chris Mason9655d292009-09-02 15:22:30 -04001725 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001726 *start = delalloc_start;
1727 *end = delalloc_end;
1728out_failed:
1729 return found;
1730}
1731
Josef Bacikc2790a22013-07-29 11:20:47 -04001732int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1733 struct page *locked_page,
1734 unsigned long clear_bits,
1735 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001736{
Josef Bacikc2790a22013-07-29 11:20:47 -04001737 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001738 int ret;
1739 struct page *pages[16];
1740 unsigned long index = start >> PAGE_CACHE_SHIFT;
1741 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1742 unsigned long nr_pages = end_index - index + 1;
1743 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001744
Chris Mason2c64c532009-09-02 15:04:12 -04001745 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001746 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001747 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001748
Filipe Manana704de492014-10-06 22:14:22 +01001749 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1750 mapping_set_error(inode->i_mapping, -EIO);
1751
Chris Masond3977122009-01-05 21:25:51 -05001752 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001753 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001754 min_t(unsigned long,
1755 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001756 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001757
Josef Bacikc2790a22013-07-29 11:20:47 -04001758 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001759 SetPagePrivate2(pages[i]);
1760
Chris Masonc8b97812008-10-29 14:49:59 -04001761 if (pages[i] == locked_page) {
1762 page_cache_release(pages[i]);
1763 continue;
1764 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001765 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001766 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001767 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001768 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001769 if (page_ops & PAGE_SET_ERROR)
1770 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001771 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001772 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001773 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001774 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001775 page_cache_release(pages[i]);
1776 }
1777 nr_pages -= ret;
1778 index += ret;
1779 cond_resched();
1780 }
1781 return 0;
1782}
Chris Masonc8b97812008-10-29 14:49:59 -04001783
Chris Masond352ac62008-09-29 15:18:18 -04001784/*
1785 * count the number of bytes in the tree that have a given bit(s)
1786 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1787 * cached. The total number found is returned.
1788 */
Chris Masond1310b22008-01-24 16:13:08 -05001789u64 count_range_bits(struct extent_io_tree *tree,
1790 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001791 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001792{
1793 struct rb_node *node;
1794 struct extent_state *state;
1795 u64 cur_start = *start;
1796 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001797 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001798 int found = 0;
1799
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301800 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001801 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001802
Chris Masoncad321a2008-12-17 14:51:42 -05001803 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001804 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1805 total_bytes = tree->dirty_bytes;
1806 goto out;
1807 }
1808 /*
1809 * this search will find all the extents that end after
1810 * our range starts.
1811 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001812 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001813 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001814 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001815
Chris Masond3977122009-01-05 21:25:51 -05001816 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001817 state = rb_entry(node, struct extent_state, rb_node);
1818 if (state->start > search_end)
1819 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001820 if (contig && found && state->start > last + 1)
1821 break;
1822 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001823 total_bytes += min(search_end, state->end) + 1 -
1824 max(cur_start, state->start);
1825 if (total_bytes >= max_bytes)
1826 break;
1827 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001828 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001829 found = 1;
1830 }
Chris Masonec29ed52011-02-23 16:23:20 -05001831 last = state->end;
1832 } else if (contig && found) {
1833 break;
Chris Masond1310b22008-01-24 16:13:08 -05001834 }
1835 node = rb_next(node);
1836 if (!node)
1837 break;
1838 }
1839out:
Chris Masoncad321a2008-12-17 14:51:42 -05001840 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001841 return total_bytes;
1842}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001843
Chris Masond352ac62008-09-29 15:18:18 -04001844/*
1845 * set the private field for a given byte offset in the tree. If there isn't
1846 * an extent_state there already, this does nothing.
1847 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001848static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001849{
1850 struct rb_node *node;
1851 struct extent_state *state;
1852 int ret = 0;
1853
Chris Masoncad321a2008-12-17 14:51:42 -05001854 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001855 /*
1856 * this search will find all the extents that end after
1857 * our range starts.
1858 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001859 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001860 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001861 ret = -ENOENT;
1862 goto out;
1863 }
1864 state = rb_entry(node, struct extent_state, rb_node);
1865 if (state->start != start) {
1866 ret = -ENOENT;
1867 goto out;
1868 }
1869 state->private = private;
1870out:
Chris Masoncad321a2008-12-17 14:51:42 -05001871 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001872 return ret;
1873}
1874
1875int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1876{
1877 struct rb_node *node;
1878 struct extent_state *state;
1879 int ret = 0;
1880
Chris Masoncad321a2008-12-17 14:51:42 -05001881 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001882 /*
1883 * this search will find all the extents that end after
1884 * our range starts.
1885 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001886 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001887 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001888 ret = -ENOENT;
1889 goto out;
1890 }
1891 state = rb_entry(node, struct extent_state, rb_node);
1892 if (state->start != start) {
1893 ret = -ENOENT;
1894 goto out;
1895 }
1896 *private = state->private;
1897out:
Chris Masoncad321a2008-12-17 14:51:42 -05001898 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001899 return ret;
1900}
1901
1902/*
1903 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001904 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001905 * has the bits set. Otherwise, 1 is returned if any bit in the
1906 * range is found set.
1907 */
1908int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001909 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001910{
1911 struct extent_state *state = NULL;
1912 struct rb_node *node;
1913 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001914
Chris Masoncad321a2008-12-17 14:51:42 -05001915 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001916 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001917 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001918 node = &cached->rb_node;
1919 else
1920 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001921 while (node && start <= end) {
1922 state = rb_entry(node, struct extent_state, rb_node);
1923
1924 if (filled && state->start > start) {
1925 bitset = 0;
1926 break;
1927 }
1928
1929 if (state->start > end)
1930 break;
1931
1932 if (state->state & bits) {
1933 bitset = 1;
1934 if (!filled)
1935 break;
1936 } else if (filled) {
1937 bitset = 0;
1938 break;
1939 }
Chris Mason46562ce2009-09-23 20:23:16 -04001940
1941 if (state->end == (u64)-1)
1942 break;
1943
Chris Masond1310b22008-01-24 16:13:08 -05001944 start = state->end + 1;
1945 if (start > end)
1946 break;
1947 node = rb_next(node);
1948 if (!node) {
1949 if (filled)
1950 bitset = 0;
1951 break;
1952 }
1953 }
Chris Masoncad321a2008-12-17 14:51:42 -05001954 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001955 return bitset;
1956}
Chris Masond1310b22008-01-24 16:13:08 -05001957
1958/*
1959 * helper function to set a given page up to date if all the
1960 * extents in the tree for that page are up to date
1961 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001962static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001963{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001964 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001965 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001966 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001967 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001968}
1969
Miao Xie8b110e32014-09-12 18:44:03 +08001970int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001971{
1972 int ret;
1973 int err = 0;
1974 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1975
1976 set_state_private(failure_tree, rec->start, 0);
1977 ret = clear_extent_bits(failure_tree, rec->start,
1978 rec->start + rec->len - 1,
1979 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1980 if (ret)
1981 err = ret;
1982
David Woodhouse53b381b2013-01-29 18:40:14 -05001983 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1984 rec->start + rec->len - 1,
1985 EXTENT_DAMAGED, GFP_NOFS);
1986 if (ret && !err)
1987 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001988
1989 kfree(rec);
1990 return err;
1991}
1992
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001993/*
1994 * this bypasses the standard btrfs submit functions deliberately, as
1995 * the standard behavior is to write all copies in a raid setup. here we only
1996 * want to write the one bad copy. so we do the mapping for ourselves and issue
1997 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001998 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001999 * actually prevents the read that triggered the error from finishing.
2000 * currently, there can be no more than two copies of every data bit. thus,
2001 * exactly one rewrite is required.
2002 */
Miao Xie1203b682014-09-12 18:44:01 +08002003int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2004 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002005{
Miao Xie1203b682014-09-12 18:44:01 +08002006 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002007 struct bio *bio;
2008 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002009 u64 map_length = 0;
2010 u64 sector;
2011 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002012 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002013 int ret;
2014
Ilya Dryomov908960c2013-11-03 19:06:39 +02002015 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002016 BUG_ON(!mirror_num);
2017
David Woodhouse53b381b2013-01-29 18:40:14 -05002018 /* we can't repair anything in raid56 yet */
2019 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2020 return 0;
2021
Chris Mason9be33952013-05-17 18:30:14 -04002022 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002023 if (!bio)
2024 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002025 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002026 map_length = length;
2027
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002028 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002029 &map_length, &bbio, mirror_num);
2030 if (ret) {
2031 bio_put(bio);
2032 return -EIO;
2033 }
2034 BUG_ON(mirror_num != bbio->mirror_num);
2035 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002036 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002037 dev = bbio->stripes[mirror_num-1].dev;
2038 kfree(bbio);
2039 if (!dev || !dev->bdev || !dev->writeable) {
2040 bio_put(bio);
2041 return -EIO;
2042 }
2043 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002044 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002045
Kent Overstreet33879d42013-11-23 22:33:32 -08002046 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002047 /* try to remap that extent elsewhere? */
2048 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002049 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002050 return -EIO;
2051 }
2052
Frank Holtonefe120a2013-12-20 11:37:06 -05002053 printk_ratelimited_in_rcu(KERN_INFO
Miao Xie1203b682014-09-12 18:44:01 +08002054 "BTRFS: read error corrected: ino %llu off %llu (dev %s sector %llu)\n",
2055 btrfs_ino(inode), start,
2056 rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002057 bio_put(bio);
2058 return 0;
2059}
2060
Josef Bacikea466792012-03-26 21:57:36 -04002061int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2062 int mirror_num)
2063{
Josef Bacikea466792012-03-26 21:57:36 -04002064 u64 start = eb->start;
2065 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002066 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002067
Ilya Dryomov908960c2013-11-03 19:06:39 +02002068 if (root->fs_info->sb->s_flags & MS_RDONLY)
2069 return -EROFS;
2070
Josef Bacikea466792012-03-26 21:57:36 -04002071 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002072 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002073
2074 ret = repair_io_failure(root->fs_info->btree_inode, start,
2075 PAGE_CACHE_SIZE, start, p,
2076 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002077 if (ret)
2078 break;
2079 start += PAGE_CACHE_SIZE;
2080 }
2081
2082 return ret;
2083}
2084
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002085/*
2086 * each time an IO finishes, we do a fast check in the IO failure tree
2087 * to see if we need to process or clean up an io_failure_record
2088 */
Miao Xie8b110e32014-09-12 18:44:03 +08002089int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2090 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091{
2092 u64 private;
2093 u64 private_failure;
2094 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002095 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002096 struct extent_state *state;
2097 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002098 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099
2100 private = 0;
2101 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2102 (u64)-1, 1, EXTENT_DIRTY, 0);
2103 if (!ret)
2104 return 0;
2105
2106 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2107 &private_failure);
2108 if (ret)
2109 return 0;
2110
2111 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2112 BUG_ON(!failrec->this_mirror);
2113
2114 if (failrec->in_validation) {
2115 /* there was no real error, just free the record */
2116 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2117 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002118 goto out;
2119 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002120 if (fs_info->sb->s_flags & MS_RDONLY)
2121 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002122
2123 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2124 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2125 failrec->start,
2126 EXTENT_LOCKED);
2127 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2128
Miao Xie883d0de2013-07-25 19:22:35 +08002129 if (state && state->start <= failrec->start &&
2130 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002131 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2132 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002133 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002134 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002135 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002136 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002137 }
2138 }
2139
2140out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002141 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002142
Miao Xie454ff3d2014-09-12 18:43:58 +08002143 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002144}
2145
Miao Xief6124962014-09-12 18:44:04 +08002146/*
2147 * Can be called when
2148 * - hold extent lock
2149 * - under ordered extent
2150 * - the inode is freeing
2151 */
2152void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2153{
2154 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2155 struct io_failure_record *failrec;
2156 struct extent_state *state, *next;
2157
2158 if (RB_EMPTY_ROOT(&failure_tree->state))
2159 return;
2160
2161 spin_lock(&failure_tree->lock);
2162 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2163 while (state) {
2164 if (state->start > end)
2165 break;
2166
2167 ASSERT(state->end <= end);
2168
2169 next = next_state(state);
2170
2171 failrec = (struct io_failure_record *)state->private;
2172 free_extent_state(state);
2173 kfree(failrec);
2174
2175 state = next;
2176 }
2177 spin_unlock(&failure_tree->lock);
2178}
2179
Miao Xie2fe63032014-09-12 18:43:59 +08002180int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2181 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002182{
Miao Xie2fe63032014-09-12 18:43:59 +08002183 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 u64 private;
2185 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002186 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2187 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2188 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002189 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002190 u64 logical;
2191
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002192 ret = get_state_private(failure_tree, start, &private);
2193 if (ret) {
2194 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2195 if (!failrec)
2196 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002197
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002198 failrec->start = start;
2199 failrec->len = end - start + 1;
2200 failrec->this_mirror = 0;
2201 failrec->bio_flags = 0;
2202 failrec->in_validation = 0;
2203
2204 read_lock(&em_tree->lock);
2205 em = lookup_extent_mapping(em_tree, start, failrec->len);
2206 if (!em) {
2207 read_unlock(&em_tree->lock);
2208 kfree(failrec);
2209 return -EIO;
2210 }
2211
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002212 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002213 free_extent_map(em);
2214 em = NULL;
2215 }
2216 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002217 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002218 kfree(failrec);
2219 return -EIO;
2220 }
Miao Xie2fe63032014-09-12 18:43:59 +08002221
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002222 logical = start - em->start;
2223 logical = em->block_start + logical;
2224 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2225 logical = em->block_start;
2226 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2227 extent_set_compress_type(&failrec->bio_flags,
2228 em->compress_type);
2229 }
Miao Xie2fe63032014-09-12 18:43:59 +08002230
2231 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2232 logical, start, failrec->len);
2233
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002234 failrec->logical = logical;
2235 free_extent_map(em);
2236
2237 /* set the bits in the private failure tree */
2238 ret = set_extent_bits(failure_tree, start, end,
2239 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2240 if (ret >= 0)
2241 ret = set_state_private(failure_tree, start,
2242 (u64)(unsigned long)failrec);
2243 /* set the bits in the inode's tree */
2244 if (ret >= 0)
2245 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2246 GFP_NOFS);
2247 if (ret < 0) {
2248 kfree(failrec);
2249 return ret;
2250 }
2251 } else {
2252 failrec = (struct io_failure_record *)(unsigned long)private;
Miao Xie2fe63032014-09-12 18:43:59 +08002253 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002254 failrec->logical, failrec->start, failrec->len,
2255 failrec->in_validation);
2256 /*
2257 * when data can be on disk more than twice, add to failrec here
2258 * (e.g. with a list for failed_mirror) to make
2259 * clean_io_failure() clean all those errors at once.
2260 */
2261 }
Miao Xie2fe63032014-09-12 18:43:59 +08002262
2263 *failrec_ret = failrec;
2264
2265 return 0;
2266}
2267
2268int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2269 struct io_failure_record *failrec, int failed_mirror)
2270{
2271 int num_copies;
2272
Stefan Behrens5d964052012-11-05 14:59:07 +01002273 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2274 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002275 if (num_copies == 1) {
2276 /*
2277 * we only have a single copy of the data, so don't bother with
2278 * all the retry and error correction code that follows. no
2279 * matter what the error is, it is very likely to persist.
2280 */
Miao Xie2fe63032014-09-12 18:43:59 +08002281 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002282 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002283 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002284 }
2285
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002286 /*
2287 * there are two premises:
2288 * a) deliver good data to the caller
2289 * b) correct the bad sectors on disk
2290 */
2291 if (failed_bio->bi_vcnt > 1) {
2292 /*
2293 * to fulfill b), we need to know the exact failing sectors, as
2294 * we don't want to rewrite any more than the failed ones. thus,
2295 * we need separate read requests for the failed bio
2296 *
2297 * if the following BUG_ON triggers, our validation request got
2298 * merged. we need separate requests for our algorithm to work.
2299 */
2300 BUG_ON(failrec->in_validation);
2301 failrec->in_validation = 1;
2302 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002303 } else {
2304 /*
2305 * we're ready to fulfill a) and b) alongside. get a good copy
2306 * of the failed sector and if we succeed, we have setup
2307 * everything for repair_io_failure to do the rest for us.
2308 */
2309 if (failrec->in_validation) {
2310 BUG_ON(failrec->this_mirror != failed_mirror);
2311 failrec->in_validation = 0;
2312 failrec->this_mirror = 0;
2313 }
2314 failrec->failed_mirror = failed_mirror;
2315 failrec->this_mirror++;
2316 if (failrec->this_mirror == failed_mirror)
2317 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002318 }
2319
Miao Xiefacc8a222013-07-25 19:22:34 +08002320 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002321 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002322 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002323 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002324 }
2325
Miao Xie2fe63032014-09-12 18:43:59 +08002326 return 1;
2327}
2328
2329
2330struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2331 struct io_failure_record *failrec,
2332 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002333 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002334{
2335 struct bio *bio;
2336 struct btrfs_io_bio *btrfs_failed_bio;
2337 struct btrfs_io_bio *btrfs_bio;
2338
Chris Mason9be33952013-05-17 18:30:14 -04002339 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002340 if (!bio)
2341 return NULL;
2342
2343 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002344 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002345 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002346 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002347 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002348
Miao Xiefacc8a222013-07-25 19:22:34 +08002349 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2350 if (btrfs_failed_bio->csum) {
2351 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2352 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2353
2354 btrfs_bio = btrfs_io_bio(bio);
2355 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002356 icsum *= csum_size;
2357 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002358 csum_size);
2359 }
2360
Miao Xie2fe63032014-09-12 18:43:59 +08002361 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002362
Miao Xie2fe63032014-09-12 18:43:59 +08002363 return bio;
2364}
2365
2366/*
2367 * this is a generic handler for readpage errors (default
2368 * readpage_io_failed_hook). if other copies exist, read those and write back
2369 * good data to the failed position. does not investigate in remapping the
2370 * failed extent elsewhere, hoping the device will be smart enough to do this as
2371 * needed
2372 */
2373
2374static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2375 struct page *page, u64 start, u64 end,
2376 int failed_mirror)
2377{
2378 struct io_failure_record *failrec;
2379 struct inode *inode = page->mapping->host;
2380 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2381 struct bio *bio;
2382 int read_mode;
2383 int ret;
2384
2385 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2386
2387 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2388 if (ret)
2389 return ret;
2390
2391 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2392 if (!ret) {
2393 free_io_failure(inode, failrec);
2394 return -EIO;
2395 }
2396
2397 if (failed_bio->bi_vcnt > 1)
2398 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2399 else
2400 read_mode = READ_SYNC;
2401
2402 phy_offset >>= inode->i_sb->s_blocksize_bits;
2403 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2404 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002405 (int)phy_offset, failed_bio->bi_end_io,
2406 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002407 if (!bio) {
2408 free_io_failure(inode, failrec);
2409 return -EIO;
2410 }
2411
2412 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2413 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002414
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002415 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2416 failrec->this_mirror,
2417 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002418 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002419 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002420 bio_put(bio);
2421 }
2422
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002423 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002424}
2425
Chris Masond1310b22008-01-24 16:13:08 -05002426/* lots and lots of room for performance fixes in the end_bio funcs */
2427
Jeff Mahoney87826df2012-02-15 16:23:57 +01002428int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2429{
2430 int uptodate = (err == 0);
2431 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002432 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002433
2434 tree = &BTRFS_I(page->mapping->host)->io_tree;
2435
2436 if (tree->ops && tree->ops->writepage_end_io_hook) {
2437 ret = tree->ops->writepage_end_io_hook(page, start,
2438 end, NULL, uptodate);
2439 if (ret)
2440 uptodate = 0;
2441 }
2442
Jeff Mahoney87826df2012-02-15 16:23:57 +01002443 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002444 ClearPageUptodate(page);
2445 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002446 ret = ret < 0 ? ret : -EIO;
2447 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002448 }
2449 return 0;
2450}
2451
Chris Masond1310b22008-01-24 16:13:08 -05002452/*
2453 * after a writepage IO is done, we need to:
2454 * clear the uptodate bits on error
2455 * clear the writeback bits in the extent tree for this IO
2456 * end_page_writeback if the page has no more pending IO
2457 *
2458 * Scheduling is not allowed, so the extent state tree is expected
2459 * to have one and only one object corresponding to this IO.
2460 */
Chris Masond1310b22008-01-24 16:13:08 -05002461static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002462{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002463 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002464 u64 start;
2465 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002466 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002467
Kent Overstreet2c30c712013-11-07 12:20:26 -08002468 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002469 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002470
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002471 /* We always issue full-page reads, but if some block
2472 * in a page fails to read, blk_update_request() will
2473 * advance bv_offset and adjust bv_len to compensate.
2474 * Print a warning for nonzero offsets, and an error
2475 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002476 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2477 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2478 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2479 "partial page write in btrfs with offset %u and length %u",
2480 bvec->bv_offset, bvec->bv_len);
2481 else
2482 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2483 "incomplete page write in btrfs with offset %u and "
2484 "length %u",
2485 bvec->bv_offset, bvec->bv_len);
2486 }
Chris Masond1310b22008-01-24 16:13:08 -05002487
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002488 start = page_offset(page);
2489 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002490
Jeff Mahoney87826df2012-02-15 16:23:57 +01002491 if (end_extent_writepage(page, err, start, end))
2492 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002493
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002494 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002495 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002496
Chris Masond1310b22008-01-24 16:13:08 -05002497 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002498}
2499
Miao Xie883d0de2013-07-25 19:22:35 +08002500static void
2501endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2502 int uptodate)
2503{
2504 struct extent_state *cached = NULL;
2505 u64 end = start + len - 1;
2506
2507 if (uptodate && tree->track_uptodate)
2508 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2509 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2510}
2511
Chris Masond1310b22008-01-24 16:13:08 -05002512/*
2513 * after a readpage IO is done, we need to:
2514 * clear the uptodate bits on error
2515 * set the uptodate bits if things worked
2516 * set the page up to date if all extents in the tree are uptodate
2517 * clear the lock bit in the extent tree
2518 * unlock the page if there are no other extents locked for it
2519 *
2520 * Scheduling is not allowed, so the extent state tree is expected
2521 * to have one and only one object corresponding to this IO.
2522 */
Chris Masond1310b22008-01-24 16:13:08 -05002523static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002524{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002525 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002526 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Miao Xiefacc8a222013-07-25 19:22:34 +08002527 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002528 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002529 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002530 u64 start;
2531 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002532 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002533 u64 extent_start = 0;
2534 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002535 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002536 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002537 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002538
Chris Masond20f7042008-12-08 16:58:54 -05002539 if (err)
2540 uptodate = 0;
2541
Kent Overstreet2c30c712013-11-07 12:20:26 -08002542 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002543 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002544 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002545
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002546 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Miao Xiec1dc0892014-09-12 18:43:56 +08002547 "mirror=%u\n", (u64)bio->bi_iter.bi_sector, err,
Chris Mason9be33952013-05-17 18:30:14 -04002548 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002549 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002550
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002551 /* We always issue full-page reads, but if some block
2552 * in a page fails to read, blk_update_request() will
2553 * advance bv_offset and adjust bv_len to compensate.
2554 * Print a warning for nonzero offsets, and an error
2555 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002556 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2557 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2558 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2559 "partial page read in btrfs with offset %u and length %u",
2560 bvec->bv_offset, bvec->bv_len);
2561 else
2562 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2563 "incomplete page read in btrfs with offset %u and "
2564 "length %u",
2565 bvec->bv_offset, bvec->bv_len);
2566 }
Chris Masond1310b22008-01-24 16:13:08 -05002567
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002568 start = page_offset(page);
2569 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002570 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002571
Chris Mason9be33952013-05-17 18:30:14 -04002572 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002573 if (likely(uptodate && tree->ops &&
2574 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002575 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2576 page, start, end,
2577 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002578 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002579 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002580 else
Miao Xie1203b682014-09-12 18:44:01 +08002581 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002582 }
Josef Bacikea466792012-03-26 21:57:36 -04002583
Miao Xief2a09da2013-07-25 19:22:33 +08002584 if (likely(uptodate))
2585 goto readpage_ok;
2586
2587 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002588 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002589 if (!ret && !err &&
2590 test_bit(BIO_UPTODATE, &bio->bi_flags))
2591 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002592 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002593 /*
2594 * The generic bio_readpage_error handles errors the
2595 * following way: If possible, new read requests are
2596 * created and submitted and will end up in
2597 * end_bio_extent_readpage as well (if we're lucky, not
2598 * in the !uptodate case). In that case it returns 0 and
2599 * we just go on with the next page in our bio. If it
2600 * can't handle the error it will return -EIO and we
2601 * remain responsible for that page.
2602 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002603 ret = bio_readpage_error(bio, offset, page, start, end,
2604 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002605 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002606 uptodate =
2607 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002608 if (err)
2609 uptodate = 0;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002610 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002611 continue;
2612 }
2613 }
Miao Xief2a09da2013-07-25 19:22:33 +08002614readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002615 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002616 loff_t i_size = i_size_read(inode);
2617 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002618 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002619
2620 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002621 off = i_size & (PAGE_CACHE_SIZE-1);
2622 if (page->index == end_index && off)
2623 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002624 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002625 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002626 ClearPageUptodate(page);
2627 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002628 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002629 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002630 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002631
2632 if (unlikely(!uptodate)) {
2633 if (extent_len) {
2634 endio_readpage_release_extent(tree,
2635 extent_start,
2636 extent_len, 1);
2637 extent_start = 0;
2638 extent_len = 0;
2639 }
2640 endio_readpage_release_extent(tree, start,
2641 end - start + 1, 0);
2642 } else if (!extent_len) {
2643 extent_start = start;
2644 extent_len = end + 1 - start;
2645 } else if (extent_start + extent_len == start) {
2646 extent_len += end + 1 - start;
2647 } else {
2648 endio_readpage_release_extent(tree, extent_start,
2649 extent_len, uptodate);
2650 extent_start = start;
2651 extent_len = end + 1 - start;
2652 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002653 }
Chris Masond1310b22008-01-24 16:13:08 -05002654
Miao Xie883d0de2013-07-25 19:22:35 +08002655 if (extent_len)
2656 endio_readpage_release_extent(tree, extent_start, extent_len,
2657 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002658 if (io_bio->end_io)
2659 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002660 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002661}
2662
Chris Mason9be33952013-05-17 18:30:14 -04002663/*
2664 * this allocates from the btrfs_bioset. We're returning a bio right now
2665 * but you can call btrfs_io_bio for the appropriate container_of magic
2666 */
Miao Xie88f794e2010-11-22 03:02:55 +00002667struct bio *
2668btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2669 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002670{
Miao Xiefacc8a222013-07-25 19:22:34 +08002671 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002672 struct bio *bio;
2673
Chris Mason9be33952013-05-17 18:30:14 -04002674 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002675
2676 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002677 while (!bio && (nr_vecs /= 2)) {
2678 bio = bio_alloc_bioset(gfp_flags,
2679 nr_vecs, btrfs_bioset);
2680 }
Chris Masond1310b22008-01-24 16:13:08 -05002681 }
2682
2683 if (bio) {
2684 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002685 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002686 btrfs_bio = btrfs_io_bio(bio);
2687 btrfs_bio->csum = NULL;
2688 btrfs_bio->csum_allocated = NULL;
2689 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002690 }
2691 return bio;
2692}
2693
Chris Mason9be33952013-05-17 18:30:14 -04002694struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2695{
Miao Xie23ea8e52014-09-12 18:43:54 +08002696 struct btrfs_io_bio *btrfs_bio;
2697 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002698
Miao Xie23ea8e52014-09-12 18:43:54 +08002699 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2700 if (new) {
2701 btrfs_bio = btrfs_io_bio(new);
2702 btrfs_bio->csum = NULL;
2703 btrfs_bio->csum_allocated = NULL;
2704 btrfs_bio->end_io = NULL;
2705 }
2706 return new;
2707}
Chris Mason9be33952013-05-17 18:30:14 -04002708
2709/* this also allocates from the btrfs_bioset */
2710struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2711{
Miao Xiefacc8a222013-07-25 19:22:34 +08002712 struct btrfs_io_bio *btrfs_bio;
2713 struct bio *bio;
2714
2715 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2716 if (bio) {
2717 btrfs_bio = btrfs_io_bio(bio);
2718 btrfs_bio->csum = NULL;
2719 btrfs_bio->csum_allocated = NULL;
2720 btrfs_bio->end_io = NULL;
2721 }
2722 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002723}
2724
2725
Jeff Mahoney355808c2011-10-03 23:23:14 -04002726static int __must_check submit_one_bio(int rw, struct bio *bio,
2727 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002728{
Chris Masond1310b22008-01-24 16:13:08 -05002729 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002730 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2731 struct page *page = bvec->bv_page;
2732 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002733 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002734
Miao Xie4eee4fa2012-12-21 09:17:45 +00002735 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002736
David Woodhouse902b22f2008-08-20 08:51:49 -04002737 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002738
2739 bio_get(bio);
2740
Chris Mason065631f2008-02-20 12:07:25 -05002741 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002742 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002743 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002744 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002745 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002746
Chris Masond1310b22008-01-24 16:13:08 -05002747 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2748 ret = -EOPNOTSUPP;
2749 bio_put(bio);
2750 return ret;
2751}
2752
David Woodhouse64a16702009-07-15 23:29:37 +01002753static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002754 unsigned long offset, size_t size, struct bio *bio,
2755 unsigned long bio_flags)
2756{
2757 int ret = 0;
2758 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002759 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002760 bio_flags);
2761 BUG_ON(ret < 0);
2762 return ret;
2763
2764}
2765
Chris Masond1310b22008-01-24 16:13:08 -05002766static int submit_extent_page(int rw, struct extent_io_tree *tree,
2767 struct page *page, sector_t sector,
2768 size_t size, unsigned long offset,
2769 struct block_device *bdev,
2770 struct bio **bio_ret,
2771 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002772 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002773 int mirror_num,
2774 unsigned long prev_bio_flags,
2775 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002776{
2777 int ret = 0;
2778 struct bio *bio;
2779 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002780 int contig = 0;
2781 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2782 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002783 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002784
2785 if (bio_ret && *bio_ret) {
2786 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002787 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002788 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002789 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002790 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002791
2792 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002793 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002794 bio_add_page(bio, page, page_size, offset) < page_size) {
2795 ret = submit_one_bio(rw, bio, mirror_num,
2796 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002797 if (ret < 0)
2798 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002799 bio = NULL;
2800 } else {
2801 return 0;
2802 }
2803 }
Chris Masonc8b97812008-10-29 14:49:59 -04002804 if (this_compressed)
2805 nr = BIO_MAX_PAGES;
2806 else
2807 nr = bio_get_nr_vecs(bdev);
2808
Miao Xie88f794e2010-11-22 03:02:55 +00002809 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002810 if (!bio)
2811 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002812
Chris Masonc8b97812008-10-29 14:49:59 -04002813 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002814 bio->bi_end_io = end_io_func;
2815 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002816
Chris Masond3977122009-01-05 21:25:51 -05002817 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002818 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002819 else
Chris Masonc8b97812008-10-29 14:49:59 -04002820 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002821
2822 return ret;
2823}
2824
Eric Sandeen48a3b632013-04-25 20:41:01 +00002825static void attach_extent_buffer_page(struct extent_buffer *eb,
2826 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002827{
2828 if (!PagePrivate(page)) {
2829 SetPagePrivate(page);
2830 page_cache_get(page);
2831 set_page_private(page, (unsigned long)eb);
2832 } else {
2833 WARN_ON(page->private != (unsigned long)eb);
2834 }
2835}
2836
Chris Masond1310b22008-01-24 16:13:08 -05002837void set_page_extent_mapped(struct page *page)
2838{
2839 if (!PagePrivate(page)) {
2840 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002841 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002842 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002843 }
2844}
2845
Miao Xie125bac012013-07-25 19:22:37 +08002846static struct extent_map *
2847__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2848 u64 start, u64 len, get_extent_t *get_extent,
2849 struct extent_map **em_cached)
2850{
2851 struct extent_map *em;
2852
2853 if (em_cached && *em_cached) {
2854 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002855 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002856 start < extent_map_end(em)) {
2857 atomic_inc(&em->refs);
2858 return em;
2859 }
2860
2861 free_extent_map(em);
2862 *em_cached = NULL;
2863 }
2864
2865 em = get_extent(inode, page, pg_offset, start, len, 0);
2866 if (em_cached && !IS_ERR_OR_NULL(em)) {
2867 BUG_ON(*em_cached);
2868 atomic_inc(&em->refs);
2869 *em_cached = em;
2870 }
2871 return em;
2872}
Chris Masond1310b22008-01-24 16:13:08 -05002873/*
2874 * basic readpage implementation. Locked extent state structs are inserted
2875 * into the tree that are removed when the IO is done (by the end_io
2876 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002877 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002878 */
Miao Xie99740902013-07-25 19:22:36 +08002879static int __do_readpage(struct extent_io_tree *tree,
2880 struct page *page,
2881 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002882 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002883 struct bio **bio, int mirror_num,
2884 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002885{
2886 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002887 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002888 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2889 u64 end;
2890 u64 cur = start;
2891 u64 extent_offset;
2892 u64 last_byte = i_size_read(inode);
2893 u64 block_start;
2894 u64 cur_end;
2895 sector_t sector;
2896 struct extent_map *em;
2897 struct block_device *bdev;
2898 int ret;
2899 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002900 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002901 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002902 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002903 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002904 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002905 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002906
2907 set_page_extent_mapped(page);
2908
Miao Xie99740902013-07-25 19:22:36 +08002909 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002910 if (!PageUptodate(page)) {
2911 if (cleancache_get_page(page) == 0) {
2912 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002913 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002914 goto out;
2915 }
2916 }
2917
Chris Masonc8b97812008-10-29 14:49:59 -04002918 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2919 char *userpage;
2920 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2921
2922 if (zero_offset) {
2923 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002924 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002925 memset(userpage + zero_offset, 0, iosize);
2926 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002927 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002928 }
2929 }
Chris Masond1310b22008-01-24 16:13:08 -05002930 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002931 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2932
Chris Masond1310b22008-01-24 16:13:08 -05002933 if (cur >= last_byte) {
2934 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002935 struct extent_state *cached = NULL;
2936
David Sterba306e16c2011-04-19 14:29:38 +02002937 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002938 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002939 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002940 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002941 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002942 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002943 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002944 if (!parent_locked)
2945 unlock_extent_cached(tree, cur,
2946 cur + iosize - 1,
2947 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002948 break;
2949 }
Miao Xie125bac012013-07-25 19:22:37 +08002950 em = __get_extent_map(inode, page, pg_offset, cur,
2951 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002952 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002953 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002954 if (!parent_locked)
2955 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002956 break;
2957 }
Chris Masond1310b22008-01-24 16:13:08 -05002958 extent_offset = cur - em->start;
2959 BUG_ON(extent_map_end(em) <= cur);
2960 BUG_ON(end < cur);
2961
Li Zefan261507a02010-12-17 14:21:50 +08002962 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002963 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002964 extent_set_compress_type(&this_bio_flag,
2965 em->compress_type);
2966 }
Chris Masonc8b97812008-10-29 14:49:59 -04002967
Chris Masond1310b22008-01-24 16:13:08 -05002968 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2969 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002970 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002971 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2972 disk_io_size = em->block_len;
2973 sector = em->block_start >> 9;
2974 } else {
2975 sector = (em->block_start + extent_offset) >> 9;
2976 disk_io_size = iosize;
2977 }
Chris Masond1310b22008-01-24 16:13:08 -05002978 bdev = em->bdev;
2979 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002980 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2981 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002982 free_extent_map(em);
2983 em = NULL;
2984
2985 /* we've found a hole, just zero and go on */
2986 if (block_start == EXTENT_MAP_HOLE) {
2987 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002988 struct extent_state *cached = NULL;
2989
Cong Wang7ac687d2011-11-25 23:14:28 +08002990 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002991 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002992 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002993 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002994
2995 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002996 &cached, GFP_NOFS);
2997 unlock_extent_cached(tree, cur, cur + iosize - 1,
2998 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002999 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003000 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003001 continue;
3002 }
3003 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003004 if (test_range_bit(tree, cur, cur_end,
3005 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003006 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003007 if (!parent_locked)
3008 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003009 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003010 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003011 continue;
3012 }
Chris Mason70dec802008-01-29 09:59:12 -05003013 /* we have an inline extent but it didn't get marked up
3014 * to date. Error out
3015 */
3016 if (block_start == EXTENT_MAP_INLINE) {
3017 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003018 if (!parent_locked)
3019 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003020 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003021 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003022 continue;
3023 }
Chris Masond1310b22008-01-24 16:13:08 -05003024
Josef Bacikc8f2f242013-02-11 11:33:00 -05003025 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003026 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02003027 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003028 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003029 end_bio_extent_readpage, mirror_num,
3030 *bio_flags,
3031 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003032 if (!ret) {
3033 nr++;
3034 *bio_flags = this_bio_flag;
3035 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003036 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003037 if (!parent_locked)
3038 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04003039 }
Chris Masond1310b22008-01-24 16:13:08 -05003040 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003041 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003042 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003043out:
Chris Masond1310b22008-01-24 16:13:08 -05003044 if (!nr) {
3045 if (!PageError(page))
3046 SetPageUptodate(page);
3047 unlock_page(page);
3048 }
3049 return 0;
3050}
3051
Miao Xie99740902013-07-25 19:22:36 +08003052static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3053 struct page *pages[], int nr_pages,
3054 u64 start, u64 end,
3055 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003056 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003057 struct bio **bio, int mirror_num,
3058 unsigned long *bio_flags, int rw)
3059{
3060 struct inode *inode;
3061 struct btrfs_ordered_extent *ordered;
3062 int index;
3063
3064 inode = pages[0]->mapping->host;
3065 while (1) {
3066 lock_extent(tree, start, end);
3067 ordered = btrfs_lookup_ordered_range(inode, start,
3068 end - start + 1);
3069 if (!ordered)
3070 break;
3071 unlock_extent(tree, start, end);
3072 btrfs_start_ordered_extent(inode, ordered, 1);
3073 btrfs_put_ordered_extent(ordered);
3074 }
3075
3076 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003077 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
3078 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003079 page_cache_release(pages[index]);
3080 }
3081}
3082
3083static void __extent_readpages(struct extent_io_tree *tree,
3084 struct page *pages[],
3085 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003086 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003087 struct bio **bio, int mirror_num,
3088 unsigned long *bio_flags, int rw)
3089{
Stefan Behrens35a36212013-08-14 18:12:25 +02003090 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003091 u64 end = 0;
3092 u64 page_start;
3093 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003094 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003095
3096 for (index = 0; index < nr_pages; index++) {
3097 page_start = page_offset(pages[index]);
3098 if (!end) {
3099 start = page_start;
3100 end = start + PAGE_CACHE_SIZE - 1;
3101 first_index = index;
3102 } else if (end + 1 == page_start) {
3103 end += PAGE_CACHE_SIZE;
3104 } else {
3105 __do_contiguous_readpages(tree, &pages[first_index],
3106 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003107 end, get_extent, em_cached,
3108 bio, mirror_num, bio_flags,
3109 rw);
Miao Xie99740902013-07-25 19:22:36 +08003110 start = page_start;
3111 end = start + PAGE_CACHE_SIZE - 1;
3112 first_index = index;
3113 }
3114 }
3115
3116 if (end)
3117 __do_contiguous_readpages(tree, &pages[first_index],
3118 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003119 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08003120 mirror_num, bio_flags, rw);
3121}
3122
3123static int __extent_read_full_page(struct extent_io_tree *tree,
3124 struct page *page,
3125 get_extent_t *get_extent,
3126 struct bio **bio, int mirror_num,
3127 unsigned long *bio_flags, int rw)
3128{
3129 struct inode *inode = page->mapping->host;
3130 struct btrfs_ordered_extent *ordered;
3131 u64 start = page_offset(page);
3132 u64 end = start + PAGE_CACHE_SIZE - 1;
3133 int ret;
3134
3135 while (1) {
3136 lock_extent(tree, start, end);
3137 ordered = btrfs_lookup_ordered_extent(inode, start);
3138 if (!ordered)
3139 break;
3140 unlock_extent(tree, start, end);
3141 btrfs_start_ordered_extent(inode, ordered, 1);
3142 btrfs_put_ordered_extent(ordered);
3143 }
3144
Miao Xie125bac012013-07-25 19:22:37 +08003145 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3146 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003147 return ret;
3148}
3149
Chris Masond1310b22008-01-24 16:13:08 -05003150int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003151 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003152{
3153 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003154 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003155 int ret;
3156
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003157 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003158 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003159 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003160 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003161 return ret;
3162}
Chris Masond1310b22008-01-24 16:13:08 -05003163
Mark Fasheh4b384312013-08-06 11:42:50 -07003164int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3165 get_extent_t *get_extent, int mirror_num)
3166{
3167 struct bio *bio = NULL;
3168 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3169 int ret;
3170
3171 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3172 &bio_flags, READ);
3173 if (bio)
3174 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3175 return ret;
3176}
3177
Chris Mason11c83492009-04-20 15:50:09 -04003178static noinline void update_nr_written(struct page *page,
3179 struct writeback_control *wbc,
3180 unsigned long nr_written)
3181{
3182 wbc->nr_to_write -= nr_written;
3183 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3184 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3185 page->mapping->writeback_index = page->index + nr_written;
3186}
3187
Chris Masond1310b22008-01-24 16:13:08 -05003188/*
Chris Mason40f76582014-05-21 13:35:51 -07003189 * helper for __extent_writepage, doing all of the delayed allocation setup.
3190 *
3191 * This returns 1 if our fill_delalloc function did all the work required
3192 * to write the page (copy into inline extent). In this case the IO has
3193 * been started and the page is already unlocked.
3194 *
3195 * This returns 0 if all went well (page still locked)
3196 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003197 */
Chris Mason40f76582014-05-21 13:35:51 -07003198static noinline_for_stack int writepage_delalloc(struct inode *inode,
3199 struct page *page, struct writeback_control *wbc,
3200 struct extent_page_data *epd,
3201 u64 delalloc_start,
3202 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003203{
Chris Mason40f76582014-05-21 13:35:51 -07003204 struct extent_io_tree *tree = epd->tree;
3205 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3206 u64 nr_delalloc;
3207 u64 delalloc_to_write = 0;
3208 u64 delalloc_end = 0;
3209 int ret;
3210 int page_started = 0;
3211
3212 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3213 return 0;
3214
3215 while (delalloc_end < page_end) {
3216 nr_delalloc = find_lock_delalloc_range(inode, tree,
3217 page,
3218 &delalloc_start,
3219 &delalloc_end,
3220 128 * 1024 * 1024);
3221 if (nr_delalloc == 0) {
3222 delalloc_start = delalloc_end + 1;
3223 continue;
3224 }
3225 ret = tree->ops->fill_delalloc(inode, page,
3226 delalloc_start,
3227 delalloc_end,
3228 &page_started,
3229 nr_written);
3230 /* File system has been set read-only */
3231 if (ret) {
3232 SetPageError(page);
3233 /* fill_delalloc should be return < 0 for error
3234 * but just in case, we use > 0 here meaning the
3235 * IO is started, so we don't want to return > 0
3236 * unless things are going well.
3237 */
3238 ret = ret < 0 ? ret : -EIO;
3239 goto done;
3240 }
3241 /*
3242 * delalloc_end is already one less than the total
3243 * length, so we don't subtract one from
3244 * PAGE_CACHE_SIZE
3245 */
3246 delalloc_to_write += (delalloc_end - delalloc_start +
3247 PAGE_CACHE_SIZE) >>
3248 PAGE_CACHE_SHIFT;
3249 delalloc_start = delalloc_end + 1;
3250 }
3251 if (wbc->nr_to_write < delalloc_to_write) {
3252 int thresh = 8192;
3253
3254 if (delalloc_to_write < thresh * 2)
3255 thresh = delalloc_to_write;
3256 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3257 thresh);
3258 }
3259
3260 /* did the fill delalloc function already unlock and start
3261 * the IO?
3262 */
3263 if (page_started) {
3264 /*
3265 * we've unlocked the page, so we can't update
3266 * the mapping's writeback index, just update
3267 * nr_to_write.
3268 */
3269 wbc->nr_to_write -= *nr_written;
3270 return 1;
3271 }
3272
3273 ret = 0;
3274
3275done:
3276 return ret;
3277}
3278
3279/*
3280 * helper for __extent_writepage. This calls the writepage start hooks,
3281 * and does the loop to map the page into extents and bios.
3282 *
3283 * We return 1 if the IO is started and the page is unlocked,
3284 * 0 if all went well (page still locked)
3285 * < 0 if there were errors (page still locked)
3286 */
3287static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3288 struct page *page,
3289 struct writeback_control *wbc,
3290 struct extent_page_data *epd,
3291 loff_t i_size,
3292 unsigned long nr_written,
3293 int write_flags, int *nr_ret)
3294{
Chris Masond1310b22008-01-24 16:13:08 -05003295 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003296 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003297 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3298 u64 end;
3299 u64 cur = start;
3300 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003301 u64 block_start;
3302 u64 iosize;
3303 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003304 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003305 struct extent_map *em;
3306 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003307 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003308 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003309 int ret = 0;
3310 int nr = 0;
3311 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003312
Chris Mason247e7432008-07-17 12:53:51 -04003313 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003314 ret = tree->ops->writepage_start_hook(page, start,
3315 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003316 if (ret) {
3317 /* Fixup worker will requeue */
3318 if (ret == -EBUSY)
3319 wbc->pages_skipped++;
3320 else
3321 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003322
Chris Mason11c83492009-04-20 15:50:09 -04003323 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003324 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003325 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003326 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003327 }
3328 }
3329
Chris Mason11c83492009-04-20 15:50:09 -04003330 /*
3331 * we don't want to touch the inode after unlocking the page,
3332 * so we update the mapping writeback index now
3333 */
3334 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003335
Chris Masond1310b22008-01-24 16:13:08 -05003336 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003337 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003338 if (tree->ops && tree->ops->writepage_end_io_hook)
3339 tree->ops->writepage_end_io_hook(page, start,
3340 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003341 goto done;
3342 }
3343
Chris Masond1310b22008-01-24 16:13:08 -05003344 blocksize = inode->i_sb->s_blocksize;
3345
3346 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003347 u64 em_end;
3348 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003349 if (tree->ops && tree->ops->writepage_end_io_hook)
3350 tree->ops->writepage_end_io_hook(page, cur,
3351 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003352 break;
3353 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003354 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003355 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003356 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003357 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003358 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003359 break;
3360 }
3361
3362 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003363 em_end = extent_map_end(em);
3364 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003365 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003366 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003367 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003368 sector = (em->block_start + extent_offset) >> 9;
3369 bdev = em->bdev;
3370 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003371 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003372 free_extent_map(em);
3373 em = NULL;
3374
Chris Masonc8b97812008-10-29 14:49:59 -04003375 /*
3376 * compressed and inline extents are written through other
3377 * paths in the FS
3378 */
3379 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003380 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003381 /*
3382 * end_io notification does not happen here for
3383 * compressed extents
3384 */
3385 if (!compressed && tree->ops &&
3386 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003387 tree->ops->writepage_end_io_hook(page, cur,
3388 cur + iosize - 1,
3389 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003390 else if (compressed) {
3391 /* we don't want to end_page_writeback on
3392 * a compressed extent. this happens
3393 * elsewhere
3394 */
3395 nr++;
3396 }
3397
3398 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003399 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003400 continue;
3401 }
Chris Masonc8b97812008-10-29 14:49:59 -04003402
Chris Masond1310b22008-01-24 16:13:08 -05003403 if (tree->ops && tree->ops->writepage_io_hook) {
3404 ret = tree->ops->writepage_io_hook(page, cur,
3405 cur + iosize - 1);
3406 } else {
3407 ret = 0;
3408 }
Chris Mason1259ab72008-05-12 13:39:03 -04003409 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003410 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003411 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003412 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003413
Chris Masond1310b22008-01-24 16:13:08 -05003414 set_range_writeback(tree, cur, cur + iosize - 1);
3415 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003416 btrfs_err(BTRFS_I(inode)->root->fs_info,
3417 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003418 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003419 }
3420
Chris Masonffbd5172009-04-20 15:50:09 -04003421 ret = submit_extent_page(write_flags, tree, page,
3422 sector, iosize, pg_offset,
3423 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003424 end_bio_extent_writepage,
3425 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003426 if (ret)
3427 SetPageError(page);
3428 }
3429 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003430 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003431 nr++;
3432 }
3433done:
Chris Mason40f76582014-05-21 13:35:51 -07003434 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003435
Chris Mason11c83492009-04-20 15:50:09 -04003436done_unlocked:
3437
Chris Mason2c64c532009-09-02 15:04:12 -04003438 /* drop our reference on any cached states */
3439 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003440 return ret;
3441}
3442
3443/*
3444 * the writepage semantics are similar to regular writepage. extent
3445 * records are inserted to lock ranges in the tree, and as dirty areas
3446 * are found, they are marked writeback. Then the lock bits are removed
3447 * and the end_io handler clears the writeback ranges
3448 */
3449static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3450 void *data)
3451{
3452 struct inode *inode = page->mapping->host;
3453 struct extent_page_data *epd = data;
3454 u64 start = page_offset(page);
3455 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3456 int ret;
3457 int nr = 0;
3458 size_t pg_offset = 0;
3459 loff_t i_size = i_size_read(inode);
3460 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3461 int write_flags;
3462 unsigned long nr_written = 0;
3463
3464 if (wbc->sync_mode == WB_SYNC_ALL)
3465 write_flags = WRITE_SYNC;
3466 else
3467 write_flags = WRITE;
3468
3469 trace___extent_writepage(page, inode, wbc);
3470
3471 WARN_ON(!PageLocked(page));
3472
3473 ClearPageError(page);
3474
3475 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3476 if (page->index > end_index ||
3477 (page->index == end_index && !pg_offset)) {
3478 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3479 unlock_page(page);
3480 return 0;
3481 }
3482
3483 if (page->index == end_index) {
3484 char *userpage;
3485
3486 userpage = kmap_atomic(page);
3487 memset(userpage + pg_offset, 0,
3488 PAGE_CACHE_SIZE - pg_offset);
3489 kunmap_atomic(userpage);
3490 flush_dcache_page(page);
3491 }
3492
3493 pg_offset = 0;
3494
3495 set_page_extent_mapped(page);
3496
3497 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3498 if (ret == 1)
3499 goto done_unlocked;
3500 if (ret)
3501 goto done;
3502
3503 ret = __extent_writepage_io(inode, page, wbc, epd,
3504 i_size, nr_written, write_flags, &nr);
3505 if (ret == 1)
3506 goto done_unlocked;
3507
3508done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003509 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003510 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003511 set_page_writeback(page);
3512 end_page_writeback(page);
3513 }
Filipe Manana61391d52014-05-09 17:17:40 +01003514 if (PageError(page)) {
3515 ret = ret < 0 ? ret : -EIO;
3516 end_extent_writepage(page, ret, start, page_end);
3517 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003518 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003519 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003520
3521done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003522 return 0;
3523}
3524
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003525void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003526{
NeilBrown74316202014-07-07 15:16:04 +10003527 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3528 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003529}
3530
Chris Mason0e378df2014-05-19 20:55:27 -07003531static noinline_for_stack int
3532lock_extent_buffer_for_io(struct extent_buffer *eb,
3533 struct btrfs_fs_info *fs_info,
3534 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003535{
3536 unsigned long i, num_pages;
3537 int flush = 0;
3538 int ret = 0;
3539
3540 if (!btrfs_try_tree_write_lock(eb)) {
3541 flush = 1;
3542 flush_write_bio(epd);
3543 btrfs_tree_lock(eb);
3544 }
3545
3546 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3547 btrfs_tree_unlock(eb);
3548 if (!epd->sync_io)
3549 return 0;
3550 if (!flush) {
3551 flush_write_bio(epd);
3552 flush = 1;
3553 }
Chris Masona098d8e2012-03-21 12:09:56 -04003554 while (1) {
3555 wait_on_extent_buffer_writeback(eb);
3556 btrfs_tree_lock(eb);
3557 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3558 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003559 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003560 }
3561 }
3562
Josef Bacik51561ff2012-07-20 16:25:24 -04003563 /*
3564 * We need to do this to prevent races in people who check if the eb is
3565 * under IO since we can end up having no IO bits set for a short period
3566 * of time.
3567 */
3568 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003569 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3570 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003571 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003572 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003573 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3574 -eb->len,
3575 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003576 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003577 } else {
3578 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003579 }
3580
3581 btrfs_tree_unlock(eb);
3582
3583 if (!ret)
3584 return ret;
3585
3586 num_pages = num_extent_pages(eb->start, eb->len);
3587 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003588 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003589
3590 if (!trylock_page(p)) {
3591 if (!flush) {
3592 flush_write_bio(epd);
3593 flush = 1;
3594 }
3595 lock_page(p);
3596 }
3597 }
3598
3599 return ret;
3600}
3601
3602static void end_extent_buffer_writeback(struct extent_buffer *eb)
3603{
3604 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003605 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003606 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3607}
3608
Filipe Manana656f30d2014-09-26 12:25:56 +01003609static void set_btree_ioerr(struct page *page)
3610{
3611 struct extent_buffer *eb = (struct extent_buffer *)page->private;
3612 struct btrfs_inode *btree_ino = BTRFS_I(eb->fs_info->btree_inode);
3613
3614 SetPageError(page);
3615 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3616 return;
3617
3618 /*
3619 * If writeback for a btree extent that doesn't belong to a log tree
3620 * failed, increment the counter transaction->eb_write_errors.
3621 * We do this because while the transaction is running and before it's
3622 * committing (when we call filemap_fdata[write|wait]_range against
3623 * the btree inode), we might have
3624 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3625 * returns an error or an error happens during writeback, when we're
3626 * committing the transaction we wouldn't know about it, since the pages
3627 * can be no longer dirty nor marked anymore for writeback (if a
3628 * subsequent modification to the extent buffer didn't happen before the
3629 * transaction commit), which makes filemap_fdata[write|wait]_range not
3630 * able to find the pages tagged with SetPageError at transaction
3631 * commit time. So if this happens we must abort the transaction,
3632 * otherwise we commit a super block with btree roots that point to
3633 * btree nodes/leafs whose content on disk is invalid - either garbage
3634 * or the content of some node/leaf from a past generation that got
3635 * cowed or deleted and is no longer valid.
3636 *
3637 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3638 * not be enough - we need to distinguish between log tree extents vs
3639 * non-log tree extents, and the next filemap_fdatawait_range() call
3640 * will catch and clear such errors in the mapping - and that call might
3641 * be from a log sync and not from a transaction commit. Also, checking
3642 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3643 * not done and would not be reliable - the eb might have been released
3644 * from memory and reading it back again means that flag would not be
3645 * set (since it's a runtime flag, not persisted on disk).
3646 *
3647 * Using the flags below in the btree inode also makes us achieve the
3648 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3649 * writeback for all dirty pages and before filemap_fdatawait_range()
3650 * is called, the writeback for all dirty pages had already finished
3651 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3652 * filemap_fdatawait_range() would return success, as it could not know
3653 * that writeback errors happened (the pages were no longer tagged for
3654 * writeback).
3655 */
3656 switch (eb->log_index) {
3657 case -1:
3658 set_bit(BTRFS_INODE_BTREE_ERR, &btree_ino->runtime_flags);
3659 break;
3660 case 0:
3661 set_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
3662 break;
3663 case 1:
3664 set_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
3665 break;
3666 default:
3667 BUG(); /* unexpected, logic error */
3668 }
3669}
3670
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003671static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3672{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003673 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003674 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003675 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003676
Kent Overstreet2c30c712013-11-07 12:20:26 -08003677 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003678 struct page *page = bvec->bv_page;
3679
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003680 eb = (struct extent_buffer *)page->private;
3681 BUG_ON(!eb);
3682 done = atomic_dec_and_test(&eb->io_pages);
3683
Filipe Manana656f30d2014-09-26 12:25:56 +01003684 if (err || test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003685 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003686 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003687 }
3688
3689 end_page_writeback(page);
3690
3691 if (!done)
3692 continue;
3693
3694 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003695 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003696
3697 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003698}
3699
Chris Mason0e378df2014-05-19 20:55:27 -07003700static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003701 struct btrfs_fs_info *fs_info,
3702 struct writeback_control *wbc,
3703 struct extent_page_data *epd)
3704{
3705 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003706 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003707 u64 offset = eb->start;
3708 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003709 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003710 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003711 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003712
Filipe Manana656f30d2014-09-26 12:25:56 +01003713 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003714 num_pages = num_extent_pages(eb->start, eb->len);
3715 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003716 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3717 bio_flags = EXTENT_BIO_TREE_LOG;
3718
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003719 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003720 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003721
3722 clear_page_dirty_for_io(p);
3723 set_page_writeback(p);
Josef Bacikf28491e2013-12-16 13:24:27 -05003724 ret = submit_extent_page(rw, tree, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003725 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3726 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003727 0, epd->bio_flags, bio_flags);
3728 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003729 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003730 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003731 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003732 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3733 end_extent_buffer_writeback(eb);
3734 ret = -EIO;
3735 break;
3736 }
3737 offset += PAGE_CACHE_SIZE;
3738 update_nr_written(p, wbc, 1);
3739 unlock_page(p);
3740 }
3741
3742 if (unlikely(ret)) {
3743 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003744 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003745 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003746 unlock_page(p);
3747 }
3748 }
3749
3750 return ret;
3751}
3752
3753int btree_write_cache_pages(struct address_space *mapping,
3754 struct writeback_control *wbc)
3755{
3756 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3757 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3758 struct extent_buffer *eb, *prev_eb = NULL;
3759 struct extent_page_data epd = {
3760 .bio = NULL,
3761 .tree = tree,
3762 .extent_locked = 0,
3763 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003764 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003765 };
3766 int ret = 0;
3767 int done = 0;
3768 int nr_to_write_done = 0;
3769 struct pagevec pvec;
3770 int nr_pages;
3771 pgoff_t index;
3772 pgoff_t end; /* Inclusive */
3773 int scanned = 0;
3774 int tag;
3775
3776 pagevec_init(&pvec, 0);
3777 if (wbc->range_cyclic) {
3778 index = mapping->writeback_index; /* Start from prev offset */
3779 end = -1;
3780 } else {
3781 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3782 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3783 scanned = 1;
3784 }
3785 if (wbc->sync_mode == WB_SYNC_ALL)
3786 tag = PAGECACHE_TAG_TOWRITE;
3787 else
3788 tag = PAGECACHE_TAG_DIRTY;
3789retry:
3790 if (wbc->sync_mode == WB_SYNC_ALL)
3791 tag_pages_for_writeback(mapping, index, end);
3792 while (!done && !nr_to_write_done && (index <= end) &&
3793 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3794 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3795 unsigned i;
3796
3797 scanned = 1;
3798 for (i = 0; i < nr_pages; i++) {
3799 struct page *page = pvec.pages[i];
3800
3801 if (!PagePrivate(page))
3802 continue;
3803
3804 if (!wbc->range_cyclic && page->index > end) {
3805 done = 1;
3806 break;
3807 }
3808
Josef Bacikb5bae262012-09-14 13:43:01 -04003809 spin_lock(&mapping->private_lock);
3810 if (!PagePrivate(page)) {
3811 spin_unlock(&mapping->private_lock);
3812 continue;
3813 }
3814
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003815 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003816
3817 /*
3818 * Shouldn't happen and normally this would be a BUG_ON
3819 * but no sense in crashing the users box for something
3820 * we can survive anyway.
3821 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303822 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003823 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003824 continue;
3825 }
3826
Josef Bacikb5bae262012-09-14 13:43:01 -04003827 if (eb == prev_eb) {
3828 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003829 continue;
3830 }
3831
Josef Bacikb5bae262012-09-14 13:43:01 -04003832 ret = atomic_inc_not_zero(&eb->refs);
3833 spin_unlock(&mapping->private_lock);
3834 if (!ret)
3835 continue;
3836
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003837 prev_eb = eb;
3838 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3839 if (!ret) {
3840 free_extent_buffer(eb);
3841 continue;
3842 }
3843
3844 ret = write_one_eb(eb, fs_info, wbc, &epd);
3845 if (ret) {
3846 done = 1;
3847 free_extent_buffer(eb);
3848 break;
3849 }
3850 free_extent_buffer(eb);
3851
3852 /*
3853 * the filesystem may choose to bump up nr_to_write.
3854 * We have to make sure to honor the new nr_to_write
3855 * at any time
3856 */
3857 nr_to_write_done = wbc->nr_to_write <= 0;
3858 }
3859 pagevec_release(&pvec);
3860 cond_resched();
3861 }
3862 if (!scanned && !done) {
3863 /*
3864 * We hit the last page and there is more work to be done: wrap
3865 * back to the start of the file
3866 */
3867 scanned = 1;
3868 index = 0;
3869 goto retry;
3870 }
3871 flush_write_bio(&epd);
3872 return ret;
3873}
3874
Chris Masond1310b22008-01-24 16:13:08 -05003875/**
3876 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
3877 * @mapping: address space structure to write
3878 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3879 * @writepage: function called for each page
3880 * @data: data passed to writepage function
3881 *
3882 * If a page is already under I/O, write_cache_pages() skips it, even
3883 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3884 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3885 * and msync() need to guarantee that all the data which was dirty at the time
3886 * the call was made get new I/O started against them. If wbc->sync_mode is
3887 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3888 * existing IO to complete.
3889 */
Chris Mason4bef0842008-09-08 11:18:08 -04003890static int extent_write_cache_pages(struct extent_io_tree *tree,
3891 struct address_space *mapping,
3892 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003893 writepage_t writepage, void *data,
3894 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003895{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003896 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003897 int ret = 0;
3898 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01003899 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003900 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003901 struct pagevec pvec;
3902 int nr_pages;
3903 pgoff_t index;
3904 pgoff_t end; /* Inclusive */
3905 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003906 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003907
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003908 /*
3909 * We have to hold onto the inode so that ordered extents can do their
3910 * work when the IO finishes. The alternative to this is failing to add
3911 * an ordered extent if the igrab() fails there and that is a huge pain
3912 * to deal with, so instead just hold onto the inode throughout the
3913 * writepages operation. If it fails here we are freeing up the inode
3914 * anyway and we'd rather not waste our time writing out stuff that is
3915 * going to be truncated anyway.
3916 */
3917 if (!igrab(inode))
3918 return 0;
3919
Chris Masond1310b22008-01-24 16:13:08 -05003920 pagevec_init(&pvec, 0);
3921 if (wbc->range_cyclic) {
3922 index = mapping->writeback_index; /* Start from prev offset */
3923 end = -1;
3924 } else {
3925 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3926 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003927 scanned = 1;
3928 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003929 if (wbc->sync_mode == WB_SYNC_ALL)
3930 tag = PAGECACHE_TAG_TOWRITE;
3931 else
3932 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003933retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003934 if (wbc->sync_mode == WB_SYNC_ALL)
3935 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003936 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003937 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3938 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003939 unsigned i;
3940
3941 scanned = 1;
3942 for (i = 0; i < nr_pages; i++) {
3943 struct page *page = pvec.pages[i];
3944
3945 /*
3946 * At this point we hold neither mapping->tree_lock nor
3947 * lock on the page itself: the page may be truncated or
3948 * invalidated (changing page->mapping to NULL), or even
3949 * swizzled back from swapper_space to tmpfs file
3950 * mapping
3951 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003952 if (!trylock_page(page)) {
3953 flush_fn(data);
3954 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003955 }
Chris Masond1310b22008-01-24 16:13:08 -05003956
3957 if (unlikely(page->mapping != mapping)) {
3958 unlock_page(page);
3959 continue;
3960 }
3961
3962 if (!wbc->range_cyclic && page->index > end) {
3963 done = 1;
3964 unlock_page(page);
3965 continue;
3966 }
3967
Chris Masond2c3f4f2008-11-19 12:44:22 -05003968 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003969 if (PageWriteback(page))
3970 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003971 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003972 }
Chris Masond1310b22008-01-24 16:13:08 -05003973
3974 if (PageWriteback(page) ||
3975 !clear_page_dirty_for_io(page)) {
3976 unlock_page(page);
3977 continue;
3978 }
3979
3980 ret = (*writepage)(page, wbc, data);
3981
3982 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3983 unlock_page(page);
3984 ret = 0;
3985 }
Filipe Manana61391d52014-05-09 17:17:40 +01003986 if (!err && ret < 0)
3987 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003988
3989 /*
3990 * the filesystem may choose to bump up nr_to_write.
3991 * We have to make sure to honor the new nr_to_write
3992 * at any time
3993 */
3994 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003995 }
3996 pagevec_release(&pvec);
3997 cond_resched();
3998 }
Filipe Manana61391d52014-05-09 17:17:40 +01003999 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05004000 /*
4001 * We hit the last page and there is more work to be done: wrap
4002 * back to the start of the file
4003 */
4004 scanned = 1;
4005 index = 0;
4006 goto retry;
4007 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004008 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01004009 return err;
Chris Masond1310b22008-01-24 16:13:08 -05004010}
Chris Masond1310b22008-01-24 16:13:08 -05004011
Chris Masonffbd5172009-04-20 15:50:09 -04004012static void flush_epd_write_bio(struct extent_page_data *epd)
4013{
4014 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004015 int rw = WRITE;
4016 int ret;
4017
Chris Masonffbd5172009-04-20 15:50:09 -04004018 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04004019 rw = WRITE_SYNC;
4020
Josef Bacikde0022b2012-09-25 14:25:58 -04004021 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004022 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004023 epd->bio = NULL;
4024 }
4025}
4026
Chris Masond2c3f4f2008-11-19 12:44:22 -05004027static noinline void flush_write_bio(void *data)
4028{
4029 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004030 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004031}
4032
Chris Masond1310b22008-01-24 16:13:08 -05004033int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4034 get_extent_t *get_extent,
4035 struct writeback_control *wbc)
4036{
4037 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004038 struct extent_page_data epd = {
4039 .bio = NULL,
4040 .tree = tree,
4041 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004042 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004043 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004044 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004045 };
Chris Masond1310b22008-01-24 16:13:08 -05004046
Chris Masond1310b22008-01-24 16:13:08 -05004047 ret = __extent_writepage(page, wbc, &epd);
4048
Chris Masonffbd5172009-04-20 15:50:09 -04004049 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004050 return ret;
4051}
Chris Masond1310b22008-01-24 16:13:08 -05004052
Chris Mason771ed682008-11-06 22:02:51 -05004053int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4054 u64 start, u64 end, get_extent_t *get_extent,
4055 int mode)
4056{
4057 int ret = 0;
4058 struct address_space *mapping = inode->i_mapping;
4059 struct page *page;
4060 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
4061 PAGE_CACHE_SHIFT;
4062
4063 struct extent_page_data epd = {
4064 .bio = NULL,
4065 .tree = tree,
4066 .get_extent = get_extent,
4067 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004068 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004069 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004070 };
4071 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004072 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004073 .nr_to_write = nr_pages * 2,
4074 .range_start = start,
4075 .range_end = end + 1,
4076 };
4077
Chris Masond3977122009-01-05 21:25:51 -05004078 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05004079 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
4080 if (clear_page_dirty_for_io(page))
4081 ret = __extent_writepage(page, &wbc_writepages, &epd);
4082 else {
4083 if (tree->ops && tree->ops->writepage_end_io_hook)
4084 tree->ops->writepage_end_io_hook(page, start,
4085 start + PAGE_CACHE_SIZE - 1,
4086 NULL, 1);
4087 unlock_page(page);
4088 }
4089 page_cache_release(page);
4090 start += PAGE_CACHE_SIZE;
4091 }
4092
Chris Masonffbd5172009-04-20 15:50:09 -04004093 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004094 return ret;
4095}
Chris Masond1310b22008-01-24 16:13:08 -05004096
4097int extent_writepages(struct extent_io_tree *tree,
4098 struct address_space *mapping,
4099 get_extent_t *get_extent,
4100 struct writeback_control *wbc)
4101{
4102 int ret = 0;
4103 struct extent_page_data epd = {
4104 .bio = NULL,
4105 .tree = tree,
4106 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004107 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004108 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004109 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004110 };
4111
Chris Mason4bef0842008-09-08 11:18:08 -04004112 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004113 __extent_writepage, &epd,
4114 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004115 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004116 return ret;
4117}
Chris Masond1310b22008-01-24 16:13:08 -05004118
4119int extent_readpages(struct extent_io_tree *tree,
4120 struct address_space *mapping,
4121 struct list_head *pages, unsigned nr_pages,
4122 get_extent_t get_extent)
4123{
4124 struct bio *bio = NULL;
4125 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004126 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004127 struct page *pagepool[16];
4128 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004129 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004130 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004131
Chris Masond1310b22008-01-24 16:13:08 -05004132 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004133 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004134
4135 prefetchw(&page->flags);
4136 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004137 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004138 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004139 page_cache_release(page);
4140 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004141 }
Liu Bo67c96842012-07-20 21:43:09 -06004142
4143 pagepool[nr++] = page;
4144 if (nr < ARRAY_SIZE(pagepool))
4145 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004146 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08004147 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06004148 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004149 }
Miao Xie99740902013-07-25 19:22:36 +08004150 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004151 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08004152 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06004153
Miao Xie125bac012013-07-25 19:22:37 +08004154 if (em_cached)
4155 free_extent_map(em_cached);
4156
Chris Masond1310b22008-01-24 16:13:08 -05004157 BUG_ON(!list_empty(pages));
4158 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004159 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004160 return 0;
4161}
Chris Masond1310b22008-01-24 16:13:08 -05004162
4163/*
4164 * basic invalidatepage code, this waits on any locked or writeback
4165 * ranges corresponding to the page, and then deletes any extent state
4166 * records from the tree
4167 */
4168int extent_invalidatepage(struct extent_io_tree *tree,
4169 struct page *page, unsigned long offset)
4170{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004171 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004172 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004173 u64 end = start + PAGE_CACHE_SIZE - 1;
4174 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4175
Qu Wenruofda28322013-02-26 08:10:22 +00004176 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004177 if (start > end)
4178 return 0;
4179
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004180 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004181 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004182 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004183 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4184 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004185 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004186 return 0;
4187}
Chris Masond1310b22008-01-24 16:13:08 -05004188
4189/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004190 * a helper for releasepage, this tests for areas of the page that
4191 * are locked or under IO and drops the related state bits if it is safe
4192 * to drop the page.
4193 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004194static int try_release_extent_state(struct extent_map_tree *map,
4195 struct extent_io_tree *tree,
4196 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004197{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004198 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004199 u64 end = start + PAGE_CACHE_SIZE - 1;
4200 int ret = 1;
4201
Chris Mason211f90e2008-07-18 11:56:15 -04004202 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004203 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004204 ret = 0;
4205 else {
4206 if ((mask & GFP_NOFS) == GFP_NOFS)
4207 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004208 /*
4209 * at this point we can safely clear everything except the
4210 * locked bit and the nodatasum bit
4211 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004212 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004213 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4214 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004215
4216 /* if clear_extent_bit failed for enomem reasons,
4217 * we can't allow the release to continue.
4218 */
4219 if (ret < 0)
4220 ret = 0;
4221 else
4222 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004223 }
4224 return ret;
4225}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004226
4227/*
Chris Masond1310b22008-01-24 16:13:08 -05004228 * a helper for releasepage. As long as there are no locked extents
4229 * in the range corresponding to the page, both state records and extent
4230 * map records are removed
4231 */
4232int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004233 struct extent_io_tree *tree, struct page *page,
4234 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004235{
4236 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004237 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004238 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004239
Chris Mason70dec802008-01-29 09:59:12 -05004240 if ((mask & __GFP_WAIT) &&
4241 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004242 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004243 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004244 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004245 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004246 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004247 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004248 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004249 break;
4250 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004251 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4252 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004253 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004254 free_extent_map(em);
4255 break;
4256 }
4257 if (!test_range_bit(tree, em->start,
4258 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004259 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004260 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004261 remove_extent_mapping(map, em);
4262 /* once for the rb tree */
4263 free_extent_map(em);
4264 }
4265 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004266 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004267
4268 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004269 free_extent_map(em);
4270 }
Chris Masond1310b22008-01-24 16:13:08 -05004271 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004272 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004273}
Chris Masond1310b22008-01-24 16:13:08 -05004274
Chris Masonec29ed52011-02-23 16:23:20 -05004275/*
4276 * helper function for fiemap, which doesn't want to see any holes.
4277 * This maps until we find something past 'last'
4278 */
4279static struct extent_map *get_extent_skip_holes(struct inode *inode,
4280 u64 offset,
4281 u64 last,
4282 get_extent_t *get_extent)
4283{
4284 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4285 struct extent_map *em;
4286 u64 len;
4287
4288 if (offset >= last)
4289 return NULL;
4290
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304291 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004292 len = last - offset;
4293 if (len == 0)
4294 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004295 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004296 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004297 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004298 return em;
4299
4300 /* if this isn't a hole return it */
4301 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4302 em->block_start != EXTENT_MAP_HOLE) {
4303 return em;
4304 }
4305
4306 /* this is a hole, advance to the next extent */
4307 offset = extent_map_end(em);
4308 free_extent_map(em);
4309 if (offset >= last)
4310 break;
4311 }
4312 return NULL;
4313}
4314
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004315int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4316 __u64 start, __u64 len, get_extent_t *get_extent)
4317{
Josef Bacik975f84f2010-11-23 19:36:57 +00004318 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004319 u64 off = start;
4320 u64 max = start + len;
4321 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004322 u32 found_type;
4323 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004324 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004325 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004326 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004327 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004328 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004329 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004330 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004331 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004332 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004333 u64 em_start = 0;
4334 u64 em_len = 0;
4335 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004336
4337 if (len == 0)
4338 return -EINVAL;
4339
Josef Bacik975f84f2010-11-23 19:36:57 +00004340 path = btrfs_alloc_path();
4341 if (!path)
4342 return -ENOMEM;
4343 path->leave_spinning = 1;
4344
Qu Wenruo2c919432014-07-18 09:55:43 +08004345 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4346 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004347
Chris Masonec29ed52011-02-23 16:23:20 -05004348 /*
4349 * lookup the last file extent. We're not using i_size here
4350 * because there might be preallocation past i_size
4351 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004352 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4353 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004354 if (ret < 0) {
4355 btrfs_free_path(path);
4356 return ret;
4357 }
4358 WARN_ON(!ret);
4359 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004360 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004361 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004362
Chris Masonec29ed52011-02-23 16:23:20 -05004363 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004364 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004365 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004366 /* have to trust i_size as the end */
4367 last = (u64)-1;
4368 last_for_get_extent = isize;
4369 } else {
4370 /*
4371 * remember the start of the last extent. There are a
4372 * bunch of different factors that go into the length of the
4373 * extent, so its much less complex to remember where it started
4374 */
4375 last = found_key.offset;
4376 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004377 }
Liu Bofe09e162013-09-22 12:54:23 +08004378 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004379
Chris Masonec29ed52011-02-23 16:23:20 -05004380 /*
4381 * we might have some extents allocated but more delalloc past those
4382 * extents. so, we trust isize unless the start of the last extent is
4383 * beyond isize
4384 */
4385 if (last < isize) {
4386 last = (u64)-1;
4387 last_for_get_extent = isize;
4388 }
4389
Liu Boa52f4cd2013-05-01 16:23:41 +00004390 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004391 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004392
Josef Bacik4d479cf2011-11-17 11:34:31 -05004393 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004394 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004395 if (!em)
4396 goto out;
4397 if (IS_ERR(em)) {
4398 ret = PTR_ERR(em);
4399 goto out;
4400 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004401
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004402 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004403 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004404
Chris Masonea8efc72011-03-08 11:54:40 -05004405 /* break if the extent we found is outside the range */
4406 if (em->start >= max || extent_map_end(em) < off)
4407 break;
4408
4409 /*
4410 * get_extent may return an extent that starts before our
4411 * requested range. We have to make sure the ranges
4412 * we return to fiemap always move forward and don't
4413 * overlap, so adjust the offsets here
4414 */
4415 em_start = max(em->start, off);
4416
4417 /*
4418 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004419 * for adjusting the disk offset below. Only do this if the
4420 * extent isn't compressed since our in ram offset may be past
4421 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004422 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004423 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4424 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004425 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004426 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004427 disko = 0;
4428 flags = 0;
4429
Chris Masonea8efc72011-03-08 11:54:40 -05004430 /*
4431 * bump off for our next call to get_extent
4432 */
4433 off = extent_map_end(em);
4434 if (off >= max)
4435 end = 1;
4436
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004437 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004438 end = 1;
4439 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004440 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004441 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4442 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004443 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004444 flags |= (FIEMAP_EXTENT_DELALLOC |
4445 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004446 } else if (fieinfo->fi_extents_max) {
4447 u64 bytenr = em->block_start -
4448 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004449
Chris Masonea8efc72011-03-08 11:54:40 -05004450 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004451
4452 /*
4453 * As btrfs supports shared space, this information
4454 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004455 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4456 * then we're just getting a count and we can skip the
4457 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004458 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004459 ret = btrfs_check_shared(NULL, root->fs_info,
4460 root->objectid,
4461 btrfs_ino(inode), bytenr);
4462 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004463 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004464 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004465 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004466 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004467 }
4468 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4469 flags |= FIEMAP_EXTENT_ENCODED;
4470
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004471 free_extent_map(em);
4472 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004473 if ((em_start >= last) || em_len == (u64)-1 ||
4474 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004475 flags |= FIEMAP_EXTENT_LAST;
4476 end = 1;
4477 }
4478
Chris Masonec29ed52011-02-23 16:23:20 -05004479 /* now scan forward to see if this is really the last extent. */
4480 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4481 get_extent);
4482 if (IS_ERR(em)) {
4483 ret = PTR_ERR(em);
4484 goto out;
4485 }
4486 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004487 flags |= FIEMAP_EXTENT_LAST;
4488 end = 1;
4489 }
Chris Masonec29ed52011-02-23 16:23:20 -05004490 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4491 em_len, flags);
4492 if (ret)
4493 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004494 }
4495out_free:
4496 free_extent_map(em);
4497out:
Liu Bofe09e162013-09-22 12:54:23 +08004498 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004499 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004500 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004501 return ret;
4502}
4503
Chris Mason727011e2010-08-06 13:21:20 -04004504static void __free_extent_buffer(struct extent_buffer *eb)
4505{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004506 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004507 kmem_cache_free(extent_buffer_cache, eb);
4508}
4509
Josef Bacika26e8c92014-03-28 17:07:27 -04004510int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004511{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004512 return (atomic_read(&eb->io_pages) ||
4513 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4514 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004515}
4516
Miao Xie897ca6e92010-10-26 20:57:29 -04004517/*
4518 * Helper for releasing extent buffer page.
4519 */
David Sterbaa50924e2014-07-31 00:51:36 +02004520static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004521{
4522 unsigned long index;
4523 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004524 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004525
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004526 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004527
David Sterbaa50924e2014-07-31 00:51:36 +02004528 index = num_extent_pages(eb->start, eb->len);
4529 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004530 return;
4531
4532 do {
4533 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004534 page = eb->pages[index];
Jan Schmidt815a51c2012-05-16 17:00:02 +02004535 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004536 spin_lock(&page->mapping->private_lock);
4537 /*
4538 * We do this since we'll remove the pages after we've
4539 * removed the eb from the radix tree, so we could race
4540 * and have this page now attached to the new eb. So
4541 * only clear page_private if it's still connected to
4542 * this eb.
4543 */
4544 if (PagePrivate(page) &&
4545 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004546 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004547 BUG_ON(PageDirty(page));
4548 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004549 /*
4550 * We need to make sure we haven't be attached
4551 * to a new eb.
4552 */
4553 ClearPagePrivate(page);
4554 set_page_private(page, 0);
4555 /* One for the page private */
4556 page_cache_release(page);
4557 }
4558 spin_unlock(&page->mapping->private_lock);
4559
Jan Schmidt815a51c2012-05-16 17:00:02 +02004560 }
4561 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004562 /* One for when we alloced the page */
Miao Xie897ca6e92010-10-26 20:57:29 -04004563 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004564 }
David Sterbaa50924e2014-07-31 00:51:36 +02004565 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004566}
4567
4568/*
4569 * Helper for releasing the extent buffer.
4570 */
4571static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4572{
David Sterbaa50924e2014-07-31 00:51:36 +02004573 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004574 __free_extent_buffer(eb);
4575}
4576
Josef Bacikf28491e2013-12-16 13:24:27 -05004577static struct extent_buffer *
4578__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
4579 unsigned long len, gfp_t mask)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004580{
4581 struct extent_buffer *eb = NULL;
4582
4583 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
4584 if (eb == NULL)
4585 return NULL;
4586 eb->start = start;
4587 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004588 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004589 eb->bflags = 0;
4590 rwlock_init(&eb->lock);
4591 atomic_set(&eb->write_locks, 0);
4592 atomic_set(&eb->read_locks, 0);
4593 atomic_set(&eb->blocking_readers, 0);
4594 atomic_set(&eb->blocking_writers, 0);
4595 atomic_set(&eb->spinning_readers, 0);
4596 atomic_set(&eb->spinning_writers, 0);
4597 eb->lock_nested = 0;
4598 init_waitqueue_head(&eb->write_lock_wq);
4599 init_waitqueue_head(&eb->read_lock_wq);
4600
4601 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4602
4603 spin_lock_init(&eb->refs_lock);
4604 atomic_set(&eb->refs, 1);
4605 atomic_set(&eb->io_pages, 0);
4606
4607 /*
4608 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4609 */
4610 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4611 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4612 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4613
4614 return eb;
4615}
4616
4617struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4618{
4619 unsigned long i;
4620 struct page *p;
4621 struct extent_buffer *new;
4622 unsigned long num_pages = num_extent_pages(src->start, src->len);
4623
Josef Bacik9ec72672013-08-07 16:57:23 -04004624 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004625 if (new == NULL)
4626 return NULL;
4627
4628 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004629 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004630 if (!p) {
4631 btrfs_release_extent_buffer(new);
4632 return NULL;
4633 }
4634 attach_extent_buffer_page(new, p);
4635 WARN_ON(PageDirty(p));
4636 SetPageUptodate(p);
4637 new->pages[i] = p;
4638 }
4639
4640 copy_extent_buffer(new, src, 0, 0, src->len);
4641 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4642 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4643
4644 return new;
4645}
4646
4647struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4648{
4649 struct extent_buffer *eb;
4650 unsigned long num_pages = num_extent_pages(0, len);
4651 unsigned long i;
4652
Josef Bacik9ec72672013-08-07 16:57:23 -04004653 eb = __alloc_extent_buffer(NULL, start, len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004654 if (!eb)
4655 return NULL;
4656
4657 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004658 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004659 if (!eb->pages[i])
4660 goto err;
4661 }
4662 set_extent_buffer_uptodate(eb);
4663 btrfs_set_header_nritems(eb, 0);
4664 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4665
4666 return eb;
4667err:
4668 for (; i > 0; i--)
4669 __free_page(eb->pages[i - 1]);
4670 __free_extent_buffer(eb);
4671 return NULL;
4672}
4673
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004674static void check_buffer_tree_ref(struct extent_buffer *eb)
4675{
Chris Mason242e18c2013-01-29 17:49:37 -05004676 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004677 /* the ref bit is tricky. We have to make sure it is set
4678 * if we have the buffer dirty. Otherwise the
4679 * code to free a buffer can end up dropping a dirty
4680 * page
4681 *
4682 * Once the ref bit is set, it won't go away while the
4683 * buffer is dirty or in writeback, and it also won't
4684 * go away while we have the reference count on the
4685 * eb bumped.
4686 *
4687 * We can't just set the ref bit without bumping the
4688 * ref on the eb because free_extent_buffer might
4689 * see the ref bit and try to clear it. If this happens
4690 * free_extent_buffer might end up dropping our original
4691 * ref by mistake and freeing the page before we are able
4692 * to add one more ref.
4693 *
4694 * So bump the ref count first, then set the bit. If someone
4695 * beat us to it, drop the ref we added.
4696 */
Chris Mason242e18c2013-01-29 17:49:37 -05004697 refs = atomic_read(&eb->refs);
4698 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4699 return;
4700
Josef Bacik594831c2012-07-20 16:11:08 -04004701 spin_lock(&eb->refs_lock);
4702 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004703 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004704 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004705}
4706
Mel Gorman2457aec2014-06-04 16:10:31 -07004707static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4708 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004709{
4710 unsigned long num_pages, i;
4711
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004712 check_buffer_tree_ref(eb);
4713
Josef Bacik5df42352012-03-15 18:24:42 -04004714 num_pages = num_extent_pages(eb->start, eb->len);
4715 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004716 struct page *p = eb->pages[i];
4717
Mel Gorman2457aec2014-06-04 16:10:31 -07004718 if (p != accessed)
4719 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004720 }
4721}
4722
Josef Bacikf28491e2013-12-16 13:24:27 -05004723struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4724 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004725{
4726 struct extent_buffer *eb;
4727
4728 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004729 eb = radix_tree_lookup(&fs_info->buffer_radix,
4730 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004731 if (eb && atomic_inc_not_zero(&eb->refs)) {
4732 rcu_read_unlock();
Mel Gorman2457aec2014-06-04 16:10:31 -07004733 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004734 return eb;
4735 }
4736 rcu_read_unlock();
4737
4738 return NULL;
4739}
4740
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004741#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4742struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
4743 u64 start, unsigned long len)
4744{
4745 struct extent_buffer *eb, *exists = NULL;
4746 int ret;
4747
4748 eb = find_extent_buffer(fs_info, start);
4749 if (eb)
4750 return eb;
4751 eb = alloc_dummy_extent_buffer(start, len);
4752 if (!eb)
4753 return NULL;
4754 eb->fs_info = fs_info;
4755again:
4756 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4757 if (ret)
4758 goto free_eb;
4759 spin_lock(&fs_info->buffer_lock);
4760 ret = radix_tree_insert(&fs_info->buffer_radix,
4761 start >> PAGE_CACHE_SHIFT, eb);
4762 spin_unlock(&fs_info->buffer_lock);
4763 radix_tree_preload_end();
4764 if (ret == -EEXIST) {
4765 exists = find_extent_buffer(fs_info, start);
4766 if (exists)
4767 goto free_eb;
4768 else
4769 goto again;
4770 }
4771 check_buffer_tree_ref(eb);
4772 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4773
4774 /*
4775 * We will free dummy extent buffer's if they come into
4776 * free_extent_buffer with a ref count of 2, but if we are using this we
4777 * want the buffers to stay in memory until we're done with them, so
4778 * bump the ref count again.
4779 */
4780 atomic_inc(&eb->refs);
4781 return eb;
4782free_eb:
4783 btrfs_release_extent_buffer(eb);
4784 return exists;
4785}
4786#endif
4787
Josef Bacikf28491e2013-12-16 13:24:27 -05004788struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
Chris Mason727011e2010-08-06 13:21:20 -04004789 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004790{
4791 unsigned long num_pages = num_extent_pages(start, len);
4792 unsigned long i;
4793 unsigned long index = start >> PAGE_CACHE_SHIFT;
4794 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004795 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004796 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004797 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004798 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004799 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004800
Josef Bacikf28491e2013-12-16 13:24:27 -05004801 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004802 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004803 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004804
Josef Bacikf28491e2013-12-16 13:24:27 -05004805 eb = __alloc_extent_buffer(fs_info, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004806 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004807 return NULL;
4808
Chris Mason727011e2010-08-06 13:21:20 -04004809 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004810 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004811 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004812 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004813
4814 spin_lock(&mapping->private_lock);
4815 if (PagePrivate(p)) {
4816 /*
4817 * We could have already allocated an eb for this page
4818 * and attached one so lets see if we can get a ref on
4819 * the existing eb, and if we can we know it's good and
4820 * we can just return that one, else we know we can just
4821 * overwrite page->private.
4822 */
4823 exists = (struct extent_buffer *)p->private;
4824 if (atomic_inc_not_zero(&exists->refs)) {
4825 spin_unlock(&mapping->private_lock);
4826 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004827 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004828 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004829 goto free_eb;
4830 }
4831
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004832 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004833 * Do this so attach doesn't complain and we need to
4834 * drop the ref the old guy had.
4835 */
4836 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004837 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004838 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004839 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004840 attach_extent_buffer_page(eb, p);
4841 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004842 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004843 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004844 if (!PageUptodate(p))
4845 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004846
4847 /*
4848 * see below about how we avoid a nasty race with release page
4849 * and why we unlock later
4850 */
Chris Masond1310b22008-01-24 16:13:08 -05004851 }
4852 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004853 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004854again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004855 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4856 if (ret)
4857 goto free_eb;
4858
Josef Bacikf28491e2013-12-16 13:24:27 -05004859 spin_lock(&fs_info->buffer_lock);
4860 ret = radix_tree_insert(&fs_info->buffer_radix,
4861 start >> PAGE_CACHE_SHIFT, eb);
4862 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004863 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004864 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004865 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004866 if (exists)
4867 goto free_eb;
4868 else
Josef Bacik115391d2012-03-09 09:51:43 -05004869 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004870 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004871 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004872 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004873 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004874
4875 /*
4876 * there is a race where release page may have
4877 * tried to find this extent buffer in the radix
4878 * but failed. It will tell the VM it is safe to
4879 * reclaim the, and it will clear the page private bit.
4880 * We must make sure to set the page private bit properly
4881 * after the extent buffer is in the radix tree so
4882 * it doesn't get lost
4883 */
Chris Mason727011e2010-08-06 13:21:20 -04004884 SetPageChecked(eb->pages[0]);
4885 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004886 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04004887 ClearPageChecked(p);
4888 unlock_page(p);
4889 }
4890 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004891 return eb;
4892
Chris Mason6af118ce2008-07-22 11:18:07 -04004893free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004894 for (i = 0; i < num_pages; i++) {
4895 if (eb->pages[i])
4896 unlock_page(eb->pages[i]);
4897 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004898
Josef Bacik17de39a2012-05-04 15:16:06 -04004899 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e92010-10-26 20:57:29 -04004900 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004901 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004902}
Chris Masond1310b22008-01-24 16:13:08 -05004903
Josef Bacik3083ee22012-03-09 16:01:49 -05004904static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4905{
4906 struct extent_buffer *eb =
4907 container_of(head, struct extent_buffer, rcu_head);
4908
4909 __free_extent_buffer(eb);
4910}
4911
Josef Bacik3083ee22012-03-09 16:01:49 -05004912/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004913static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004914{
4915 WARN_ON(atomic_read(&eb->refs) == 0);
4916 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05004917 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004918 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05004919
Jan Schmidt815a51c2012-05-16 17:00:02 +02004920 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004921
Josef Bacikf28491e2013-12-16 13:24:27 -05004922 spin_lock(&fs_info->buffer_lock);
4923 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02004924 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05004925 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004926 } else {
4927 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004928 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004929
4930 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02004931 btrfs_release_extent_buffer_page(eb);
Josef Bacik3083ee22012-03-09 16:01:49 -05004932 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004933 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004934 }
4935 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004936
4937 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004938}
4939
Chris Masond1310b22008-01-24 16:13:08 -05004940void free_extent_buffer(struct extent_buffer *eb)
4941{
Chris Mason242e18c2013-01-29 17:49:37 -05004942 int refs;
4943 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004944 if (!eb)
4945 return;
4946
Chris Mason242e18c2013-01-29 17:49:37 -05004947 while (1) {
4948 refs = atomic_read(&eb->refs);
4949 if (refs <= 3)
4950 break;
4951 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4952 if (old == refs)
4953 return;
4954 }
4955
Josef Bacik3083ee22012-03-09 16:01:49 -05004956 spin_lock(&eb->refs_lock);
4957 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004958 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4959 atomic_dec(&eb->refs);
4960
4961 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004962 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004963 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004964 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4965 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004966
Josef Bacik3083ee22012-03-09 16:01:49 -05004967 /*
4968 * I know this is terrible, but it's temporary until we stop tracking
4969 * the uptodate bits and such for the extent buffers.
4970 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004971 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004972}
Chris Masond1310b22008-01-24 16:13:08 -05004973
Josef Bacik3083ee22012-03-09 16:01:49 -05004974void free_extent_buffer_stale(struct extent_buffer *eb)
4975{
4976 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004977 return;
4978
Josef Bacik3083ee22012-03-09 16:01:49 -05004979 spin_lock(&eb->refs_lock);
4980 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4981
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004982 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004983 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4984 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004985 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004986}
4987
Chris Mason1d4284b2012-03-28 20:31:37 -04004988void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004989{
Chris Masond1310b22008-01-24 16:13:08 -05004990 unsigned long i;
4991 unsigned long num_pages;
4992 struct page *page;
4993
Chris Masond1310b22008-01-24 16:13:08 -05004994 num_pages = num_extent_pages(eb->start, eb->len);
4995
4996 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004997 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04004998 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004999 continue;
5000
Chris Masona61e6f22008-07-22 11:18:08 -04005001 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005002 WARN_ON(!PagePrivate(page));
5003
Chris Masond1310b22008-01-24 16:13:08 -05005004 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005005 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005006 if (!PageDirty(page)) {
5007 radix_tree_tag_clear(&page->mapping->page_tree,
5008 page_index(page),
5009 PAGECACHE_TAG_DIRTY);
5010 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005011 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005012 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005013 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005014 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005015 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005016}
Chris Masond1310b22008-01-24 16:13:08 -05005017
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005018int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005019{
5020 unsigned long i;
5021 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005022 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005023
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005024 check_buffer_tree_ref(eb);
5025
Chris Masonb9473432009-03-13 11:00:37 -04005026 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005027
Chris Masond1310b22008-01-24 16:13:08 -05005028 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005029 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005030 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5031
Chris Masonb9473432009-03-13 11:00:37 -04005032 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005033 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005034 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005035}
Chris Masond1310b22008-01-24 16:13:08 -05005036
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005037int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005038{
5039 unsigned long i;
5040 struct page *page;
5041 unsigned long num_pages;
5042
Chris Masonb4ce94d2009-02-04 09:25:08 -05005043 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005044 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005045 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005046 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005047 if (page)
5048 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005049 }
5050 return 0;
5051}
5052
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005053int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005054{
5055 unsigned long i;
5056 struct page *page;
5057 unsigned long num_pages;
5058
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005059 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005060 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005061 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005062 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005063 SetPageUptodate(page);
5064 }
5065 return 0;
5066}
Chris Masond1310b22008-01-24 16:13:08 -05005067
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005068int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005069{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005070 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005071}
Chris Masond1310b22008-01-24 16:13:08 -05005072
5073int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02005074 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005075 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005076{
5077 unsigned long i;
5078 unsigned long start_i;
5079 struct page *page;
5080 int err;
5081 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005082 int locked_pages = 0;
5083 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005084 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005085 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005086 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005087 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005088
Chris Masonb4ce94d2009-02-04 09:25:08 -05005089 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005090 return 0;
5091
Chris Masond1310b22008-01-24 16:13:08 -05005092 if (start) {
5093 WARN_ON(start < eb->start);
5094 start_i = (start >> PAGE_CACHE_SHIFT) -
5095 (eb->start >> PAGE_CACHE_SHIFT);
5096 } else {
5097 start_i = 0;
5098 }
5099
5100 num_pages = num_extent_pages(eb->start, eb->len);
5101 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005102 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005103 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005104 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005105 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005106 } else {
5107 lock_page(page);
5108 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005109 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005110 if (!PageUptodate(page)) {
5111 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005112 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005113 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005114 }
5115 if (all_uptodate) {
5116 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005117 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005118 goto unlock_exit;
5119 }
5120
Filipe Manana656f30d2014-09-26 12:25:56 +01005121 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005122 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005123 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005124 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005125 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005126 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005127 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005128 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005129 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005130 mirror_num, &bio_flags,
5131 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005132 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005133 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005134 } else {
5135 unlock_page(page);
5136 }
5137 }
5138
Jeff Mahoney355808c2011-10-03 23:23:14 -04005139 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005140 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5141 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005142 if (err)
5143 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005144 }
Chris Masona86c12c2008-02-07 10:50:54 -05005145
Arne Jansenbb82ab82011-06-10 14:06:53 +02005146 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005147 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005148
Chris Masond1310b22008-01-24 16:13:08 -05005149 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005150 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005151 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005152 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005153 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005154 }
Chris Masond3977122009-01-05 21:25:51 -05005155
Chris Masond1310b22008-01-24 16:13:08 -05005156 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005157
5158unlock_exit:
5159 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005160 while (locked_pages > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005161 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005162 i++;
5163 unlock_page(page);
5164 locked_pages--;
5165 }
5166 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005167}
Chris Masond1310b22008-01-24 16:13:08 -05005168
5169void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5170 unsigned long start,
5171 unsigned long len)
5172{
5173 size_t cur;
5174 size_t offset;
5175 struct page *page;
5176 char *kaddr;
5177 char *dst = (char *)dstv;
5178 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5179 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005180
5181 WARN_ON(start > eb->len);
5182 WARN_ON(start + len > eb->start + eb->len);
5183
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005184 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005185
Chris Masond3977122009-01-05 21:25:51 -05005186 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005187 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005188
5189 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005190 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005191 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005192
5193 dst += cur;
5194 len -= cur;
5195 offset = 0;
5196 i++;
5197 }
5198}
Chris Masond1310b22008-01-24 16:13:08 -05005199
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005200int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5201 unsigned long start,
5202 unsigned long len)
5203{
5204 size_t cur;
5205 size_t offset;
5206 struct page *page;
5207 char *kaddr;
5208 char __user *dst = (char __user *)dstv;
5209 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5210 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5211 int ret = 0;
5212
5213 WARN_ON(start > eb->len);
5214 WARN_ON(start + len > eb->start + eb->len);
5215
5216 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5217
5218 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005219 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005220
5221 cur = min(len, (PAGE_CACHE_SIZE - offset));
5222 kaddr = page_address(page);
5223 if (copy_to_user(dst, kaddr + offset, cur)) {
5224 ret = -EFAULT;
5225 break;
5226 }
5227
5228 dst += cur;
5229 len -= cur;
5230 offset = 0;
5231 i++;
5232 }
5233
5234 return ret;
5235}
5236
Chris Masond1310b22008-01-24 16:13:08 -05005237int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005238 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005239 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005240 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005241{
5242 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5243 char *kaddr;
5244 struct page *p;
5245 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5246 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5247 unsigned long end_i = (start_offset + start + min_len - 1) >>
5248 PAGE_CACHE_SHIFT;
5249
5250 if (i != end_i)
5251 return -EINVAL;
5252
5253 if (i == 0) {
5254 offset = start_offset;
5255 *map_start = 0;
5256 } else {
5257 offset = 0;
5258 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5259 }
Chris Masond3977122009-01-05 21:25:51 -05005260
Chris Masond1310b22008-01-24 16:13:08 -05005261 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005262 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005263 "wanted %lu %lu\n",
5264 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005265 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005266 }
5267
David Sterbafb85fc92014-07-31 01:03:53 +02005268 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005269 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005270 *map = kaddr + offset;
5271 *map_len = PAGE_CACHE_SIZE - offset;
5272 return 0;
5273}
Chris Masond1310b22008-01-24 16:13:08 -05005274
Chris Masond1310b22008-01-24 16:13:08 -05005275int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5276 unsigned long start,
5277 unsigned long len)
5278{
5279 size_t cur;
5280 size_t offset;
5281 struct page *page;
5282 char *kaddr;
5283 char *ptr = (char *)ptrv;
5284 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5285 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5286 int ret = 0;
5287
5288 WARN_ON(start > eb->len);
5289 WARN_ON(start + len > eb->start + eb->len);
5290
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005291 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005292
Chris Masond3977122009-01-05 21:25:51 -05005293 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005294 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005295
5296 cur = min(len, (PAGE_CACHE_SIZE - offset));
5297
Chris Masona6591712011-07-19 12:04:14 -04005298 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005299 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005300 if (ret)
5301 break;
5302
5303 ptr += cur;
5304 len -= cur;
5305 offset = 0;
5306 i++;
5307 }
5308 return ret;
5309}
Chris Masond1310b22008-01-24 16:13:08 -05005310
5311void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5312 unsigned long start, unsigned long len)
5313{
5314 size_t cur;
5315 size_t offset;
5316 struct page *page;
5317 char *kaddr;
5318 char *src = (char *)srcv;
5319 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5320 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5321
5322 WARN_ON(start > eb->len);
5323 WARN_ON(start + len > eb->start + eb->len);
5324
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005325 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005326
Chris Masond3977122009-01-05 21:25:51 -05005327 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005328 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005329 WARN_ON(!PageUptodate(page));
5330
5331 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005332 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005333 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005334
5335 src += cur;
5336 len -= cur;
5337 offset = 0;
5338 i++;
5339 }
5340}
Chris Masond1310b22008-01-24 16:13:08 -05005341
5342void memset_extent_buffer(struct extent_buffer *eb, char c,
5343 unsigned long start, unsigned long len)
5344{
5345 size_t cur;
5346 size_t offset;
5347 struct page *page;
5348 char *kaddr;
5349 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5350 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5351
5352 WARN_ON(start > eb->len);
5353 WARN_ON(start + len > eb->start + eb->len);
5354
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005355 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005356
Chris Masond3977122009-01-05 21:25:51 -05005357 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005358 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005359 WARN_ON(!PageUptodate(page));
5360
5361 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005362 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005363 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005364
5365 len -= cur;
5366 offset = 0;
5367 i++;
5368 }
5369}
Chris Masond1310b22008-01-24 16:13:08 -05005370
5371void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5372 unsigned long dst_offset, unsigned long src_offset,
5373 unsigned long len)
5374{
5375 u64 dst_len = dst->len;
5376 size_t cur;
5377 size_t offset;
5378 struct page *page;
5379 char *kaddr;
5380 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5381 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5382
5383 WARN_ON(src->len != dst_len);
5384
5385 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005386 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005387
Chris Masond3977122009-01-05 21:25:51 -05005388 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005389 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005390 WARN_ON(!PageUptodate(page));
5391
5392 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5393
Chris Masona6591712011-07-19 12:04:14 -04005394 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005395 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005396
5397 src_offset += cur;
5398 len -= cur;
5399 offset = 0;
5400 i++;
5401 }
5402}
Chris Masond1310b22008-01-24 16:13:08 -05005403
Sergei Trofimovich33872062011-04-11 21:52:52 +00005404static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5405{
5406 unsigned long distance = (src > dst) ? src - dst : dst - src;
5407 return distance < len;
5408}
5409
Chris Masond1310b22008-01-24 16:13:08 -05005410static void copy_pages(struct page *dst_page, struct page *src_page,
5411 unsigned long dst_off, unsigned long src_off,
5412 unsigned long len)
5413{
Chris Masona6591712011-07-19 12:04:14 -04005414 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005415 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005416 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005417
Sergei Trofimovich33872062011-04-11 21:52:52 +00005418 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005419 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005420 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005421 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005422 if (areas_overlap(src_off, dst_off, len))
5423 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005424 }
Chris Masond1310b22008-01-24 16:13:08 -05005425
Chris Mason727011e2010-08-06 13:21:20 -04005426 if (must_memmove)
5427 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5428 else
5429 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005430}
5431
5432void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5433 unsigned long src_offset, unsigned long len)
5434{
5435 size_t cur;
5436 size_t dst_off_in_page;
5437 size_t src_off_in_page;
5438 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5439 unsigned long dst_i;
5440 unsigned long src_i;
5441
5442 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005443 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005444 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005445 BUG_ON(1);
5446 }
5447 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005448 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005449 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005450 BUG_ON(1);
5451 }
5452
Chris Masond3977122009-01-05 21:25:51 -05005453 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005454 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005455 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005456 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005457 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005458
5459 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5460 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5461
5462 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5463 src_off_in_page));
5464 cur = min_t(unsigned long, cur,
5465 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5466
David Sterbafb85fc92014-07-31 01:03:53 +02005467 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005468 dst_off_in_page, src_off_in_page, cur);
5469
5470 src_offset += cur;
5471 dst_offset += cur;
5472 len -= cur;
5473 }
5474}
Chris Masond1310b22008-01-24 16:13:08 -05005475
5476void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5477 unsigned long src_offset, unsigned long len)
5478{
5479 size_t cur;
5480 size_t dst_off_in_page;
5481 size_t src_off_in_page;
5482 unsigned long dst_end = dst_offset + len - 1;
5483 unsigned long src_end = src_offset + len - 1;
5484 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5485 unsigned long dst_i;
5486 unsigned long src_i;
5487
5488 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005489 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005490 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005491 BUG_ON(1);
5492 }
5493 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005494 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005495 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005496 BUG_ON(1);
5497 }
Chris Mason727011e2010-08-06 13:21:20 -04005498 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005499 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5500 return;
5501 }
Chris Masond3977122009-01-05 21:25:51 -05005502 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005503 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5504 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5505
5506 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005507 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005508 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005509 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005510
5511 cur = min_t(unsigned long, len, src_off_in_page + 1);
5512 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005513 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005514 dst_off_in_page - cur + 1,
5515 src_off_in_page - cur + 1, cur);
5516
5517 dst_end -= cur;
5518 src_end -= cur;
5519 len -= cur;
5520 }
5521}
Chris Mason6af118ce2008-07-22 11:18:07 -04005522
David Sterbaf7a52a42013-04-26 14:56:29 +00005523int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005524{
Chris Mason6af118ce2008-07-22 11:18:07 -04005525 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005526
Miao Xie19fe0a82010-10-26 20:57:29 -04005527 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005528 * We need to make sure noboody is attaching this page to an eb right
5529 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005530 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005531 spin_lock(&page->mapping->private_lock);
5532 if (!PagePrivate(page)) {
5533 spin_unlock(&page->mapping->private_lock);
5534 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005535 }
5536
Josef Bacik3083ee22012-03-09 16:01:49 -05005537 eb = (struct extent_buffer *)page->private;
5538 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005539
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005540 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005541 * This is a little awful but should be ok, we need to make sure that
5542 * the eb doesn't disappear out from under us while we're looking at
5543 * this page.
5544 */
5545 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005546 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005547 spin_unlock(&eb->refs_lock);
5548 spin_unlock(&page->mapping->private_lock);
5549 return 0;
5550 }
5551 spin_unlock(&page->mapping->private_lock);
5552
Josef Bacik3083ee22012-03-09 16:01:49 -05005553 /*
5554 * If tree ref isn't set then we know the ref on this eb is a real ref,
5555 * so just return, this page will likely be freed soon anyway.
5556 */
5557 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5558 spin_unlock(&eb->refs_lock);
5559 return 0;
5560 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005561
David Sterbaf7a52a42013-04-26 14:56:29 +00005562 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005563}