blob: 5172e8253c4a925373bd23279ed832ecb1ef5bfa [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 Woodhouse2db04962008-08-07 11:19:43 -040016#include "compat.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040017#include "ctree.h"
18#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020019#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010020#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040021#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040022#include "rcu-string.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
Eric Sandeen6d49ba12013-04-22 16:12:31 +000028#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050029static LIST_HEAD(buffers);
30static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040031
Chris Masond3977122009-01-05 21:25:51 -050032static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000033
34static inline
35void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
36{
37 unsigned long flags;
38
39 spin_lock_irqsave(&leak_lock, flags);
40 list_add(new, head);
41 spin_unlock_irqrestore(&leak_lock, flags);
42}
43
44static inline
45void btrfs_leak_debug_del(struct list_head *entry)
46{
47 unsigned long flags;
48
49 spin_lock_irqsave(&leak_lock, flags);
50 list_del(entry);
51 spin_unlock_irqrestore(&leak_lock, flags);
52}
53
54static inline
55void btrfs_leak_debug_check(void)
56{
57 struct extent_state *state;
58 struct extent_buffer *eb;
59
60 while (!list_empty(&states)) {
61 state = list_entry(states.next, struct extent_state, leak_list);
62 printk(KERN_ERR "btrfs state leak: start %llu end %llu "
63 "state %lu in tree %p refs %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020064 state->start, state->end, state->state, state->tree,
65 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000066 list_del(&state->leak_list);
67 kmem_cache_free(extent_state_cache, state);
68 }
69
70 while (!list_empty(&buffers)) {
71 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
72 printk(KERN_ERR "btrfs buffer leak start %llu len %lu "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020073 "refs %d\n",
74 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000075 list_del(&eb->leak_list);
76 kmem_cache_free(extent_buffer_cache, eb);
77 }
78}
David Sterba8d599ae2013-04-30 15:22:23 +000079
80#define btrfs_debug_check_extent_io_range(inode, start, end) \
81 __btrfs_debug_check_extent_io_range(__func__, (inode), (start), (end))
82static inline void __btrfs_debug_check_extent_io_range(const char *caller,
83 struct inode *inode, u64 start, u64 end)
84{
85 u64 isize = i_size_read(inode);
86
87 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
88 printk_ratelimited(KERN_DEBUG
89 "btrfs: %s: ino %llu isize %llu odd range [%llu,%llu]\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020090 caller, btrfs_ino(inode), isize, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +000091 }
92}
Eric Sandeen6d49ba12013-04-22 16:12:31 +000093#else
94#define btrfs_leak_debug_add(new, head) do {} while (0)
95#define btrfs_leak_debug_del(entry) do {} while (0)
96#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +000097#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -040098#endif
Chris Masond1310b22008-01-24 16:13:08 -050099
Chris Masond1310b22008-01-24 16:13:08 -0500100#define BUFFER_LRU_MAX 64
101
102struct tree_entry {
103 u64 start;
104 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500105 struct rb_node rb_node;
106};
107
108struct extent_page_data {
109 struct bio *bio;
110 struct extent_io_tree *tree;
111 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -0400112 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500113
114 /* tells writepage not to lock the state bits for this range
115 * it still does the unlocking
116 */
Chris Masonffbd5172009-04-20 15:50:09 -0400117 unsigned int extent_locked:1;
118
119 /* tells the submit_bio code to use a WRITE_SYNC */
120 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500121};
122
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400123static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400124static inline struct btrfs_fs_info *
125tree_fs_info(struct extent_io_tree *tree)
126{
127 return btrfs_sb(tree->mapping->host->i_sb);
128}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400129
Chris Masond1310b22008-01-24 16:13:08 -0500130int __init extent_io_init(void)
131{
David Sterba837e1972012-09-07 03:00:48 -0600132 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200133 sizeof(struct extent_state), 0,
134 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500135 if (!extent_state_cache)
136 return -ENOMEM;
137
David Sterba837e1972012-09-07 03:00:48 -0600138 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200139 sizeof(struct extent_buffer), 0,
140 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500141 if (!extent_buffer_cache)
142 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400143
144 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
145 offsetof(struct btrfs_io_bio, bio));
146 if (!btrfs_bioset)
147 goto free_buffer_cache;
Chris Masond1310b22008-01-24 16:13:08 -0500148 return 0;
149
Chris Mason9be33952013-05-17 18:30:14 -0400150free_buffer_cache:
151 kmem_cache_destroy(extent_buffer_cache);
152 extent_buffer_cache = NULL;
153
Chris Masond1310b22008-01-24 16:13:08 -0500154free_state_cache:
155 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400156 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500157 return -ENOMEM;
158}
159
160void extent_io_exit(void)
161{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000162 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000163
164 /*
165 * Make sure all delayed rcu free are flushed before we
166 * destroy caches.
167 */
168 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500169 if (extent_state_cache)
170 kmem_cache_destroy(extent_state_cache);
171 if (extent_buffer_cache)
172 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400173 if (btrfs_bioset)
174 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500175}
176
177void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200178 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500179{
Eric Paris6bef4d32010-02-23 19:43:04 +0000180 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400181 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500182 tree->ops = NULL;
183 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500184 spin_lock_init(&tree->lock);
Chris Mason6af118ce2008-07-22 11:18:07 -0400185 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500186 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500187}
Chris Masond1310b22008-01-24 16:13:08 -0500188
Christoph Hellwigb2950862008-12-02 09:54:17 -0500189static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500190{
191 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500192
193 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400194 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500195 return state;
196 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500197 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500198 state->tree = NULL;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000199 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500200 atomic_set(&state->refs, 1);
201 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100202 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500203 return state;
204}
Chris Masond1310b22008-01-24 16:13:08 -0500205
Chris Mason4845e442010-05-25 20:56:50 -0400206void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500207{
Chris Masond1310b22008-01-24 16:13:08 -0500208 if (!state)
209 return;
210 if (atomic_dec_and_test(&state->refs)) {
Chris Mason70dec802008-01-29 09:59:12 -0500211 WARN_ON(state->tree);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000212 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100213 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500214 kmem_cache_free(extent_state_cache, state);
215 }
216}
Chris Masond1310b22008-01-24 16:13:08 -0500217
218static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
219 struct rb_node *node)
220{
Chris Masond3977122009-01-05 21:25:51 -0500221 struct rb_node **p = &root->rb_node;
222 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500223 struct tree_entry *entry;
224
Chris Masond3977122009-01-05 21:25:51 -0500225 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500226 parent = *p;
227 entry = rb_entry(parent, struct tree_entry, rb_node);
228
229 if (offset < entry->start)
230 p = &(*p)->rb_left;
231 else if (offset > entry->end)
232 p = &(*p)->rb_right;
233 else
234 return parent;
235 }
236
Chris Masond1310b22008-01-24 16:13:08 -0500237 rb_link_node(node, parent, p);
238 rb_insert_color(node, root);
239 return NULL;
240}
241
Chris Mason80ea96b2008-02-01 14:51:59 -0500242static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500243 struct rb_node **prev_ret,
244 struct rb_node **next_ret)
245{
Chris Mason80ea96b2008-02-01 14:51:59 -0500246 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500247 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500248 struct rb_node *prev = NULL;
249 struct rb_node *orig_prev = NULL;
250 struct tree_entry *entry;
251 struct tree_entry *prev_entry = NULL;
252
Chris Masond3977122009-01-05 21:25:51 -0500253 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500254 entry = rb_entry(n, struct tree_entry, rb_node);
255 prev = n;
256 prev_entry = entry;
257
258 if (offset < entry->start)
259 n = n->rb_left;
260 else if (offset > entry->end)
261 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500262 else
Chris Masond1310b22008-01-24 16:13:08 -0500263 return n;
264 }
265
266 if (prev_ret) {
267 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500268 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500269 prev = rb_next(prev);
270 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
271 }
272 *prev_ret = prev;
273 prev = orig_prev;
274 }
275
276 if (next_ret) {
277 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500278 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500279 prev = rb_prev(prev);
280 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
281 }
282 *next_ret = prev;
283 }
284 return NULL;
285}
286
Chris Mason80ea96b2008-02-01 14:51:59 -0500287static inline struct rb_node *tree_search(struct extent_io_tree *tree,
288 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500289{
Chris Mason70dec802008-01-29 09:59:12 -0500290 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500291 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500292
Chris Mason80ea96b2008-02-01 14:51:59 -0500293 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500294 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500295 return prev;
296 return ret;
297}
298
Josef Bacik9ed74f22009-09-11 16:12:44 -0400299static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
300 struct extent_state *other)
301{
302 if (tree->ops && tree->ops->merge_extent_hook)
303 tree->ops->merge_extent_hook(tree->mapping->host, new,
304 other);
305}
306
Chris Masond1310b22008-01-24 16:13:08 -0500307/*
308 * utility function to look for merge candidates inside a given range.
309 * Any extents with matching state are merged together into a single
310 * extent in the tree. Extents with EXTENT_IO in their state field
311 * are not merged because the end_io handlers need to be able to do
312 * operations on them without sleeping (or doing allocations/splits).
313 *
314 * This should be called with the tree lock held.
315 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000316static void merge_state(struct extent_io_tree *tree,
317 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500318{
319 struct extent_state *other;
320 struct rb_node *other_node;
321
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400322 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000323 return;
Chris Masond1310b22008-01-24 16:13:08 -0500324
325 other_node = rb_prev(&state->rb_node);
326 if (other_node) {
327 other = rb_entry(other_node, struct extent_state, rb_node);
328 if (other->end == state->start - 1 &&
329 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400330 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500331 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500332 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500333 rb_erase(&other->rb_node, &tree->state);
334 free_extent_state(other);
335 }
336 }
337 other_node = rb_next(&state->rb_node);
338 if (other_node) {
339 other = rb_entry(other_node, struct extent_state, rb_node);
340 if (other->start == state->end + 1 &&
341 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400342 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400343 state->end = other->end;
344 other->tree = NULL;
345 rb_erase(&other->rb_node, &tree->state);
346 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500347 }
348 }
Chris Masond1310b22008-01-24 16:13:08 -0500349}
350
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000351static void set_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000352 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500353{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000354 if (tree->ops && tree->ops->set_bit_hook)
355 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500356}
357
358static void clear_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000359 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500360{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400361 if (tree->ops && tree->ops->clear_bit_hook)
362 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500363}
364
Xiao Guangrong3150b692011-07-14 03:19:08 +0000365static void set_state_bits(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000366 struct extent_state *state, unsigned long *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000367
Chris Masond1310b22008-01-24 16:13:08 -0500368/*
369 * insert an extent_state struct into the tree. 'bits' are set on the
370 * struct before it is inserted.
371 *
372 * This may return -EEXIST if the extent is already there, in which case the
373 * state struct is freed.
374 *
375 * The tree lock is not taken internally. This is a utility function and
376 * probably isn't what you want to call (see set/clear_extent_bit).
377 */
378static int insert_state(struct extent_io_tree *tree,
379 struct extent_state *state, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000380 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500381{
382 struct rb_node *node;
383
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000384 if (end < start)
385 WARN(1, KERN_ERR "btrfs end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200386 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500387 state->start = start;
388 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400389
Xiao Guangrong3150b692011-07-14 03:19:08 +0000390 set_state_bits(tree, state, bits);
391
Chris Masond1310b22008-01-24 16:13:08 -0500392 node = tree_insert(&tree->state, end, &state->rb_node);
393 if (node) {
394 struct extent_state *found;
395 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500396 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200397 "%llu %llu\n",
398 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500399 return -EEXIST;
400 }
Chris Mason70dec802008-01-29 09:59:12 -0500401 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500402 merge_state(tree, state);
403 return 0;
404}
405
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000406static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400407 u64 split)
408{
409 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000410 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400411}
412
Chris Masond1310b22008-01-24 16:13:08 -0500413/*
414 * split a given extent state struct in two, inserting the preallocated
415 * struct 'prealloc' as the newly created second half. 'split' indicates an
416 * offset inside 'orig' where it should be split.
417 *
418 * Before calling,
419 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
420 * are two extent state structs in the tree:
421 * prealloc: [orig->start, split - 1]
422 * orig: [ split, orig->end ]
423 *
424 * The tree locks are not taken by this function. They need to be held
425 * by the caller.
426 */
427static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
428 struct extent_state *prealloc, u64 split)
429{
430 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400431
432 split_cb(tree, orig, split);
433
Chris Masond1310b22008-01-24 16:13:08 -0500434 prealloc->start = orig->start;
435 prealloc->end = split - 1;
436 prealloc->state = orig->state;
437 orig->start = split;
438
439 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
440 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500441 free_extent_state(prealloc);
442 return -EEXIST;
443 }
Chris Mason70dec802008-01-29 09:59:12 -0500444 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500445 return 0;
446}
447
Li Zefancdc6a392012-03-12 16:39:48 +0800448static struct extent_state *next_state(struct extent_state *state)
449{
450 struct rb_node *next = rb_next(&state->rb_node);
451 if (next)
452 return rb_entry(next, struct extent_state, rb_node);
453 else
454 return NULL;
455}
456
Chris Masond1310b22008-01-24 16:13:08 -0500457/*
458 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800459 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500460 *
461 * If no bits are set on the state struct after clearing things, the
462 * struct is freed and removed from the tree
463 */
Li Zefancdc6a392012-03-12 16:39:48 +0800464static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
465 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000466 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500467{
Li Zefancdc6a392012-03-12 16:39:48 +0800468 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000469 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500470
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400471 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500472 u64 range = state->end - state->start + 1;
473 WARN_ON(range > tree->dirty_bytes);
474 tree->dirty_bytes -= range;
475 }
Chris Mason291d6732008-01-29 15:55:23 -0500476 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400477 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500478 if (wake)
479 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400480 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800481 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500482 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500483 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500484 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500485 free_extent_state(state);
486 } else {
487 WARN_ON(1);
488 }
489 } else {
490 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800491 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500492 }
Li Zefancdc6a392012-03-12 16:39:48 +0800493 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500494}
495
Xiao Guangrong82337672011-04-20 06:44:57 +0000496static struct extent_state *
497alloc_extent_state_atomic(struct extent_state *prealloc)
498{
499 if (!prealloc)
500 prealloc = alloc_extent_state(GFP_ATOMIC);
501
502 return prealloc;
503}
504
Eric Sandeen48a3b632013-04-25 20:41:01 +0000505static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400506{
507 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
508 "Extent tree was modified by another "
509 "thread while locked.");
510}
511
Chris Masond1310b22008-01-24 16:13:08 -0500512/*
513 * clear some bits on a range in the tree. This may require splitting
514 * or inserting elements in the tree, so the gfp mask is used to
515 * indicate which allocations or sleeping are allowed.
516 *
517 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
518 * the given range from the tree regardless of state (ie for truncate).
519 *
520 * the range [start, end] is inclusive.
521 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100522 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500523 */
524int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000525 unsigned long bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400526 struct extent_state **cached_state,
527 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500528{
529 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400530 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500531 struct extent_state *prealloc = NULL;
532 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400533 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500534 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000535 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500536
David Sterba8d599ae2013-04-30 15:22:23 +0000537 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
538
Josef Bacik7ee9e442013-06-21 16:37:03 -0400539 if (bits & EXTENT_DELALLOC)
540 bits |= EXTENT_NORESERVE;
541
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400542 if (delete)
543 bits |= ~EXTENT_CTLBITS;
544 bits |= EXTENT_FIRST_DELALLOC;
545
Josef Bacik2ac55d42010-02-03 19:33:23 +0000546 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
547 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500548again:
549 if (!prealloc && (mask & __GFP_WAIT)) {
550 prealloc = alloc_extent_state(mask);
551 if (!prealloc)
552 return -ENOMEM;
553 }
554
Chris Masoncad321a2008-12-17 14:51:42 -0500555 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400556 if (cached_state) {
557 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000558
559 if (clear) {
560 *cached_state = NULL;
561 cached_state = NULL;
562 }
563
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400564 if (cached && cached->tree && cached->start <= start &&
565 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000566 if (clear)
567 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400568 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400569 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400570 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000571 if (clear)
572 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400573 }
Chris Masond1310b22008-01-24 16:13:08 -0500574 /*
575 * this search will find the extents that end after
576 * our range starts
577 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500578 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500579 if (!node)
580 goto out;
581 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400582hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500583 if (state->start > end)
584 goto out;
585 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400586 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500587
Liu Bo04493142012-02-16 18:34:37 +0800588 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800589 if (!(state->state & bits)) {
590 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800591 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800592 }
Liu Bo04493142012-02-16 18:34:37 +0800593
Chris Masond1310b22008-01-24 16:13:08 -0500594 /*
595 * | ---- desired range ---- |
596 * | state | or
597 * | ------------- state -------------- |
598 *
599 * We need to split the extent we found, and may flip
600 * bits on second half.
601 *
602 * If the extent we found extends past our range, we
603 * just split and search again. It'll get split again
604 * the next time though.
605 *
606 * If the extent we found is inside our range, we clear
607 * the desired bit on it.
608 */
609
610 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000611 prealloc = alloc_extent_state_atomic(prealloc);
612 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500613 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400614 if (err)
615 extent_io_tree_panic(tree, err);
616
Chris Masond1310b22008-01-24 16:13:08 -0500617 prealloc = NULL;
618 if (err)
619 goto out;
620 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800621 state = clear_state_bit(tree, state, &bits, wake);
622 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500623 }
624 goto search_again;
625 }
626 /*
627 * | ---- desired range ---- |
628 * | state |
629 * We need to split the extent, and clear the bit
630 * on the first half
631 */
632 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000633 prealloc = alloc_extent_state_atomic(prealloc);
634 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500635 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400636 if (err)
637 extent_io_tree_panic(tree, err);
638
Chris Masond1310b22008-01-24 16:13:08 -0500639 if (wake)
640 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400641
Jeff Mahoney6763af82012-03-01 14:56:29 +0100642 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400643
Chris Masond1310b22008-01-24 16:13:08 -0500644 prealloc = NULL;
645 goto out;
646 }
Chris Mason42daec22009-09-23 19:51:09 -0400647
Li Zefancdc6a392012-03-12 16:39:48 +0800648 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800649next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400650 if (last_end == (u64)-1)
651 goto out;
652 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800653 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800654 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500655 goto search_again;
656
657out:
Chris Masoncad321a2008-12-17 14:51:42 -0500658 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500659 if (prealloc)
660 free_extent_state(prealloc);
661
Jeff Mahoney6763af82012-03-01 14:56:29 +0100662 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500663
664search_again:
665 if (start > end)
666 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500667 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500668 if (mask & __GFP_WAIT)
669 cond_resched();
670 goto again;
671}
Chris Masond1310b22008-01-24 16:13:08 -0500672
Jeff Mahoney143bede2012-03-01 14:56:26 +0100673static void wait_on_state(struct extent_io_tree *tree,
674 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500675 __releases(tree->lock)
676 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500677{
678 DEFINE_WAIT(wait);
679 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500680 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500681 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500682 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500683 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500684}
685
686/*
687 * waits for one or more bits to clear on a range in the state tree.
688 * The range [start, end] is inclusive.
689 * The tree lock is taken by this function
690 */
David Sterba41074882013-04-29 13:38:46 +0000691static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
692 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500693{
694 struct extent_state *state;
695 struct rb_node *node;
696
David Sterba8d599ae2013-04-30 15:22:23 +0000697 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
698
Chris Masoncad321a2008-12-17 14:51:42 -0500699 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500700again:
701 while (1) {
702 /*
703 * this search will find all the extents that end after
704 * our range starts
705 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500706 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500707 if (!node)
708 break;
709
710 state = rb_entry(node, struct extent_state, rb_node);
711
712 if (state->start > end)
713 goto out;
714
715 if (state->state & bits) {
716 start = state->start;
717 atomic_inc(&state->refs);
718 wait_on_state(tree, state);
719 free_extent_state(state);
720 goto again;
721 }
722 start = state->end + 1;
723
724 if (start > end)
725 break;
726
Xiao Guangrongded91f02011-07-14 03:19:27 +0000727 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500728 }
729out:
Chris Masoncad321a2008-12-17 14:51:42 -0500730 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500731}
Chris Masond1310b22008-01-24 16:13:08 -0500732
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000733static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500734 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000735 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500736{
David Sterba41074882013-04-29 13:38:46 +0000737 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400738
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000739 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400740 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500741 u64 range = state->end - state->start + 1;
742 tree->dirty_bytes += range;
743 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400744 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500745}
746
Chris Mason2c64c532009-09-02 15:04:12 -0400747static void cache_state(struct extent_state *state,
748 struct extent_state **cached_ptr)
749{
750 if (cached_ptr && !(*cached_ptr)) {
751 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
752 *cached_ptr = state;
753 atomic_inc(&state->refs);
754 }
755 }
756}
757
Chris Masond1310b22008-01-24 16:13:08 -0500758/*
Chris Mason1edbb732009-09-02 13:24:36 -0400759 * set some bits on a range in the tree. This may require allocations or
760 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500761 *
Chris Mason1edbb732009-09-02 13:24:36 -0400762 * If any of the exclusive bits are set, this will fail with -EEXIST if some
763 * part of the range already has the desired bits set. The start of the
764 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500765 *
Chris Mason1edbb732009-09-02 13:24:36 -0400766 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500767 */
Chris Mason1edbb732009-09-02 13:24:36 -0400768
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100769static int __must_check
770__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000771 unsigned long bits, unsigned long exclusive_bits,
772 u64 *failed_start, struct extent_state **cached_state,
773 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500774{
775 struct extent_state *state;
776 struct extent_state *prealloc = NULL;
777 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500778 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500779 u64 last_start;
780 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400781
David Sterba8d599ae2013-04-30 15:22:23 +0000782 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
783
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400784 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500785again:
786 if (!prealloc && (mask & __GFP_WAIT)) {
787 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000788 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500789 }
790
Chris Masoncad321a2008-12-17 14:51:42 -0500791 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400792 if (cached_state && *cached_state) {
793 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400794 if (state->start <= start && state->end > start &&
795 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400796 node = &state->rb_node;
797 goto hit_next;
798 }
799 }
Chris Masond1310b22008-01-24 16:13:08 -0500800 /*
801 * this search will find all the extents that end after
802 * our range starts.
803 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500804 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500805 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000806 prealloc = alloc_extent_state_atomic(prealloc);
807 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400808 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400809 if (err)
810 extent_io_tree_panic(tree, err);
811
Chris Masond1310b22008-01-24 16:13:08 -0500812 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500813 goto out;
814 }
Chris Masond1310b22008-01-24 16:13:08 -0500815 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400816hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500817 last_start = state->start;
818 last_end = state->end;
819
820 /*
821 * | ---- desired range ---- |
822 * | state |
823 *
824 * Just lock what we found and keep going
825 */
826 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400827 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500828 *failed_start = state->start;
829 err = -EEXIST;
830 goto out;
831 }
Chris Mason42daec22009-09-23 19:51:09 -0400832
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000833 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400834 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500835 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400836 if (last_end == (u64)-1)
837 goto out;
838 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800839 state = next_state(state);
840 if (start < end && state && state->start == start &&
841 !need_resched())
842 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500843 goto search_again;
844 }
845
846 /*
847 * | ---- desired range ---- |
848 * | state |
849 * or
850 * | ------------- state -------------- |
851 *
852 * We need to split the extent we found, and may flip bits on
853 * second half.
854 *
855 * If the extent we found extends past our
856 * range, we just split and search again. It'll get split
857 * again the next time though.
858 *
859 * If the extent we found is inside our range, we set the
860 * desired bit on it.
861 */
862 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400863 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500864 *failed_start = start;
865 err = -EEXIST;
866 goto out;
867 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000868
869 prealloc = alloc_extent_state_atomic(prealloc);
870 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500871 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400872 if (err)
873 extent_io_tree_panic(tree, err);
874
Chris Masond1310b22008-01-24 16:13:08 -0500875 prealloc = NULL;
876 if (err)
877 goto out;
878 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000879 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400880 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500881 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400882 if (last_end == (u64)-1)
883 goto out;
884 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800885 state = next_state(state);
886 if (start < end && state && state->start == start &&
887 !need_resched())
888 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500889 }
890 goto search_again;
891 }
892 /*
893 * | ---- desired range ---- |
894 * | state | or | state |
895 *
896 * There's a hole, we need to insert something in it and
897 * ignore the extent we found.
898 */
899 if (state->start > start) {
900 u64 this_end;
901 if (end < last_start)
902 this_end = end;
903 else
Chris Masond3977122009-01-05 21:25:51 -0500904 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000905
906 prealloc = alloc_extent_state_atomic(prealloc);
907 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000908
909 /*
910 * Avoid to free 'prealloc' if it can be merged with
911 * the later extent.
912 */
Chris Masond1310b22008-01-24 16:13:08 -0500913 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400914 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400915 if (err)
916 extent_io_tree_panic(tree, err);
917
Chris Mason2c64c532009-09-02 15:04:12 -0400918 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500919 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500920 start = this_end + 1;
921 goto search_again;
922 }
923 /*
924 * | ---- desired range ---- |
925 * | state |
926 * We need to split the extent, and set the bit
927 * on the first half
928 */
929 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400930 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500931 *failed_start = start;
932 err = -EEXIST;
933 goto out;
934 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000935
936 prealloc = alloc_extent_state_atomic(prealloc);
937 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500938 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400939 if (err)
940 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500941
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000942 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400943 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500944 merge_state(tree, prealloc);
945 prealloc = NULL;
946 goto out;
947 }
948
949 goto search_again;
950
951out:
Chris Masoncad321a2008-12-17 14:51:42 -0500952 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500953 if (prealloc)
954 free_extent_state(prealloc);
955
956 return err;
957
958search_again:
959 if (start > end)
960 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500961 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500962 if (mask & __GFP_WAIT)
963 cond_resched();
964 goto again;
965}
Chris Masond1310b22008-01-24 16:13:08 -0500966
David Sterba41074882013-04-29 13:38:46 +0000967int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
968 unsigned long bits, u64 * failed_start,
969 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100970{
971 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
972 cached_state, mask);
973}
974
975
Josef Bacik462d6fa2011-09-26 13:56:12 -0400976/**
Liu Bo10983f22012-07-11 15:26:19 +0800977 * convert_extent_bit - convert all bits in a given range from one bit to
978 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -0400979 * @tree: the io tree to search
980 * @start: the start offset in bytes
981 * @end: the end offset in bytes (inclusive)
982 * @bits: the bits to set in this range
983 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -0400984 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -0400985 * @mask: the allocation mask
986 *
987 * This will go through and set bits for the given range. If any states exist
988 * already in this range they are set with the given bit and cleared of the
989 * clear_bits. This is only meant to be used by things that are mergeable, ie
990 * converting from say DELALLOC to DIRTY. This is not meant to be used with
991 * boundary bits like LOCK.
992 */
993int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000994 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -0400995 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -0400996{
997 struct extent_state *state;
998 struct extent_state *prealloc = NULL;
999 struct rb_node *node;
1000 int err = 0;
1001 u64 last_start;
1002 u64 last_end;
1003
David Sterba8d599ae2013-04-30 15:22:23 +00001004 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
1005
Josef Bacik462d6fa2011-09-26 13:56:12 -04001006again:
1007 if (!prealloc && (mask & __GFP_WAIT)) {
1008 prealloc = alloc_extent_state(mask);
1009 if (!prealloc)
1010 return -ENOMEM;
1011 }
1012
1013 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001014 if (cached_state && *cached_state) {
1015 state = *cached_state;
1016 if (state->start <= start && state->end > start &&
1017 state->tree) {
1018 node = &state->rb_node;
1019 goto hit_next;
1020 }
1021 }
1022
Josef Bacik462d6fa2011-09-26 13:56:12 -04001023 /*
1024 * this search will find all the extents that end after
1025 * our range starts.
1026 */
1027 node = tree_search(tree, start);
1028 if (!node) {
1029 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001030 if (!prealloc) {
1031 err = -ENOMEM;
1032 goto out;
1033 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001034 err = insert_state(tree, prealloc, start, end, &bits);
1035 prealloc = NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001036 if (err)
1037 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001038 goto out;
1039 }
1040 state = rb_entry(node, struct extent_state, rb_node);
1041hit_next:
1042 last_start = state->start;
1043 last_end = state->end;
1044
1045 /*
1046 * | ---- desired range ---- |
1047 * | state |
1048 *
1049 * Just lock what we found and keep going
1050 */
1051 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001052 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001053 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001054 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001055 if (last_end == (u64)-1)
1056 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001057 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001058 if (start < end && state && state->start == start &&
1059 !need_resched())
1060 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001061 goto search_again;
1062 }
1063
1064 /*
1065 * | ---- desired range ---- |
1066 * | state |
1067 * or
1068 * | ------------- state -------------- |
1069 *
1070 * We need to split the extent we found, and may flip bits on
1071 * second half.
1072 *
1073 * If the extent we found extends past our
1074 * range, we just split and search again. It'll get split
1075 * again the next time though.
1076 *
1077 * If the extent we found is inside our range, we set the
1078 * desired bit on it.
1079 */
1080 if (state->start < start) {
1081 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001082 if (!prealloc) {
1083 err = -ENOMEM;
1084 goto out;
1085 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001086 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001087 if (err)
1088 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001089 prealloc = NULL;
1090 if (err)
1091 goto out;
1092 if (state->end <= end) {
1093 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001094 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001095 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001096 if (last_end == (u64)-1)
1097 goto out;
1098 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001099 if (start < end && state && state->start == start &&
1100 !need_resched())
1101 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102 }
1103 goto search_again;
1104 }
1105 /*
1106 * | ---- desired range ---- |
1107 * | state | or | state |
1108 *
1109 * There's a hole, we need to insert something in it and
1110 * ignore the extent we found.
1111 */
1112 if (state->start > start) {
1113 u64 this_end;
1114 if (end < last_start)
1115 this_end = end;
1116 else
1117 this_end = last_start - 1;
1118
1119 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001120 if (!prealloc) {
1121 err = -ENOMEM;
1122 goto out;
1123 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001124
1125 /*
1126 * Avoid to free 'prealloc' if it can be merged with
1127 * the later extent.
1128 */
1129 err = insert_state(tree, prealloc, start, this_end,
1130 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001131 if (err)
1132 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001133 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001134 prealloc = NULL;
1135 start = this_end + 1;
1136 goto search_again;
1137 }
1138 /*
1139 * | ---- desired range ---- |
1140 * | state |
1141 * We need to split the extent, and set the bit
1142 * on the first half
1143 */
1144 if (state->start <= end && state->end > end) {
1145 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001146 if (!prealloc) {
1147 err = -ENOMEM;
1148 goto out;
1149 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001150
1151 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001152 if (err)
1153 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001154
1155 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001156 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001157 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001158 prealloc = NULL;
1159 goto out;
1160 }
1161
1162 goto search_again;
1163
1164out:
1165 spin_unlock(&tree->lock);
1166 if (prealloc)
1167 free_extent_state(prealloc);
1168
1169 return err;
1170
1171search_again:
1172 if (start > end)
1173 goto out;
1174 spin_unlock(&tree->lock);
1175 if (mask & __GFP_WAIT)
1176 cond_resched();
1177 goto again;
1178}
1179
Chris Masond1310b22008-01-24 16:13:08 -05001180/* wrappers around set/clear extent bit */
1181int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1182 gfp_t mask)
1183{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001184 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001185 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001186}
Chris Masond1310b22008-01-24 16:13:08 -05001187
1188int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001189 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001190{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001191 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001192 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001193}
Chris Masond1310b22008-01-24 16:13:08 -05001194
1195int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001196 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001197{
Chris Mason2c64c532009-09-02 15:04:12 -04001198 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001199}
Chris Masond1310b22008-01-24 16:13:08 -05001200
1201int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001202 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001203{
1204 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001205 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001206 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001207}
Chris Masond1310b22008-01-24 16:13:08 -05001208
Liu Bo9e8a4a82012-09-05 19:10:51 -06001209int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1210 struct extent_state **cached_state, gfp_t mask)
1211{
1212 return set_extent_bit(tree, start, end,
1213 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1214 NULL, cached_state, mask);
1215}
1216
Chris Masond1310b22008-01-24 16:13:08 -05001217int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1218 gfp_t mask)
1219{
1220 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001221 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001222 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001223}
Chris Masond1310b22008-01-24 16:13:08 -05001224
1225int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1226 gfp_t mask)
1227{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001228 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001229 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001230}
Chris Masond1310b22008-01-24 16:13:08 -05001231
Chris Masond1310b22008-01-24 16:13:08 -05001232int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001233 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001234{
Liu Bo6b67a322013-03-28 08:30:28 +00001235 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001236 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001237}
Chris Masond1310b22008-01-24 16:13:08 -05001238
Josef Bacik5fd02042012-05-02 14:00:54 -04001239int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1240 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001241{
Chris Mason2c64c532009-09-02 15:04:12 -04001242 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001243 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001244}
Chris Masond1310b22008-01-24 16:13:08 -05001245
Chris Masond352ac62008-09-29 15:18:18 -04001246/*
1247 * either insert or lock state struct between start and end use mask to tell
1248 * us if waiting is desired.
1249 */
Chris Mason1edbb732009-09-02 13:24:36 -04001250int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001251 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001252{
1253 int err;
1254 u64 failed_start;
1255 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001256 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1257 EXTENT_LOCKED, &failed_start,
1258 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001259 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001260 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1261 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001262 } else
Chris Masond1310b22008-01-24 16:13:08 -05001263 break;
Chris Masond1310b22008-01-24 16:13:08 -05001264 WARN_ON(start > end);
1265 }
1266 return err;
1267}
Chris Masond1310b22008-01-24 16:13:08 -05001268
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001269int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001270{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001271 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001272}
1273
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001274int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001275{
1276 int err;
1277 u64 failed_start;
1278
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001279 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1280 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001281 if (err == -EEXIST) {
1282 if (failed_start > start)
1283 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001284 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001285 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001286 }
Josef Bacik25179202008-10-29 14:49:05 -04001287 return 1;
1288}
Josef Bacik25179202008-10-29 14:49:05 -04001289
Chris Mason2c64c532009-09-02 15:04:12 -04001290int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1291 struct extent_state **cached, gfp_t mask)
1292{
1293 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1294 mask);
1295}
1296
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001297int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001298{
Chris Mason2c64c532009-09-02 15:04:12 -04001299 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001300 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001301}
Chris Masond1310b22008-01-24 16:13:08 -05001302
Chris Mason4adaa612013-03-26 13:07:00 -04001303int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1304{
1305 unsigned long index = start >> PAGE_CACHE_SHIFT;
1306 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1307 struct page *page;
1308
1309 while (index <= end_index) {
1310 page = find_get_page(inode->i_mapping, index);
1311 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1312 clear_page_dirty_for_io(page);
1313 page_cache_release(page);
1314 index++;
1315 }
1316 return 0;
1317}
1318
1319int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1320{
1321 unsigned long index = start >> PAGE_CACHE_SHIFT;
1322 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1323 struct page *page;
1324
1325 while (index <= end_index) {
1326 page = find_get_page(inode->i_mapping, index);
1327 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1328 account_page_redirty(page);
1329 __set_page_dirty_nobuffers(page);
1330 page_cache_release(page);
1331 index++;
1332 }
1333 return 0;
1334}
1335
Chris Masond1310b22008-01-24 16:13:08 -05001336/*
Chris Masond1310b22008-01-24 16:13:08 -05001337 * helper function to set both pages and extents in the tree writeback
1338 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001339static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001340{
1341 unsigned long index = start >> PAGE_CACHE_SHIFT;
1342 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1343 struct page *page;
1344
1345 while (index <= end_index) {
1346 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001347 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001348 set_page_writeback(page);
1349 page_cache_release(page);
1350 index++;
1351 }
Chris Masond1310b22008-01-24 16:13:08 -05001352 return 0;
1353}
Chris Masond1310b22008-01-24 16:13:08 -05001354
Chris Masond352ac62008-09-29 15:18:18 -04001355/* find the first state struct with 'bits' set after 'start', and
1356 * return it. tree->lock must be held. NULL will returned if
1357 * nothing was found after 'start'
1358 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001359static struct extent_state *
1360find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001361 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001362{
1363 struct rb_node *node;
1364 struct extent_state *state;
1365
1366 /*
1367 * this search will find all the extents that end after
1368 * our range starts.
1369 */
1370 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001371 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001372 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001373
Chris Masond3977122009-01-05 21:25:51 -05001374 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001375 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001376 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001377 return state;
Chris Masond3977122009-01-05 21:25:51 -05001378
Chris Masond7fc6402008-02-18 12:12:38 -05001379 node = rb_next(node);
1380 if (!node)
1381 break;
1382 }
1383out:
1384 return NULL;
1385}
Chris Masond7fc6402008-02-18 12:12:38 -05001386
Chris Masond352ac62008-09-29 15:18:18 -04001387/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001388 * find the first offset in the io tree with 'bits' set. zero is
1389 * returned if we find something, and *start_ret and *end_ret are
1390 * set to reflect the state struct that was found.
1391 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001392 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001393 */
1394int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001395 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001396 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001397{
1398 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001399 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001400 int ret = 1;
1401
1402 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001403 if (cached_state && *cached_state) {
1404 state = *cached_state;
1405 if (state->end == start - 1 && state->tree) {
1406 n = rb_next(&state->rb_node);
1407 while (n) {
1408 state = rb_entry(n, struct extent_state,
1409 rb_node);
1410 if (state->state & bits)
1411 goto got_it;
1412 n = rb_next(n);
1413 }
1414 free_extent_state(*cached_state);
1415 *cached_state = NULL;
1416 goto out;
1417 }
1418 free_extent_state(*cached_state);
1419 *cached_state = NULL;
1420 }
1421
Xiao Guangrong69261c42011-07-14 03:19:45 +00001422 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001423got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001424 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001425 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001426 *start_ret = state->start;
1427 *end_ret = state->end;
1428 ret = 0;
1429 }
Josef Bacike6138872012-09-27 17:07:30 -04001430out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001431 spin_unlock(&tree->lock);
1432 return ret;
1433}
1434
1435/*
Chris Masond352ac62008-09-29 15:18:18 -04001436 * find a contiguous range of bytes in the file marked as delalloc, not
1437 * more than 'max_bytes'. start and end are used to return the range,
1438 *
1439 * 1 is returned if we find something, 0 if nothing was in the tree
1440 */
Chris Masonc8b97812008-10-29 14:49:59 -04001441static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001442 u64 *start, u64 *end, u64 max_bytes,
1443 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001444{
1445 struct rb_node *node;
1446 struct extent_state *state;
1447 u64 cur_start = *start;
1448 u64 found = 0;
1449 u64 total_bytes = 0;
1450
Chris Masoncad321a2008-12-17 14:51:42 -05001451 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001452
Chris Masond1310b22008-01-24 16:13:08 -05001453 /*
1454 * this search will find all the extents that end after
1455 * our range starts.
1456 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001457 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001458 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001459 if (!found)
1460 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001461 goto out;
1462 }
1463
Chris Masond3977122009-01-05 21:25:51 -05001464 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001465 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001466 if (found && (state->start != cur_start ||
1467 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001468 goto out;
1469 }
1470 if (!(state->state & EXTENT_DELALLOC)) {
1471 if (!found)
1472 *end = state->end;
1473 goto out;
1474 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001475 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001476 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001477 *cached_state = state;
1478 atomic_inc(&state->refs);
1479 }
Chris Masond1310b22008-01-24 16:13:08 -05001480 found++;
1481 *end = state->end;
1482 cur_start = state->end + 1;
1483 node = rb_next(node);
1484 if (!node)
1485 break;
1486 total_bytes += state->end - state->start + 1;
1487 if (total_bytes >= max_bytes)
1488 break;
1489 }
1490out:
Chris Masoncad321a2008-12-17 14:51:42 -05001491 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001492 return found;
1493}
1494
Jeff Mahoney143bede2012-03-01 14:56:26 +01001495static noinline void __unlock_for_delalloc(struct inode *inode,
1496 struct page *locked_page,
1497 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001498{
1499 int ret;
1500 struct page *pages[16];
1501 unsigned long index = start >> PAGE_CACHE_SHIFT;
1502 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1503 unsigned long nr_pages = end_index - index + 1;
1504 int i;
1505
1506 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001507 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001508
Chris Masond3977122009-01-05 21:25:51 -05001509 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001510 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001511 min_t(unsigned long, nr_pages,
1512 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001513 for (i = 0; i < ret; i++) {
1514 if (pages[i] != locked_page)
1515 unlock_page(pages[i]);
1516 page_cache_release(pages[i]);
1517 }
1518 nr_pages -= ret;
1519 index += ret;
1520 cond_resched();
1521 }
Chris Masonc8b97812008-10-29 14:49:59 -04001522}
1523
1524static noinline int lock_delalloc_pages(struct inode *inode,
1525 struct page *locked_page,
1526 u64 delalloc_start,
1527 u64 delalloc_end)
1528{
1529 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1530 unsigned long start_index = index;
1531 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1532 unsigned long pages_locked = 0;
1533 struct page *pages[16];
1534 unsigned long nrpages;
1535 int ret;
1536 int i;
1537
1538 /* the caller is responsible for locking the start index */
1539 if (index == locked_page->index && index == end_index)
1540 return 0;
1541
1542 /* skip the page at the start index */
1543 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001544 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001545 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001546 min_t(unsigned long,
1547 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001548 if (ret == 0) {
1549 ret = -EAGAIN;
1550 goto done;
1551 }
1552 /* now we have an array of pages, lock them all */
1553 for (i = 0; i < ret; i++) {
1554 /*
1555 * the caller is taking responsibility for
1556 * locked_page
1557 */
Chris Mason771ed682008-11-06 22:02:51 -05001558 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001559 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001560 if (!PageDirty(pages[i]) ||
1561 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001562 ret = -EAGAIN;
1563 unlock_page(pages[i]);
1564 page_cache_release(pages[i]);
1565 goto done;
1566 }
1567 }
Chris Masonc8b97812008-10-29 14:49:59 -04001568 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001569 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001570 }
Chris Masonc8b97812008-10-29 14:49:59 -04001571 nrpages -= ret;
1572 index += ret;
1573 cond_resched();
1574 }
1575 ret = 0;
1576done:
1577 if (ret && pages_locked) {
1578 __unlock_for_delalloc(inode, locked_page,
1579 delalloc_start,
1580 ((u64)(start_index + pages_locked - 1)) <<
1581 PAGE_CACHE_SHIFT);
1582 }
1583 return ret;
1584}
1585
1586/*
1587 * find a contiguous range of bytes in the file marked as delalloc, not
1588 * more than 'max_bytes'. start and end are used to return the range,
1589 *
1590 * 1 is returned if we find something, 0 if nothing was in the tree
1591 */
1592static noinline u64 find_lock_delalloc_range(struct inode *inode,
1593 struct extent_io_tree *tree,
1594 struct page *locked_page,
1595 u64 *start, u64 *end,
1596 u64 max_bytes)
1597{
1598 u64 delalloc_start;
1599 u64 delalloc_end;
1600 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001601 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001602 int ret;
1603 int loops = 0;
1604
1605again:
1606 /* step one, find a bunch of delalloc bytes starting at start */
1607 delalloc_start = *start;
1608 delalloc_end = 0;
1609 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001610 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001611 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001612 *start = delalloc_start;
1613 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001614 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001615 return found;
1616 }
1617
1618 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001619 * start comes from the offset of locked_page. We have to lock
1620 * pages in order, so we can't process delalloc bytes before
1621 * locked_page
1622 */
Chris Masond3977122009-01-05 21:25:51 -05001623 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001624 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001625
1626 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001627 * make sure to limit the number of pages we try to lock down
1628 * if we're looping.
1629 */
Chris Masond3977122009-01-05 21:25:51 -05001630 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001631 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001632
Chris Masonc8b97812008-10-29 14:49:59 -04001633 /* step two, lock all the pages after the page that has start */
1634 ret = lock_delalloc_pages(inode, locked_page,
1635 delalloc_start, delalloc_end);
1636 if (ret == -EAGAIN) {
1637 /* some of the pages are gone, lets avoid looping by
1638 * shortening the size of the delalloc range we're searching
1639 */
Chris Mason9655d292009-09-02 15:22:30 -04001640 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001641 if (!loops) {
1642 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1643 max_bytes = PAGE_CACHE_SIZE - offset;
1644 loops = 1;
1645 goto again;
1646 } else {
1647 found = 0;
1648 goto out_failed;
1649 }
1650 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001651 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001652
1653 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001654 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001655
1656 /* then test to make sure it is all still delalloc */
1657 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001658 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001659 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001660 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1661 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001662 __unlock_for_delalloc(inode, locked_page,
1663 delalloc_start, delalloc_end);
1664 cond_resched();
1665 goto again;
1666 }
Chris Mason9655d292009-09-02 15:22:30 -04001667 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001668 *start = delalloc_start;
1669 *end = delalloc_end;
1670out_failed:
1671 return found;
1672}
1673
Josef Bacikc2790a22013-07-29 11:20:47 -04001674int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1675 struct page *locked_page,
1676 unsigned long clear_bits,
1677 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001678{
Josef Bacikc2790a22013-07-29 11:20:47 -04001679 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001680 int ret;
1681 struct page *pages[16];
1682 unsigned long index = start >> PAGE_CACHE_SHIFT;
1683 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1684 unsigned long nr_pages = end_index - index + 1;
1685 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001686
Chris Mason2c64c532009-09-02 15:04:12 -04001687 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001688 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001689 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001690
Chris Masond3977122009-01-05 21:25:51 -05001691 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001692 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001693 min_t(unsigned long,
1694 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001695 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001696
Josef Bacikc2790a22013-07-29 11:20:47 -04001697 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001698 SetPagePrivate2(pages[i]);
1699
Chris Masonc8b97812008-10-29 14:49:59 -04001700 if (pages[i] == locked_page) {
1701 page_cache_release(pages[i]);
1702 continue;
1703 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001704 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001705 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001706 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001707 set_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001708 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001709 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001710 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001711 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001712 page_cache_release(pages[i]);
1713 }
1714 nr_pages -= ret;
1715 index += ret;
1716 cond_resched();
1717 }
1718 return 0;
1719}
Chris Masonc8b97812008-10-29 14:49:59 -04001720
Chris Masond352ac62008-09-29 15:18:18 -04001721/*
1722 * count the number of bytes in the tree that have a given bit(s)
1723 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1724 * cached. The total number found is returned.
1725 */
Chris Masond1310b22008-01-24 16:13:08 -05001726u64 count_range_bits(struct extent_io_tree *tree,
1727 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001728 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001729{
1730 struct rb_node *node;
1731 struct extent_state *state;
1732 u64 cur_start = *start;
1733 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001734 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001735 int found = 0;
1736
1737 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001738 WARN_ON(1);
1739 return 0;
1740 }
1741
Chris Masoncad321a2008-12-17 14:51:42 -05001742 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001743 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1744 total_bytes = tree->dirty_bytes;
1745 goto out;
1746 }
1747 /*
1748 * this search will find all the extents that end after
1749 * our range starts.
1750 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001751 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001752 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001753 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001754
Chris Masond3977122009-01-05 21:25:51 -05001755 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001756 state = rb_entry(node, struct extent_state, rb_node);
1757 if (state->start > search_end)
1758 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001759 if (contig && found && state->start > last + 1)
1760 break;
1761 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001762 total_bytes += min(search_end, state->end) + 1 -
1763 max(cur_start, state->start);
1764 if (total_bytes >= max_bytes)
1765 break;
1766 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001767 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001768 found = 1;
1769 }
Chris Masonec29ed52011-02-23 16:23:20 -05001770 last = state->end;
1771 } else if (contig && found) {
1772 break;
Chris Masond1310b22008-01-24 16:13:08 -05001773 }
1774 node = rb_next(node);
1775 if (!node)
1776 break;
1777 }
1778out:
Chris Masoncad321a2008-12-17 14:51:42 -05001779 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001780 return total_bytes;
1781}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001782
Chris Masond352ac62008-09-29 15:18:18 -04001783/*
1784 * set the private field for a given byte offset in the tree. If there isn't
1785 * an extent_state there already, this does nothing.
1786 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001787static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001788{
1789 struct rb_node *node;
1790 struct extent_state *state;
1791 int ret = 0;
1792
Chris Masoncad321a2008-12-17 14:51:42 -05001793 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001794 /*
1795 * this search will find all the extents that end after
1796 * our range starts.
1797 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001798 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001799 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001800 ret = -ENOENT;
1801 goto out;
1802 }
1803 state = rb_entry(node, struct extent_state, rb_node);
1804 if (state->start != start) {
1805 ret = -ENOENT;
1806 goto out;
1807 }
1808 state->private = private;
1809out:
Chris Masoncad321a2008-12-17 14:51:42 -05001810 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001811 return ret;
1812}
1813
1814int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1815{
1816 struct rb_node *node;
1817 struct extent_state *state;
1818 int ret = 0;
1819
Chris Masoncad321a2008-12-17 14:51:42 -05001820 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001821 /*
1822 * this search will find all the extents that end after
1823 * our range starts.
1824 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001825 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001826 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001827 ret = -ENOENT;
1828 goto out;
1829 }
1830 state = rb_entry(node, struct extent_state, rb_node);
1831 if (state->start != start) {
1832 ret = -ENOENT;
1833 goto out;
1834 }
1835 *private = state->private;
1836out:
Chris Masoncad321a2008-12-17 14:51:42 -05001837 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001838 return ret;
1839}
1840
1841/*
1842 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001843 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001844 * has the bits set. Otherwise, 1 is returned if any bit in the
1845 * range is found set.
1846 */
1847int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001848 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001849{
1850 struct extent_state *state = NULL;
1851 struct rb_node *node;
1852 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001853
Chris Masoncad321a2008-12-17 14:51:42 -05001854 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001855 if (cached && cached->tree && cached->start <= start &&
1856 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001857 node = &cached->rb_node;
1858 else
1859 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001860 while (node && start <= end) {
1861 state = rb_entry(node, struct extent_state, rb_node);
1862
1863 if (filled && state->start > start) {
1864 bitset = 0;
1865 break;
1866 }
1867
1868 if (state->start > end)
1869 break;
1870
1871 if (state->state & bits) {
1872 bitset = 1;
1873 if (!filled)
1874 break;
1875 } else if (filled) {
1876 bitset = 0;
1877 break;
1878 }
Chris Mason46562ce2009-09-23 20:23:16 -04001879
1880 if (state->end == (u64)-1)
1881 break;
1882
Chris Masond1310b22008-01-24 16:13:08 -05001883 start = state->end + 1;
1884 if (start > end)
1885 break;
1886 node = rb_next(node);
1887 if (!node) {
1888 if (filled)
1889 bitset = 0;
1890 break;
1891 }
1892 }
Chris Masoncad321a2008-12-17 14:51:42 -05001893 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001894 return bitset;
1895}
Chris Masond1310b22008-01-24 16:13:08 -05001896
1897/*
1898 * helper function to set a given page up to date if all the
1899 * extents in the tree for that page are up to date
1900 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001901static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001902{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001903 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001904 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001905 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001906 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001907}
1908
1909/*
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001910 * When IO fails, either with EIO or csum verification fails, we
1911 * try other mirrors that might have a good copy of the data. This
1912 * io_failure_record is used to record state as we go through all the
1913 * mirrors. If another mirror has good data, the page is set up to date
1914 * and things continue. If a good mirror can't be found, the original
1915 * bio end_io callback is called to indicate things have failed.
1916 */
1917struct io_failure_record {
1918 struct page *page;
1919 u64 start;
1920 u64 len;
1921 u64 logical;
1922 unsigned long bio_flags;
1923 int this_mirror;
1924 int failed_mirror;
1925 int in_validation;
1926};
1927
1928static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1929 int did_repair)
1930{
1931 int ret;
1932 int err = 0;
1933 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1934
1935 set_state_private(failure_tree, rec->start, 0);
1936 ret = clear_extent_bits(failure_tree, rec->start,
1937 rec->start + rec->len - 1,
1938 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1939 if (ret)
1940 err = ret;
1941
David Woodhouse53b381b2013-01-29 18:40:14 -05001942 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1943 rec->start + rec->len - 1,
1944 EXTENT_DAMAGED, GFP_NOFS);
1945 if (ret && !err)
1946 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001947
1948 kfree(rec);
1949 return err;
1950}
1951
1952static void repair_io_failure_callback(struct bio *bio, int err)
1953{
1954 complete(bio->bi_private);
1955}
1956
1957/*
1958 * this bypasses the standard btrfs submit functions deliberately, as
1959 * the standard behavior is to write all copies in a raid setup. here we only
1960 * want to write the one bad copy. so we do the mapping for ourselves and issue
1961 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001962 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001963 * actually prevents the read that triggered the error from finishing.
1964 * currently, there can be no more than two copies of every data bit. thus,
1965 * exactly one rewrite is required.
1966 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001967int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001968 u64 length, u64 logical, struct page *page,
1969 int mirror_num)
1970{
1971 struct bio *bio;
1972 struct btrfs_device *dev;
1973 DECLARE_COMPLETION_ONSTACK(compl);
1974 u64 map_length = 0;
1975 u64 sector;
1976 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05001977 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001978 int ret;
1979
1980 BUG_ON(!mirror_num);
1981
David Woodhouse53b381b2013-01-29 18:40:14 -05001982 /* we can't repair anything in raid56 yet */
1983 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
1984 return 0;
1985
Chris Mason9be33952013-05-17 18:30:14 -04001986 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001987 if (!bio)
1988 return -EIO;
1989 bio->bi_private = &compl;
1990 bio->bi_end_io = repair_io_failure_callback;
1991 bio->bi_size = 0;
1992 map_length = length;
1993
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001994 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001995 &map_length, &bbio, mirror_num);
1996 if (ret) {
1997 bio_put(bio);
1998 return -EIO;
1999 }
2000 BUG_ON(mirror_num != bbio->mirror_num);
2001 sector = bbio->stripes[mirror_num-1].physical >> 9;
2002 bio->bi_sector = sector;
2003 dev = bbio->stripes[mirror_num-1].dev;
2004 kfree(bbio);
2005 if (!dev || !dev->bdev || !dev->writeable) {
2006 bio_put(bio);
2007 return -EIO;
2008 }
2009 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002010 bio_add_page(bio, page, length, start - page_offset(page));
Stefan Behrens21adbd52011-11-09 13:44:05 +01002011 btrfsic_submit_bio(WRITE_SYNC, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002012 wait_for_completion(&compl);
2013
2014 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2015 /* try to remap that extent elsewhere? */
2016 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002017 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002018 return -EIO;
2019 }
2020
Anand Jaind5b025d2012-07-02 22:05:21 -06002021 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04002022 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2023 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002024
2025 bio_put(bio);
2026 return 0;
2027}
2028
Josef Bacikea466792012-03-26 21:57:36 -04002029int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2030 int mirror_num)
2031{
Josef Bacikea466792012-03-26 21:57:36 -04002032 u64 start = eb->start;
2033 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002034 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002035
2036 for (i = 0; i < num_pages; i++) {
2037 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002038 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04002039 start, p, mirror_num);
2040 if (ret)
2041 break;
2042 start += PAGE_CACHE_SIZE;
2043 }
2044
2045 return ret;
2046}
2047
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002048/*
2049 * each time an IO finishes, we do a fast check in the IO failure tree
2050 * to see if we need to process or clean up an io_failure_record
2051 */
2052static int clean_io_failure(u64 start, struct page *page)
2053{
2054 u64 private;
2055 u64 private_failure;
2056 struct io_failure_record *failrec;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002057 struct btrfs_fs_info *fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002058 struct extent_state *state;
2059 int num_copies;
2060 int did_repair = 0;
2061 int ret;
2062 struct inode *inode = page->mapping->host;
2063
2064 private = 0;
2065 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2066 (u64)-1, 1, EXTENT_DIRTY, 0);
2067 if (!ret)
2068 return 0;
2069
2070 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2071 &private_failure);
2072 if (ret)
2073 return 0;
2074
2075 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2076 BUG_ON(!failrec->this_mirror);
2077
2078 if (failrec->in_validation) {
2079 /* there was no real error, just free the record */
2080 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2081 failrec->start);
2082 did_repair = 1;
2083 goto out;
2084 }
2085
2086 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2087 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2088 failrec->start,
2089 EXTENT_LOCKED);
2090 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2091
Miao Xie883d0de2013-07-25 19:22:35 +08002092 if (state && state->start <= failrec->start &&
2093 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002094 fs_info = BTRFS_I(inode)->root->fs_info;
2095 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2096 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002097 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002098 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099 failrec->logical, page,
2100 failrec->failed_mirror);
2101 did_repair = !ret;
2102 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002103 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 }
2105
2106out:
2107 if (!ret)
2108 ret = free_io_failure(inode, failrec, did_repair);
2109
2110 return ret;
2111}
2112
2113/*
2114 * this is a generic handler for readpage errors (default
2115 * readpage_io_failed_hook). if other copies exist, read those and write back
2116 * good data to the failed position. does not investigate in remapping the
2117 * failed extent elsewhere, hoping the device will be smart enough to do this as
2118 * needed
2119 */
2120
Miao Xiefacc8a222013-07-25 19:22:34 +08002121static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2122 struct page *page, u64 start, u64 end,
2123 int failed_mirror)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002124{
2125 struct io_failure_record *failrec = NULL;
2126 u64 private;
2127 struct extent_map *em;
2128 struct inode *inode = page->mapping->host;
2129 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2130 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2131 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2132 struct bio *bio;
Miao Xiefacc8a222013-07-25 19:22:34 +08002133 struct btrfs_io_bio *btrfs_failed_bio;
2134 struct btrfs_io_bio *btrfs_bio;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002135 int num_copies;
2136 int ret;
2137 int read_mode;
2138 u64 logical;
2139
2140 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2141
2142 ret = get_state_private(failure_tree, start, &private);
2143 if (ret) {
2144 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2145 if (!failrec)
2146 return -ENOMEM;
2147 failrec->start = start;
2148 failrec->len = end - start + 1;
2149 failrec->this_mirror = 0;
2150 failrec->bio_flags = 0;
2151 failrec->in_validation = 0;
2152
2153 read_lock(&em_tree->lock);
2154 em = lookup_extent_mapping(em_tree, start, failrec->len);
2155 if (!em) {
2156 read_unlock(&em_tree->lock);
2157 kfree(failrec);
2158 return -EIO;
2159 }
2160
2161 if (em->start > start || em->start + em->len < start) {
2162 free_extent_map(em);
2163 em = NULL;
2164 }
2165 read_unlock(&em_tree->lock);
2166
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002167 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002168 kfree(failrec);
2169 return -EIO;
2170 }
2171 logical = start - em->start;
2172 logical = em->block_start + logical;
2173 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2174 logical = em->block_start;
2175 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2176 extent_set_compress_type(&failrec->bio_flags,
2177 em->compress_type);
2178 }
2179 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2180 "len=%llu\n", logical, start, failrec->len);
2181 failrec->logical = logical;
2182 free_extent_map(em);
2183
2184 /* set the bits in the private failure tree */
2185 ret = set_extent_bits(failure_tree, start, end,
2186 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2187 if (ret >= 0)
2188 ret = set_state_private(failure_tree, start,
2189 (u64)(unsigned long)failrec);
2190 /* set the bits in the inode's tree */
2191 if (ret >= 0)
2192 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2193 GFP_NOFS);
2194 if (ret < 0) {
2195 kfree(failrec);
2196 return ret;
2197 }
2198 } else {
2199 failrec = (struct io_failure_record *)(unsigned long)private;
2200 pr_debug("bio_readpage_error: (found) logical=%llu, "
2201 "start=%llu, len=%llu, validation=%d\n",
2202 failrec->logical, failrec->start, failrec->len,
2203 failrec->in_validation);
2204 /*
2205 * when data can be on disk more than twice, add to failrec here
2206 * (e.g. with a list for failed_mirror) to make
2207 * clean_io_failure() clean all those errors at once.
2208 */
2209 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002210 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2211 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002212 if (num_copies == 1) {
2213 /*
2214 * we only have a single copy of the data, so don't bother with
2215 * all the retry and error correction code that follows. no
2216 * matter what the error is, it is very likely to persist.
2217 */
Miao Xie09a7f7a2013-07-25 19:22:32 +08002218 pr_debug("bio_readpage_error: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
2219 num_copies, failrec->this_mirror, failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002220 free_io_failure(inode, failrec, 0);
2221 return -EIO;
2222 }
2223
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002224 /*
2225 * there are two premises:
2226 * a) deliver good data to the caller
2227 * b) correct the bad sectors on disk
2228 */
2229 if (failed_bio->bi_vcnt > 1) {
2230 /*
2231 * to fulfill b), we need to know the exact failing sectors, as
2232 * we don't want to rewrite any more than the failed ones. thus,
2233 * we need separate read requests for the failed bio
2234 *
2235 * if the following BUG_ON triggers, our validation request got
2236 * merged. we need separate requests for our algorithm to work.
2237 */
2238 BUG_ON(failrec->in_validation);
2239 failrec->in_validation = 1;
2240 failrec->this_mirror = failed_mirror;
2241 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2242 } else {
2243 /*
2244 * we're ready to fulfill a) and b) alongside. get a good copy
2245 * of the failed sector and if we succeed, we have setup
2246 * everything for repair_io_failure to do the rest for us.
2247 */
2248 if (failrec->in_validation) {
2249 BUG_ON(failrec->this_mirror != failed_mirror);
2250 failrec->in_validation = 0;
2251 failrec->this_mirror = 0;
2252 }
2253 failrec->failed_mirror = failed_mirror;
2254 failrec->this_mirror++;
2255 if (failrec->this_mirror == failed_mirror)
2256 failrec->this_mirror++;
2257 read_mode = READ_SYNC;
2258 }
2259
Miao Xiefacc8a222013-07-25 19:22:34 +08002260 if (failrec->this_mirror > num_copies) {
2261 pr_debug("bio_readpage_error: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002262 num_copies, failrec->this_mirror, failed_mirror);
2263 free_io_failure(inode, failrec, 0);
2264 return -EIO;
2265 }
2266
Chris Mason9be33952013-05-17 18:30:14 -04002267 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002268 if (!bio) {
2269 free_io_failure(inode, failrec, 0);
2270 return -EIO;
2271 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002272 bio->bi_end_io = failed_bio->bi_end_io;
2273 bio->bi_sector = failrec->logical >> 9;
2274 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2275 bio->bi_size = 0;
2276
Miao Xiefacc8a222013-07-25 19:22:34 +08002277 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2278 if (btrfs_failed_bio->csum) {
2279 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2280 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2281
2282 btrfs_bio = btrfs_io_bio(bio);
2283 btrfs_bio->csum = btrfs_bio->csum_inline;
2284 phy_offset >>= inode->i_sb->s_blocksize_bits;
2285 phy_offset *= csum_size;
2286 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + phy_offset,
2287 csum_size);
2288 }
2289
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002290 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2291
2292 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2293 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2294 failrec->this_mirror, num_copies, failrec->in_validation);
2295
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002296 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2297 failrec->this_mirror,
2298 failrec->bio_flags, 0);
2299 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002300}
2301
Chris Masond1310b22008-01-24 16:13:08 -05002302/* lots and lots of room for performance fixes in the end_bio funcs */
2303
Jeff Mahoney87826df2012-02-15 16:23:57 +01002304int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2305{
2306 int uptodate = (err == 0);
2307 struct extent_io_tree *tree;
2308 int ret;
2309
2310 tree = &BTRFS_I(page->mapping->host)->io_tree;
2311
2312 if (tree->ops && tree->ops->writepage_end_io_hook) {
2313 ret = tree->ops->writepage_end_io_hook(page, start,
2314 end, NULL, uptodate);
2315 if (ret)
2316 uptodate = 0;
2317 }
2318
Jeff Mahoney87826df2012-02-15 16:23:57 +01002319 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002320 ClearPageUptodate(page);
2321 SetPageError(page);
2322 }
2323 return 0;
2324}
2325
Chris Masond1310b22008-01-24 16:13:08 -05002326/*
2327 * after a writepage IO is done, we need to:
2328 * clear the uptodate bits on error
2329 * clear the writeback bits in the extent tree for this IO
2330 * end_page_writeback if the page has no more pending IO
2331 *
2332 * Scheduling is not allowed, so the extent state tree is expected
2333 * to have one and only one object corresponding to this IO.
2334 */
Chris Masond1310b22008-01-24 16:13:08 -05002335static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002336{
Chris Masond1310b22008-01-24 16:13:08 -05002337 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04002338 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002339 u64 start;
2340 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05002341
Chris Masond1310b22008-01-24 16:13:08 -05002342 do {
2343 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002344 tree = &BTRFS_I(page->mapping->host)->io_tree;
2345
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002346 /* We always issue full-page reads, but if some block
2347 * in a page fails to read, blk_update_request() will
2348 * advance bv_offset and adjust bv_len to compensate.
2349 * Print a warning for nonzero offsets, and an error
2350 * if they don't add up to a full page. */
2351 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2352 printk("%s page write in btrfs with offset %u and length %u\n",
2353 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2354 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2355 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002356
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002357 start = page_offset(page);
2358 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002359
2360 if (--bvec >= bio->bi_io_vec)
2361 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002362
Jeff Mahoney87826df2012-02-15 16:23:57 +01002363 if (end_extent_writepage(page, err, start, end))
2364 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002365
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002366 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002367 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002368
Chris Masond1310b22008-01-24 16:13:08 -05002369 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002370}
2371
Miao Xie883d0de2013-07-25 19:22:35 +08002372static void
2373endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2374 int uptodate)
2375{
2376 struct extent_state *cached = NULL;
2377 u64 end = start + len - 1;
2378
2379 if (uptodate && tree->track_uptodate)
2380 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2381 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2382}
2383
Chris Masond1310b22008-01-24 16:13:08 -05002384/*
2385 * after a readpage IO is done, we need to:
2386 * clear the uptodate bits on error
2387 * set the uptodate bits if things worked
2388 * set the page up to date if all extents in the tree are uptodate
2389 * clear the lock bit in the extent tree
2390 * unlock the page if there are no other extents locked for it
2391 *
2392 * Scheduling is not allowed, so the extent state tree is expected
2393 * to have one and only one object corresponding to this IO.
2394 */
Chris Masond1310b22008-01-24 16:13:08 -05002395static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002396{
2397 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002398 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2399 struct bio_vec *bvec = bio->bi_io_vec;
Miao Xiefacc8a222013-07-25 19:22:34 +08002400 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002401 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002402 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002403 u64 start;
2404 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002405 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002406 u64 extent_start = 0;
2407 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002408 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002409 int ret;
2410
Chris Masond20f7042008-12-08 16:58:54 -05002411 if (err)
2412 uptodate = 0;
2413
Chris Masond1310b22008-01-24 16:13:08 -05002414 do {
2415 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002416 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002417
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002418 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Chris Mason9be33952013-05-17 18:30:14 -04002419 "mirror=%lu\n", (u64)bio->bi_sector, err,
2420 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002421 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002422
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002423 /* We always issue full-page reads, but if some block
2424 * in a page fails to read, blk_update_request() will
2425 * advance bv_offset and adjust bv_len to compensate.
2426 * Print a warning for nonzero offsets, and an error
2427 * if they don't add up to a full page. */
2428 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2429 printk("%s page read in btrfs with offset %u and length %u\n",
2430 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2431 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2432 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002433
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002434 start = page_offset(page);
2435 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002436 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002437
Chris Mason4125bf72010-02-03 18:18:45 +00002438 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002439 prefetchw(&bvec->bv_page->flags);
2440
Chris Mason9be33952013-05-17 18:30:14 -04002441 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002442 if (likely(uptodate && tree->ops &&
2443 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002444 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2445 page, start, end,
2446 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002447 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002448 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002449 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002450 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002451 }
Josef Bacikea466792012-03-26 21:57:36 -04002452
Miao Xief2a09da2013-07-25 19:22:33 +08002453 if (likely(uptodate))
2454 goto readpage_ok;
2455
2456 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002457 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002458 if (!ret && !err &&
2459 test_bit(BIO_UPTODATE, &bio->bi_flags))
2460 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002461 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002462 /*
2463 * The generic bio_readpage_error handles errors the
2464 * following way: If possible, new read requests are
2465 * created and submitted and will end up in
2466 * end_bio_extent_readpage as well (if we're lucky, not
2467 * in the !uptodate case). In that case it returns 0 and
2468 * we just go on with the next page in our bio. If it
2469 * can't handle the error it will return -EIO and we
2470 * remain responsible for that page.
2471 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002472 ret = bio_readpage_error(bio, offset, page, start, end,
2473 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002474 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002475 uptodate =
2476 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002477 if (err)
2478 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04002479 continue;
2480 }
2481 }
Miao Xief2a09da2013-07-25 19:22:33 +08002482readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002483 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002484 loff_t i_size = i_size_read(inode);
2485 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2486 unsigned offset;
2487
2488 /* Zero out the end if this page straddles i_size */
2489 offset = i_size & (PAGE_CACHE_SIZE-1);
2490 if (page->index == end_index && offset)
2491 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002492 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002493 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002494 ClearPageUptodate(page);
2495 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002496 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002497 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002498 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002499
2500 if (unlikely(!uptodate)) {
2501 if (extent_len) {
2502 endio_readpage_release_extent(tree,
2503 extent_start,
2504 extent_len, 1);
2505 extent_start = 0;
2506 extent_len = 0;
2507 }
2508 endio_readpage_release_extent(tree, start,
2509 end - start + 1, 0);
2510 } else if (!extent_len) {
2511 extent_start = start;
2512 extent_len = end + 1 - start;
2513 } else if (extent_start + extent_len == start) {
2514 extent_len += end + 1 - start;
2515 } else {
2516 endio_readpage_release_extent(tree, extent_start,
2517 extent_len, uptodate);
2518 extent_start = start;
2519 extent_len = end + 1 - start;
2520 }
Chris Mason4125bf72010-02-03 18:18:45 +00002521 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002522
Miao Xie883d0de2013-07-25 19:22:35 +08002523 if (extent_len)
2524 endio_readpage_release_extent(tree, extent_start, extent_len,
2525 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002526 if (io_bio->end_io)
2527 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002528 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002529}
2530
Chris Mason9be33952013-05-17 18:30:14 -04002531/*
2532 * this allocates from the btrfs_bioset. We're returning a bio right now
2533 * but you can call btrfs_io_bio for the appropriate container_of magic
2534 */
Miao Xie88f794e2010-11-22 03:02:55 +00002535struct bio *
2536btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2537 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002538{
Miao Xiefacc8a222013-07-25 19:22:34 +08002539 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002540 struct bio *bio;
2541
Chris Mason9be33952013-05-17 18:30:14 -04002542 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002543
2544 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002545 while (!bio && (nr_vecs /= 2)) {
2546 bio = bio_alloc_bioset(gfp_flags,
2547 nr_vecs, btrfs_bioset);
2548 }
Chris Masond1310b22008-01-24 16:13:08 -05002549 }
2550
2551 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002552 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002553 bio->bi_bdev = bdev;
2554 bio->bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002555 btrfs_bio = btrfs_io_bio(bio);
2556 btrfs_bio->csum = NULL;
2557 btrfs_bio->csum_allocated = NULL;
2558 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002559 }
2560 return bio;
2561}
2562
Chris Mason9be33952013-05-17 18:30:14 -04002563struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2564{
2565 return bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2566}
2567
2568
2569/* this also allocates from the btrfs_bioset */
2570struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2571{
Miao Xiefacc8a222013-07-25 19:22:34 +08002572 struct btrfs_io_bio *btrfs_bio;
2573 struct bio *bio;
2574
2575 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2576 if (bio) {
2577 btrfs_bio = btrfs_io_bio(bio);
2578 btrfs_bio->csum = NULL;
2579 btrfs_bio->csum_allocated = NULL;
2580 btrfs_bio->end_io = NULL;
2581 }
2582 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002583}
2584
2585
Jeff Mahoney355808c2011-10-03 23:23:14 -04002586static int __must_check submit_one_bio(int rw, struct bio *bio,
2587 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002588{
Chris Masond1310b22008-01-24 16:13:08 -05002589 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002590 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2591 struct page *page = bvec->bv_page;
2592 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002593 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002594
Miao Xie4eee4fa2012-12-21 09:17:45 +00002595 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002596
David Woodhouse902b22f2008-08-20 08:51:49 -04002597 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002598
2599 bio_get(bio);
2600
Chris Mason065631f2008-02-20 12:07:25 -05002601 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002602 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002603 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002604 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002605 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002606
Chris Masond1310b22008-01-24 16:13:08 -05002607 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2608 ret = -EOPNOTSUPP;
2609 bio_put(bio);
2610 return ret;
2611}
2612
David Woodhouse64a16702009-07-15 23:29:37 +01002613static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002614 unsigned long offset, size_t size, struct bio *bio,
2615 unsigned long bio_flags)
2616{
2617 int ret = 0;
2618 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002619 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002620 bio_flags);
2621 BUG_ON(ret < 0);
2622 return ret;
2623
2624}
2625
Chris Masond1310b22008-01-24 16:13:08 -05002626static int submit_extent_page(int rw, struct extent_io_tree *tree,
2627 struct page *page, sector_t sector,
2628 size_t size, unsigned long offset,
2629 struct block_device *bdev,
2630 struct bio **bio_ret,
2631 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002632 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002633 int mirror_num,
2634 unsigned long prev_bio_flags,
2635 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002636{
2637 int ret = 0;
2638 struct bio *bio;
2639 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002640 int contig = 0;
2641 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2642 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002643 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002644
2645 if (bio_ret && *bio_ret) {
2646 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002647 if (old_compressed)
2648 contig = bio->bi_sector == sector;
2649 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002650 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002651
2652 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002653 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002654 bio_add_page(bio, page, page_size, offset) < page_size) {
2655 ret = submit_one_bio(rw, bio, mirror_num,
2656 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002657 if (ret < 0)
2658 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002659 bio = NULL;
2660 } else {
2661 return 0;
2662 }
2663 }
Chris Masonc8b97812008-10-29 14:49:59 -04002664 if (this_compressed)
2665 nr = BIO_MAX_PAGES;
2666 else
2667 nr = bio_get_nr_vecs(bdev);
2668
Miao Xie88f794e2010-11-22 03:02:55 +00002669 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002670 if (!bio)
2671 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002672
Chris Masonc8b97812008-10-29 14:49:59 -04002673 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002674 bio->bi_end_io = end_io_func;
2675 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002676
Chris Masond3977122009-01-05 21:25:51 -05002677 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002678 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002679 else
Chris Masonc8b97812008-10-29 14:49:59 -04002680 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002681
2682 return ret;
2683}
2684
Eric Sandeen48a3b632013-04-25 20:41:01 +00002685static void attach_extent_buffer_page(struct extent_buffer *eb,
2686 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002687{
2688 if (!PagePrivate(page)) {
2689 SetPagePrivate(page);
2690 page_cache_get(page);
2691 set_page_private(page, (unsigned long)eb);
2692 } else {
2693 WARN_ON(page->private != (unsigned long)eb);
2694 }
2695}
2696
Chris Masond1310b22008-01-24 16:13:08 -05002697void set_page_extent_mapped(struct page *page)
2698{
2699 if (!PagePrivate(page)) {
2700 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002701 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002702 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002703 }
2704}
2705
Miao Xie125bac012013-07-25 19:22:37 +08002706static struct extent_map *
2707__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2708 u64 start, u64 len, get_extent_t *get_extent,
2709 struct extent_map **em_cached)
2710{
2711 struct extent_map *em;
2712
2713 if (em_cached && *em_cached) {
2714 em = *em_cached;
2715 if (em->in_tree && start >= em->start &&
2716 start < extent_map_end(em)) {
2717 atomic_inc(&em->refs);
2718 return em;
2719 }
2720
2721 free_extent_map(em);
2722 *em_cached = NULL;
2723 }
2724
2725 em = get_extent(inode, page, pg_offset, start, len, 0);
2726 if (em_cached && !IS_ERR_OR_NULL(em)) {
2727 BUG_ON(*em_cached);
2728 atomic_inc(&em->refs);
2729 *em_cached = em;
2730 }
2731 return em;
2732}
Chris Masond1310b22008-01-24 16:13:08 -05002733/*
2734 * basic readpage implementation. Locked extent state structs are inserted
2735 * into the tree that are removed when the IO is done (by the end_io
2736 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002737 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002738 */
Miao Xie99740902013-07-25 19:22:36 +08002739static int __do_readpage(struct extent_io_tree *tree,
2740 struct page *page,
2741 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002742 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002743 struct bio **bio, int mirror_num,
2744 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002745{
2746 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002747 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002748 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2749 u64 end;
2750 u64 cur = start;
2751 u64 extent_offset;
2752 u64 last_byte = i_size_read(inode);
2753 u64 block_start;
2754 u64 cur_end;
2755 sector_t sector;
2756 struct extent_map *em;
2757 struct block_device *bdev;
2758 int ret;
2759 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002760 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002761 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002762 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002763 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002764 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002765 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002766
2767 set_page_extent_mapped(page);
2768
Miao Xie99740902013-07-25 19:22:36 +08002769 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002770 if (!PageUptodate(page)) {
2771 if (cleancache_get_page(page) == 0) {
2772 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002773 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002774 goto out;
2775 }
2776 }
2777
Chris Masonc8b97812008-10-29 14:49:59 -04002778 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2779 char *userpage;
2780 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2781
2782 if (zero_offset) {
2783 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002784 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002785 memset(userpage + zero_offset, 0, iosize);
2786 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002787 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002788 }
2789 }
Chris Masond1310b22008-01-24 16:13:08 -05002790 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002791 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2792
Chris Masond1310b22008-01-24 16:13:08 -05002793 if (cur >= last_byte) {
2794 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002795 struct extent_state *cached = NULL;
2796
David Sterba306e16c2011-04-19 14:29:38 +02002797 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002798 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002799 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002800 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002801 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002802 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002803 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002804 if (!parent_locked)
2805 unlock_extent_cached(tree, cur,
2806 cur + iosize - 1,
2807 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002808 break;
2809 }
Miao Xie125bac012013-07-25 19:22:37 +08002810 em = __get_extent_map(inode, page, pg_offset, cur,
2811 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002812 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002813 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002814 if (!parent_locked)
2815 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002816 break;
2817 }
Chris Masond1310b22008-01-24 16:13:08 -05002818 extent_offset = cur - em->start;
2819 BUG_ON(extent_map_end(em) <= cur);
2820 BUG_ON(end < cur);
2821
Li Zefan261507a02010-12-17 14:21:50 +08002822 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002823 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002824 extent_set_compress_type(&this_bio_flag,
2825 em->compress_type);
2826 }
Chris Masonc8b97812008-10-29 14:49:59 -04002827
Chris Masond1310b22008-01-24 16:13:08 -05002828 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2829 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002830 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002831 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2832 disk_io_size = em->block_len;
2833 sector = em->block_start >> 9;
2834 } else {
2835 sector = (em->block_start + extent_offset) >> 9;
2836 disk_io_size = iosize;
2837 }
Chris Masond1310b22008-01-24 16:13:08 -05002838 bdev = em->bdev;
2839 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002840 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2841 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002842 free_extent_map(em);
2843 em = NULL;
2844
2845 /* we've found a hole, just zero and go on */
2846 if (block_start == EXTENT_MAP_HOLE) {
2847 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002848 struct extent_state *cached = NULL;
2849
Cong Wang7ac687d2011-11-25 23:14:28 +08002850 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002851 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002852 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002853 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002854
2855 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002856 &cached, GFP_NOFS);
2857 unlock_extent_cached(tree, cur, cur + iosize - 1,
2858 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002859 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002860 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002861 continue;
2862 }
2863 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002864 if (test_range_bit(tree, cur, cur_end,
2865 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002866 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002867 if (!parent_locked)
2868 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002869 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002870 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002871 continue;
2872 }
Chris Mason70dec802008-01-29 09:59:12 -05002873 /* we have an inline extent but it didn't get marked up
2874 * to date. Error out
2875 */
2876 if (block_start == EXTENT_MAP_INLINE) {
2877 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002878 if (!parent_locked)
2879 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002880 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002881 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002882 continue;
2883 }
Chris Masond1310b22008-01-24 16:13:08 -05002884
Josef Bacikc8f2f242013-02-11 11:33:00 -05002885 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002886 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002887 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002888 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002889 end_bio_extent_readpage, mirror_num,
2890 *bio_flags,
2891 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002892 if (!ret) {
2893 nr++;
2894 *bio_flags = this_bio_flag;
2895 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002896 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002897 if (!parent_locked)
2898 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04002899 }
Chris Masond1310b22008-01-24 16:13:08 -05002900 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002901 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002902 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002903out:
Chris Masond1310b22008-01-24 16:13:08 -05002904 if (!nr) {
2905 if (!PageError(page))
2906 SetPageUptodate(page);
2907 unlock_page(page);
2908 }
2909 return 0;
2910}
2911
Miao Xie99740902013-07-25 19:22:36 +08002912static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
2913 struct page *pages[], int nr_pages,
2914 u64 start, u64 end,
2915 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002916 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002917 struct bio **bio, int mirror_num,
2918 unsigned long *bio_flags, int rw)
2919{
2920 struct inode *inode;
2921 struct btrfs_ordered_extent *ordered;
2922 int index;
2923
2924 inode = pages[0]->mapping->host;
2925 while (1) {
2926 lock_extent(tree, start, end);
2927 ordered = btrfs_lookup_ordered_range(inode, start,
2928 end - start + 1);
2929 if (!ordered)
2930 break;
2931 unlock_extent(tree, start, end);
2932 btrfs_start_ordered_extent(inode, ordered, 1);
2933 btrfs_put_ordered_extent(ordered);
2934 }
2935
2936 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08002937 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
2938 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08002939 page_cache_release(pages[index]);
2940 }
2941}
2942
2943static void __extent_readpages(struct extent_io_tree *tree,
2944 struct page *pages[],
2945 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002946 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002947 struct bio **bio, int mirror_num,
2948 unsigned long *bio_flags, int rw)
2949{
Stefan Behrens35a36212013-08-14 18:12:25 +02002950 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08002951 u64 end = 0;
2952 u64 page_start;
2953 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02002954 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08002955
2956 for (index = 0; index < nr_pages; index++) {
2957 page_start = page_offset(pages[index]);
2958 if (!end) {
2959 start = page_start;
2960 end = start + PAGE_CACHE_SIZE - 1;
2961 first_index = index;
2962 } else if (end + 1 == page_start) {
2963 end += PAGE_CACHE_SIZE;
2964 } else {
2965 __do_contiguous_readpages(tree, &pages[first_index],
2966 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08002967 end, get_extent, em_cached,
2968 bio, mirror_num, bio_flags,
2969 rw);
Miao Xie99740902013-07-25 19:22:36 +08002970 start = page_start;
2971 end = start + PAGE_CACHE_SIZE - 1;
2972 first_index = index;
2973 }
2974 }
2975
2976 if (end)
2977 __do_contiguous_readpages(tree, &pages[first_index],
2978 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08002979 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08002980 mirror_num, bio_flags, rw);
2981}
2982
2983static int __extent_read_full_page(struct extent_io_tree *tree,
2984 struct page *page,
2985 get_extent_t *get_extent,
2986 struct bio **bio, int mirror_num,
2987 unsigned long *bio_flags, int rw)
2988{
2989 struct inode *inode = page->mapping->host;
2990 struct btrfs_ordered_extent *ordered;
2991 u64 start = page_offset(page);
2992 u64 end = start + PAGE_CACHE_SIZE - 1;
2993 int ret;
2994
2995 while (1) {
2996 lock_extent(tree, start, end);
2997 ordered = btrfs_lookup_ordered_extent(inode, start);
2998 if (!ordered)
2999 break;
3000 unlock_extent(tree, start, end);
3001 btrfs_start_ordered_extent(inode, ordered, 1);
3002 btrfs_put_ordered_extent(ordered);
3003 }
3004
Miao Xie125bac012013-07-25 19:22:37 +08003005 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3006 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003007 return ret;
3008}
3009
Chris Masond1310b22008-01-24 16:13:08 -05003010int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003011 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003012{
3013 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003014 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003015 int ret;
3016
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003017 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003018 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003019 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003020 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003021 return ret;
3022}
Chris Masond1310b22008-01-24 16:13:08 -05003023
Mark Fasheh4b384312013-08-06 11:42:50 -07003024int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3025 get_extent_t *get_extent, int mirror_num)
3026{
3027 struct bio *bio = NULL;
3028 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3029 int ret;
3030
3031 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3032 &bio_flags, READ);
3033 if (bio)
3034 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3035 return ret;
3036}
3037
Chris Mason11c83492009-04-20 15:50:09 -04003038static noinline void update_nr_written(struct page *page,
3039 struct writeback_control *wbc,
3040 unsigned long nr_written)
3041{
3042 wbc->nr_to_write -= nr_written;
3043 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3044 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3045 page->mapping->writeback_index = page->index + nr_written;
3046}
3047
Chris Masond1310b22008-01-24 16:13:08 -05003048/*
3049 * the writepage semantics are similar to regular writepage. extent
3050 * records are inserted to lock ranges in the tree, and as dirty areas
3051 * are found, they are marked writeback. Then the lock bits are removed
3052 * and the end_io handler clears the writeback ranges
3053 */
3054static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3055 void *data)
3056{
3057 struct inode *inode = page->mapping->host;
3058 struct extent_page_data *epd = data;
3059 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003060 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003061 u64 delalloc_start;
3062 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3063 u64 end;
3064 u64 cur = start;
3065 u64 extent_offset;
3066 u64 last_byte = i_size_read(inode);
3067 u64 block_start;
3068 u64 iosize;
3069 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003070 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003071 struct extent_map *em;
3072 struct block_device *bdev;
3073 int ret;
3074 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003075 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003076 size_t blocksize;
3077 loff_t i_size = i_size_read(inode);
3078 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3079 u64 nr_delalloc;
3080 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04003081 int page_started;
3082 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04003083 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05003084 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003085 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05003086
Chris Masonffbd5172009-04-20 15:50:09 -04003087 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01003088 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04003089 else
3090 write_flags = WRITE;
3091
liubo1abe9b82011-03-24 11:18:59 +00003092 trace___extent_writepage(page, inode, wbc);
3093
Chris Masond1310b22008-01-24 16:13:08 -05003094 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04003095
3096 ClearPageError(page);
3097
Chris Mason7f3c74f2008-07-18 12:01:11 -04003098 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04003099 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04003100 (page->index == end_index && !pg_offset)) {
Lukas Czernerd47992f2013-05-21 23:17:23 -04003101 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05003102 unlock_page(page);
3103 return 0;
3104 }
3105
3106 if (page->index == end_index) {
3107 char *userpage;
3108
Cong Wang7ac687d2011-11-25 23:14:28 +08003109 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04003110 memset(userpage + pg_offset, 0,
3111 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08003112 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04003113 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003114 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003115 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003116
3117 set_page_extent_mapped(page);
3118
Josef Bacik9e487102011-08-01 12:08:18 -04003119 if (!tree->ops || !tree->ops->fill_delalloc)
3120 fill_delalloc = false;
3121
Chris Masond1310b22008-01-24 16:13:08 -05003122 delalloc_start = start;
3123 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003124 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003125 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003126 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003127 /*
3128 * make sure the wbc mapping index is at least updated
3129 * to this page.
3130 */
3131 update_nr_written(page, wbc, 0);
3132
Chris Masond3977122009-01-05 21:25:51 -05003133 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05003134 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04003135 page,
3136 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05003137 &delalloc_end,
3138 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05003139 if (nr_delalloc == 0) {
3140 delalloc_start = delalloc_end + 1;
3141 continue;
3142 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09003143 ret = tree->ops->fill_delalloc(inode, page,
3144 delalloc_start,
3145 delalloc_end,
3146 &page_started,
3147 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003148 /* File system has been set read-only */
3149 if (ret) {
3150 SetPageError(page);
3151 goto done;
3152 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003153 /*
3154 * delalloc_end is already one less than the total
3155 * length, so we don't subtract one from
3156 * PAGE_CACHE_SIZE
3157 */
3158 delalloc_to_write += (delalloc_end - delalloc_start +
3159 PAGE_CACHE_SIZE) >>
3160 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003161 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05003162 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003163 if (wbc->nr_to_write < delalloc_to_write) {
3164 int thresh = 8192;
3165
3166 if (delalloc_to_write < thresh * 2)
3167 thresh = delalloc_to_write;
3168 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3169 thresh);
3170 }
Chris Masonc8b97812008-10-29 14:49:59 -04003171
Chris Mason771ed682008-11-06 22:02:51 -05003172 /* did the fill delalloc function already unlock and start
3173 * the IO?
3174 */
3175 if (page_started) {
3176 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003177 /*
3178 * we've unlocked the page, so we can't update
3179 * the mapping's writeback index, just update
3180 * nr_to_write.
3181 */
3182 wbc->nr_to_write -= nr_written;
3183 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05003184 }
Chris Masonc8b97812008-10-29 14:49:59 -04003185 }
Chris Mason247e7432008-07-17 12:53:51 -04003186 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003187 ret = tree->ops->writepage_start_hook(page, start,
3188 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003189 if (ret) {
3190 /* Fixup worker will requeue */
3191 if (ret == -EBUSY)
3192 wbc->pages_skipped++;
3193 else
3194 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04003195 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003196 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003197 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003198 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003199 }
3200 }
3201
Chris Mason11c83492009-04-20 15:50:09 -04003202 /*
3203 * we don't want to touch the inode after unlocking the page,
3204 * so we update the mapping writeback index now
3205 */
3206 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003207
Chris Masond1310b22008-01-24 16:13:08 -05003208 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003209 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003210 if (tree->ops && tree->ops->writepage_end_io_hook)
3211 tree->ops->writepage_end_io_hook(page, start,
3212 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003213 goto done;
3214 }
3215
Chris Masond1310b22008-01-24 16:13:08 -05003216 blocksize = inode->i_sb->s_blocksize;
3217
3218 while (cur <= end) {
3219 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003220 if (tree->ops && tree->ops->writepage_end_io_hook)
3221 tree->ops->writepage_end_io_hook(page, cur,
3222 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003223 break;
3224 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003225 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003226 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003227 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003228 SetPageError(page);
3229 break;
3230 }
3231
3232 extent_offset = cur - em->start;
3233 BUG_ON(extent_map_end(em) <= cur);
3234 BUG_ON(end < cur);
3235 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003236 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003237 sector = (em->block_start + extent_offset) >> 9;
3238 bdev = em->bdev;
3239 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003240 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003241 free_extent_map(em);
3242 em = NULL;
3243
Chris Masonc8b97812008-10-29 14:49:59 -04003244 /*
3245 * compressed and inline extents are written through other
3246 * paths in the FS
3247 */
3248 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003249 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003250 /*
3251 * end_io notification does not happen here for
3252 * compressed extents
3253 */
3254 if (!compressed && tree->ops &&
3255 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003256 tree->ops->writepage_end_io_hook(page, cur,
3257 cur + iosize - 1,
3258 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003259 else if (compressed) {
3260 /* we don't want to end_page_writeback on
3261 * a compressed extent. this happens
3262 * elsewhere
3263 */
3264 nr++;
3265 }
3266
3267 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003268 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003269 continue;
3270 }
Chris Masond1310b22008-01-24 16:13:08 -05003271 /* leave this out until we have a page_mkwrite call */
3272 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003273 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003274 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003275 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003276 continue;
3277 }
Chris Masonc8b97812008-10-29 14:49:59 -04003278
Chris Masond1310b22008-01-24 16:13:08 -05003279 if (tree->ops && tree->ops->writepage_io_hook) {
3280 ret = tree->ops->writepage_io_hook(page, cur,
3281 cur + iosize - 1);
3282 } else {
3283 ret = 0;
3284 }
Chris Mason1259ab72008-05-12 13:39:03 -04003285 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003286 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003287 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003288 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003289
Chris Masond1310b22008-01-24 16:13:08 -05003290 set_range_writeback(tree, cur, cur + iosize - 1);
3291 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05003292 printk(KERN_ERR "btrfs warning page %lu not "
3293 "writeback, cur %llu end %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003294 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003295 }
3296
Chris Masonffbd5172009-04-20 15:50:09 -04003297 ret = submit_extent_page(write_flags, tree, page,
3298 sector, iosize, pg_offset,
3299 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003300 end_bio_extent_writepage,
3301 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003302 if (ret)
3303 SetPageError(page);
3304 }
3305 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003306 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003307 nr++;
3308 }
3309done:
3310 if (nr == 0) {
3311 /* make sure the mapping tag for page dirty gets cleared */
3312 set_page_writeback(page);
3313 end_page_writeback(page);
3314 }
Chris Masond1310b22008-01-24 16:13:08 -05003315 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003316
Chris Mason11c83492009-04-20 15:50:09 -04003317done_unlocked:
3318
Chris Mason2c64c532009-09-02 15:04:12 -04003319 /* drop our reference on any cached states */
3320 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003321 return 0;
3322}
3323
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003324static int eb_wait(void *word)
3325{
3326 io_schedule();
3327 return 0;
3328}
3329
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003330void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003331{
3332 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3333 TASK_UNINTERRUPTIBLE);
3334}
3335
3336static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3337 struct btrfs_fs_info *fs_info,
3338 struct extent_page_data *epd)
3339{
3340 unsigned long i, num_pages;
3341 int flush = 0;
3342 int ret = 0;
3343
3344 if (!btrfs_try_tree_write_lock(eb)) {
3345 flush = 1;
3346 flush_write_bio(epd);
3347 btrfs_tree_lock(eb);
3348 }
3349
3350 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3351 btrfs_tree_unlock(eb);
3352 if (!epd->sync_io)
3353 return 0;
3354 if (!flush) {
3355 flush_write_bio(epd);
3356 flush = 1;
3357 }
Chris Masona098d8e2012-03-21 12:09:56 -04003358 while (1) {
3359 wait_on_extent_buffer_writeback(eb);
3360 btrfs_tree_lock(eb);
3361 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3362 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003363 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003364 }
3365 }
3366
Josef Bacik51561ff2012-07-20 16:25:24 -04003367 /*
3368 * We need to do this to prevent races in people who check if the eb is
3369 * under IO since we can end up having no IO bits set for a short period
3370 * of time.
3371 */
3372 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003373 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3374 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003375 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003376 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003377 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3378 -eb->len,
3379 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003380 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003381 } else {
3382 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003383 }
3384
3385 btrfs_tree_unlock(eb);
3386
3387 if (!ret)
3388 return ret;
3389
3390 num_pages = num_extent_pages(eb->start, eb->len);
3391 for (i = 0; i < num_pages; i++) {
3392 struct page *p = extent_buffer_page(eb, i);
3393
3394 if (!trylock_page(p)) {
3395 if (!flush) {
3396 flush_write_bio(epd);
3397 flush = 1;
3398 }
3399 lock_page(p);
3400 }
3401 }
3402
3403 return ret;
3404}
3405
3406static void end_extent_buffer_writeback(struct extent_buffer *eb)
3407{
3408 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3409 smp_mb__after_clear_bit();
3410 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3411}
3412
3413static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3414{
3415 int uptodate = err == 0;
3416 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3417 struct extent_buffer *eb;
3418 int done;
3419
3420 do {
3421 struct page *page = bvec->bv_page;
3422
3423 bvec--;
3424 eb = (struct extent_buffer *)page->private;
3425 BUG_ON(!eb);
3426 done = atomic_dec_and_test(&eb->io_pages);
3427
3428 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3429 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3430 ClearPageUptodate(page);
3431 SetPageError(page);
3432 }
3433
3434 end_page_writeback(page);
3435
3436 if (!done)
3437 continue;
3438
3439 end_extent_buffer_writeback(eb);
3440 } while (bvec >= bio->bi_io_vec);
3441
3442 bio_put(bio);
3443
3444}
3445
3446static int write_one_eb(struct extent_buffer *eb,
3447 struct btrfs_fs_info *fs_info,
3448 struct writeback_control *wbc,
3449 struct extent_page_data *epd)
3450{
3451 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3452 u64 offset = eb->start;
3453 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003454 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003455 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003456 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003457
3458 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3459 num_pages = num_extent_pages(eb->start, eb->len);
3460 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003461 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3462 bio_flags = EXTENT_BIO_TREE_LOG;
3463
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003464 for (i = 0; i < num_pages; i++) {
3465 struct page *p = extent_buffer_page(eb, i);
3466
3467 clear_page_dirty_for_io(p);
3468 set_page_writeback(p);
3469 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3470 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3471 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003472 0, epd->bio_flags, bio_flags);
3473 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003474 if (ret) {
3475 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3476 SetPageError(p);
3477 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3478 end_extent_buffer_writeback(eb);
3479 ret = -EIO;
3480 break;
3481 }
3482 offset += PAGE_CACHE_SIZE;
3483 update_nr_written(p, wbc, 1);
3484 unlock_page(p);
3485 }
3486
3487 if (unlikely(ret)) {
3488 for (; i < num_pages; i++) {
3489 struct page *p = extent_buffer_page(eb, i);
3490 unlock_page(p);
3491 }
3492 }
3493
3494 return ret;
3495}
3496
3497int btree_write_cache_pages(struct address_space *mapping,
3498 struct writeback_control *wbc)
3499{
3500 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3501 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3502 struct extent_buffer *eb, *prev_eb = NULL;
3503 struct extent_page_data epd = {
3504 .bio = NULL,
3505 .tree = tree,
3506 .extent_locked = 0,
3507 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003508 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003509 };
3510 int ret = 0;
3511 int done = 0;
3512 int nr_to_write_done = 0;
3513 struct pagevec pvec;
3514 int nr_pages;
3515 pgoff_t index;
3516 pgoff_t end; /* Inclusive */
3517 int scanned = 0;
3518 int tag;
3519
3520 pagevec_init(&pvec, 0);
3521 if (wbc->range_cyclic) {
3522 index = mapping->writeback_index; /* Start from prev offset */
3523 end = -1;
3524 } else {
3525 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3526 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3527 scanned = 1;
3528 }
3529 if (wbc->sync_mode == WB_SYNC_ALL)
3530 tag = PAGECACHE_TAG_TOWRITE;
3531 else
3532 tag = PAGECACHE_TAG_DIRTY;
3533retry:
3534 if (wbc->sync_mode == WB_SYNC_ALL)
3535 tag_pages_for_writeback(mapping, index, end);
3536 while (!done && !nr_to_write_done && (index <= end) &&
3537 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3538 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3539 unsigned i;
3540
3541 scanned = 1;
3542 for (i = 0; i < nr_pages; i++) {
3543 struct page *page = pvec.pages[i];
3544
3545 if (!PagePrivate(page))
3546 continue;
3547
3548 if (!wbc->range_cyclic && page->index > end) {
3549 done = 1;
3550 break;
3551 }
3552
Josef Bacikb5bae262012-09-14 13:43:01 -04003553 spin_lock(&mapping->private_lock);
3554 if (!PagePrivate(page)) {
3555 spin_unlock(&mapping->private_lock);
3556 continue;
3557 }
3558
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003559 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003560
3561 /*
3562 * Shouldn't happen and normally this would be a BUG_ON
3563 * but no sense in crashing the users box for something
3564 * we can survive anyway.
3565 */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003566 if (!eb) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003567 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003568 WARN_ON(1);
3569 continue;
3570 }
3571
Josef Bacikb5bae262012-09-14 13:43:01 -04003572 if (eb == prev_eb) {
3573 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003574 continue;
3575 }
3576
Josef Bacikb5bae262012-09-14 13:43:01 -04003577 ret = atomic_inc_not_zero(&eb->refs);
3578 spin_unlock(&mapping->private_lock);
3579 if (!ret)
3580 continue;
3581
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003582 prev_eb = eb;
3583 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3584 if (!ret) {
3585 free_extent_buffer(eb);
3586 continue;
3587 }
3588
3589 ret = write_one_eb(eb, fs_info, wbc, &epd);
3590 if (ret) {
3591 done = 1;
3592 free_extent_buffer(eb);
3593 break;
3594 }
3595 free_extent_buffer(eb);
3596
3597 /*
3598 * the filesystem may choose to bump up nr_to_write.
3599 * We have to make sure to honor the new nr_to_write
3600 * at any time
3601 */
3602 nr_to_write_done = wbc->nr_to_write <= 0;
3603 }
3604 pagevec_release(&pvec);
3605 cond_resched();
3606 }
3607 if (!scanned && !done) {
3608 /*
3609 * We hit the last page and there is more work to be done: wrap
3610 * back to the start of the file
3611 */
3612 scanned = 1;
3613 index = 0;
3614 goto retry;
3615 }
3616 flush_write_bio(&epd);
3617 return ret;
3618}
3619
Chris Masond1310b22008-01-24 16:13:08 -05003620/**
Chris Mason4bef0842008-09-08 11:18:08 -04003621 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
Chris Masond1310b22008-01-24 16:13:08 -05003622 * @mapping: address space structure to write
3623 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3624 * @writepage: function called for each page
3625 * @data: data passed to writepage function
3626 *
3627 * If a page is already under I/O, write_cache_pages() skips it, even
3628 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3629 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3630 * and msync() need to guarantee that all the data which was dirty at the time
3631 * the call was made get new I/O started against them. If wbc->sync_mode is
3632 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3633 * existing IO to complete.
3634 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003635static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003636 struct address_space *mapping,
3637 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003638 writepage_t writepage, void *data,
3639 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003640{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003641 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003642 int ret = 0;
3643 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003644 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003645 struct pagevec pvec;
3646 int nr_pages;
3647 pgoff_t index;
3648 pgoff_t end; /* Inclusive */
3649 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003650 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003651
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003652 /*
3653 * We have to hold onto the inode so that ordered extents can do their
3654 * work when the IO finishes. The alternative to this is failing to add
3655 * an ordered extent if the igrab() fails there and that is a huge pain
3656 * to deal with, so instead just hold onto the inode throughout the
3657 * writepages operation. If it fails here we are freeing up the inode
3658 * anyway and we'd rather not waste our time writing out stuff that is
3659 * going to be truncated anyway.
3660 */
3661 if (!igrab(inode))
3662 return 0;
3663
Chris Masond1310b22008-01-24 16:13:08 -05003664 pagevec_init(&pvec, 0);
3665 if (wbc->range_cyclic) {
3666 index = mapping->writeback_index; /* Start from prev offset */
3667 end = -1;
3668 } else {
3669 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3670 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003671 scanned = 1;
3672 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003673 if (wbc->sync_mode == WB_SYNC_ALL)
3674 tag = PAGECACHE_TAG_TOWRITE;
3675 else
3676 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003677retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003678 if (wbc->sync_mode == WB_SYNC_ALL)
3679 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003680 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003681 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3682 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003683 unsigned i;
3684
3685 scanned = 1;
3686 for (i = 0; i < nr_pages; i++) {
3687 struct page *page = pvec.pages[i];
3688
3689 /*
3690 * At this point we hold neither mapping->tree_lock nor
3691 * lock on the page itself: the page may be truncated or
3692 * invalidated (changing page->mapping to NULL), or even
3693 * swizzled back from swapper_space to tmpfs file
3694 * mapping
3695 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003696 if (!trylock_page(page)) {
3697 flush_fn(data);
3698 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003699 }
Chris Masond1310b22008-01-24 16:13:08 -05003700
3701 if (unlikely(page->mapping != mapping)) {
3702 unlock_page(page);
3703 continue;
3704 }
3705
3706 if (!wbc->range_cyclic && page->index > end) {
3707 done = 1;
3708 unlock_page(page);
3709 continue;
3710 }
3711
Chris Masond2c3f4f2008-11-19 12:44:22 -05003712 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003713 if (PageWriteback(page))
3714 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003715 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003716 }
Chris Masond1310b22008-01-24 16:13:08 -05003717
3718 if (PageWriteback(page) ||
3719 !clear_page_dirty_for_io(page)) {
3720 unlock_page(page);
3721 continue;
3722 }
3723
3724 ret = (*writepage)(page, wbc, data);
3725
3726 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3727 unlock_page(page);
3728 ret = 0;
3729 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003730 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003731 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003732
3733 /*
3734 * the filesystem may choose to bump up nr_to_write.
3735 * We have to make sure to honor the new nr_to_write
3736 * at any time
3737 */
3738 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003739 }
3740 pagevec_release(&pvec);
3741 cond_resched();
3742 }
3743 if (!scanned && !done) {
3744 /*
3745 * We hit the last page and there is more work to be done: wrap
3746 * back to the start of the file
3747 */
3748 scanned = 1;
3749 index = 0;
3750 goto retry;
3751 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003752 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003753 return ret;
3754}
Chris Masond1310b22008-01-24 16:13:08 -05003755
Chris Masonffbd5172009-04-20 15:50:09 -04003756static void flush_epd_write_bio(struct extent_page_data *epd)
3757{
3758 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003759 int rw = WRITE;
3760 int ret;
3761
Chris Masonffbd5172009-04-20 15:50:09 -04003762 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003763 rw = WRITE_SYNC;
3764
Josef Bacikde0022b2012-09-25 14:25:58 -04003765 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003766 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003767 epd->bio = NULL;
3768 }
3769}
3770
Chris Masond2c3f4f2008-11-19 12:44:22 -05003771static noinline void flush_write_bio(void *data)
3772{
3773 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003774 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003775}
3776
Chris Masond1310b22008-01-24 16:13:08 -05003777int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3778 get_extent_t *get_extent,
3779 struct writeback_control *wbc)
3780{
3781 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003782 struct extent_page_data epd = {
3783 .bio = NULL,
3784 .tree = tree,
3785 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003786 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003787 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003788 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003789 };
Chris Masond1310b22008-01-24 16:13:08 -05003790
Chris Masond1310b22008-01-24 16:13:08 -05003791 ret = __extent_writepage(page, wbc, &epd);
3792
Chris Masonffbd5172009-04-20 15:50:09 -04003793 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003794 return ret;
3795}
Chris Masond1310b22008-01-24 16:13:08 -05003796
Chris Mason771ed682008-11-06 22:02:51 -05003797int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3798 u64 start, u64 end, get_extent_t *get_extent,
3799 int mode)
3800{
3801 int ret = 0;
3802 struct address_space *mapping = inode->i_mapping;
3803 struct page *page;
3804 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3805 PAGE_CACHE_SHIFT;
3806
3807 struct extent_page_data epd = {
3808 .bio = NULL,
3809 .tree = tree,
3810 .get_extent = get_extent,
3811 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003812 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003813 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003814 };
3815 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003816 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003817 .nr_to_write = nr_pages * 2,
3818 .range_start = start,
3819 .range_end = end + 1,
3820 };
3821
Chris Masond3977122009-01-05 21:25:51 -05003822 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003823 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3824 if (clear_page_dirty_for_io(page))
3825 ret = __extent_writepage(page, &wbc_writepages, &epd);
3826 else {
3827 if (tree->ops && tree->ops->writepage_end_io_hook)
3828 tree->ops->writepage_end_io_hook(page, start,
3829 start + PAGE_CACHE_SIZE - 1,
3830 NULL, 1);
3831 unlock_page(page);
3832 }
3833 page_cache_release(page);
3834 start += PAGE_CACHE_SIZE;
3835 }
3836
Chris Masonffbd5172009-04-20 15:50:09 -04003837 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003838 return ret;
3839}
Chris Masond1310b22008-01-24 16:13:08 -05003840
3841int extent_writepages(struct extent_io_tree *tree,
3842 struct address_space *mapping,
3843 get_extent_t *get_extent,
3844 struct writeback_control *wbc)
3845{
3846 int ret = 0;
3847 struct extent_page_data epd = {
3848 .bio = NULL,
3849 .tree = tree,
3850 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003851 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003852 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003853 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003854 };
3855
Chris Mason4bef0842008-09-08 11:18:08 -04003856 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003857 __extent_writepage, &epd,
3858 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003859 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003860 return ret;
3861}
Chris Masond1310b22008-01-24 16:13:08 -05003862
3863int extent_readpages(struct extent_io_tree *tree,
3864 struct address_space *mapping,
3865 struct list_head *pages, unsigned nr_pages,
3866 get_extent_t get_extent)
3867{
3868 struct bio *bio = NULL;
3869 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003870 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003871 struct page *pagepool[16];
3872 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08003873 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06003874 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003875
Chris Masond1310b22008-01-24 16:13:08 -05003876 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003877 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003878
3879 prefetchw(&page->flags);
3880 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003881 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003882 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003883 page_cache_release(page);
3884 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003885 }
Liu Bo67c96842012-07-20 21:43:09 -06003886
3887 pagepool[nr++] = page;
3888 if (nr < ARRAY_SIZE(pagepool))
3889 continue;
Miao Xie125bac012013-07-25 19:22:37 +08003890 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003891 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003892 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003893 }
Miao Xie99740902013-07-25 19:22:36 +08003894 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08003895 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003896 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003897
Miao Xie125bac012013-07-25 19:22:37 +08003898 if (em_cached)
3899 free_extent_map(em_cached);
3900
Chris Masond1310b22008-01-24 16:13:08 -05003901 BUG_ON(!list_empty(pages));
3902 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003903 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003904 return 0;
3905}
Chris Masond1310b22008-01-24 16:13:08 -05003906
3907/*
3908 * basic invalidatepage code, this waits on any locked or writeback
3909 * ranges corresponding to the page, and then deletes any extent state
3910 * records from the tree
3911 */
3912int extent_invalidatepage(struct extent_io_tree *tree,
3913 struct page *page, unsigned long offset)
3914{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003915 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003916 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003917 u64 end = start + PAGE_CACHE_SIZE - 1;
3918 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3919
Qu Wenruofda28322013-02-26 08:10:22 +00003920 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003921 if (start > end)
3922 return 0;
3923
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003924 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003925 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003926 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003927 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3928 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003929 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003930 return 0;
3931}
Chris Masond1310b22008-01-24 16:13:08 -05003932
3933/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003934 * a helper for releasepage, this tests for areas of the page that
3935 * are locked or under IO and drops the related state bits if it is safe
3936 * to drop the page.
3937 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003938static int try_release_extent_state(struct extent_map_tree *map,
3939 struct extent_io_tree *tree,
3940 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04003941{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003942 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003943 u64 end = start + PAGE_CACHE_SIZE - 1;
3944 int ret = 1;
3945
Chris Mason211f90e2008-07-18 11:56:15 -04003946 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003947 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003948 ret = 0;
3949 else {
3950 if ((mask & GFP_NOFS) == GFP_NOFS)
3951 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003952 /*
3953 * at this point we can safely clear everything except the
3954 * locked bit and the nodatasum bit
3955 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003956 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003957 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3958 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003959
3960 /* if clear_extent_bit failed for enomem reasons,
3961 * we can't allow the release to continue.
3962 */
3963 if (ret < 0)
3964 ret = 0;
3965 else
3966 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003967 }
3968 return ret;
3969}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003970
3971/*
Chris Masond1310b22008-01-24 16:13:08 -05003972 * a helper for releasepage. As long as there are no locked extents
3973 * in the range corresponding to the page, both state records and extent
3974 * map records are removed
3975 */
3976int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003977 struct extent_io_tree *tree, struct page *page,
3978 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003979{
3980 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003981 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003982 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003983
Chris Mason70dec802008-01-29 09:59:12 -05003984 if ((mask & __GFP_WAIT) &&
3985 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003986 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003987 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003988 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003989 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05003990 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09003991 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04003992 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003993 break;
3994 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003995 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
3996 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04003997 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003998 free_extent_map(em);
3999 break;
4000 }
4001 if (!test_range_bit(tree, em->start,
4002 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004003 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004004 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004005 remove_extent_mapping(map, em);
4006 /* once for the rb tree */
4007 free_extent_map(em);
4008 }
4009 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004010 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004011
4012 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004013 free_extent_map(em);
4014 }
Chris Masond1310b22008-01-24 16:13:08 -05004015 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004016 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004017}
Chris Masond1310b22008-01-24 16:13:08 -05004018
Chris Masonec29ed52011-02-23 16:23:20 -05004019/*
4020 * helper function for fiemap, which doesn't want to see any holes.
4021 * This maps until we find something past 'last'
4022 */
4023static struct extent_map *get_extent_skip_holes(struct inode *inode,
4024 u64 offset,
4025 u64 last,
4026 get_extent_t *get_extent)
4027{
4028 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4029 struct extent_map *em;
4030 u64 len;
4031
4032 if (offset >= last)
4033 return NULL;
4034
4035 while(1) {
4036 len = last - offset;
4037 if (len == 0)
4038 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004039 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004040 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004041 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004042 return em;
4043
4044 /* if this isn't a hole return it */
4045 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4046 em->block_start != EXTENT_MAP_HOLE) {
4047 return em;
4048 }
4049
4050 /* this is a hole, advance to the next extent */
4051 offset = extent_map_end(em);
4052 free_extent_map(em);
4053 if (offset >= last)
4054 break;
4055 }
4056 return NULL;
4057}
4058
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004059int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4060 __u64 start, __u64 len, get_extent_t *get_extent)
4061{
Josef Bacik975f84f2010-11-23 19:36:57 +00004062 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004063 u64 off = start;
4064 u64 max = start + len;
4065 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004066 u32 found_type;
4067 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004068 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004069 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004070 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004071 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004072 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004073 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004074 struct btrfs_path *path;
4075 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004076 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004077 u64 em_start = 0;
4078 u64 em_len = 0;
4079 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004080 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004081
4082 if (len == 0)
4083 return -EINVAL;
4084
Josef Bacik975f84f2010-11-23 19:36:57 +00004085 path = btrfs_alloc_path();
4086 if (!path)
4087 return -ENOMEM;
4088 path->leave_spinning = 1;
4089
Josef Bacik4d479cf2011-11-17 11:34:31 -05004090 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
4091 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
4092
Chris Masonec29ed52011-02-23 16:23:20 -05004093 /*
4094 * lookup the last file extent. We're not using i_size here
4095 * because there might be preallocation past i_size
4096 */
Josef Bacik975f84f2010-11-23 19:36:57 +00004097 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08004098 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004099 if (ret < 0) {
4100 btrfs_free_path(path);
4101 return ret;
4102 }
4103 WARN_ON(!ret);
4104 path->slots[0]--;
4105 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4106 struct btrfs_file_extent_item);
4107 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
4108 found_type = btrfs_key_type(&found_key);
4109
Chris Masonec29ed52011-02-23 16:23:20 -05004110 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004111 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004112 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004113 /* have to trust i_size as the end */
4114 last = (u64)-1;
4115 last_for_get_extent = isize;
4116 } else {
4117 /*
4118 * remember the start of the last extent. There are a
4119 * bunch of different factors that go into the length of the
4120 * extent, so its much less complex to remember where it started
4121 */
4122 last = found_key.offset;
4123 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004124 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004125 btrfs_free_path(path);
4126
Chris Masonec29ed52011-02-23 16:23:20 -05004127 /*
4128 * we might have some extents allocated but more delalloc past those
4129 * extents. so, we trust isize unless the start of the last extent is
4130 * beyond isize
4131 */
4132 if (last < isize) {
4133 last = (u64)-1;
4134 last_for_get_extent = isize;
4135 }
4136
Liu Boa52f4cd2013-05-01 16:23:41 +00004137 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004138 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004139
Josef Bacik4d479cf2011-11-17 11:34:31 -05004140 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004141 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004142 if (!em)
4143 goto out;
4144 if (IS_ERR(em)) {
4145 ret = PTR_ERR(em);
4146 goto out;
4147 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004148
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004149 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004150 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004151
Chris Masonea8efc72011-03-08 11:54:40 -05004152 /* break if the extent we found is outside the range */
4153 if (em->start >= max || extent_map_end(em) < off)
4154 break;
4155
4156 /*
4157 * get_extent may return an extent that starts before our
4158 * requested range. We have to make sure the ranges
4159 * we return to fiemap always move forward and don't
4160 * overlap, so adjust the offsets here
4161 */
4162 em_start = max(em->start, off);
4163
4164 /*
4165 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004166 * for adjusting the disk offset below. Only do this if the
4167 * extent isn't compressed since our in ram offset may be past
4168 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004169 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004170 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4171 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004172 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004173 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05004174 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004175 disko = 0;
4176 flags = 0;
4177
Chris Masonea8efc72011-03-08 11:54:40 -05004178 /*
4179 * bump off for our next call to get_extent
4180 */
4181 off = extent_map_end(em);
4182 if (off >= max)
4183 end = 1;
4184
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004185 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004186 end = 1;
4187 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004188 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004189 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4190 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004191 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004192 flags |= (FIEMAP_EXTENT_DELALLOC |
4193 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004194 } else {
Chris Masonea8efc72011-03-08 11:54:40 -05004195 disko = em->block_start + offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004196 }
4197 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4198 flags |= FIEMAP_EXTENT_ENCODED;
4199
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004200 free_extent_map(em);
4201 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004202 if ((em_start >= last) || em_len == (u64)-1 ||
4203 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004204 flags |= FIEMAP_EXTENT_LAST;
4205 end = 1;
4206 }
4207
Chris Masonec29ed52011-02-23 16:23:20 -05004208 /* now scan forward to see if this is really the last extent. */
4209 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4210 get_extent);
4211 if (IS_ERR(em)) {
4212 ret = PTR_ERR(em);
4213 goto out;
4214 }
4215 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004216 flags |= FIEMAP_EXTENT_LAST;
4217 end = 1;
4218 }
Chris Masonec29ed52011-02-23 16:23:20 -05004219 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4220 em_len, flags);
4221 if (ret)
4222 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004223 }
4224out_free:
4225 free_extent_map(em);
4226out:
Liu Boa52f4cd2013-05-01 16:23:41 +00004227 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004228 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004229 return ret;
4230}
4231
Chris Mason727011e2010-08-06 13:21:20 -04004232static void __free_extent_buffer(struct extent_buffer *eb)
4233{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004234 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004235 kmem_cache_free(extent_buffer_cache, eb);
4236}
4237
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004238static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004239{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004240 return (atomic_read(&eb->io_pages) ||
4241 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4242 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004243}
4244
Miao Xie897ca6e92010-10-26 20:57:29 -04004245/*
4246 * Helper for releasing extent buffer page.
4247 */
4248static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4249 unsigned long start_idx)
4250{
4251 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004252 unsigned long num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004253 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004254 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004255
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004256 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004257
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004258 num_pages = num_extent_pages(eb->start, eb->len);
4259 index = start_idx + num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004260 if (start_idx >= index)
4261 return;
4262
4263 do {
4264 index--;
4265 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004266 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004267 spin_lock(&page->mapping->private_lock);
4268 /*
4269 * We do this since we'll remove the pages after we've
4270 * removed the eb from the radix tree, so we could race
4271 * and have this page now attached to the new eb. So
4272 * only clear page_private if it's still connected to
4273 * this eb.
4274 */
4275 if (PagePrivate(page) &&
4276 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004277 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004278 BUG_ON(PageDirty(page));
4279 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004280 /*
4281 * We need to make sure we haven't be attached
4282 * to a new eb.
4283 */
4284 ClearPagePrivate(page);
4285 set_page_private(page, 0);
4286 /* One for the page private */
4287 page_cache_release(page);
4288 }
4289 spin_unlock(&page->mapping->private_lock);
4290
Jan Schmidt815a51c2012-05-16 17:00:02 +02004291 }
4292 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004293 /* One for when we alloced the page */
Miao Xie897ca6e92010-10-26 20:57:29 -04004294 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004295 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004296 } while (index != start_idx);
4297}
4298
4299/*
4300 * Helper for releasing the extent buffer.
4301 */
4302static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4303{
4304 btrfs_release_extent_buffer_page(eb, 0);
4305 __free_extent_buffer(eb);
4306}
4307
Josef Bacikdb7f3432013-08-07 14:54:37 -04004308static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
4309 u64 start,
4310 unsigned long len,
4311 gfp_t mask)
4312{
4313 struct extent_buffer *eb = NULL;
4314
4315 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
4316 if (eb == NULL)
4317 return NULL;
4318 eb->start = start;
4319 eb->len = len;
4320 eb->tree = tree;
4321 eb->bflags = 0;
4322 rwlock_init(&eb->lock);
4323 atomic_set(&eb->write_locks, 0);
4324 atomic_set(&eb->read_locks, 0);
4325 atomic_set(&eb->blocking_readers, 0);
4326 atomic_set(&eb->blocking_writers, 0);
4327 atomic_set(&eb->spinning_readers, 0);
4328 atomic_set(&eb->spinning_writers, 0);
4329 eb->lock_nested = 0;
4330 init_waitqueue_head(&eb->write_lock_wq);
4331 init_waitqueue_head(&eb->read_lock_wq);
4332
4333 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4334
4335 spin_lock_init(&eb->refs_lock);
4336 atomic_set(&eb->refs, 1);
4337 atomic_set(&eb->io_pages, 0);
4338
4339 /*
4340 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4341 */
4342 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4343 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4344 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4345
4346 return eb;
4347}
4348
4349struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4350{
4351 unsigned long i;
4352 struct page *p;
4353 struct extent_buffer *new;
4354 unsigned long num_pages = num_extent_pages(src->start, src->len);
4355
Josef Bacik9ec72672013-08-07 16:57:23 -04004356 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004357 if (new == NULL)
4358 return NULL;
4359
4360 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004361 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004362 if (!p) {
4363 btrfs_release_extent_buffer(new);
4364 return NULL;
4365 }
4366 attach_extent_buffer_page(new, p);
4367 WARN_ON(PageDirty(p));
4368 SetPageUptodate(p);
4369 new->pages[i] = p;
4370 }
4371
4372 copy_extent_buffer(new, src, 0, 0, src->len);
4373 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4374 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4375
4376 return new;
4377}
4378
4379struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4380{
4381 struct extent_buffer *eb;
4382 unsigned long num_pages = num_extent_pages(0, len);
4383 unsigned long i;
4384
Josef Bacik9ec72672013-08-07 16:57:23 -04004385 eb = __alloc_extent_buffer(NULL, start, len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004386 if (!eb)
4387 return NULL;
4388
4389 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004390 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004391 if (!eb->pages[i])
4392 goto err;
4393 }
4394 set_extent_buffer_uptodate(eb);
4395 btrfs_set_header_nritems(eb, 0);
4396 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4397
4398 return eb;
4399err:
4400 for (; i > 0; i--)
4401 __free_page(eb->pages[i - 1]);
4402 __free_extent_buffer(eb);
4403 return NULL;
4404}
4405
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004406static void check_buffer_tree_ref(struct extent_buffer *eb)
4407{
Chris Mason242e18c2013-01-29 17:49:37 -05004408 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004409 /* the ref bit is tricky. We have to make sure it is set
4410 * if we have the buffer dirty. Otherwise the
4411 * code to free a buffer can end up dropping a dirty
4412 * page
4413 *
4414 * Once the ref bit is set, it won't go away while the
4415 * buffer is dirty or in writeback, and it also won't
4416 * go away while we have the reference count on the
4417 * eb bumped.
4418 *
4419 * We can't just set the ref bit without bumping the
4420 * ref on the eb because free_extent_buffer might
4421 * see the ref bit and try to clear it. If this happens
4422 * free_extent_buffer might end up dropping our original
4423 * ref by mistake and freeing the page before we are able
4424 * to add one more ref.
4425 *
4426 * So bump the ref count first, then set the bit. If someone
4427 * beat us to it, drop the ref we added.
4428 */
Chris Mason242e18c2013-01-29 17:49:37 -05004429 refs = atomic_read(&eb->refs);
4430 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4431 return;
4432
Josef Bacik594831c2012-07-20 16:11:08 -04004433 spin_lock(&eb->refs_lock);
4434 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004435 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004436 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004437}
4438
Josef Bacik5df42352012-03-15 18:24:42 -04004439static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4440{
4441 unsigned long num_pages, i;
4442
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004443 check_buffer_tree_ref(eb);
4444
Josef Bacik5df42352012-03-15 18:24:42 -04004445 num_pages = num_extent_pages(eb->start, eb->len);
4446 for (i = 0; i < num_pages; i++) {
4447 struct page *p = extent_buffer_page(eb, i);
4448 mark_page_accessed(p);
4449 }
4450}
4451
Chris Masond1310b22008-01-24 16:13:08 -05004452struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004453 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004454{
4455 unsigned long num_pages = num_extent_pages(start, len);
4456 unsigned long i;
4457 unsigned long index = start >> PAGE_CACHE_SHIFT;
4458 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004459 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004460 struct page *p;
4461 struct address_space *mapping = tree->mapping;
4462 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004463 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004464
Miao Xie19fe0a82010-10-26 20:57:29 -04004465 rcu_read_lock();
4466 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4467 if (eb && atomic_inc_not_zero(&eb->refs)) {
4468 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004469 mark_extent_buffer_accessed(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004470 return eb;
4471 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004472 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04004473
David Sterbaba144192011-04-21 01:12:06 +02004474 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004475 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004476 return NULL;
4477
Chris Mason727011e2010-08-06 13:21:20 -04004478 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004479 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004480 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004481 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004482
4483 spin_lock(&mapping->private_lock);
4484 if (PagePrivate(p)) {
4485 /*
4486 * We could have already allocated an eb for this page
4487 * and attached one so lets see if we can get a ref on
4488 * the existing eb, and if we can we know it's good and
4489 * we can just return that one, else we know we can just
4490 * overwrite page->private.
4491 */
4492 exists = (struct extent_buffer *)p->private;
4493 if (atomic_inc_not_zero(&exists->refs)) {
4494 spin_unlock(&mapping->private_lock);
4495 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004496 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004497 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004498 goto free_eb;
4499 }
4500
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004501 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004502 * Do this so attach doesn't complain and we need to
4503 * drop the ref the old guy had.
4504 */
4505 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004506 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004507 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004508 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004509 attach_extent_buffer_page(eb, p);
4510 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004511 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004512 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004513 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004514 if (!PageUptodate(p))
4515 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004516
4517 /*
4518 * see below about how we avoid a nasty race with release page
4519 * and why we unlock later
4520 */
Chris Masond1310b22008-01-24 16:13:08 -05004521 }
4522 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004523 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004524again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004525 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4526 if (ret)
4527 goto free_eb;
4528
Chris Mason6af118ce2008-07-22 11:18:07 -04004529 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004530 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4531 if (ret == -EEXIST) {
4532 exists = radix_tree_lookup(&tree->buffer,
4533 start >> PAGE_CACHE_SHIFT);
Josef Bacik115391d2012-03-09 09:51:43 -05004534 if (!atomic_inc_not_zero(&exists->refs)) {
4535 spin_unlock(&tree->buffer_lock);
4536 radix_tree_preload_end();
Josef Bacik115391d2012-03-09 09:51:43 -05004537 exists = NULL;
4538 goto again;
4539 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004540 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004541 radix_tree_preload_end();
Josef Bacik5df42352012-03-15 18:24:42 -04004542 mark_extent_buffer_accessed(exists);
Chris Mason6af118ce2008-07-22 11:18:07 -04004543 goto free_eb;
4544 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004545 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004546 check_buffer_tree_ref(eb);
Yan, Zhengf044ba72010-02-04 08:46:56 +00004547 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004548 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05004549
4550 /*
4551 * there is a race where release page may have
4552 * tried to find this extent buffer in the radix
4553 * but failed. It will tell the VM it is safe to
4554 * reclaim the, and it will clear the page private bit.
4555 * We must make sure to set the page private bit properly
4556 * after the extent buffer is in the radix tree so
4557 * it doesn't get lost
4558 */
Chris Mason727011e2010-08-06 13:21:20 -04004559 SetPageChecked(eb->pages[0]);
4560 for (i = 1; i < num_pages; i++) {
4561 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004562 ClearPageChecked(p);
4563 unlock_page(p);
4564 }
4565 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004566 return eb;
4567
Chris Mason6af118ce2008-07-22 11:18:07 -04004568free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004569 for (i = 0; i < num_pages; i++) {
4570 if (eb->pages[i])
4571 unlock_page(eb->pages[i]);
4572 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004573
Josef Bacik17de39a2012-05-04 15:16:06 -04004574 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e92010-10-26 20:57:29 -04004575 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004576 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004577}
Chris Masond1310b22008-01-24 16:13:08 -05004578
4579struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02004580 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004581{
Chris Masond1310b22008-01-24 16:13:08 -05004582 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05004583
Miao Xie19fe0a82010-10-26 20:57:29 -04004584 rcu_read_lock();
4585 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4586 if (eb && atomic_inc_not_zero(&eb->refs)) {
4587 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004588 mark_extent_buffer_accessed(eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004589 return eb;
4590 }
4591 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04004592
Miao Xie19fe0a82010-10-26 20:57:29 -04004593 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004594}
Chris Masond1310b22008-01-24 16:13:08 -05004595
Josef Bacik3083ee22012-03-09 16:01:49 -05004596static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4597{
4598 struct extent_buffer *eb =
4599 container_of(head, struct extent_buffer, rcu_head);
4600
4601 __free_extent_buffer(eb);
4602}
4603
Josef Bacik3083ee22012-03-09 16:01:49 -05004604/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004605static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004606{
4607 WARN_ON(atomic_read(&eb->refs) == 0);
4608 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004609 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4610 spin_unlock(&eb->refs_lock);
4611 } else {
4612 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004613
Jan Schmidt815a51c2012-05-16 17:00:02 +02004614 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004615
Jan Schmidt815a51c2012-05-16 17:00:02 +02004616 spin_lock(&tree->buffer_lock);
4617 radix_tree_delete(&tree->buffer,
4618 eb->start >> PAGE_CACHE_SHIFT);
4619 spin_unlock(&tree->buffer_lock);
4620 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004621
4622 /* Should be safe to release our pages at this point */
4623 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004624 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004625 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004626 }
4627 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004628
4629 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004630}
4631
Chris Masond1310b22008-01-24 16:13:08 -05004632void free_extent_buffer(struct extent_buffer *eb)
4633{
Chris Mason242e18c2013-01-29 17:49:37 -05004634 int refs;
4635 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004636 if (!eb)
4637 return;
4638
Chris Mason242e18c2013-01-29 17:49:37 -05004639 while (1) {
4640 refs = atomic_read(&eb->refs);
4641 if (refs <= 3)
4642 break;
4643 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4644 if (old == refs)
4645 return;
4646 }
4647
Josef Bacik3083ee22012-03-09 16:01:49 -05004648 spin_lock(&eb->refs_lock);
4649 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004650 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4651 atomic_dec(&eb->refs);
4652
4653 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004654 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004655 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004656 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4657 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004658
Josef Bacik3083ee22012-03-09 16:01:49 -05004659 /*
4660 * I know this is terrible, but it's temporary until we stop tracking
4661 * the uptodate bits and such for the extent buffers.
4662 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004663 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004664}
Chris Masond1310b22008-01-24 16:13:08 -05004665
Josef Bacik3083ee22012-03-09 16:01:49 -05004666void free_extent_buffer_stale(struct extent_buffer *eb)
4667{
4668 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004669 return;
4670
Josef Bacik3083ee22012-03-09 16:01:49 -05004671 spin_lock(&eb->refs_lock);
4672 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4673
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004674 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004675 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4676 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004677 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004678}
4679
Chris Mason1d4284b2012-03-28 20:31:37 -04004680void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004681{
Chris Masond1310b22008-01-24 16:13:08 -05004682 unsigned long i;
4683 unsigned long num_pages;
4684 struct page *page;
4685
Chris Masond1310b22008-01-24 16:13:08 -05004686 num_pages = num_extent_pages(eb->start, eb->len);
4687
4688 for (i = 0; i < num_pages; i++) {
4689 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004690 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004691 continue;
4692
Chris Masona61e6f22008-07-22 11:18:08 -04004693 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004694 WARN_ON(!PagePrivate(page));
4695
Chris Masond1310b22008-01-24 16:13:08 -05004696 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004697 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004698 if (!PageDirty(page)) {
4699 radix_tree_tag_clear(&page->mapping->page_tree,
4700 page_index(page),
4701 PAGECACHE_TAG_DIRTY);
4702 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004703 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004704 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004705 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004706 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004707 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004708}
Chris Masond1310b22008-01-24 16:13:08 -05004709
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004710int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004711{
4712 unsigned long i;
4713 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004714 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004715
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004716 check_buffer_tree_ref(eb);
4717
Chris Masonb9473432009-03-13 11:00:37 -04004718 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004719
Chris Masond1310b22008-01-24 16:13:08 -05004720 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004721 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004722 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4723
Chris Masonb9473432009-03-13 11:00:37 -04004724 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004725 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004726 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004727}
Chris Masond1310b22008-01-24 16:13:08 -05004728
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004729int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004730{
4731 unsigned long i;
4732 struct page *page;
4733 unsigned long num_pages;
4734
Chris Masonb4ce94d2009-02-04 09:25:08 -05004735 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004736 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004737 for (i = 0; i < num_pages; i++) {
4738 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004739 if (page)
4740 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004741 }
4742 return 0;
4743}
4744
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004745int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004746{
4747 unsigned long i;
4748 struct page *page;
4749 unsigned long num_pages;
4750
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004751 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004752 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004753 for (i = 0; i < num_pages; i++) {
4754 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004755 SetPageUptodate(page);
4756 }
4757 return 0;
4758}
Chris Masond1310b22008-01-24 16:13:08 -05004759
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004760int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004761{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004762 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004763}
Chris Masond1310b22008-01-24 16:13:08 -05004764
4765int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004766 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004767 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004768{
4769 unsigned long i;
4770 unsigned long start_i;
4771 struct page *page;
4772 int err;
4773 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004774 int locked_pages = 0;
4775 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004776 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004777 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004778 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004779 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004780
Chris Masonb4ce94d2009-02-04 09:25:08 -05004781 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004782 return 0;
4783
Chris Masond1310b22008-01-24 16:13:08 -05004784 if (start) {
4785 WARN_ON(start < eb->start);
4786 start_i = (start >> PAGE_CACHE_SHIFT) -
4787 (eb->start >> PAGE_CACHE_SHIFT);
4788 } else {
4789 start_i = 0;
4790 }
4791
4792 num_pages = num_extent_pages(eb->start, eb->len);
4793 for (i = start_i; i < num_pages; i++) {
4794 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004795 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004796 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004797 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004798 } else {
4799 lock_page(page);
4800 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004801 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004802 if (!PageUptodate(page)) {
4803 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004804 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004805 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004806 }
4807 if (all_uptodate) {
4808 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004809 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004810 goto unlock_exit;
4811 }
4812
Josef Bacikea466792012-03-26 21:57:36 -04004813 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004814 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004815 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004816 for (i = start_i; i < num_pages; i++) {
4817 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004818 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004819 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004820 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004821 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004822 mirror_num, &bio_flags,
4823 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05004824 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004825 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004826 } else {
4827 unlock_page(page);
4828 }
4829 }
4830
Jeff Mahoney355808c2011-10-03 23:23:14 -04004831 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004832 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
4833 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004834 if (err)
4835 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004836 }
Chris Masona86c12c2008-02-07 10:50:54 -05004837
Arne Jansenbb82ab82011-06-10 14:06:53 +02004838 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004839 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004840
Chris Masond1310b22008-01-24 16:13:08 -05004841 for (i = start_i; i < num_pages; i++) {
4842 page = extent_buffer_page(eb, i);
4843 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004844 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004845 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004846 }
Chris Masond3977122009-01-05 21:25:51 -05004847
Chris Masond1310b22008-01-24 16:13:08 -05004848 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004849
4850unlock_exit:
4851 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004852 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004853 page = extent_buffer_page(eb, i);
4854 i++;
4855 unlock_page(page);
4856 locked_pages--;
4857 }
4858 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004859}
Chris Masond1310b22008-01-24 16:13:08 -05004860
4861void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4862 unsigned long start,
4863 unsigned long len)
4864{
4865 size_t cur;
4866 size_t offset;
4867 struct page *page;
4868 char *kaddr;
4869 char *dst = (char *)dstv;
4870 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4871 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004872
4873 WARN_ON(start > eb->len);
4874 WARN_ON(start + len > eb->start + eb->len);
4875
4876 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4877
Chris Masond3977122009-01-05 21:25:51 -05004878 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004879 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004880
4881 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004882 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004883 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004884
4885 dst += cur;
4886 len -= cur;
4887 offset = 0;
4888 i++;
4889 }
4890}
Chris Masond1310b22008-01-24 16:13:08 -05004891
4892int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004893 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004894 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004895 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004896{
4897 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4898 char *kaddr;
4899 struct page *p;
4900 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4901 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4902 unsigned long end_i = (start_offset + start + min_len - 1) >>
4903 PAGE_CACHE_SHIFT;
4904
4905 if (i != end_i)
4906 return -EINVAL;
4907
4908 if (i == 0) {
4909 offset = start_offset;
4910 *map_start = 0;
4911 } else {
4912 offset = 0;
4913 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4914 }
Chris Masond3977122009-01-05 21:25:51 -05004915
Chris Masond1310b22008-01-24 16:13:08 -05004916 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004917 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004918 "wanted %lu %lu\n",
4919 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004920 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004921 }
4922
4923 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004924 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004925 *map = kaddr + offset;
4926 *map_len = PAGE_CACHE_SIZE - offset;
4927 return 0;
4928}
Chris Masond1310b22008-01-24 16:13:08 -05004929
Chris Masond1310b22008-01-24 16:13:08 -05004930int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4931 unsigned long start,
4932 unsigned long len)
4933{
4934 size_t cur;
4935 size_t offset;
4936 struct page *page;
4937 char *kaddr;
4938 char *ptr = (char *)ptrv;
4939 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4940 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4941 int ret = 0;
4942
4943 WARN_ON(start > eb->len);
4944 WARN_ON(start + len > eb->start + eb->len);
4945
4946 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4947
Chris Masond3977122009-01-05 21:25:51 -05004948 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004949 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004950
4951 cur = min(len, (PAGE_CACHE_SIZE - offset));
4952
Chris Masona6591712011-07-19 12:04:14 -04004953 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004954 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004955 if (ret)
4956 break;
4957
4958 ptr += cur;
4959 len -= cur;
4960 offset = 0;
4961 i++;
4962 }
4963 return ret;
4964}
Chris Masond1310b22008-01-24 16:13:08 -05004965
4966void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4967 unsigned long start, unsigned long len)
4968{
4969 size_t cur;
4970 size_t offset;
4971 struct page *page;
4972 char *kaddr;
4973 char *src = (char *)srcv;
4974 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4975 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4976
4977 WARN_ON(start > eb->len);
4978 WARN_ON(start + len > eb->start + eb->len);
4979
4980 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4981
Chris Masond3977122009-01-05 21:25:51 -05004982 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004983 page = extent_buffer_page(eb, i);
4984 WARN_ON(!PageUptodate(page));
4985
4986 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004987 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004988 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004989
4990 src += cur;
4991 len -= cur;
4992 offset = 0;
4993 i++;
4994 }
4995}
Chris Masond1310b22008-01-24 16:13:08 -05004996
4997void memset_extent_buffer(struct extent_buffer *eb, char c,
4998 unsigned long start, unsigned long len)
4999{
5000 size_t cur;
5001 size_t offset;
5002 struct page *page;
5003 char *kaddr;
5004 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5005 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5006
5007 WARN_ON(start > eb->len);
5008 WARN_ON(start + len > eb->start + eb->len);
5009
5010 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
5011
Chris Masond3977122009-01-05 21:25:51 -05005012 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005013 page = extent_buffer_page(eb, i);
5014 WARN_ON(!PageUptodate(page));
5015
5016 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005017 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005018 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005019
5020 len -= cur;
5021 offset = 0;
5022 i++;
5023 }
5024}
Chris Masond1310b22008-01-24 16:13:08 -05005025
5026void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5027 unsigned long dst_offset, unsigned long src_offset,
5028 unsigned long len)
5029{
5030 u64 dst_len = dst->len;
5031 size_t cur;
5032 size_t offset;
5033 struct page *page;
5034 char *kaddr;
5035 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5036 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5037
5038 WARN_ON(src->len != dst_len);
5039
5040 offset = (start_offset + dst_offset) &
5041 ((unsigned long)PAGE_CACHE_SIZE - 1);
5042
Chris Masond3977122009-01-05 21:25:51 -05005043 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005044 page = extent_buffer_page(dst, i);
5045 WARN_ON(!PageUptodate(page));
5046
5047 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5048
Chris Masona6591712011-07-19 12:04:14 -04005049 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005050 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005051
5052 src_offset += cur;
5053 len -= cur;
5054 offset = 0;
5055 i++;
5056 }
5057}
Chris Masond1310b22008-01-24 16:13:08 -05005058
5059static void move_pages(struct page *dst_page, struct page *src_page,
5060 unsigned long dst_off, unsigned long src_off,
5061 unsigned long len)
5062{
Chris Masona6591712011-07-19 12:04:14 -04005063 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005064 if (dst_page == src_page) {
5065 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
5066 } else {
Chris Masona6591712011-07-19 12:04:14 -04005067 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05005068 char *p = dst_kaddr + dst_off + len;
5069 char *s = src_kaddr + src_off + len;
5070
5071 while (len--)
5072 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05005073 }
Chris Masond1310b22008-01-24 16:13:08 -05005074}
5075
Sergei Trofimovich33872062011-04-11 21:52:52 +00005076static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5077{
5078 unsigned long distance = (src > dst) ? src - dst : dst - src;
5079 return distance < len;
5080}
5081
Chris Masond1310b22008-01-24 16:13:08 -05005082static void copy_pages(struct page *dst_page, struct page *src_page,
5083 unsigned long dst_off, unsigned long src_off,
5084 unsigned long len)
5085{
Chris Masona6591712011-07-19 12:04:14 -04005086 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005087 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005088 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005089
Sergei Trofimovich33872062011-04-11 21:52:52 +00005090 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005091 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005092 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005093 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005094 if (areas_overlap(src_off, dst_off, len))
5095 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005096 }
Chris Masond1310b22008-01-24 16:13:08 -05005097
Chris Mason727011e2010-08-06 13:21:20 -04005098 if (must_memmove)
5099 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5100 else
5101 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005102}
5103
5104void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5105 unsigned long src_offset, unsigned long len)
5106{
5107 size_t cur;
5108 size_t dst_off_in_page;
5109 size_t src_off_in_page;
5110 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5111 unsigned long dst_i;
5112 unsigned long src_i;
5113
5114 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005115 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5116 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005117 BUG_ON(1);
5118 }
5119 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005120 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5121 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005122 BUG_ON(1);
5123 }
5124
Chris Masond3977122009-01-05 21:25:51 -05005125 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005126 dst_off_in_page = (start_offset + dst_offset) &
5127 ((unsigned long)PAGE_CACHE_SIZE - 1);
5128 src_off_in_page = (start_offset + src_offset) &
5129 ((unsigned long)PAGE_CACHE_SIZE - 1);
5130
5131 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5132 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5133
5134 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5135 src_off_in_page));
5136 cur = min_t(unsigned long, cur,
5137 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5138
5139 copy_pages(extent_buffer_page(dst, dst_i),
5140 extent_buffer_page(dst, src_i),
5141 dst_off_in_page, src_off_in_page, cur);
5142
5143 src_offset += cur;
5144 dst_offset += cur;
5145 len -= cur;
5146 }
5147}
Chris Masond1310b22008-01-24 16:13:08 -05005148
5149void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5150 unsigned long src_offset, unsigned long len)
5151{
5152 size_t cur;
5153 size_t dst_off_in_page;
5154 size_t src_off_in_page;
5155 unsigned long dst_end = dst_offset + len - 1;
5156 unsigned long src_end = src_offset + len - 1;
5157 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5158 unsigned long dst_i;
5159 unsigned long src_i;
5160
5161 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005162 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5163 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005164 BUG_ON(1);
5165 }
5166 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005167 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5168 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005169 BUG_ON(1);
5170 }
Chris Mason727011e2010-08-06 13:21:20 -04005171 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005172 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5173 return;
5174 }
Chris Masond3977122009-01-05 21:25:51 -05005175 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005176 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5177 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5178
5179 dst_off_in_page = (start_offset + dst_end) &
5180 ((unsigned long)PAGE_CACHE_SIZE - 1);
5181 src_off_in_page = (start_offset + src_end) &
5182 ((unsigned long)PAGE_CACHE_SIZE - 1);
5183
5184 cur = min_t(unsigned long, len, src_off_in_page + 1);
5185 cur = min(cur, dst_off_in_page + 1);
5186 move_pages(extent_buffer_page(dst, dst_i),
5187 extent_buffer_page(dst, src_i),
5188 dst_off_in_page - cur + 1,
5189 src_off_in_page - cur + 1, cur);
5190
5191 dst_end -= cur;
5192 src_end -= cur;
5193 len -= cur;
5194 }
5195}
Chris Mason6af118ce2008-07-22 11:18:07 -04005196
David Sterbaf7a52a42013-04-26 14:56:29 +00005197int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005198{
Chris Mason6af118ce2008-07-22 11:18:07 -04005199 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005200
Miao Xie19fe0a82010-10-26 20:57:29 -04005201 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005202 * We need to make sure noboody is attaching this page to an eb right
5203 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005204 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005205 spin_lock(&page->mapping->private_lock);
5206 if (!PagePrivate(page)) {
5207 spin_unlock(&page->mapping->private_lock);
5208 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005209 }
5210
Josef Bacik3083ee22012-03-09 16:01:49 -05005211 eb = (struct extent_buffer *)page->private;
5212 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005213
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005214 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005215 * This is a little awful but should be ok, we need to make sure that
5216 * the eb doesn't disappear out from under us while we're looking at
5217 * this page.
5218 */
5219 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005220 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005221 spin_unlock(&eb->refs_lock);
5222 spin_unlock(&page->mapping->private_lock);
5223 return 0;
5224 }
5225 spin_unlock(&page->mapping->private_lock);
5226
Josef Bacik3083ee22012-03-09 16:01:49 -05005227 /*
5228 * If tree ref isn't set then we know the ref on this eb is a real ref,
5229 * so just return, this page will likely be freed soon anyway.
5230 */
5231 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5232 spin_unlock(&eb->refs_lock);
5233 return 0;
5234 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005235
David Sterbaf7a52a42013-04-26 14:56:29 +00005236 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005237}