blob: 22bda32acb893a09aa0a0472d8ab78c20c12fbdb [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;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700148
149 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
150 goto free_bioset;
151
Chris Masond1310b22008-01-24 16:13:08 -0500152 return 0;
153
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700154free_bioset:
155 bioset_free(btrfs_bioset);
156 btrfs_bioset = NULL;
157
Chris Mason9be33952013-05-17 18:30:14 -0400158free_buffer_cache:
159 kmem_cache_destroy(extent_buffer_cache);
160 extent_buffer_cache = NULL;
161
Chris Masond1310b22008-01-24 16:13:08 -0500162free_state_cache:
163 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400164 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500165 return -ENOMEM;
166}
167
168void extent_io_exit(void)
169{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000170 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000171
172 /*
173 * Make sure all delayed rcu free are flushed before we
174 * destroy caches.
175 */
176 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500177 if (extent_state_cache)
178 kmem_cache_destroy(extent_state_cache);
179 if (extent_buffer_cache)
180 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400181 if (btrfs_bioset)
182 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500183}
184
185void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200186 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500187{
Eric Paris6bef4d32010-02-23 19:43:04 +0000188 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400189 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500190 tree->ops = NULL;
191 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500192 spin_lock_init(&tree->lock);
Chris Mason6af118ce2008-07-22 11:18:07 -0400193 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500194 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500195}
Chris Masond1310b22008-01-24 16:13:08 -0500196
Christoph Hellwigb2950862008-12-02 09:54:17 -0500197static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500198{
199 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500200
201 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400202 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500203 return state;
204 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500205 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500206 state->tree = NULL;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000207 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500208 atomic_set(&state->refs, 1);
209 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100210 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500211 return state;
212}
Chris Masond1310b22008-01-24 16:13:08 -0500213
Chris Mason4845e442010-05-25 20:56:50 -0400214void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500215{
Chris Masond1310b22008-01-24 16:13:08 -0500216 if (!state)
217 return;
218 if (atomic_dec_and_test(&state->refs)) {
Chris Mason70dec802008-01-29 09:59:12 -0500219 WARN_ON(state->tree);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000220 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100221 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500222 kmem_cache_free(extent_state_cache, state);
223 }
224}
Chris Masond1310b22008-01-24 16:13:08 -0500225
226static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
227 struct rb_node *node)
228{
Chris Masond3977122009-01-05 21:25:51 -0500229 struct rb_node **p = &root->rb_node;
230 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500231 struct tree_entry *entry;
232
Chris Masond3977122009-01-05 21:25:51 -0500233 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500234 parent = *p;
235 entry = rb_entry(parent, struct tree_entry, rb_node);
236
237 if (offset < entry->start)
238 p = &(*p)->rb_left;
239 else if (offset > entry->end)
240 p = &(*p)->rb_right;
241 else
242 return parent;
243 }
244
Chris Masond1310b22008-01-24 16:13:08 -0500245 rb_link_node(node, parent, p);
246 rb_insert_color(node, root);
247 return NULL;
248}
249
Chris Mason80ea96b2008-02-01 14:51:59 -0500250static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500251 struct rb_node **prev_ret,
252 struct rb_node **next_ret)
253{
Chris Mason80ea96b2008-02-01 14:51:59 -0500254 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500255 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500256 struct rb_node *prev = NULL;
257 struct rb_node *orig_prev = NULL;
258 struct tree_entry *entry;
259 struct tree_entry *prev_entry = NULL;
260
Chris Masond3977122009-01-05 21:25:51 -0500261 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500262 entry = rb_entry(n, struct tree_entry, rb_node);
263 prev = n;
264 prev_entry = entry;
265
266 if (offset < entry->start)
267 n = n->rb_left;
268 else if (offset > entry->end)
269 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500270 else
Chris Masond1310b22008-01-24 16:13:08 -0500271 return n;
272 }
273
274 if (prev_ret) {
275 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500276 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500277 prev = rb_next(prev);
278 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
279 }
280 *prev_ret = prev;
281 prev = orig_prev;
282 }
283
284 if (next_ret) {
285 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500286 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500287 prev = rb_prev(prev);
288 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
289 }
290 *next_ret = prev;
291 }
292 return NULL;
293}
294
Chris Mason80ea96b2008-02-01 14:51:59 -0500295static inline struct rb_node *tree_search(struct extent_io_tree *tree,
296 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500297{
Chris Mason70dec802008-01-29 09:59:12 -0500298 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500299 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500300
Chris Mason80ea96b2008-02-01 14:51:59 -0500301 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500302 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500303 return prev;
304 return ret;
305}
306
Josef Bacik9ed74f22009-09-11 16:12:44 -0400307static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
308 struct extent_state *other)
309{
310 if (tree->ops && tree->ops->merge_extent_hook)
311 tree->ops->merge_extent_hook(tree->mapping->host, new,
312 other);
313}
314
Chris Masond1310b22008-01-24 16:13:08 -0500315/*
316 * utility function to look for merge candidates inside a given range.
317 * Any extents with matching state are merged together into a single
318 * extent in the tree. Extents with EXTENT_IO in their state field
319 * are not merged because the end_io handlers need to be able to do
320 * operations on them without sleeping (or doing allocations/splits).
321 *
322 * This should be called with the tree lock held.
323 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000324static void merge_state(struct extent_io_tree *tree,
325 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500326{
327 struct extent_state *other;
328 struct rb_node *other_node;
329
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400330 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000331 return;
Chris Masond1310b22008-01-24 16:13:08 -0500332
333 other_node = rb_prev(&state->rb_node);
334 if (other_node) {
335 other = rb_entry(other_node, struct extent_state, rb_node);
336 if (other->end == state->start - 1 &&
337 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400338 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500339 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500340 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500341 rb_erase(&other->rb_node, &tree->state);
342 free_extent_state(other);
343 }
344 }
345 other_node = rb_next(&state->rb_node);
346 if (other_node) {
347 other = rb_entry(other_node, struct extent_state, rb_node);
348 if (other->start == state->end + 1 &&
349 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400350 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400351 state->end = other->end;
352 other->tree = NULL;
353 rb_erase(&other->rb_node, &tree->state);
354 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500355 }
356 }
Chris Masond1310b22008-01-24 16:13:08 -0500357}
358
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000359static void set_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000360 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500361{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000362 if (tree->ops && tree->ops->set_bit_hook)
363 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500364}
365
366static void clear_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000367 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500368{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400369 if (tree->ops && tree->ops->clear_bit_hook)
370 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500371}
372
Xiao Guangrong3150b692011-07-14 03:19:08 +0000373static void set_state_bits(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000374 struct extent_state *state, unsigned long *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000375
Chris Masond1310b22008-01-24 16:13:08 -0500376/*
377 * insert an extent_state struct into the tree. 'bits' are set on the
378 * struct before it is inserted.
379 *
380 * This may return -EEXIST if the extent is already there, in which case the
381 * state struct is freed.
382 *
383 * The tree lock is not taken internally. This is a utility function and
384 * probably isn't what you want to call (see set/clear_extent_bit).
385 */
386static int insert_state(struct extent_io_tree *tree,
387 struct extent_state *state, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000388 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500389{
390 struct rb_node *node;
391
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000392 if (end < start)
393 WARN(1, KERN_ERR "btrfs end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200394 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500395 state->start = start;
396 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400397
Xiao Guangrong3150b692011-07-14 03:19:08 +0000398 set_state_bits(tree, state, bits);
399
Chris Masond1310b22008-01-24 16:13:08 -0500400 node = tree_insert(&tree->state, end, &state->rb_node);
401 if (node) {
402 struct extent_state *found;
403 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500404 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200405 "%llu %llu\n",
406 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500407 return -EEXIST;
408 }
Chris Mason70dec802008-01-29 09:59:12 -0500409 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500410 merge_state(tree, state);
411 return 0;
412}
413
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000414static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400415 u64 split)
416{
417 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000418 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400419}
420
Chris Masond1310b22008-01-24 16:13:08 -0500421/*
422 * split a given extent state struct in two, inserting the preallocated
423 * struct 'prealloc' as the newly created second half. 'split' indicates an
424 * offset inside 'orig' where it should be split.
425 *
426 * Before calling,
427 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
428 * are two extent state structs in the tree:
429 * prealloc: [orig->start, split - 1]
430 * orig: [ split, orig->end ]
431 *
432 * The tree locks are not taken by this function. They need to be held
433 * by the caller.
434 */
435static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
436 struct extent_state *prealloc, u64 split)
437{
438 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400439
440 split_cb(tree, orig, split);
441
Chris Masond1310b22008-01-24 16:13:08 -0500442 prealloc->start = orig->start;
443 prealloc->end = split - 1;
444 prealloc->state = orig->state;
445 orig->start = split;
446
447 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
448 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500449 free_extent_state(prealloc);
450 return -EEXIST;
451 }
Chris Mason70dec802008-01-29 09:59:12 -0500452 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500453 return 0;
454}
455
Li Zefancdc6a392012-03-12 16:39:48 +0800456static struct extent_state *next_state(struct extent_state *state)
457{
458 struct rb_node *next = rb_next(&state->rb_node);
459 if (next)
460 return rb_entry(next, struct extent_state, rb_node);
461 else
462 return NULL;
463}
464
Chris Masond1310b22008-01-24 16:13:08 -0500465/*
466 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800467 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500468 *
469 * If no bits are set on the state struct after clearing things, the
470 * struct is freed and removed from the tree
471 */
Li Zefancdc6a392012-03-12 16:39:48 +0800472static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
473 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000474 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500475{
Li Zefancdc6a392012-03-12 16:39:48 +0800476 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000477 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500478
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400479 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500480 u64 range = state->end - state->start + 1;
481 WARN_ON(range > tree->dirty_bytes);
482 tree->dirty_bytes -= range;
483 }
Chris Mason291d6732008-01-29 15:55:23 -0500484 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400485 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500486 if (wake)
487 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400488 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800489 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500490 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500491 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500492 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500493 free_extent_state(state);
494 } else {
495 WARN_ON(1);
496 }
497 } else {
498 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800499 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500500 }
Li Zefancdc6a392012-03-12 16:39:48 +0800501 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500502}
503
Xiao Guangrong82337672011-04-20 06:44:57 +0000504static struct extent_state *
505alloc_extent_state_atomic(struct extent_state *prealloc)
506{
507 if (!prealloc)
508 prealloc = alloc_extent_state(GFP_ATOMIC);
509
510 return prealloc;
511}
512
Eric Sandeen48a3b632013-04-25 20:41:01 +0000513static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400514{
515 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
516 "Extent tree was modified by another "
517 "thread while locked.");
518}
519
Chris Masond1310b22008-01-24 16:13:08 -0500520/*
521 * clear some bits on a range in the tree. This may require splitting
522 * or inserting elements in the tree, so the gfp mask is used to
523 * indicate which allocations or sleeping are allowed.
524 *
525 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
526 * the given range from the tree regardless of state (ie for truncate).
527 *
528 * the range [start, end] is inclusive.
529 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100530 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500531 */
532int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000533 unsigned long bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400534 struct extent_state **cached_state,
535 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500536{
537 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400538 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500539 struct extent_state *prealloc = NULL;
540 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400541 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500542 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000543 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500544
David Sterba8d599ae2013-04-30 15:22:23 +0000545 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
546
Josef Bacik7ee9e442013-06-21 16:37:03 -0400547 if (bits & EXTENT_DELALLOC)
548 bits |= EXTENT_NORESERVE;
549
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400550 if (delete)
551 bits |= ~EXTENT_CTLBITS;
552 bits |= EXTENT_FIRST_DELALLOC;
553
Josef Bacik2ac55d42010-02-03 19:33:23 +0000554 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
555 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500556again:
557 if (!prealloc && (mask & __GFP_WAIT)) {
558 prealloc = alloc_extent_state(mask);
559 if (!prealloc)
560 return -ENOMEM;
561 }
562
Chris Masoncad321a2008-12-17 14:51:42 -0500563 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400564 if (cached_state) {
565 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000566
567 if (clear) {
568 *cached_state = NULL;
569 cached_state = NULL;
570 }
571
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400572 if (cached && cached->tree && cached->start <= start &&
573 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000574 if (clear)
575 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400576 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400577 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400578 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000579 if (clear)
580 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400581 }
Chris Masond1310b22008-01-24 16:13:08 -0500582 /*
583 * this search will find the extents that end after
584 * our range starts
585 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500586 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500587 if (!node)
588 goto out;
589 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400590hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500591 if (state->start > end)
592 goto out;
593 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400594 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500595
Liu Bo04493142012-02-16 18:34:37 +0800596 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800597 if (!(state->state & bits)) {
598 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800599 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800600 }
Liu Bo04493142012-02-16 18:34:37 +0800601
Chris Masond1310b22008-01-24 16:13:08 -0500602 /*
603 * | ---- desired range ---- |
604 * | state | or
605 * | ------------- state -------------- |
606 *
607 * We need to split the extent we found, and may flip
608 * bits on second half.
609 *
610 * If the extent we found extends past our range, we
611 * just split and search again. It'll get split again
612 * the next time though.
613 *
614 * If the extent we found is inside our range, we clear
615 * the desired bit on it.
616 */
617
618 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000619 prealloc = alloc_extent_state_atomic(prealloc);
620 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500621 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400622 if (err)
623 extent_io_tree_panic(tree, err);
624
Chris Masond1310b22008-01-24 16:13:08 -0500625 prealloc = NULL;
626 if (err)
627 goto out;
628 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800629 state = clear_state_bit(tree, state, &bits, wake);
630 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500631 }
632 goto search_again;
633 }
634 /*
635 * | ---- desired range ---- |
636 * | state |
637 * We need to split the extent, and clear the bit
638 * on the first half
639 */
640 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000641 prealloc = alloc_extent_state_atomic(prealloc);
642 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500643 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400644 if (err)
645 extent_io_tree_panic(tree, err);
646
Chris Masond1310b22008-01-24 16:13:08 -0500647 if (wake)
648 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400649
Jeff Mahoney6763af82012-03-01 14:56:29 +0100650 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400651
Chris Masond1310b22008-01-24 16:13:08 -0500652 prealloc = NULL;
653 goto out;
654 }
Chris Mason42daec22009-09-23 19:51:09 -0400655
Li Zefancdc6a392012-03-12 16:39:48 +0800656 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800657next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400658 if (last_end == (u64)-1)
659 goto out;
660 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800661 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800662 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500663 goto search_again;
664
665out:
Chris Masoncad321a2008-12-17 14:51:42 -0500666 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500667 if (prealloc)
668 free_extent_state(prealloc);
669
Jeff Mahoney6763af82012-03-01 14:56:29 +0100670 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500671
672search_again:
673 if (start > end)
674 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500675 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500676 if (mask & __GFP_WAIT)
677 cond_resched();
678 goto again;
679}
Chris Masond1310b22008-01-24 16:13:08 -0500680
Jeff Mahoney143bede2012-03-01 14:56:26 +0100681static void wait_on_state(struct extent_io_tree *tree,
682 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500683 __releases(tree->lock)
684 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500685{
686 DEFINE_WAIT(wait);
687 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500688 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500689 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500690 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500691 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500692}
693
694/*
695 * waits for one or more bits to clear on a range in the state tree.
696 * The range [start, end] is inclusive.
697 * The tree lock is taken by this function
698 */
David Sterba41074882013-04-29 13:38:46 +0000699static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
700 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500701{
702 struct extent_state *state;
703 struct rb_node *node;
704
David Sterba8d599ae2013-04-30 15:22:23 +0000705 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
706
Chris Masoncad321a2008-12-17 14:51:42 -0500707 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500708again:
709 while (1) {
710 /*
711 * this search will find all the extents that end after
712 * our range starts
713 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500714 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500715 if (!node)
716 break;
717
718 state = rb_entry(node, struct extent_state, rb_node);
719
720 if (state->start > end)
721 goto out;
722
723 if (state->state & bits) {
724 start = state->start;
725 atomic_inc(&state->refs);
726 wait_on_state(tree, state);
727 free_extent_state(state);
728 goto again;
729 }
730 start = state->end + 1;
731
732 if (start > end)
733 break;
734
Xiao Guangrongded91f02011-07-14 03:19:27 +0000735 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500736 }
737out:
Chris Masoncad321a2008-12-17 14:51:42 -0500738 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500739}
Chris Masond1310b22008-01-24 16:13:08 -0500740
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000741static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500742 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000743 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500744{
David Sterba41074882013-04-29 13:38:46 +0000745 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400746
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000747 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400748 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500749 u64 range = state->end - state->start + 1;
750 tree->dirty_bytes += range;
751 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400752 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500753}
754
Chris Mason2c64c532009-09-02 15:04:12 -0400755static void cache_state(struct extent_state *state,
756 struct extent_state **cached_ptr)
757{
758 if (cached_ptr && !(*cached_ptr)) {
759 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
760 *cached_ptr = state;
761 atomic_inc(&state->refs);
762 }
763 }
764}
765
Chris Masond1310b22008-01-24 16:13:08 -0500766/*
Chris Mason1edbb732009-09-02 13:24:36 -0400767 * set some bits on a range in the tree. This may require allocations or
768 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500769 *
Chris Mason1edbb732009-09-02 13:24:36 -0400770 * If any of the exclusive bits are set, this will fail with -EEXIST if some
771 * part of the range already has the desired bits set. The start of the
772 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500773 *
Chris Mason1edbb732009-09-02 13:24:36 -0400774 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500775 */
Chris Mason1edbb732009-09-02 13:24:36 -0400776
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100777static int __must_check
778__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000779 unsigned long bits, unsigned long exclusive_bits,
780 u64 *failed_start, struct extent_state **cached_state,
781 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500782{
783 struct extent_state *state;
784 struct extent_state *prealloc = NULL;
785 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500786 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500787 u64 last_start;
788 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400789
David Sterba8d599ae2013-04-30 15:22:23 +0000790 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
791
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400792 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500793again:
794 if (!prealloc && (mask & __GFP_WAIT)) {
795 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000796 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500797 }
798
Chris Masoncad321a2008-12-17 14:51:42 -0500799 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400800 if (cached_state && *cached_state) {
801 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400802 if (state->start <= start && state->end > start &&
803 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400804 node = &state->rb_node;
805 goto hit_next;
806 }
807 }
Chris Masond1310b22008-01-24 16:13:08 -0500808 /*
809 * this search will find all the extents that end after
810 * our range starts.
811 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500812 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500813 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000814 prealloc = alloc_extent_state_atomic(prealloc);
815 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400816 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400817 if (err)
818 extent_io_tree_panic(tree, err);
819
Chris Masond1310b22008-01-24 16:13:08 -0500820 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500821 goto out;
822 }
Chris Masond1310b22008-01-24 16:13:08 -0500823 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400824hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500825 last_start = state->start;
826 last_end = state->end;
827
828 /*
829 * | ---- desired range ---- |
830 * | state |
831 *
832 * Just lock what we found and keep going
833 */
834 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400835 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500836 *failed_start = state->start;
837 err = -EEXIST;
838 goto out;
839 }
Chris Mason42daec22009-09-23 19:51:09 -0400840
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000841 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400842 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500843 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400844 if (last_end == (u64)-1)
845 goto out;
846 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800847 state = next_state(state);
848 if (start < end && state && state->start == start &&
849 !need_resched())
850 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500851 goto search_again;
852 }
853
854 /*
855 * | ---- desired range ---- |
856 * | state |
857 * or
858 * | ------------- state -------------- |
859 *
860 * We need to split the extent we found, and may flip bits on
861 * second half.
862 *
863 * If the extent we found extends past our
864 * range, we just split and search again. It'll get split
865 * again the next time though.
866 *
867 * If the extent we found is inside our range, we set the
868 * desired bit on it.
869 */
870 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400871 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500872 *failed_start = start;
873 err = -EEXIST;
874 goto out;
875 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000876
877 prealloc = alloc_extent_state_atomic(prealloc);
878 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500879 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400880 if (err)
881 extent_io_tree_panic(tree, err);
882
Chris Masond1310b22008-01-24 16:13:08 -0500883 prealloc = NULL;
884 if (err)
885 goto out;
886 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000887 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400888 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500889 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400890 if (last_end == (u64)-1)
891 goto out;
892 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800893 state = next_state(state);
894 if (start < end && state && state->start == start &&
895 !need_resched())
896 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500897 }
898 goto search_again;
899 }
900 /*
901 * | ---- desired range ---- |
902 * | state | or | state |
903 *
904 * There's a hole, we need to insert something in it and
905 * ignore the extent we found.
906 */
907 if (state->start > start) {
908 u64 this_end;
909 if (end < last_start)
910 this_end = end;
911 else
Chris Masond3977122009-01-05 21:25:51 -0500912 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000913
914 prealloc = alloc_extent_state_atomic(prealloc);
915 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000916
917 /*
918 * Avoid to free 'prealloc' if it can be merged with
919 * the later extent.
920 */
Chris Masond1310b22008-01-24 16:13:08 -0500921 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400922 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400923 if (err)
924 extent_io_tree_panic(tree, err);
925
Chris Mason2c64c532009-09-02 15:04:12 -0400926 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500927 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500928 start = this_end + 1;
929 goto search_again;
930 }
931 /*
932 * | ---- desired range ---- |
933 * | state |
934 * We need to split the extent, and set the bit
935 * on the first half
936 */
937 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400938 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500939 *failed_start = start;
940 err = -EEXIST;
941 goto out;
942 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000943
944 prealloc = alloc_extent_state_atomic(prealloc);
945 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500946 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400947 if (err)
948 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500949
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000950 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400951 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500952 merge_state(tree, prealloc);
953 prealloc = NULL;
954 goto out;
955 }
956
957 goto search_again;
958
959out:
Chris Masoncad321a2008-12-17 14:51:42 -0500960 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500961 if (prealloc)
962 free_extent_state(prealloc);
963
964 return err;
965
966search_again:
967 if (start > end)
968 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500969 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500970 if (mask & __GFP_WAIT)
971 cond_resched();
972 goto again;
973}
Chris Masond1310b22008-01-24 16:13:08 -0500974
David Sterba41074882013-04-29 13:38:46 +0000975int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
976 unsigned long bits, u64 * failed_start,
977 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100978{
979 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
980 cached_state, mask);
981}
982
983
Josef Bacik462d6fa2011-09-26 13:56:12 -0400984/**
Liu Bo10983f22012-07-11 15:26:19 +0800985 * convert_extent_bit - convert all bits in a given range from one bit to
986 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -0400987 * @tree: the io tree to search
988 * @start: the start offset in bytes
989 * @end: the end offset in bytes (inclusive)
990 * @bits: the bits to set in this range
991 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -0400992 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -0400993 * @mask: the allocation mask
994 *
995 * This will go through and set bits for the given range. If any states exist
996 * already in this range they are set with the given bit and cleared of the
997 * clear_bits. This is only meant to be used by things that are mergeable, ie
998 * converting from say DELALLOC to DIRTY. This is not meant to be used with
999 * boundary bits like LOCK.
1000 */
1001int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001002 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001003 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001004{
1005 struct extent_state *state;
1006 struct extent_state *prealloc = NULL;
1007 struct rb_node *node;
1008 int err = 0;
1009 u64 last_start;
1010 u64 last_end;
1011
David Sterba8d599ae2013-04-30 15:22:23 +00001012 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
1013
Josef Bacik462d6fa2011-09-26 13:56:12 -04001014again:
1015 if (!prealloc && (mask & __GFP_WAIT)) {
1016 prealloc = alloc_extent_state(mask);
1017 if (!prealloc)
1018 return -ENOMEM;
1019 }
1020
1021 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001022 if (cached_state && *cached_state) {
1023 state = *cached_state;
1024 if (state->start <= start && state->end > start &&
1025 state->tree) {
1026 node = &state->rb_node;
1027 goto hit_next;
1028 }
1029 }
1030
Josef Bacik462d6fa2011-09-26 13:56:12 -04001031 /*
1032 * this search will find all the extents that end after
1033 * our range starts.
1034 */
1035 node = tree_search(tree, start);
1036 if (!node) {
1037 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001038 if (!prealloc) {
1039 err = -ENOMEM;
1040 goto out;
1041 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001042 err = insert_state(tree, prealloc, start, end, &bits);
1043 prealloc = NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001044 if (err)
1045 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001046 goto out;
1047 }
1048 state = rb_entry(node, struct extent_state, rb_node);
1049hit_next:
1050 last_start = state->start;
1051 last_end = state->end;
1052
1053 /*
1054 * | ---- desired range ---- |
1055 * | state |
1056 *
1057 * Just lock what we found and keep going
1058 */
1059 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001060 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001061 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001062 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001063 if (last_end == (u64)-1)
1064 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001065 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001066 if (start < end && state && state->start == start &&
1067 !need_resched())
1068 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001069 goto search_again;
1070 }
1071
1072 /*
1073 * | ---- desired range ---- |
1074 * | state |
1075 * or
1076 * | ------------- state -------------- |
1077 *
1078 * We need to split the extent we found, and may flip bits on
1079 * second half.
1080 *
1081 * If the extent we found extends past our
1082 * range, we just split and search again. It'll get split
1083 * again the next time though.
1084 *
1085 * If the extent we found is inside our range, we set the
1086 * desired bit on it.
1087 */
1088 if (state->start < start) {
1089 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001090 if (!prealloc) {
1091 err = -ENOMEM;
1092 goto out;
1093 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001094 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001095 if (err)
1096 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001097 prealloc = NULL;
1098 if (err)
1099 goto out;
1100 if (state->end <= end) {
1101 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001102 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001103 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001104 if (last_end == (u64)-1)
1105 goto out;
1106 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001107 if (start < end && state && state->start == start &&
1108 !need_resched())
1109 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001110 }
1111 goto search_again;
1112 }
1113 /*
1114 * | ---- desired range ---- |
1115 * | state | or | state |
1116 *
1117 * There's a hole, we need to insert something in it and
1118 * ignore the extent we found.
1119 */
1120 if (state->start > start) {
1121 u64 this_end;
1122 if (end < last_start)
1123 this_end = end;
1124 else
1125 this_end = last_start - 1;
1126
1127 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001128 if (!prealloc) {
1129 err = -ENOMEM;
1130 goto out;
1131 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001132
1133 /*
1134 * Avoid to free 'prealloc' if it can be merged with
1135 * the later extent.
1136 */
1137 err = insert_state(tree, prealloc, start, this_end,
1138 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001139 if (err)
1140 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001141 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001142 prealloc = NULL;
1143 start = this_end + 1;
1144 goto search_again;
1145 }
1146 /*
1147 * | ---- desired range ---- |
1148 * | state |
1149 * We need to split the extent, and set the bit
1150 * on the first half
1151 */
1152 if (state->start <= end && state->end > end) {
1153 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001154 if (!prealloc) {
1155 err = -ENOMEM;
1156 goto out;
1157 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001158
1159 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001160 if (err)
1161 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162
1163 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001164 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001165 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001166 prealloc = NULL;
1167 goto out;
1168 }
1169
1170 goto search_again;
1171
1172out:
1173 spin_unlock(&tree->lock);
1174 if (prealloc)
1175 free_extent_state(prealloc);
1176
1177 return err;
1178
1179search_again:
1180 if (start > end)
1181 goto out;
1182 spin_unlock(&tree->lock);
1183 if (mask & __GFP_WAIT)
1184 cond_resched();
1185 goto again;
1186}
1187
Chris Masond1310b22008-01-24 16:13:08 -05001188/* wrappers around set/clear extent bit */
1189int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1190 gfp_t mask)
1191{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001192 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001193 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001194}
Chris Masond1310b22008-01-24 16:13:08 -05001195
1196int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001197 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001198{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001199 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001200 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001201}
Chris Masond1310b22008-01-24 16:13:08 -05001202
1203int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001204 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001205{
Chris Mason2c64c532009-09-02 15:04:12 -04001206 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001207}
Chris Masond1310b22008-01-24 16:13:08 -05001208
1209int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001210 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001211{
1212 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001213 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001214 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001215}
Chris Masond1310b22008-01-24 16:13:08 -05001216
Liu Bo9e8a4a82012-09-05 19:10:51 -06001217int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1218 struct extent_state **cached_state, gfp_t mask)
1219{
1220 return set_extent_bit(tree, start, end,
1221 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1222 NULL, cached_state, mask);
1223}
1224
Chris Masond1310b22008-01-24 16:13:08 -05001225int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1226 gfp_t mask)
1227{
1228 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001229 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001230 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001231}
Chris Masond1310b22008-01-24 16:13:08 -05001232
1233int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1234 gfp_t mask)
1235{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001236 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001237 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001238}
Chris Masond1310b22008-01-24 16:13:08 -05001239
Chris Masond1310b22008-01-24 16:13:08 -05001240int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001241 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001242{
Liu Bo6b67a322013-03-28 08:30:28 +00001243 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001244 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001245}
Chris Masond1310b22008-01-24 16:13:08 -05001246
Josef Bacik5fd02042012-05-02 14:00:54 -04001247int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1248 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001249{
Chris Mason2c64c532009-09-02 15:04:12 -04001250 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001251 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001252}
Chris Masond1310b22008-01-24 16:13:08 -05001253
Chris Masond352ac62008-09-29 15:18:18 -04001254/*
1255 * either insert or lock state struct between start and end use mask to tell
1256 * us if waiting is desired.
1257 */
Chris Mason1edbb732009-09-02 13:24:36 -04001258int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001259 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001260{
1261 int err;
1262 u64 failed_start;
1263 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001264 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1265 EXTENT_LOCKED, &failed_start,
1266 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001267 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001268 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1269 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001270 } else
Chris Masond1310b22008-01-24 16:13:08 -05001271 break;
Chris Masond1310b22008-01-24 16:13:08 -05001272 WARN_ON(start > end);
1273 }
1274 return err;
1275}
Chris Masond1310b22008-01-24 16:13:08 -05001276
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001277int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001278{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001279 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001280}
1281
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001282int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001283{
1284 int err;
1285 u64 failed_start;
1286
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001287 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1288 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001289 if (err == -EEXIST) {
1290 if (failed_start > start)
1291 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001292 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001293 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001294 }
Josef Bacik25179202008-10-29 14:49:05 -04001295 return 1;
1296}
Josef Bacik25179202008-10-29 14:49:05 -04001297
Chris Mason2c64c532009-09-02 15:04:12 -04001298int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1299 struct extent_state **cached, gfp_t mask)
1300{
1301 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1302 mask);
1303}
1304
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001305int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001306{
Chris Mason2c64c532009-09-02 15:04:12 -04001307 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001308 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001309}
Chris Masond1310b22008-01-24 16:13:08 -05001310
Chris Mason4adaa612013-03-26 13:07:00 -04001311int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1312{
1313 unsigned long index = start >> PAGE_CACHE_SHIFT;
1314 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1315 struct page *page;
1316
1317 while (index <= end_index) {
1318 page = find_get_page(inode->i_mapping, index);
1319 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1320 clear_page_dirty_for_io(page);
1321 page_cache_release(page);
1322 index++;
1323 }
1324 return 0;
1325}
1326
1327int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1328{
1329 unsigned long index = start >> PAGE_CACHE_SHIFT;
1330 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1331 struct page *page;
1332
1333 while (index <= end_index) {
1334 page = find_get_page(inode->i_mapping, index);
1335 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1336 account_page_redirty(page);
1337 __set_page_dirty_nobuffers(page);
1338 page_cache_release(page);
1339 index++;
1340 }
1341 return 0;
1342}
1343
Chris Masond1310b22008-01-24 16:13:08 -05001344/*
Chris Masond1310b22008-01-24 16:13:08 -05001345 * helper function to set both pages and extents in the tree writeback
1346 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001347static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001348{
1349 unsigned long index = start >> PAGE_CACHE_SHIFT;
1350 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1351 struct page *page;
1352
1353 while (index <= end_index) {
1354 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001355 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001356 set_page_writeback(page);
1357 page_cache_release(page);
1358 index++;
1359 }
Chris Masond1310b22008-01-24 16:13:08 -05001360 return 0;
1361}
Chris Masond1310b22008-01-24 16:13:08 -05001362
Chris Masond352ac62008-09-29 15:18:18 -04001363/* find the first state struct with 'bits' set after 'start', and
1364 * return it. tree->lock must be held. NULL will returned if
1365 * nothing was found after 'start'
1366 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001367static struct extent_state *
1368find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001369 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001370{
1371 struct rb_node *node;
1372 struct extent_state *state;
1373
1374 /*
1375 * this search will find all the extents that end after
1376 * our range starts.
1377 */
1378 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001379 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001380 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001381
Chris Masond3977122009-01-05 21:25:51 -05001382 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001383 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001384 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001385 return state;
Chris Masond3977122009-01-05 21:25:51 -05001386
Chris Masond7fc6402008-02-18 12:12:38 -05001387 node = rb_next(node);
1388 if (!node)
1389 break;
1390 }
1391out:
1392 return NULL;
1393}
Chris Masond7fc6402008-02-18 12:12:38 -05001394
Chris Masond352ac62008-09-29 15:18:18 -04001395/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001396 * find the first offset in the io tree with 'bits' set. zero is
1397 * returned if we find something, and *start_ret and *end_ret are
1398 * set to reflect the state struct that was found.
1399 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001400 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001401 */
1402int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001403 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001404 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001405{
1406 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001407 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001408 int ret = 1;
1409
1410 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001411 if (cached_state && *cached_state) {
1412 state = *cached_state;
1413 if (state->end == start - 1 && state->tree) {
1414 n = rb_next(&state->rb_node);
1415 while (n) {
1416 state = rb_entry(n, struct extent_state,
1417 rb_node);
1418 if (state->state & bits)
1419 goto got_it;
1420 n = rb_next(n);
1421 }
1422 free_extent_state(*cached_state);
1423 *cached_state = NULL;
1424 goto out;
1425 }
1426 free_extent_state(*cached_state);
1427 *cached_state = NULL;
1428 }
1429
Xiao Guangrong69261c42011-07-14 03:19:45 +00001430 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001431got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001432 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001433 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001434 *start_ret = state->start;
1435 *end_ret = state->end;
1436 ret = 0;
1437 }
Josef Bacike6138872012-09-27 17:07:30 -04001438out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001439 spin_unlock(&tree->lock);
1440 return ret;
1441}
1442
1443/*
Chris Masond352ac62008-09-29 15:18:18 -04001444 * find a contiguous range of bytes in the file marked as delalloc, not
1445 * more than 'max_bytes'. start and end are used to return the range,
1446 *
1447 * 1 is returned if we find something, 0 if nothing was in the tree
1448 */
Chris Masonc8b97812008-10-29 14:49:59 -04001449static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001450 u64 *start, u64 *end, u64 max_bytes,
1451 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001452{
1453 struct rb_node *node;
1454 struct extent_state *state;
1455 u64 cur_start = *start;
1456 u64 found = 0;
1457 u64 total_bytes = 0;
1458
Chris Masoncad321a2008-12-17 14:51:42 -05001459 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001460
Chris Masond1310b22008-01-24 16:13:08 -05001461 /*
1462 * this search will find all the extents that end after
1463 * our range starts.
1464 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001465 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001466 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001467 if (!found)
1468 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001469 goto out;
1470 }
1471
Chris Masond3977122009-01-05 21:25:51 -05001472 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001473 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001474 if (found && (state->start != cur_start ||
1475 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001476 goto out;
1477 }
1478 if (!(state->state & EXTENT_DELALLOC)) {
1479 if (!found)
1480 *end = state->end;
1481 goto out;
1482 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001483 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001484 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001485 *cached_state = state;
1486 atomic_inc(&state->refs);
1487 }
Chris Masond1310b22008-01-24 16:13:08 -05001488 found++;
1489 *end = state->end;
1490 cur_start = state->end + 1;
1491 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001492 total_bytes += state->end - state->start + 1;
Josef Bacik573aeca2013-08-30 14:38:49 -04001493 if (total_bytes >= max_bytes) {
1494 *end = *start + max_bytes - 1;
1495 break;
1496 }
1497 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001498 break;
1499 }
1500out:
Chris Masoncad321a2008-12-17 14:51:42 -05001501 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001502 return found;
1503}
1504
Jeff Mahoney143bede2012-03-01 14:56:26 +01001505static noinline void __unlock_for_delalloc(struct inode *inode,
1506 struct page *locked_page,
1507 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001508{
1509 int ret;
1510 struct page *pages[16];
1511 unsigned long index = start >> PAGE_CACHE_SHIFT;
1512 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1513 unsigned long nr_pages = end_index - index + 1;
1514 int i;
1515
1516 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001517 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001518
Chris Masond3977122009-01-05 21:25:51 -05001519 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001520 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001521 min_t(unsigned long, nr_pages,
1522 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001523 for (i = 0; i < ret; i++) {
1524 if (pages[i] != locked_page)
1525 unlock_page(pages[i]);
1526 page_cache_release(pages[i]);
1527 }
1528 nr_pages -= ret;
1529 index += ret;
1530 cond_resched();
1531 }
Chris Masonc8b97812008-10-29 14:49:59 -04001532}
1533
1534static noinline int lock_delalloc_pages(struct inode *inode,
1535 struct page *locked_page,
1536 u64 delalloc_start,
1537 u64 delalloc_end)
1538{
1539 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1540 unsigned long start_index = index;
1541 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1542 unsigned long pages_locked = 0;
1543 struct page *pages[16];
1544 unsigned long nrpages;
1545 int ret;
1546 int i;
1547
1548 /* the caller is responsible for locking the start index */
1549 if (index == locked_page->index && index == end_index)
1550 return 0;
1551
1552 /* skip the page at the start index */
1553 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001554 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001555 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001556 min_t(unsigned long,
1557 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001558 if (ret == 0) {
1559 ret = -EAGAIN;
1560 goto done;
1561 }
1562 /* now we have an array of pages, lock them all */
1563 for (i = 0; i < ret; i++) {
1564 /*
1565 * the caller is taking responsibility for
1566 * locked_page
1567 */
Chris Mason771ed682008-11-06 22:02:51 -05001568 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001569 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001570 if (!PageDirty(pages[i]) ||
1571 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001572 ret = -EAGAIN;
1573 unlock_page(pages[i]);
1574 page_cache_release(pages[i]);
1575 goto done;
1576 }
1577 }
Chris Masonc8b97812008-10-29 14:49:59 -04001578 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001579 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001580 }
Chris Masonc8b97812008-10-29 14:49:59 -04001581 nrpages -= ret;
1582 index += ret;
1583 cond_resched();
1584 }
1585 ret = 0;
1586done:
1587 if (ret && pages_locked) {
1588 __unlock_for_delalloc(inode, locked_page,
1589 delalloc_start,
1590 ((u64)(start_index + pages_locked - 1)) <<
1591 PAGE_CACHE_SHIFT);
1592 }
1593 return ret;
1594}
1595
1596/*
1597 * find a contiguous range of bytes in the file marked as delalloc, not
1598 * more than 'max_bytes'. start and end are used to return the range,
1599 *
1600 * 1 is returned if we find something, 0 if nothing was in the tree
1601 */
1602static noinline u64 find_lock_delalloc_range(struct inode *inode,
1603 struct extent_io_tree *tree,
1604 struct page *locked_page,
1605 u64 *start, u64 *end,
1606 u64 max_bytes)
1607{
1608 u64 delalloc_start;
1609 u64 delalloc_end;
1610 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001611 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001612 int ret;
1613 int loops = 0;
1614
1615again:
1616 /* step one, find a bunch of delalloc bytes starting at start */
1617 delalloc_start = *start;
1618 delalloc_end = 0;
1619 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001620 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001621 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001622 *start = delalloc_start;
1623 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001624 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001625 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001626 }
1627
1628 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001629 * start comes from the offset of locked_page. We have to lock
1630 * pages in order, so we can't process delalloc bytes before
1631 * locked_page
1632 */
Chris Masond3977122009-01-05 21:25:51 -05001633 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001634 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001635
1636 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001637 * make sure to limit the number of pages we try to lock down
1638 * if we're looping.
1639 */
Chris Masond3977122009-01-05 21:25:51 -05001640 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001641 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001642
Chris Masonc8b97812008-10-29 14:49:59 -04001643 /* step two, lock all the pages after the page that has start */
1644 ret = lock_delalloc_pages(inode, locked_page,
1645 delalloc_start, delalloc_end);
1646 if (ret == -EAGAIN) {
1647 /* some of the pages are gone, lets avoid looping by
1648 * shortening the size of the delalloc range we're searching
1649 */
Chris Mason9655d292009-09-02 15:22:30 -04001650 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001651 if (!loops) {
1652 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1653 max_bytes = PAGE_CACHE_SIZE - offset;
1654 loops = 1;
1655 goto again;
1656 } else {
1657 found = 0;
1658 goto out_failed;
1659 }
1660 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001661 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001662
1663 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001664 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001665
1666 /* then test to make sure it is all still delalloc */
1667 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001668 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001669 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001670 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1671 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001672 __unlock_for_delalloc(inode, locked_page,
1673 delalloc_start, delalloc_end);
1674 cond_resched();
1675 goto again;
1676 }
Chris Mason9655d292009-09-02 15:22:30 -04001677 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001678 *start = delalloc_start;
1679 *end = delalloc_end;
1680out_failed:
1681 return found;
1682}
1683
Josef Bacikc2790a22013-07-29 11:20:47 -04001684int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1685 struct page *locked_page,
1686 unsigned long clear_bits,
1687 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001688{
Josef Bacikc2790a22013-07-29 11:20:47 -04001689 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001690 int ret;
1691 struct page *pages[16];
1692 unsigned long index = start >> PAGE_CACHE_SHIFT;
1693 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1694 unsigned long nr_pages = end_index - index + 1;
1695 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001696
Chris Mason2c64c532009-09-02 15:04:12 -04001697 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001698 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001699 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001700
Chris Masond3977122009-01-05 21:25:51 -05001701 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001702 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001703 min_t(unsigned long,
1704 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001705 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001706
Josef Bacikc2790a22013-07-29 11:20:47 -04001707 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001708 SetPagePrivate2(pages[i]);
1709
Chris Masonc8b97812008-10-29 14:49:59 -04001710 if (pages[i] == locked_page) {
1711 page_cache_release(pages[i]);
1712 continue;
1713 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001714 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001715 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001716 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001717 set_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001718 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001719 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001720 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001721 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001722 page_cache_release(pages[i]);
1723 }
1724 nr_pages -= ret;
1725 index += ret;
1726 cond_resched();
1727 }
1728 return 0;
1729}
Chris Masonc8b97812008-10-29 14:49:59 -04001730
Chris Masond352ac62008-09-29 15:18:18 -04001731/*
1732 * count the number of bytes in the tree that have a given bit(s)
1733 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1734 * cached. The total number found is returned.
1735 */
Chris Masond1310b22008-01-24 16:13:08 -05001736u64 count_range_bits(struct extent_io_tree *tree,
1737 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001738 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001739{
1740 struct rb_node *node;
1741 struct extent_state *state;
1742 u64 cur_start = *start;
1743 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001744 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001745 int found = 0;
1746
1747 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001748 WARN_ON(1);
1749 return 0;
1750 }
1751
Chris Masoncad321a2008-12-17 14:51:42 -05001752 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001753 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1754 total_bytes = tree->dirty_bytes;
1755 goto out;
1756 }
1757 /*
1758 * this search will find all the extents that end after
1759 * our range starts.
1760 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001761 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001762 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001763 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001764
Chris Masond3977122009-01-05 21:25:51 -05001765 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001766 state = rb_entry(node, struct extent_state, rb_node);
1767 if (state->start > search_end)
1768 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001769 if (contig && found && state->start > last + 1)
1770 break;
1771 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001772 total_bytes += min(search_end, state->end) + 1 -
1773 max(cur_start, state->start);
1774 if (total_bytes >= max_bytes)
1775 break;
1776 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001777 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001778 found = 1;
1779 }
Chris Masonec29ed52011-02-23 16:23:20 -05001780 last = state->end;
1781 } else if (contig && found) {
1782 break;
Chris Masond1310b22008-01-24 16:13:08 -05001783 }
1784 node = rb_next(node);
1785 if (!node)
1786 break;
1787 }
1788out:
Chris Masoncad321a2008-12-17 14:51:42 -05001789 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001790 return total_bytes;
1791}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001792
Chris Masond352ac62008-09-29 15:18:18 -04001793/*
1794 * set the private field for a given byte offset in the tree. If there isn't
1795 * an extent_state there already, this does nothing.
1796 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001797static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001798{
1799 struct rb_node *node;
1800 struct extent_state *state;
1801 int ret = 0;
1802
Chris Masoncad321a2008-12-17 14:51:42 -05001803 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001804 /*
1805 * this search will find all the extents that end after
1806 * our range starts.
1807 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001808 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001809 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001810 ret = -ENOENT;
1811 goto out;
1812 }
1813 state = rb_entry(node, struct extent_state, rb_node);
1814 if (state->start != start) {
1815 ret = -ENOENT;
1816 goto out;
1817 }
1818 state->private = private;
1819out:
Chris Masoncad321a2008-12-17 14:51:42 -05001820 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001821 return ret;
1822}
1823
1824int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1825{
1826 struct rb_node *node;
1827 struct extent_state *state;
1828 int ret = 0;
1829
Chris Masoncad321a2008-12-17 14:51:42 -05001830 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001831 /*
1832 * this search will find all the extents that end after
1833 * our range starts.
1834 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001835 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001836 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001837 ret = -ENOENT;
1838 goto out;
1839 }
1840 state = rb_entry(node, struct extent_state, rb_node);
1841 if (state->start != start) {
1842 ret = -ENOENT;
1843 goto out;
1844 }
1845 *private = state->private;
1846out:
Chris Masoncad321a2008-12-17 14:51:42 -05001847 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001848 return ret;
1849}
1850
1851/*
1852 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001853 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001854 * has the bits set. Otherwise, 1 is returned if any bit in the
1855 * range is found set.
1856 */
1857int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001858 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001859{
1860 struct extent_state *state = NULL;
1861 struct rb_node *node;
1862 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001863
Chris Masoncad321a2008-12-17 14:51:42 -05001864 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001865 if (cached && cached->tree && cached->start <= start &&
1866 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001867 node = &cached->rb_node;
1868 else
1869 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001870 while (node && start <= end) {
1871 state = rb_entry(node, struct extent_state, rb_node);
1872
1873 if (filled && state->start > start) {
1874 bitset = 0;
1875 break;
1876 }
1877
1878 if (state->start > end)
1879 break;
1880
1881 if (state->state & bits) {
1882 bitset = 1;
1883 if (!filled)
1884 break;
1885 } else if (filled) {
1886 bitset = 0;
1887 break;
1888 }
Chris Mason46562cec2009-09-23 20:23:16 -04001889
1890 if (state->end == (u64)-1)
1891 break;
1892
Chris Masond1310b22008-01-24 16:13:08 -05001893 start = state->end + 1;
1894 if (start > end)
1895 break;
1896 node = rb_next(node);
1897 if (!node) {
1898 if (filled)
1899 bitset = 0;
1900 break;
1901 }
1902 }
Chris Masoncad321a2008-12-17 14:51:42 -05001903 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001904 return bitset;
1905}
Chris Masond1310b22008-01-24 16:13:08 -05001906
1907/*
1908 * helper function to set a given page up to date if all the
1909 * extents in the tree for that page are up to date
1910 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001911static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001912{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001913 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001914 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001915 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001916 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001917}
1918
1919/*
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001920 * When IO fails, either with EIO or csum verification fails, we
1921 * try other mirrors that might have a good copy of the data. This
1922 * io_failure_record is used to record state as we go through all the
1923 * mirrors. If another mirror has good data, the page is set up to date
1924 * and things continue. If a good mirror can't be found, the original
1925 * bio end_io callback is called to indicate things have failed.
1926 */
1927struct io_failure_record {
1928 struct page *page;
1929 u64 start;
1930 u64 len;
1931 u64 logical;
1932 unsigned long bio_flags;
1933 int this_mirror;
1934 int failed_mirror;
1935 int in_validation;
1936};
1937
1938static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1939 int did_repair)
1940{
1941 int ret;
1942 int err = 0;
1943 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1944
1945 set_state_private(failure_tree, rec->start, 0);
1946 ret = clear_extent_bits(failure_tree, rec->start,
1947 rec->start + rec->len - 1,
1948 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1949 if (ret)
1950 err = ret;
1951
David Woodhouse53b381b2013-01-29 18:40:14 -05001952 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1953 rec->start + rec->len - 1,
1954 EXTENT_DAMAGED, GFP_NOFS);
1955 if (ret && !err)
1956 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001957
1958 kfree(rec);
1959 return err;
1960}
1961
1962static void repair_io_failure_callback(struct bio *bio, int err)
1963{
1964 complete(bio->bi_private);
1965}
1966
1967/*
1968 * this bypasses the standard btrfs submit functions deliberately, as
1969 * the standard behavior is to write all copies in a raid setup. here we only
1970 * want to write the one bad copy. so we do the mapping for ourselves and issue
1971 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001972 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001973 * actually prevents the read that triggered the error from finishing.
1974 * currently, there can be no more than two copies of every data bit. thus,
1975 * exactly one rewrite is required.
1976 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001977int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001978 u64 length, u64 logical, struct page *page,
1979 int mirror_num)
1980{
1981 struct bio *bio;
1982 struct btrfs_device *dev;
1983 DECLARE_COMPLETION_ONSTACK(compl);
1984 u64 map_length = 0;
1985 u64 sector;
1986 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05001987 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001988 int ret;
1989
1990 BUG_ON(!mirror_num);
1991
David Woodhouse53b381b2013-01-29 18:40:14 -05001992 /* we can't repair anything in raid56 yet */
1993 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
1994 return 0;
1995
Chris Mason9be33952013-05-17 18:30:14 -04001996 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001997 if (!bio)
1998 return -EIO;
1999 bio->bi_private = &compl;
2000 bio->bi_end_io = repair_io_failure_callback;
2001 bio->bi_size = 0;
2002 map_length = length;
2003
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002004 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002005 &map_length, &bbio, mirror_num);
2006 if (ret) {
2007 bio_put(bio);
2008 return -EIO;
2009 }
2010 BUG_ON(mirror_num != bbio->mirror_num);
2011 sector = bbio->stripes[mirror_num-1].physical >> 9;
2012 bio->bi_sector = sector;
2013 dev = bbio->stripes[mirror_num-1].dev;
2014 kfree(bbio);
2015 if (!dev || !dev->bdev || !dev->writeable) {
2016 bio_put(bio);
2017 return -EIO;
2018 }
2019 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002020 bio_add_page(bio, page, length, start - page_offset(page));
Stefan Behrens21adbd52011-11-09 13:44:05 +01002021 btrfsic_submit_bio(WRITE_SYNC, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002022 wait_for_completion(&compl);
2023
2024 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2025 /* try to remap that extent elsewhere? */
2026 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002027 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002028 return -EIO;
2029 }
2030
Anand Jaind5b025d2012-07-02 22:05:21 -06002031 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04002032 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2033 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002034
2035 bio_put(bio);
2036 return 0;
2037}
2038
Josef Bacikea466792012-03-26 21:57:36 -04002039int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2040 int mirror_num)
2041{
Josef Bacikea466792012-03-26 21:57:36 -04002042 u64 start = eb->start;
2043 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002044 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002045
2046 for (i = 0; i < num_pages; i++) {
2047 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002048 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04002049 start, p, mirror_num);
2050 if (ret)
2051 break;
2052 start += PAGE_CACHE_SIZE;
2053 }
2054
2055 return ret;
2056}
2057
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002058/*
2059 * each time an IO finishes, we do a fast check in the IO failure tree
2060 * to see if we need to process or clean up an io_failure_record
2061 */
2062static int clean_io_failure(u64 start, struct page *page)
2063{
2064 u64 private;
2065 u64 private_failure;
2066 struct io_failure_record *failrec;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002067 struct btrfs_fs_info *fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002068 struct extent_state *state;
2069 int num_copies;
2070 int did_repair = 0;
2071 int ret;
2072 struct inode *inode = page->mapping->host;
2073
2074 private = 0;
2075 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2076 (u64)-1, 1, EXTENT_DIRTY, 0);
2077 if (!ret)
2078 return 0;
2079
2080 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2081 &private_failure);
2082 if (ret)
2083 return 0;
2084
2085 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2086 BUG_ON(!failrec->this_mirror);
2087
2088 if (failrec->in_validation) {
2089 /* there was no real error, just free the record */
2090 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2091 failrec->start);
2092 did_repair = 1;
2093 goto out;
2094 }
2095
2096 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2097 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2098 failrec->start,
2099 EXTENT_LOCKED);
2100 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2101
Miao Xie883d0de2013-07-25 19:22:35 +08002102 if (state && state->start <= failrec->start &&
2103 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002104 fs_info = BTRFS_I(inode)->root->fs_info;
2105 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2106 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002107 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002108 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002109 failrec->logical, page,
2110 failrec->failed_mirror);
2111 did_repair = !ret;
2112 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002113 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002114 }
2115
2116out:
2117 if (!ret)
2118 ret = free_io_failure(inode, failrec, did_repair);
2119
2120 return ret;
2121}
2122
2123/*
2124 * this is a generic handler for readpage errors (default
2125 * readpage_io_failed_hook). if other copies exist, read those and write back
2126 * good data to the failed position. does not investigate in remapping the
2127 * failed extent elsewhere, hoping the device will be smart enough to do this as
2128 * needed
2129 */
2130
Miao Xiefacc8a222013-07-25 19:22:34 +08002131static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2132 struct page *page, u64 start, u64 end,
2133 int failed_mirror)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002134{
2135 struct io_failure_record *failrec = NULL;
2136 u64 private;
2137 struct extent_map *em;
2138 struct inode *inode = page->mapping->host;
2139 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2140 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2141 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2142 struct bio *bio;
Miao Xiefacc8a222013-07-25 19:22:34 +08002143 struct btrfs_io_bio *btrfs_failed_bio;
2144 struct btrfs_io_bio *btrfs_bio;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002145 int num_copies;
2146 int ret;
2147 int read_mode;
2148 u64 logical;
2149
2150 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2151
2152 ret = get_state_private(failure_tree, start, &private);
2153 if (ret) {
2154 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2155 if (!failrec)
2156 return -ENOMEM;
2157 failrec->start = start;
2158 failrec->len = end - start + 1;
2159 failrec->this_mirror = 0;
2160 failrec->bio_flags = 0;
2161 failrec->in_validation = 0;
2162
2163 read_lock(&em_tree->lock);
2164 em = lookup_extent_mapping(em_tree, start, failrec->len);
2165 if (!em) {
2166 read_unlock(&em_tree->lock);
2167 kfree(failrec);
2168 return -EIO;
2169 }
2170
2171 if (em->start > start || em->start + em->len < start) {
2172 free_extent_map(em);
2173 em = NULL;
2174 }
2175 read_unlock(&em_tree->lock);
2176
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002177 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002178 kfree(failrec);
2179 return -EIO;
2180 }
2181 logical = start - em->start;
2182 logical = em->block_start + logical;
2183 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2184 logical = em->block_start;
2185 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2186 extent_set_compress_type(&failrec->bio_flags,
2187 em->compress_type);
2188 }
2189 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2190 "len=%llu\n", logical, start, failrec->len);
2191 failrec->logical = logical;
2192 free_extent_map(em);
2193
2194 /* set the bits in the private failure tree */
2195 ret = set_extent_bits(failure_tree, start, end,
2196 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2197 if (ret >= 0)
2198 ret = set_state_private(failure_tree, start,
2199 (u64)(unsigned long)failrec);
2200 /* set the bits in the inode's tree */
2201 if (ret >= 0)
2202 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2203 GFP_NOFS);
2204 if (ret < 0) {
2205 kfree(failrec);
2206 return ret;
2207 }
2208 } else {
2209 failrec = (struct io_failure_record *)(unsigned long)private;
2210 pr_debug("bio_readpage_error: (found) logical=%llu, "
2211 "start=%llu, len=%llu, validation=%d\n",
2212 failrec->logical, failrec->start, failrec->len,
2213 failrec->in_validation);
2214 /*
2215 * when data can be on disk more than twice, add to failrec here
2216 * (e.g. with a list for failed_mirror) to make
2217 * clean_io_failure() clean all those errors at once.
2218 */
2219 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002220 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2221 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002222 if (num_copies == 1) {
2223 /*
2224 * we only have a single copy of the data, so don't bother with
2225 * all the retry and error correction code that follows. no
2226 * matter what the error is, it is very likely to persist.
2227 */
Miao Xie09a7f7a2013-07-25 19:22:32 +08002228 pr_debug("bio_readpage_error: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
2229 num_copies, failrec->this_mirror, failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002230 free_io_failure(inode, failrec, 0);
2231 return -EIO;
2232 }
2233
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002234 /*
2235 * there are two premises:
2236 * a) deliver good data to the caller
2237 * b) correct the bad sectors on disk
2238 */
2239 if (failed_bio->bi_vcnt > 1) {
2240 /*
2241 * to fulfill b), we need to know the exact failing sectors, as
2242 * we don't want to rewrite any more than the failed ones. thus,
2243 * we need separate read requests for the failed bio
2244 *
2245 * if the following BUG_ON triggers, our validation request got
2246 * merged. we need separate requests for our algorithm to work.
2247 */
2248 BUG_ON(failrec->in_validation);
2249 failrec->in_validation = 1;
2250 failrec->this_mirror = failed_mirror;
2251 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2252 } else {
2253 /*
2254 * we're ready to fulfill a) and b) alongside. get a good copy
2255 * of the failed sector and if we succeed, we have setup
2256 * everything for repair_io_failure to do the rest for us.
2257 */
2258 if (failrec->in_validation) {
2259 BUG_ON(failrec->this_mirror != failed_mirror);
2260 failrec->in_validation = 0;
2261 failrec->this_mirror = 0;
2262 }
2263 failrec->failed_mirror = failed_mirror;
2264 failrec->this_mirror++;
2265 if (failrec->this_mirror == failed_mirror)
2266 failrec->this_mirror++;
2267 read_mode = READ_SYNC;
2268 }
2269
Miao Xiefacc8a222013-07-25 19:22:34 +08002270 if (failrec->this_mirror > num_copies) {
2271 pr_debug("bio_readpage_error: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002272 num_copies, failrec->this_mirror, failed_mirror);
2273 free_io_failure(inode, failrec, 0);
2274 return -EIO;
2275 }
2276
Chris Mason9be33952013-05-17 18:30:14 -04002277 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002278 if (!bio) {
2279 free_io_failure(inode, failrec, 0);
2280 return -EIO;
2281 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002282 bio->bi_end_io = failed_bio->bi_end_io;
2283 bio->bi_sector = failrec->logical >> 9;
2284 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2285 bio->bi_size = 0;
2286
Miao Xiefacc8a222013-07-25 19:22:34 +08002287 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2288 if (btrfs_failed_bio->csum) {
2289 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2290 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2291
2292 btrfs_bio = btrfs_io_bio(bio);
2293 btrfs_bio->csum = btrfs_bio->csum_inline;
2294 phy_offset >>= inode->i_sb->s_blocksize_bits;
2295 phy_offset *= csum_size;
2296 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + phy_offset,
2297 csum_size);
2298 }
2299
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002300 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2301
2302 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2303 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2304 failrec->this_mirror, num_copies, failrec->in_validation);
2305
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002306 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2307 failrec->this_mirror,
2308 failrec->bio_flags, 0);
2309 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002310}
2311
Chris Masond1310b22008-01-24 16:13:08 -05002312/* lots and lots of room for performance fixes in the end_bio funcs */
2313
Jeff Mahoney87826df2012-02-15 16:23:57 +01002314int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2315{
2316 int uptodate = (err == 0);
2317 struct extent_io_tree *tree;
2318 int ret;
2319
2320 tree = &BTRFS_I(page->mapping->host)->io_tree;
2321
2322 if (tree->ops && tree->ops->writepage_end_io_hook) {
2323 ret = tree->ops->writepage_end_io_hook(page, start,
2324 end, NULL, uptodate);
2325 if (ret)
2326 uptodate = 0;
2327 }
2328
Jeff Mahoney87826df2012-02-15 16:23:57 +01002329 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002330 ClearPageUptodate(page);
2331 SetPageError(page);
2332 }
2333 return 0;
2334}
2335
Chris Masond1310b22008-01-24 16:13:08 -05002336/*
2337 * after a writepage IO is done, we need to:
2338 * clear the uptodate bits on error
2339 * clear the writeback bits in the extent tree for this IO
2340 * end_page_writeback if the page has no more pending IO
2341 *
2342 * Scheduling is not allowed, so the extent state tree is expected
2343 * to have one and only one object corresponding to this IO.
2344 */
Chris Masond1310b22008-01-24 16:13:08 -05002345static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002346{
Chris Masond1310b22008-01-24 16:13:08 -05002347 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04002348 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002349 u64 start;
2350 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05002351
Chris Masond1310b22008-01-24 16:13:08 -05002352 do {
2353 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002354 tree = &BTRFS_I(page->mapping->host)->io_tree;
2355
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002356 /* We always issue full-page reads, but if some block
2357 * in a page fails to read, blk_update_request() will
2358 * advance bv_offset and adjust bv_len to compensate.
2359 * Print a warning for nonzero offsets, and an error
2360 * if they don't add up to a full page. */
2361 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2362 printk("%s page write in btrfs with offset %u and length %u\n",
2363 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2364 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2365 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002366
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002367 start = page_offset(page);
2368 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002369
2370 if (--bvec >= bio->bi_io_vec)
2371 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002372
Jeff Mahoney87826df2012-02-15 16:23:57 +01002373 if (end_extent_writepage(page, err, start, end))
2374 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002375
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002376 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002377 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002378
Chris Masond1310b22008-01-24 16:13:08 -05002379 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002380}
2381
Miao Xie883d0de2013-07-25 19:22:35 +08002382static void
2383endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2384 int uptodate)
2385{
2386 struct extent_state *cached = NULL;
2387 u64 end = start + len - 1;
2388
2389 if (uptodate && tree->track_uptodate)
2390 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2391 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2392}
2393
Chris Masond1310b22008-01-24 16:13:08 -05002394/*
2395 * after a readpage IO is done, we need to:
2396 * clear the uptodate bits on error
2397 * set the uptodate bits if things worked
2398 * set the page up to date if all extents in the tree are uptodate
2399 * clear the lock bit in the extent tree
2400 * unlock the page if there are no other extents locked for it
2401 *
2402 * Scheduling is not allowed, so the extent state tree is expected
2403 * to have one and only one object corresponding to this IO.
2404 */
Chris Masond1310b22008-01-24 16:13:08 -05002405static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002406{
2407 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002408 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2409 struct bio_vec *bvec = bio->bi_io_vec;
Miao Xiefacc8a222013-07-25 19:22:34 +08002410 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002411 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002412 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002413 u64 start;
2414 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002415 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002416 u64 extent_start = 0;
2417 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002418 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002419 int ret;
2420
Chris Masond20f7042008-12-08 16:58:54 -05002421 if (err)
2422 uptodate = 0;
2423
Chris Masond1310b22008-01-24 16:13:08 -05002424 do {
2425 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002426 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002427
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002428 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Chris Mason9be33952013-05-17 18:30:14 -04002429 "mirror=%lu\n", (u64)bio->bi_sector, err,
2430 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002431 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002432
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002433 /* We always issue full-page reads, but if some block
2434 * in a page fails to read, blk_update_request() will
2435 * advance bv_offset and adjust bv_len to compensate.
2436 * Print a warning for nonzero offsets, and an error
2437 * if they don't add up to a full page. */
2438 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2439 printk("%s page read in btrfs with offset %u and length %u\n",
2440 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2441 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2442 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002443
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002444 start = page_offset(page);
2445 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002446 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002447
Chris Mason4125bf72010-02-03 18:18:45 +00002448 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002449 prefetchw(&bvec->bv_page->flags);
2450
Chris Mason9be33952013-05-17 18:30:14 -04002451 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002452 if (likely(uptodate && tree->ops &&
2453 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002454 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2455 page, start, end,
2456 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002457 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002458 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002459 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002460 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002461 }
Josef Bacikea466792012-03-26 21:57:36 -04002462
Miao Xief2a09da2013-07-25 19:22:33 +08002463 if (likely(uptodate))
2464 goto readpage_ok;
2465
2466 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002467 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002468 if (!ret && !err &&
2469 test_bit(BIO_UPTODATE, &bio->bi_flags))
2470 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002471 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002472 /*
2473 * The generic bio_readpage_error handles errors the
2474 * following way: If possible, new read requests are
2475 * created and submitted and will end up in
2476 * end_bio_extent_readpage as well (if we're lucky, not
2477 * in the !uptodate case). In that case it returns 0 and
2478 * we just go on with the next page in our bio. If it
2479 * can't handle the error it will return -EIO and we
2480 * remain responsible for that page.
2481 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002482 ret = bio_readpage_error(bio, offset, page, start, end,
2483 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002484 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002485 uptodate =
2486 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002487 if (err)
2488 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04002489 continue;
2490 }
2491 }
Miao Xief2a09da2013-07-25 19:22:33 +08002492readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002493 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002494 loff_t i_size = i_size_read(inode);
2495 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2496 unsigned offset;
2497
2498 /* Zero out the end if this page straddles i_size */
2499 offset = i_size & (PAGE_CACHE_SIZE-1);
2500 if (page->index == end_index && offset)
2501 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002502 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002503 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002504 ClearPageUptodate(page);
2505 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002506 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002507 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002508 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002509
2510 if (unlikely(!uptodate)) {
2511 if (extent_len) {
2512 endio_readpage_release_extent(tree,
2513 extent_start,
2514 extent_len, 1);
2515 extent_start = 0;
2516 extent_len = 0;
2517 }
2518 endio_readpage_release_extent(tree, start,
2519 end - start + 1, 0);
2520 } else if (!extent_len) {
2521 extent_start = start;
2522 extent_len = end + 1 - start;
2523 } else if (extent_start + extent_len == start) {
2524 extent_len += end + 1 - start;
2525 } else {
2526 endio_readpage_release_extent(tree, extent_start,
2527 extent_len, uptodate);
2528 extent_start = start;
2529 extent_len = end + 1 - start;
2530 }
Chris Mason4125bf72010-02-03 18:18:45 +00002531 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002532
Miao Xie883d0de2013-07-25 19:22:35 +08002533 if (extent_len)
2534 endio_readpage_release_extent(tree, extent_start, extent_len,
2535 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002536 if (io_bio->end_io)
2537 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002538 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002539}
2540
Chris Mason9be33952013-05-17 18:30:14 -04002541/*
2542 * this allocates from the btrfs_bioset. We're returning a bio right now
2543 * but you can call btrfs_io_bio for the appropriate container_of magic
2544 */
Miao Xie88f794e2010-11-22 03:02:55 +00002545struct bio *
2546btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2547 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002548{
Miao Xiefacc8a222013-07-25 19:22:34 +08002549 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002550 struct bio *bio;
2551
Chris Mason9be33952013-05-17 18:30:14 -04002552 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002553
2554 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002555 while (!bio && (nr_vecs /= 2)) {
2556 bio = bio_alloc_bioset(gfp_flags,
2557 nr_vecs, btrfs_bioset);
2558 }
Chris Masond1310b22008-01-24 16:13:08 -05002559 }
2560
2561 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002562 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002563 bio->bi_bdev = bdev;
2564 bio->bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002565 btrfs_bio = btrfs_io_bio(bio);
2566 btrfs_bio->csum = NULL;
2567 btrfs_bio->csum_allocated = NULL;
2568 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002569 }
2570 return bio;
2571}
2572
Chris Mason9be33952013-05-17 18:30:14 -04002573struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2574{
2575 return bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2576}
2577
2578
2579/* this also allocates from the btrfs_bioset */
2580struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2581{
Miao Xiefacc8a222013-07-25 19:22:34 +08002582 struct btrfs_io_bio *btrfs_bio;
2583 struct bio *bio;
2584
2585 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2586 if (bio) {
2587 btrfs_bio = btrfs_io_bio(bio);
2588 btrfs_bio->csum = NULL;
2589 btrfs_bio->csum_allocated = NULL;
2590 btrfs_bio->end_io = NULL;
2591 }
2592 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002593}
2594
2595
Jeff Mahoney355808c2011-10-03 23:23:14 -04002596static int __must_check submit_one_bio(int rw, struct bio *bio,
2597 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002598{
Chris Masond1310b22008-01-24 16:13:08 -05002599 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002600 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2601 struct page *page = bvec->bv_page;
2602 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002603 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002604
Miao Xie4eee4fa2012-12-21 09:17:45 +00002605 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002606
David Woodhouse902b22f2008-08-20 08:51:49 -04002607 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002608
2609 bio_get(bio);
2610
Chris Mason065631f2008-02-20 12:07:25 -05002611 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002612 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002613 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002614 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002615 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002616
Chris Masond1310b22008-01-24 16:13:08 -05002617 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2618 ret = -EOPNOTSUPP;
2619 bio_put(bio);
2620 return ret;
2621}
2622
David Woodhouse64a16702009-07-15 23:29:37 +01002623static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002624 unsigned long offset, size_t size, struct bio *bio,
2625 unsigned long bio_flags)
2626{
2627 int ret = 0;
2628 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002629 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002630 bio_flags);
2631 BUG_ON(ret < 0);
2632 return ret;
2633
2634}
2635
Chris Masond1310b22008-01-24 16:13:08 -05002636static int submit_extent_page(int rw, struct extent_io_tree *tree,
2637 struct page *page, sector_t sector,
2638 size_t size, unsigned long offset,
2639 struct block_device *bdev,
2640 struct bio **bio_ret,
2641 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002642 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002643 int mirror_num,
2644 unsigned long prev_bio_flags,
2645 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002646{
2647 int ret = 0;
2648 struct bio *bio;
2649 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002650 int contig = 0;
2651 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2652 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002653 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002654
2655 if (bio_ret && *bio_ret) {
2656 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002657 if (old_compressed)
2658 contig = bio->bi_sector == sector;
2659 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002660 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002661
2662 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002663 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002664 bio_add_page(bio, page, page_size, offset) < page_size) {
2665 ret = submit_one_bio(rw, bio, mirror_num,
2666 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002667 if (ret < 0)
2668 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002669 bio = NULL;
2670 } else {
2671 return 0;
2672 }
2673 }
Chris Masonc8b97812008-10-29 14:49:59 -04002674 if (this_compressed)
2675 nr = BIO_MAX_PAGES;
2676 else
2677 nr = bio_get_nr_vecs(bdev);
2678
Miao Xie88f794e2010-11-22 03:02:55 +00002679 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002680 if (!bio)
2681 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002682
Chris Masonc8b97812008-10-29 14:49:59 -04002683 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002684 bio->bi_end_io = end_io_func;
2685 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002686
Chris Masond3977122009-01-05 21:25:51 -05002687 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002688 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002689 else
Chris Masonc8b97812008-10-29 14:49:59 -04002690 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002691
2692 return ret;
2693}
2694
Eric Sandeen48a3b632013-04-25 20:41:01 +00002695static void attach_extent_buffer_page(struct extent_buffer *eb,
2696 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002697{
2698 if (!PagePrivate(page)) {
2699 SetPagePrivate(page);
2700 page_cache_get(page);
2701 set_page_private(page, (unsigned long)eb);
2702 } else {
2703 WARN_ON(page->private != (unsigned long)eb);
2704 }
2705}
2706
Chris Masond1310b22008-01-24 16:13:08 -05002707void set_page_extent_mapped(struct page *page)
2708{
2709 if (!PagePrivate(page)) {
2710 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002711 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002712 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002713 }
2714}
2715
Miao Xie125bac012013-07-25 19:22:37 +08002716static struct extent_map *
2717__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2718 u64 start, u64 len, get_extent_t *get_extent,
2719 struct extent_map **em_cached)
2720{
2721 struct extent_map *em;
2722
2723 if (em_cached && *em_cached) {
2724 em = *em_cached;
2725 if (em->in_tree && start >= em->start &&
2726 start < extent_map_end(em)) {
2727 atomic_inc(&em->refs);
2728 return em;
2729 }
2730
2731 free_extent_map(em);
2732 *em_cached = NULL;
2733 }
2734
2735 em = get_extent(inode, page, pg_offset, start, len, 0);
2736 if (em_cached && !IS_ERR_OR_NULL(em)) {
2737 BUG_ON(*em_cached);
2738 atomic_inc(&em->refs);
2739 *em_cached = em;
2740 }
2741 return em;
2742}
Chris Masond1310b22008-01-24 16:13:08 -05002743/*
2744 * basic readpage implementation. Locked extent state structs are inserted
2745 * into the tree that are removed when the IO is done (by the end_io
2746 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002747 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002748 */
Miao Xie99740902013-07-25 19:22:36 +08002749static int __do_readpage(struct extent_io_tree *tree,
2750 struct page *page,
2751 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002752 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002753 struct bio **bio, int mirror_num,
2754 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002755{
2756 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002757 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002758 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2759 u64 end;
2760 u64 cur = start;
2761 u64 extent_offset;
2762 u64 last_byte = i_size_read(inode);
2763 u64 block_start;
2764 u64 cur_end;
2765 sector_t sector;
2766 struct extent_map *em;
2767 struct block_device *bdev;
2768 int ret;
2769 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002770 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002771 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002772 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002773 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002774 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002775 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002776
2777 set_page_extent_mapped(page);
2778
Miao Xie99740902013-07-25 19:22:36 +08002779 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002780 if (!PageUptodate(page)) {
2781 if (cleancache_get_page(page) == 0) {
2782 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002783 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002784 goto out;
2785 }
2786 }
2787
Chris Masonc8b97812008-10-29 14:49:59 -04002788 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2789 char *userpage;
2790 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2791
2792 if (zero_offset) {
2793 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002794 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002795 memset(userpage + zero_offset, 0, iosize);
2796 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002797 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002798 }
2799 }
Chris Masond1310b22008-01-24 16:13:08 -05002800 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002801 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2802
Chris Masond1310b22008-01-24 16:13:08 -05002803 if (cur >= last_byte) {
2804 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002805 struct extent_state *cached = NULL;
2806
David Sterba306e16c2011-04-19 14:29:38 +02002807 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002808 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002809 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002810 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002811 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002812 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002813 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002814 if (!parent_locked)
2815 unlock_extent_cached(tree, cur,
2816 cur + iosize - 1,
2817 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002818 break;
2819 }
Miao Xie125bac012013-07-25 19:22:37 +08002820 em = __get_extent_map(inode, page, pg_offset, cur,
2821 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002822 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002823 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002824 if (!parent_locked)
2825 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002826 break;
2827 }
Chris Masond1310b22008-01-24 16:13:08 -05002828 extent_offset = cur - em->start;
2829 BUG_ON(extent_map_end(em) <= cur);
2830 BUG_ON(end < cur);
2831
Li Zefan261507a02010-12-17 14:21:50 +08002832 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002833 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002834 extent_set_compress_type(&this_bio_flag,
2835 em->compress_type);
2836 }
Chris Masonc8b97812008-10-29 14:49:59 -04002837
Chris Masond1310b22008-01-24 16:13:08 -05002838 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2839 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002840 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002841 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2842 disk_io_size = em->block_len;
2843 sector = em->block_start >> 9;
2844 } else {
2845 sector = (em->block_start + extent_offset) >> 9;
2846 disk_io_size = iosize;
2847 }
Chris Masond1310b22008-01-24 16:13:08 -05002848 bdev = em->bdev;
2849 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002850 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2851 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002852 free_extent_map(em);
2853 em = NULL;
2854
2855 /* we've found a hole, just zero and go on */
2856 if (block_start == EXTENT_MAP_HOLE) {
2857 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002858 struct extent_state *cached = NULL;
2859
Cong Wang7ac687d2011-11-25 23:14:28 +08002860 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002861 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002862 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002863 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002864
2865 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002866 &cached, GFP_NOFS);
2867 unlock_extent_cached(tree, cur, cur + iosize - 1,
2868 &cached, GFP_NOFS);
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 }
2873 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002874 if (test_range_bit(tree, cur, cur_end,
2875 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002876 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002877 if (!parent_locked)
2878 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002879 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002880 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002881 continue;
2882 }
Chris Mason70dec802008-01-29 09:59:12 -05002883 /* we have an inline extent but it didn't get marked up
2884 * to date. Error out
2885 */
2886 if (block_start == EXTENT_MAP_INLINE) {
2887 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002888 if (!parent_locked)
2889 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002890 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002891 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002892 continue;
2893 }
Chris Masond1310b22008-01-24 16:13:08 -05002894
Josef Bacikc8f2f242013-02-11 11:33:00 -05002895 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002896 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002897 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002898 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002899 end_bio_extent_readpage, mirror_num,
2900 *bio_flags,
2901 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002902 if (!ret) {
2903 nr++;
2904 *bio_flags = this_bio_flag;
2905 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002906 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002907 if (!parent_locked)
2908 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04002909 }
Chris Masond1310b22008-01-24 16:13:08 -05002910 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002911 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002912 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002913out:
Chris Masond1310b22008-01-24 16:13:08 -05002914 if (!nr) {
2915 if (!PageError(page))
2916 SetPageUptodate(page);
2917 unlock_page(page);
2918 }
2919 return 0;
2920}
2921
Miao Xie99740902013-07-25 19:22:36 +08002922static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
2923 struct page *pages[], int nr_pages,
2924 u64 start, u64 end,
2925 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002926 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002927 struct bio **bio, int mirror_num,
2928 unsigned long *bio_flags, int rw)
2929{
2930 struct inode *inode;
2931 struct btrfs_ordered_extent *ordered;
2932 int index;
2933
2934 inode = pages[0]->mapping->host;
2935 while (1) {
2936 lock_extent(tree, start, end);
2937 ordered = btrfs_lookup_ordered_range(inode, start,
2938 end - start + 1);
2939 if (!ordered)
2940 break;
2941 unlock_extent(tree, start, end);
2942 btrfs_start_ordered_extent(inode, ordered, 1);
2943 btrfs_put_ordered_extent(ordered);
2944 }
2945
2946 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08002947 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
2948 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08002949 page_cache_release(pages[index]);
2950 }
2951}
2952
2953static void __extent_readpages(struct extent_io_tree *tree,
2954 struct page *pages[],
2955 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002956 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002957 struct bio **bio, int mirror_num,
2958 unsigned long *bio_flags, int rw)
2959{
Stefan Behrens35a36212013-08-14 18:12:25 +02002960 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08002961 u64 end = 0;
2962 u64 page_start;
2963 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02002964 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08002965
2966 for (index = 0; index < nr_pages; index++) {
2967 page_start = page_offset(pages[index]);
2968 if (!end) {
2969 start = page_start;
2970 end = start + PAGE_CACHE_SIZE - 1;
2971 first_index = index;
2972 } else if (end + 1 == page_start) {
2973 end += PAGE_CACHE_SIZE;
2974 } else {
2975 __do_contiguous_readpages(tree, &pages[first_index],
2976 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08002977 end, get_extent, em_cached,
2978 bio, mirror_num, bio_flags,
2979 rw);
Miao Xie99740902013-07-25 19:22:36 +08002980 start = page_start;
2981 end = start + PAGE_CACHE_SIZE - 1;
2982 first_index = index;
2983 }
2984 }
2985
2986 if (end)
2987 __do_contiguous_readpages(tree, &pages[first_index],
2988 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08002989 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08002990 mirror_num, bio_flags, rw);
2991}
2992
2993static int __extent_read_full_page(struct extent_io_tree *tree,
2994 struct page *page,
2995 get_extent_t *get_extent,
2996 struct bio **bio, int mirror_num,
2997 unsigned long *bio_flags, int rw)
2998{
2999 struct inode *inode = page->mapping->host;
3000 struct btrfs_ordered_extent *ordered;
3001 u64 start = page_offset(page);
3002 u64 end = start + PAGE_CACHE_SIZE - 1;
3003 int ret;
3004
3005 while (1) {
3006 lock_extent(tree, start, end);
3007 ordered = btrfs_lookup_ordered_extent(inode, start);
3008 if (!ordered)
3009 break;
3010 unlock_extent(tree, start, end);
3011 btrfs_start_ordered_extent(inode, ordered, 1);
3012 btrfs_put_ordered_extent(ordered);
3013 }
3014
Miao Xie125bac012013-07-25 19:22:37 +08003015 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3016 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003017 return ret;
3018}
3019
Chris Masond1310b22008-01-24 16:13:08 -05003020int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003021 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003022{
3023 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003024 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003025 int ret;
3026
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003027 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003028 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003029 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003030 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003031 return ret;
3032}
Chris Masond1310b22008-01-24 16:13:08 -05003033
Mark Fasheh4b384312013-08-06 11:42:50 -07003034int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3035 get_extent_t *get_extent, int mirror_num)
3036{
3037 struct bio *bio = NULL;
3038 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3039 int ret;
3040
3041 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3042 &bio_flags, READ);
3043 if (bio)
3044 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3045 return ret;
3046}
3047
Chris Mason11c83492009-04-20 15:50:09 -04003048static noinline void update_nr_written(struct page *page,
3049 struct writeback_control *wbc,
3050 unsigned long nr_written)
3051{
3052 wbc->nr_to_write -= nr_written;
3053 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3054 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3055 page->mapping->writeback_index = page->index + nr_written;
3056}
3057
Chris Masond1310b22008-01-24 16:13:08 -05003058/*
3059 * the writepage semantics are similar to regular writepage. extent
3060 * records are inserted to lock ranges in the tree, and as dirty areas
3061 * are found, they are marked writeback. Then the lock bits are removed
3062 * and the end_io handler clears the writeback ranges
3063 */
3064static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3065 void *data)
3066{
3067 struct inode *inode = page->mapping->host;
3068 struct extent_page_data *epd = data;
3069 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003070 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003071 u64 delalloc_start;
3072 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3073 u64 end;
3074 u64 cur = start;
3075 u64 extent_offset;
3076 u64 last_byte = i_size_read(inode);
3077 u64 block_start;
3078 u64 iosize;
3079 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003080 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003081 struct extent_map *em;
3082 struct block_device *bdev;
3083 int ret;
3084 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003085 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003086 size_t blocksize;
3087 loff_t i_size = i_size_read(inode);
3088 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3089 u64 nr_delalloc;
3090 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04003091 int page_started;
3092 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04003093 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05003094 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003095 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05003096
Chris Masonffbd5172009-04-20 15:50:09 -04003097 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01003098 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04003099 else
3100 write_flags = WRITE;
3101
liubo1abe9b82011-03-24 11:18:59 +00003102 trace___extent_writepage(page, inode, wbc);
3103
Chris Masond1310b22008-01-24 16:13:08 -05003104 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04003105
3106 ClearPageError(page);
3107
Chris Mason7f3c74f2008-07-18 12:01:11 -04003108 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04003109 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04003110 (page->index == end_index && !pg_offset)) {
Lukas Czernerd47992f2013-05-21 23:17:23 -04003111 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05003112 unlock_page(page);
3113 return 0;
3114 }
3115
3116 if (page->index == end_index) {
3117 char *userpage;
3118
Cong Wang7ac687d2011-11-25 23:14:28 +08003119 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04003120 memset(userpage + pg_offset, 0,
3121 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08003122 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04003123 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003124 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003125 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003126
3127 set_page_extent_mapped(page);
3128
Josef Bacik9e487102011-08-01 12:08:18 -04003129 if (!tree->ops || !tree->ops->fill_delalloc)
3130 fill_delalloc = false;
3131
Chris Masond1310b22008-01-24 16:13:08 -05003132 delalloc_start = start;
3133 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003134 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003135 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003136 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003137 /*
3138 * make sure the wbc mapping index is at least updated
3139 * to this page.
3140 */
3141 update_nr_written(page, wbc, 0);
3142
Chris Masond3977122009-01-05 21:25:51 -05003143 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05003144 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04003145 page,
3146 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05003147 &delalloc_end,
3148 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05003149 if (nr_delalloc == 0) {
3150 delalloc_start = delalloc_end + 1;
3151 continue;
3152 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09003153 ret = tree->ops->fill_delalloc(inode, page,
3154 delalloc_start,
3155 delalloc_end,
3156 &page_started,
3157 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003158 /* File system has been set read-only */
3159 if (ret) {
3160 SetPageError(page);
3161 goto done;
3162 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003163 /*
3164 * delalloc_end is already one less than the total
3165 * length, so we don't subtract one from
3166 * PAGE_CACHE_SIZE
3167 */
3168 delalloc_to_write += (delalloc_end - delalloc_start +
3169 PAGE_CACHE_SIZE) >>
3170 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003171 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05003172 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003173 if (wbc->nr_to_write < delalloc_to_write) {
3174 int thresh = 8192;
3175
3176 if (delalloc_to_write < thresh * 2)
3177 thresh = delalloc_to_write;
3178 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3179 thresh);
3180 }
Chris Masonc8b97812008-10-29 14:49:59 -04003181
Chris Mason771ed682008-11-06 22:02:51 -05003182 /* did the fill delalloc function already unlock and start
3183 * the IO?
3184 */
3185 if (page_started) {
3186 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003187 /*
3188 * we've unlocked the page, so we can't update
3189 * the mapping's writeback index, just update
3190 * nr_to_write.
3191 */
3192 wbc->nr_to_write -= nr_written;
3193 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05003194 }
Chris Masonc8b97812008-10-29 14:49:59 -04003195 }
Chris Mason247e7432008-07-17 12:53:51 -04003196 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003197 ret = tree->ops->writepage_start_hook(page, start,
3198 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003199 if (ret) {
3200 /* Fixup worker will requeue */
3201 if (ret == -EBUSY)
3202 wbc->pages_skipped++;
3203 else
3204 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04003205 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003206 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003207 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003208 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003209 }
3210 }
3211
Chris Mason11c83492009-04-20 15:50:09 -04003212 /*
3213 * we don't want to touch the inode after unlocking the page,
3214 * so we update the mapping writeback index now
3215 */
3216 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003217
Chris Masond1310b22008-01-24 16:13:08 -05003218 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003219 if (last_byte <= start) {
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, start,
3222 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003223 goto done;
3224 }
3225
Chris Masond1310b22008-01-24 16:13:08 -05003226 blocksize = inode->i_sb->s_blocksize;
3227
3228 while (cur <= end) {
3229 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003230 if (tree->ops && tree->ops->writepage_end_io_hook)
3231 tree->ops->writepage_end_io_hook(page, cur,
3232 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003233 break;
3234 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003235 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003236 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003237 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003238 SetPageError(page);
3239 break;
3240 }
3241
3242 extent_offset = cur - em->start;
3243 BUG_ON(extent_map_end(em) <= cur);
3244 BUG_ON(end < cur);
3245 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003246 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003247 sector = (em->block_start + extent_offset) >> 9;
3248 bdev = em->bdev;
3249 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003250 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003251 free_extent_map(em);
3252 em = NULL;
3253
Chris Masonc8b97812008-10-29 14:49:59 -04003254 /*
3255 * compressed and inline extents are written through other
3256 * paths in the FS
3257 */
3258 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003259 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003260 /*
3261 * end_io notification does not happen here for
3262 * compressed extents
3263 */
3264 if (!compressed && tree->ops &&
3265 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003266 tree->ops->writepage_end_io_hook(page, cur,
3267 cur + iosize - 1,
3268 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003269 else if (compressed) {
3270 /* we don't want to end_page_writeback on
3271 * a compressed extent. this happens
3272 * elsewhere
3273 */
3274 nr++;
3275 }
3276
3277 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003278 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003279 continue;
3280 }
Chris Masond1310b22008-01-24 16:13:08 -05003281 /* leave this out until we have a page_mkwrite call */
3282 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003283 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003284 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003285 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003286 continue;
3287 }
Chris Masonc8b97812008-10-29 14:49:59 -04003288
Chris Masond1310b22008-01-24 16:13:08 -05003289 if (tree->ops && tree->ops->writepage_io_hook) {
3290 ret = tree->ops->writepage_io_hook(page, cur,
3291 cur + iosize - 1);
3292 } else {
3293 ret = 0;
3294 }
Chris Mason1259ab72008-05-12 13:39:03 -04003295 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003296 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003297 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003298 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003299
Chris Masond1310b22008-01-24 16:13:08 -05003300 set_range_writeback(tree, cur, cur + iosize - 1);
3301 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05003302 printk(KERN_ERR "btrfs warning page %lu not "
3303 "writeback, cur %llu end %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003304 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003305 }
3306
Chris Masonffbd5172009-04-20 15:50:09 -04003307 ret = submit_extent_page(write_flags, tree, page,
3308 sector, iosize, pg_offset,
3309 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003310 end_bio_extent_writepage,
3311 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003312 if (ret)
3313 SetPageError(page);
3314 }
3315 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003316 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003317 nr++;
3318 }
3319done:
3320 if (nr == 0) {
3321 /* make sure the mapping tag for page dirty gets cleared */
3322 set_page_writeback(page);
3323 end_page_writeback(page);
3324 }
Chris Masond1310b22008-01-24 16:13:08 -05003325 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003326
Chris Mason11c83492009-04-20 15:50:09 -04003327done_unlocked:
3328
Chris Mason2c64c532009-09-02 15:04:12 -04003329 /* drop our reference on any cached states */
3330 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003331 return 0;
3332}
3333
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003334static int eb_wait(void *word)
3335{
3336 io_schedule();
3337 return 0;
3338}
3339
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003340void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003341{
3342 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3343 TASK_UNINTERRUPTIBLE);
3344}
3345
3346static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3347 struct btrfs_fs_info *fs_info,
3348 struct extent_page_data *epd)
3349{
3350 unsigned long i, num_pages;
3351 int flush = 0;
3352 int ret = 0;
3353
3354 if (!btrfs_try_tree_write_lock(eb)) {
3355 flush = 1;
3356 flush_write_bio(epd);
3357 btrfs_tree_lock(eb);
3358 }
3359
3360 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3361 btrfs_tree_unlock(eb);
3362 if (!epd->sync_io)
3363 return 0;
3364 if (!flush) {
3365 flush_write_bio(epd);
3366 flush = 1;
3367 }
Chris Masona098d8e2012-03-21 12:09:56 -04003368 while (1) {
3369 wait_on_extent_buffer_writeback(eb);
3370 btrfs_tree_lock(eb);
3371 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3372 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003373 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003374 }
3375 }
3376
Josef Bacik51561ff2012-07-20 16:25:24 -04003377 /*
3378 * We need to do this to prevent races in people who check if the eb is
3379 * under IO since we can end up having no IO bits set for a short period
3380 * of time.
3381 */
3382 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003383 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3384 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003385 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003386 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003387 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3388 -eb->len,
3389 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003390 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003391 } else {
3392 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003393 }
3394
3395 btrfs_tree_unlock(eb);
3396
3397 if (!ret)
3398 return ret;
3399
3400 num_pages = num_extent_pages(eb->start, eb->len);
3401 for (i = 0; i < num_pages; i++) {
3402 struct page *p = extent_buffer_page(eb, i);
3403
3404 if (!trylock_page(p)) {
3405 if (!flush) {
3406 flush_write_bio(epd);
3407 flush = 1;
3408 }
3409 lock_page(p);
3410 }
3411 }
3412
3413 return ret;
3414}
3415
3416static void end_extent_buffer_writeback(struct extent_buffer *eb)
3417{
3418 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3419 smp_mb__after_clear_bit();
3420 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3421}
3422
3423static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3424{
3425 int uptodate = err == 0;
3426 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3427 struct extent_buffer *eb;
3428 int done;
3429
3430 do {
3431 struct page *page = bvec->bv_page;
3432
3433 bvec--;
3434 eb = (struct extent_buffer *)page->private;
3435 BUG_ON(!eb);
3436 done = atomic_dec_and_test(&eb->io_pages);
3437
3438 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3439 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3440 ClearPageUptodate(page);
3441 SetPageError(page);
3442 }
3443
3444 end_page_writeback(page);
3445
3446 if (!done)
3447 continue;
3448
3449 end_extent_buffer_writeback(eb);
3450 } while (bvec >= bio->bi_io_vec);
3451
3452 bio_put(bio);
3453
3454}
3455
3456static int write_one_eb(struct extent_buffer *eb,
3457 struct btrfs_fs_info *fs_info,
3458 struct writeback_control *wbc,
3459 struct extent_page_data *epd)
3460{
3461 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3462 u64 offset = eb->start;
3463 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003464 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003465 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003466 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003467
3468 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3469 num_pages = num_extent_pages(eb->start, eb->len);
3470 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003471 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3472 bio_flags = EXTENT_BIO_TREE_LOG;
3473
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003474 for (i = 0; i < num_pages; i++) {
3475 struct page *p = extent_buffer_page(eb, i);
3476
3477 clear_page_dirty_for_io(p);
3478 set_page_writeback(p);
3479 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3480 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3481 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003482 0, epd->bio_flags, bio_flags);
3483 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003484 if (ret) {
3485 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3486 SetPageError(p);
3487 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3488 end_extent_buffer_writeback(eb);
3489 ret = -EIO;
3490 break;
3491 }
3492 offset += PAGE_CACHE_SIZE;
3493 update_nr_written(p, wbc, 1);
3494 unlock_page(p);
3495 }
3496
3497 if (unlikely(ret)) {
3498 for (; i < num_pages; i++) {
3499 struct page *p = extent_buffer_page(eb, i);
3500 unlock_page(p);
3501 }
3502 }
3503
3504 return ret;
3505}
3506
3507int btree_write_cache_pages(struct address_space *mapping,
3508 struct writeback_control *wbc)
3509{
3510 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3511 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3512 struct extent_buffer *eb, *prev_eb = NULL;
3513 struct extent_page_data epd = {
3514 .bio = NULL,
3515 .tree = tree,
3516 .extent_locked = 0,
3517 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003518 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003519 };
3520 int ret = 0;
3521 int done = 0;
3522 int nr_to_write_done = 0;
3523 struct pagevec pvec;
3524 int nr_pages;
3525 pgoff_t index;
3526 pgoff_t end; /* Inclusive */
3527 int scanned = 0;
3528 int tag;
3529
3530 pagevec_init(&pvec, 0);
3531 if (wbc->range_cyclic) {
3532 index = mapping->writeback_index; /* Start from prev offset */
3533 end = -1;
3534 } else {
3535 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3536 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3537 scanned = 1;
3538 }
3539 if (wbc->sync_mode == WB_SYNC_ALL)
3540 tag = PAGECACHE_TAG_TOWRITE;
3541 else
3542 tag = PAGECACHE_TAG_DIRTY;
3543retry:
3544 if (wbc->sync_mode == WB_SYNC_ALL)
3545 tag_pages_for_writeback(mapping, index, end);
3546 while (!done && !nr_to_write_done && (index <= end) &&
3547 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3548 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3549 unsigned i;
3550
3551 scanned = 1;
3552 for (i = 0; i < nr_pages; i++) {
3553 struct page *page = pvec.pages[i];
3554
3555 if (!PagePrivate(page))
3556 continue;
3557
3558 if (!wbc->range_cyclic && page->index > end) {
3559 done = 1;
3560 break;
3561 }
3562
Josef Bacikb5bae262012-09-14 13:43:01 -04003563 spin_lock(&mapping->private_lock);
3564 if (!PagePrivate(page)) {
3565 spin_unlock(&mapping->private_lock);
3566 continue;
3567 }
3568
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003569 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003570
3571 /*
3572 * Shouldn't happen and normally this would be a BUG_ON
3573 * but no sense in crashing the users box for something
3574 * we can survive anyway.
3575 */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003576 if (!eb) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003577 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003578 WARN_ON(1);
3579 continue;
3580 }
3581
Josef Bacikb5bae262012-09-14 13:43:01 -04003582 if (eb == prev_eb) {
3583 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003584 continue;
3585 }
3586
Josef Bacikb5bae262012-09-14 13:43:01 -04003587 ret = atomic_inc_not_zero(&eb->refs);
3588 spin_unlock(&mapping->private_lock);
3589 if (!ret)
3590 continue;
3591
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003592 prev_eb = eb;
3593 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3594 if (!ret) {
3595 free_extent_buffer(eb);
3596 continue;
3597 }
3598
3599 ret = write_one_eb(eb, fs_info, wbc, &epd);
3600 if (ret) {
3601 done = 1;
3602 free_extent_buffer(eb);
3603 break;
3604 }
3605 free_extent_buffer(eb);
3606
3607 /*
3608 * the filesystem may choose to bump up nr_to_write.
3609 * We have to make sure to honor the new nr_to_write
3610 * at any time
3611 */
3612 nr_to_write_done = wbc->nr_to_write <= 0;
3613 }
3614 pagevec_release(&pvec);
3615 cond_resched();
3616 }
3617 if (!scanned && !done) {
3618 /*
3619 * We hit the last page and there is more work to be done: wrap
3620 * back to the start of the file
3621 */
3622 scanned = 1;
3623 index = 0;
3624 goto retry;
3625 }
3626 flush_write_bio(&epd);
3627 return ret;
3628}
3629
Chris Masond1310b22008-01-24 16:13:08 -05003630/**
Chris Mason4bef0842008-09-08 11:18:08 -04003631 * 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 -05003632 * @mapping: address space structure to write
3633 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3634 * @writepage: function called for each page
3635 * @data: data passed to writepage function
3636 *
3637 * If a page is already under I/O, write_cache_pages() skips it, even
3638 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3639 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3640 * and msync() need to guarantee that all the data which was dirty at the time
3641 * the call was made get new I/O started against them. If wbc->sync_mode is
3642 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3643 * existing IO to complete.
3644 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003645static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003646 struct address_space *mapping,
3647 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003648 writepage_t writepage, void *data,
3649 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003650{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003651 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003652 int ret = 0;
3653 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003654 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003655 struct pagevec pvec;
3656 int nr_pages;
3657 pgoff_t index;
3658 pgoff_t end; /* Inclusive */
3659 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003660 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003661
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003662 /*
3663 * We have to hold onto the inode so that ordered extents can do their
3664 * work when the IO finishes. The alternative to this is failing to add
3665 * an ordered extent if the igrab() fails there and that is a huge pain
3666 * to deal with, so instead just hold onto the inode throughout the
3667 * writepages operation. If it fails here we are freeing up the inode
3668 * anyway and we'd rather not waste our time writing out stuff that is
3669 * going to be truncated anyway.
3670 */
3671 if (!igrab(inode))
3672 return 0;
3673
Chris Masond1310b22008-01-24 16:13:08 -05003674 pagevec_init(&pvec, 0);
3675 if (wbc->range_cyclic) {
3676 index = mapping->writeback_index; /* Start from prev offset */
3677 end = -1;
3678 } else {
3679 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3680 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003681 scanned = 1;
3682 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003683 if (wbc->sync_mode == WB_SYNC_ALL)
3684 tag = PAGECACHE_TAG_TOWRITE;
3685 else
3686 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003687retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003688 if (wbc->sync_mode == WB_SYNC_ALL)
3689 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003690 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003691 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3692 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003693 unsigned i;
3694
3695 scanned = 1;
3696 for (i = 0; i < nr_pages; i++) {
3697 struct page *page = pvec.pages[i];
3698
3699 /*
3700 * At this point we hold neither mapping->tree_lock nor
3701 * lock on the page itself: the page may be truncated or
3702 * invalidated (changing page->mapping to NULL), or even
3703 * swizzled back from swapper_space to tmpfs file
3704 * mapping
3705 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003706 if (!trylock_page(page)) {
3707 flush_fn(data);
3708 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003709 }
Chris Masond1310b22008-01-24 16:13:08 -05003710
3711 if (unlikely(page->mapping != mapping)) {
3712 unlock_page(page);
3713 continue;
3714 }
3715
3716 if (!wbc->range_cyclic && page->index > end) {
3717 done = 1;
3718 unlock_page(page);
3719 continue;
3720 }
3721
Chris Masond2c3f4f2008-11-19 12:44:22 -05003722 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003723 if (PageWriteback(page))
3724 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003725 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003726 }
Chris Masond1310b22008-01-24 16:13:08 -05003727
3728 if (PageWriteback(page) ||
3729 !clear_page_dirty_for_io(page)) {
3730 unlock_page(page);
3731 continue;
3732 }
3733
3734 ret = (*writepage)(page, wbc, data);
3735
3736 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3737 unlock_page(page);
3738 ret = 0;
3739 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003740 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003741 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003742
3743 /*
3744 * the filesystem may choose to bump up nr_to_write.
3745 * We have to make sure to honor the new nr_to_write
3746 * at any time
3747 */
3748 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003749 }
3750 pagevec_release(&pvec);
3751 cond_resched();
3752 }
3753 if (!scanned && !done) {
3754 /*
3755 * We hit the last page and there is more work to be done: wrap
3756 * back to the start of the file
3757 */
3758 scanned = 1;
3759 index = 0;
3760 goto retry;
3761 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003762 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003763 return ret;
3764}
Chris Masond1310b22008-01-24 16:13:08 -05003765
Chris Masonffbd5172009-04-20 15:50:09 -04003766static void flush_epd_write_bio(struct extent_page_data *epd)
3767{
3768 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003769 int rw = WRITE;
3770 int ret;
3771
Chris Masonffbd5172009-04-20 15:50:09 -04003772 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003773 rw = WRITE_SYNC;
3774
Josef Bacikde0022b2012-09-25 14:25:58 -04003775 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003776 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003777 epd->bio = NULL;
3778 }
3779}
3780
Chris Masond2c3f4f2008-11-19 12:44:22 -05003781static noinline void flush_write_bio(void *data)
3782{
3783 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003784 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003785}
3786
Chris Masond1310b22008-01-24 16:13:08 -05003787int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3788 get_extent_t *get_extent,
3789 struct writeback_control *wbc)
3790{
3791 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003792 struct extent_page_data epd = {
3793 .bio = NULL,
3794 .tree = tree,
3795 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003796 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003797 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003798 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003799 };
Chris Masond1310b22008-01-24 16:13:08 -05003800
Chris Masond1310b22008-01-24 16:13:08 -05003801 ret = __extent_writepage(page, wbc, &epd);
3802
Chris Masonffbd5172009-04-20 15:50:09 -04003803 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003804 return ret;
3805}
Chris Masond1310b22008-01-24 16:13:08 -05003806
Chris Mason771ed682008-11-06 22:02:51 -05003807int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3808 u64 start, u64 end, get_extent_t *get_extent,
3809 int mode)
3810{
3811 int ret = 0;
3812 struct address_space *mapping = inode->i_mapping;
3813 struct page *page;
3814 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3815 PAGE_CACHE_SHIFT;
3816
3817 struct extent_page_data epd = {
3818 .bio = NULL,
3819 .tree = tree,
3820 .get_extent = get_extent,
3821 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003822 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003823 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003824 };
3825 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003826 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003827 .nr_to_write = nr_pages * 2,
3828 .range_start = start,
3829 .range_end = end + 1,
3830 };
3831
Chris Masond3977122009-01-05 21:25:51 -05003832 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003833 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3834 if (clear_page_dirty_for_io(page))
3835 ret = __extent_writepage(page, &wbc_writepages, &epd);
3836 else {
3837 if (tree->ops && tree->ops->writepage_end_io_hook)
3838 tree->ops->writepage_end_io_hook(page, start,
3839 start + PAGE_CACHE_SIZE - 1,
3840 NULL, 1);
3841 unlock_page(page);
3842 }
3843 page_cache_release(page);
3844 start += PAGE_CACHE_SIZE;
3845 }
3846
Chris Masonffbd5172009-04-20 15:50:09 -04003847 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003848 return ret;
3849}
Chris Masond1310b22008-01-24 16:13:08 -05003850
3851int extent_writepages(struct extent_io_tree *tree,
3852 struct address_space *mapping,
3853 get_extent_t *get_extent,
3854 struct writeback_control *wbc)
3855{
3856 int ret = 0;
3857 struct extent_page_data epd = {
3858 .bio = NULL,
3859 .tree = tree,
3860 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003861 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003862 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003863 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003864 };
3865
Chris Mason4bef0842008-09-08 11:18:08 -04003866 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003867 __extent_writepage, &epd,
3868 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003869 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003870 return ret;
3871}
Chris Masond1310b22008-01-24 16:13:08 -05003872
3873int extent_readpages(struct extent_io_tree *tree,
3874 struct address_space *mapping,
3875 struct list_head *pages, unsigned nr_pages,
3876 get_extent_t get_extent)
3877{
3878 struct bio *bio = NULL;
3879 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003880 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003881 struct page *pagepool[16];
3882 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08003883 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06003884 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003885
Chris Masond1310b22008-01-24 16:13:08 -05003886 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003887 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003888
3889 prefetchw(&page->flags);
3890 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003891 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003892 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003893 page_cache_release(page);
3894 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003895 }
Liu Bo67c96842012-07-20 21:43:09 -06003896
3897 pagepool[nr++] = page;
3898 if (nr < ARRAY_SIZE(pagepool))
3899 continue;
Miao Xie125bac012013-07-25 19:22:37 +08003900 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003901 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003902 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003903 }
Miao Xie99740902013-07-25 19:22:36 +08003904 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08003905 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003906 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003907
Miao Xie125bac012013-07-25 19:22:37 +08003908 if (em_cached)
3909 free_extent_map(em_cached);
3910
Chris Masond1310b22008-01-24 16:13:08 -05003911 BUG_ON(!list_empty(pages));
3912 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003913 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003914 return 0;
3915}
Chris Masond1310b22008-01-24 16:13:08 -05003916
3917/*
3918 * basic invalidatepage code, this waits on any locked or writeback
3919 * ranges corresponding to the page, and then deletes any extent state
3920 * records from the tree
3921 */
3922int extent_invalidatepage(struct extent_io_tree *tree,
3923 struct page *page, unsigned long offset)
3924{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003925 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003926 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003927 u64 end = start + PAGE_CACHE_SIZE - 1;
3928 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3929
Qu Wenruofda28322013-02-26 08:10:22 +00003930 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003931 if (start > end)
3932 return 0;
3933
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003934 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003935 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003936 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003937 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3938 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003939 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003940 return 0;
3941}
Chris Masond1310b22008-01-24 16:13:08 -05003942
3943/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003944 * a helper for releasepage, this tests for areas of the page that
3945 * are locked or under IO and drops the related state bits if it is safe
3946 * to drop the page.
3947 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003948static int try_release_extent_state(struct extent_map_tree *map,
3949 struct extent_io_tree *tree,
3950 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04003951{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003952 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003953 u64 end = start + PAGE_CACHE_SIZE - 1;
3954 int ret = 1;
3955
Chris Mason211f90e2008-07-18 11:56:15 -04003956 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003957 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003958 ret = 0;
3959 else {
3960 if ((mask & GFP_NOFS) == GFP_NOFS)
3961 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003962 /*
3963 * at this point we can safely clear everything except the
3964 * locked bit and the nodatasum bit
3965 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003966 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003967 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3968 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003969
3970 /* if clear_extent_bit failed for enomem reasons,
3971 * we can't allow the release to continue.
3972 */
3973 if (ret < 0)
3974 ret = 0;
3975 else
3976 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003977 }
3978 return ret;
3979}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003980
3981/*
Chris Masond1310b22008-01-24 16:13:08 -05003982 * a helper for releasepage. As long as there are no locked extents
3983 * in the range corresponding to the page, both state records and extent
3984 * map records are removed
3985 */
3986int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003987 struct extent_io_tree *tree, struct page *page,
3988 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003989{
3990 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003991 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003992 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003993
Chris Mason70dec802008-01-29 09:59:12 -05003994 if ((mask & __GFP_WAIT) &&
3995 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003996 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003997 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003998 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003999 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004000 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004001 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004002 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004003 break;
4004 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004005 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4006 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004007 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004008 free_extent_map(em);
4009 break;
4010 }
4011 if (!test_range_bit(tree, em->start,
4012 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004013 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004014 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004015 remove_extent_mapping(map, em);
4016 /* once for the rb tree */
4017 free_extent_map(em);
4018 }
4019 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004020 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004021
4022 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004023 free_extent_map(em);
4024 }
Chris Masond1310b22008-01-24 16:13:08 -05004025 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004026 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004027}
Chris Masond1310b22008-01-24 16:13:08 -05004028
Chris Masonec29ed52011-02-23 16:23:20 -05004029/*
4030 * helper function for fiemap, which doesn't want to see any holes.
4031 * This maps until we find something past 'last'
4032 */
4033static struct extent_map *get_extent_skip_holes(struct inode *inode,
4034 u64 offset,
4035 u64 last,
4036 get_extent_t *get_extent)
4037{
4038 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4039 struct extent_map *em;
4040 u64 len;
4041
4042 if (offset >= last)
4043 return NULL;
4044
4045 while(1) {
4046 len = last - offset;
4047 if (len == 0)
4048 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004049 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004050 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004051 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004052 return em;
4053
4054 /* if this isn't a hole return it */
4055 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4056 em->block_start != EXTENT_MAP_HOLE) {
4057 return em;
4058 }
4059
4060 /* this is a hole, advance to the next extent */
4061 offset = extent_map_end(em);
4062 free_extent_map(em);
4063 if (offset >= last)
4064 break;
4065 }
4066 return NULL;
4067}
4068
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004069int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4070 __u64 start, __u64 len, get_extent_t *get_extent)
4071{
Josef Bacik975f84f2010-11-23 19:36:57 +00004072 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004073 u64 off = start;
4074 u64 max = start + len;
4075 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004076 u32 found_type;
4077 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004078 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004079 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004080 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004081 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004082 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004083 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004084 struct btrfs_path *path;
4085 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004086 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004087 u64 em_start = 0;
4088 u64 em_len = 0;
4089 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004090 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004091
4092 if (len == 0)
4093 return -EINVAL;
4094
Josef Bacik975f84f2010-11-23 19:36:57 +00004095 path = btrfs_alloc_path();
4096 if (!path)
4097 return -ENOMEM;
4098 path->leave_spinning = 1;
4099
Josef Bacik4d479cf2011-11-17 11:34:31 -05004100 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
4101 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
4102
Chris Masonec29ed52011-02-23 16:23:20 -05004103 /*
4104 * lookup the last file extent. We're not using i_size here
4105 * because there might be preallocation past i_size
4106 */
Josef Bacik975f84f2010-11-23 19:36:57 +00004107 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08004108 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004109 if (ret < 0) {
4110 btrfs_free_path(path);
4111 return ret;
4112 }
4113 WARN_ON(!ret);
4114 path->slots[0]--;
4115 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4116 struct btrfs_file_extent_item);
4117 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
4118 found_type = btrfs_key_type(&found_key);
4119
Chris Masonec29ed52011-02-23 16:23:20 -05004120 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004121 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004122 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004123 /* have to trust i_size as the end */
4124 last = (u64)-1;
4125 last_for_get_extent = isize;
4126 } else {
4127 /*
4128 * remember the start of the last extent. There are a
4129 * bunch of different factors that go into the length of the
4130 * extent, so its much less complex to remember where it started
4131 */
4132 last = found_key.offset;
4133 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004134 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004135 btrfs_free_path(path);
4136
Chris Masonec29ed52011-02-23 16:23:20 -05004137 /*
4138 * we might have some extents allocated but more delalloc past those
4139 * extents. so, we trust isize unless the start of the last extent is
4140 * beyond isize
4141 */
4142 if (last < isize) {
4143 last = (u64)-1;
4144 last_for_get_extent = isize;
4145 }
4146
Liu Boa52f4cd2013-05-01 16:23:41 +00004147 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004148 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004149
Josef Bacik4d479cf2011-11-17 11:34:31 -05004150 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004151 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004152 if (!em)
4153 goto out;
4154 if (IS_ERR(em)) {
4155 ret = PTR_ERR(em);
4156 goto out;
4157 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004158
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004159 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004160 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004161
Chris Masonea8efc72011-03-08 11:54:40 -05004162 /* break if the extent we found is outside the range */
4163 if (em->start >= max || extent_map_end(em) < off)
4164 break;
4165
4166 /*
4167 * get_extent may return an extent that starts before our
4168 * requested range. We have to make sure the ranges
4169 * we return to fiemap always move forward and don't
4170 * overlap, so adjust the offsets here
4171 */
4172 em_start = max(em->start, off);
4173
4174 /*
4175 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004176 * for adjusting the disk offset below. Only do this if the
4177 * extent isn't compressed since our in ram offset may be past
4178 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004179 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004180 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4181 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004182 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004183 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05004184 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004185 disko = 0;
4186 flags = 0;
4187
Chris Masonea8efc72011-03-08 11:54:40 -05004188 /*
4189 * bump off for our next call to get_extent
4190 */
4191 off = extent_map_end(em);
4192 if (off >= max)
4193 end = 1;
4194
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004195 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004196 end = 1;
4197 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004198 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004199 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4200 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004201 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004202 flags |= (FIEMAP_EXTENT_DELALLOC |
4203 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004204 } else {
Chris Masonea8efc72011-03-08 11:54:40 -05004205 disko = em->block_start + offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004206 }
4207 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4208 flags |= FIEMAP_EXTENT_ENCODED;
4209
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004210 free_extent_map(em);
4211 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004212 if ((em_start >= last) || em_len == (u64)-1 ||
4213 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004214 flags |= FIEMAP_EXTENT_LAST;
4215 end = 1;
4216 }
4217
Chris Masonec29ed52011-02-23 16:23:20 -05004218 /* now scan forward to see if this is really the last extent. */
4219 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4220 get_extent);
4221 if (IS_ERR(em)) {
4222 ret = PTR_ERR(em);
4223 goto out;
4224 }
4225 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004226 flags |= FIEMAP_EXTENT_LAST;
4227 end = 1;
4228 }
Chris Masonec29ed52011-02-23 16:23:20 -05004229 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4230 em_len, flags);
4231 if (ret)
4232 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004233 }
4234out_free:
4235 free_extent_map(em);
4236out:
Liu Boa52f4cd2013-05-01 16:23:41 +00004237 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004238 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004239 return ret;
4240}
4241
Chris Mason727011e2010-08-06 13:21:20 -04004242static void __free_extent_buffer(struct extent_buffer *eb)
4243{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004244 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004245 kmem_cache_free(extent_buffer_cache, eb);
4246}
4247
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004248static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004249{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004250 return (atomic_read(&eb->io_pages) ||
4251 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4252 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004253}
4254
Miao Xie897ca6e2010-10-26 20:57:29 -04004255/*
4256 * Helper for releasing extent buffer page.
4257 */
4258static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4259 unsigned long start_idx)
4260{
4261 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004262 unsigned long num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004263 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004264 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004265
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004266 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004267
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004268 num_pages = num_extent_pages(eb->start, eb->len);
4269 index = start_idx + num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004270 if (start_idx >= index)
4271 return;
4272
4273 do {
4274 index--;
4275 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004276 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004277 spin_lock(&page->mapping->private_lock);
4278 /*
4279 * We do this since we'll remove the pages after we've
4280 * removed the eb from the radix tree, so we could race
4281 * and have this page now attached to the new eb. So
4282 * only clear page_private if it's still connected to
4283 * this eb.
4284 */
4285 if (PagePrivate(page) &&
4286 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004287 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004288 BUG_ON(PageDirty(page));
4289 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004290 /*
4291 * We need to make sure we haven't be attached
4292 * to a new eb.
4293 */
4294 ClearPagePrivate(page);
4295 set_page_private(page, 0);
4296 /* One for the page private */
4297 page_cache_release(page);
4298 }
4299 spin_unlock(&page->mapping->private_lock);
4300
Jan Schmidt815a51c2012-05-16 17:00:02 +02004301 }
4302 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004303 /* One for when we alloced the page */
Miao Xie897ca6e2010-10-26 20:57:29 -04004304 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004305 }
Miao Xie897ca6e2010-10-26 20:57:29 -04004306 } while (index != start_idx);
4307}
4308
4309/*
4310 * Helper for releasing the extent buffer.
4311 */
4312static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4313{
4314 btrfs_release_extent_buffer_page(eb, 0);
4315 __free_extent_buffer(eb);
4316}
4317
Josef Bacikdb7f3432013-08-07 14:54:37 -04004318static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
4319 u64 start,
4320 unsigned long len,
4321 gfp_t mask)
4322{
4323 struct extent_buffer *eb = NULL;
4324
4325 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
4326 if (eb == NULL)
4327 return NULL;
4328 eb->start = start;
4329 eb->len = len;
4330 eb->tree = tree;
4331 eb->bflags = 0;
4332 rwlock_init(&eb->lock);
4333 atomic_set(&eb->write_locks, 0);
4334 atomic_set(&eb->read_locks, 0);
4335 atomic_set(&eb->blocking_readers, 0);
4336 atomic_set(&eb->blocking_writers, 0);
4337 atomic_set(&eb->spinning_readers, 0);
4338 atomic_set(&eb->spinning_writers, 0);
4339 eb->lock_nested = 0;
4340 init_waitqueue_head(&eb->write_lock_wq);
4341 init_waitqueue_head(&eb->read_lock_wq);
4342
4343 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4344
4345 spin_lock_init(&eb->refs_lock);
4346 atomic_set(&eb->refs, 1);
4347 atomic_set(&eb->io_pages, 0);
4348
4349 /*
4350 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4351 */
4352 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4353 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4354 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4355
4356 return eb;
4357}
4358
4359struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4360{
4361 unsigned long i;
4362 struct page *p;
4363 struct extent_buffer *new;
4364 unsigned long num_pages = num_extent_pages(src->start, src->len);
4365
Josef Bacik9ec72672013-08-07 16:57:23 -04004366 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004367 if (new == NULL)
4368 return NULL;
4369
4370 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004371 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004372 if (!p) {
4373 btrfs_release_extent_buffer(new);
4374 return NULL;
4375 }
4376 attach_extent_buffer_page(new, p);
4377 WARN_ON(PageDirty(p));
4378 SetPageUptodate(p);
4379 new->pages[i] = p;
4380 }
4381
4382 copy_extent_buffer(new, src, 0, 0, src->len);
4383 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4384 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4385
4386 return new;
4387}
4388
4389struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4390{
4391 struct extent_buffer *eb;
4392 unsigned long num_pages = num_extent_pages(0, len);
4393 unsigned long i;
4394
Josef Bacik9ec72672013-08-07 16:57:23 -04004395 eb = __alloc_extent_buffer(NULL, start, len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004396 if (!eb)
4397 return NULL;
4398
4399 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004400 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004401 if (!eb->pages[i])
4402 goto err;
4403 }
4404 set_extent_buffer_uptodate(eb);
4405 btrfs_set_header_nritems(eb, 0);
4406 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4407
4408 return eb;
4409err:
4410 for (; i > 0; i--)
4411 __free_page(eb->pages[i - 1]);
4412 __free_extent_buffer(eb);
4413 return NULL;
4414}
4415
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004416static void check_buffer_tree_ref(struct extent_buffer *eb)
4417{
Chris Mason242e18c2013-01-29 17:49:37 -05004418 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004419 /* the ref bit is tricky. We have to make sure it is set
4420 * if we have the buffer dirty. Otherwise the
4421 * code to free a buffer can end up dropping a dirty
4422 * page
4423 *
4424 * Once the ref bit is set, it won't go away while the
4425 * buffer is dirty or in writeback, and it also won't
4426 * go away while we have the reference count on the
4427 * eb bumped.
4428 *
4429 * We can't just set the ref bit without bumping the
4430 * ref on the eb because free_extent_buffer might
4431 * see the ref bit and try to clear it. If this happens
4432 * free_extent_buffer might end up dropping our original
4433 * ref by mistake and freeing the page before we are able
4434 * to add one more ref.
4435 *
4436 * So bump the ref count first, then set the bit. If someone
4437 * beat us to it, drop the ref we added.
4438 */
Chris Mason242e18c2013-01-29 17:49:37 -05004439 refs = atomic_read(&eb->refs);
4440 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4441 return;
4442
Josef Bacik594831c2012-07-20 16:11:08 -04004443 spin_lock(&eb->refs_lock);
4444 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004445 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004446 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004447}
4448
Josef Bacik5df42352012-03-15 18:24:42 -04004449static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4450{
4451 unsigned long num_pages, i;
4452
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004453 check_buffer_tree_ref(eb);
4454
Josef Bacik5df42352012-03-15 18:24:42 -04004455 num_pages = num_extent_pages(eb->start, eb->len);
4456 for (i = 0; i < num_pages; i++) {
4457 struct page *p = extent_buffer_page(eb, i);
4458 mark_page_accessed(p);
4459 }
4460}
4461
Chris Masond1310b22008-01-24 16:13:08 -05004462struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004463 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004464{
4465 unsigned long num_pages = num_extent_pages(start, len);
4466 unsigned long i;
4467 unsigned long index = start >> PAGE_CACHE_SHIFT;
4468 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004469 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004470 struct page *p;
4471 struct address_space *mapping = tree->mapping;
4472 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004473 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004474
Miao Xie19fe0a82010-10-26 20:57:29 -04004475 rcu_read_lock();
4476 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4477 if (eb && atomic_inc_not_zero(&eb->refs)) {
4478 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004479 mark_extent_buffer_accessed(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004480 return eb;
4481 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004482 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04004483
David Sterbaba144192011-04-21 01:12:06 +02004484 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004485 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004486 return NULL;
4487
Chris Mason727011e2010-08-06 13:21:20 -04004488 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004489 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004490 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004491 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004492
4493 spin_lock(&mapping->private_lock);
4494 if (PagePrivate(p)) {
4495 /*
4496 * We could have already allocated an eb for this page
4497 * and attached one so lets see if we can get a ref on
4498 * the existing eb, and if we can we know it's good and
4499 * we can just return that one, else we know we can just
4500 * overwrite page->private.
4501 */
4502 exists = (struct extent_buffer *)p->private;
4503 if (atomic_inc_not_zero(&exists->refs)) {
4504 spin_unlock(&mapping->private_lock);
4505 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004506 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004507 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004508 goto free_eb;
4509 }
4510
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004511 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004512 * Do this so attach doesn't complain and we need to
4513 * drop the ref the old guy had.
4514 */
4515 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004516 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004517 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004518 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004519 attach_extent_buffer_page(eb, p);
4520 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004521 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004522 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004523 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004524 if (!PageUptodate(p))
4525 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004526
4527 /*
4528 * see below about how we avoid a nasty race with release page
4529 * and why we unlock later
4530 */
Chris Masond1310b22008-01-24 16:13:08 -05004531 }
4532 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004533 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004534again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004535 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4536 if (ret)
4537 goto free_eb;
4538
Chris Mason6af118ce2008-07-22 11:18:07 -04004539 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004540 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4541 if (ret == -EEXIST) {
4542 exists = radix_tree_lookup(&tree->buffer,
4543 start >> PAGE_CACHE_SHIFT);
Josef Bacik115391d2012-03-09 09:51:43 -05004544 if (!atomic_inc_not_zero(&exists->refs)) {
4545 spin_unlock(&tree->buffer_lock);
4546 radix_tree_preload_end();
Josef Bacik115391d2012-03-09 09:51:43 -05004547 exists = NULL;
4548 goto again;
4549 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004550 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004551 radix_tree_preload_end();
Josef Bacik5df42352012-03-15 18:24:42 -04004552 mark_extent_buffer_accessed(exists);
Chris Mason6af118ce2008-07-22 11:18:07 -04004553 goto free_eb;
4554 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004555 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004556 check_buffer_tree_ref(eb);
Yan, Zhengf044ba72010-02-04 08:46:56 +00004557 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004558 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05004559
4560 /*
4561 * there is a race where release page may have
4562 * tried to find this extent buffer in the radix
4563 * but failed. It will tell the VM it is safe to
4564 * reclaim the, and it will clear the page private bit.
4565 * We must make sure to set the page private bit properly
4566 * after the extent buffer is in the radix tree so
4567 * it doesn't get lost
4568 */
Chris Mason727011e2010-08-06 13:21:20 -04004569 SetPageChecked(eb->pages[0]);
4570 for (i = 1; i < num_pages; i++) {
4571 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004572 ClearPageChecked(p);
4573 unlock_page(p);
4574 }
4575 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004576 return eb;
4577
Chris Mason6af118ce2008-07-22 11:18:07 -04004578free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004579 for (i = 0; i < num_pages; i++) {
4580 if (eb->pages[i])
4581 unlock_page(eb->pages[i]);
4582 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004583
Josef Bacik17de39a2012-05-04 15:16:06 -04004584 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e2010-10-26 20:57:29 -04004585 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004586 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004587}
Chris Masond1310b22008-01-24 16:13:08 -05004588
4589struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02004590 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004591{
Chris Masond1310b22008-01-24 16:13:08 -05004592 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05004593
Miao Xie19fe0a82010-10-26 20:57:29 -04004594 rcu_read_lock();
4595 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4596 if (eb && atomic_inc_not_zero(&eb->refs)) {
4597 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004598 mark_extent_buffer_accessed(eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004599 return eb;
4600 }
4601 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04004602
Miao Xie19fe0a82010-10-26 20:57:29 -04004603 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004604}
Chris Masond1310b22008-01-24 16:13:08 -05004605
Josef Bacik3083ee22012-03-09 16:01:49 -05004606static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4607{
4608 struct extent_buffer *eb =
4609 container_of(head, struct extent_buffer, rcu_head);
4610
4611 __free_extent_buffer(eb);
4612}
4613
Josef Bacik3083ee22012-03-09 16:01:49 -05004614/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004615static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004616{
4617 WARN_ON(atomic_read(&eb->refs) == 0);
4618 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004619 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4620 spin_unlock(&eb->refs_lock);
4621 } else {
4622 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004623
Jan Schmidt815a51c2012-05-16 17:00:02 +02004624 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004625
Jan Schmidt815a51c2012-05-16 17:00:02 +02004626 spin_lock(&tree->buffer_lock);
4627 radix_tree_delete(&tree->buffer,
4628 eb->start >> PAGE_CACHE_SHIFT);
4629 spin_unlock(&tree->buffer_lock);
4630 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004631
4632 /* Should be safe to release our pages at this point */
4633 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004634 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004635 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004636 }
4637 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004638
4639 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004640}
4641
Chris Masond1310b22008-01-24 16:13:08 -05004642void free_extent_buffer(struct extent_buffer *eb)
4643{
Chris Mason242e18c2013-01-29 17:49:37 -05004644 int refs;
4645 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004646 if (!eb)
4647 return;
4648
Chris Mason242e18c2013-01-29 17:49:37 -05004649 while (1) {
4650 refs = atomic_read(&eb->refs);
4651 if (refs <= 3)
4652 break;
4653 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4654 if (old == refs)
4655 return;
4656 }
4657
Josef Bacik3083ee22012-03-09 16:01:49 -05004658 spin_lock(&eb->refs_lock);
4659 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004660 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4661 atomic_dec(&eb->refs);
4662
4663 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004664 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004665 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004666 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4667 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004668
Josef Bacik3083ee22012-03-09 16:01:49 -05004669 /*
4670 * I know this is terrible, but it's temporary until we stop tracking
4671 * the uptodate bits and such for the extent buffers.
4672 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004673 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004674}
Chris Masond1310b22008-01-24 16:13:08 -05004675
Josef Bacik3083ee22012-03-09 16:01:49 -05004676void free_extent_buffer_stale(struct extent_buffer *eb)
4677{
4678 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004679 return;
4680
Josef Bacik3083ee22012-03-09 16:01:49 -05004681 spin_lock(&eb->refs_lock);
4682 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4683
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004684 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004685 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4686 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004687 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004688}
4689
Chris Mason1d4284b2012-03-28 20:31:37 -04004690void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004691{
Chris Masond1310b22008-01-24 16:13:08 -05004692 unsigned long i;
4693 unsigned long num_pages;
4694 struct page *page;
4695
Chris Masond1310b22008-01-24 16:13:08 -05004696 num_pages = num_extent_pages(eb->start, eb->len);
4697
4698 for (i = 0; i < num_pages; i++) {
4699 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004700 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004701 continue;
4702
Chris Masona61e6f22008-07-22 11:18:08 -04004703 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004704 WARN_ON(!PagePrivate(page));
4705
Chris Masond1310b22008-01-24 16:13:08 -05004706 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004707 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004708 if (!PageDirty(page)) {
4709 radix_tree_tag_clear(&page->mapping->page_tree,
4710 page_index(page),
4711 PAGECACHE_TAG_DIRTY);
4712 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004713 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004714 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004715 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004716 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004717 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004718}
Chris Masond1310b22008-01-24 16:13:08 -05004719
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004720int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004721{
4722 unsigned long i;
4723 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004724 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004725
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004726 check_buffer_tree_ref(eb);
4727
Chris Masonb9473432009-03-13 11:00:37 -04004728 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004729
Chris Masond1310b22008-01-24 16:13:08 -05004730 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004731 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004732 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4733
Chris Masonb9473432009-03-13 11:00:37 -04004734 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004735 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004736 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004737}
Chris Masond1310b22008-01-24 16:13:08 -05004738
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004739int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004740{
4741 unsigned long i;
4742 struct page *page;
4743 unsigned long num_pages;
4744
Chris Masonb4ce94d2009-02-04 09:25:08 -05004745 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004746 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004747 for (i = 0; i < num_pages; i++) {
4748 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004749 if (page)
4750 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004751 }
4752 return 0;
4753}
4754
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004755int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004756{
4757 unsigned long i;
4758 struct page *page;
4759 unsigned long num_pages;
4760
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004761 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004762 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004763 for (i = 0; i < num_pages; i++) {
4764 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004765 SetPageUptodate(page);
4766 }
4767 return 0;
4768}
Chris Masond1310b22008-01-24 16:13:08 -05004769
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004770int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004771{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004772 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004773}
Chris Masond1310b22008-01-24 16:13:08 -05004774
4775int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004776 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004777 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004778{
4779 unsigned long i;
4780 unsigned long start_i;
4781 struct page *page;
4782 int err;
4783 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004784 int locked_pages = 0;
4785 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004786 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004787 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004788 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004789 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004790
Chris Masonb4ce94d2009-02-04 09:25:08 -05004791 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004792 return 0;
4793
Chris Masond1310b22008-01-24 16:13:08 -05004794 if (start) {
4795 WARN_ON(start < eb->start);
4796 start_i = (start >> PAGE_CACHE_SHIFT) -
4797 (eb->start >> PAGE_CACHE_SHIFT);
4798 } else {
4799 start_i = 0;
4800 }
4801
4802 num_pages = num_extent_pages(eb->start, eb->len);
4803 for (i = start_i; i < num_pages; i++) {
4804 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004805 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004806 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004807 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004808 } else {
4809 lock_page(page);
4810 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004811 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004812 if (!PageUptodate(page)) {
4813 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004814 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004815 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004816 }
4817 if (all_uptodate) {
4818 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004819 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004820 goto unlock_exit;
4821 }
4822
Josef Bacikea466792012-03-26 21:57:36 -04004823 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004824 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004825 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004826 for (i = start_i; i < num_pages; i++) {
4827 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004828 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004829 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004830 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004831 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004832 mirror_num, &bio_flags,
4833 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05004834 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004835 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004836 } else {
4837 unlock_page(page);
4838 }
4839 }
4840
Jeff Mahoney355808c2011-10-03 23:23:14 -04004841 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004842 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
4843 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004844 if (err)
4845 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004846 }
Chris Masona86c12c2008-02-07 10:50:54 -05004847
Arne Jansenbb82ab82011-06-10 14:06:53 +02004848 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004849 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004850
Chris Masond1310b22008-01-24 16:13:08 -05004851 for (i = start_i; i < num_pages; i++) {
4852 page = extent_buffer_page(eb, i);
4853 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004854 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004855 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004856 }
Chris Masond3977122009-01-05 21:25:51 -05004857
Chris Masond1310b22008-01-24 16:13:08 -05004858 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004859
4860unlock_exit:
4861 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004862 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004863 page = extent_buffer_page(eb, i);
4864 i++;
4865 unlock_page(page);
4866 locked_pages--;
4867 }
4868 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004869}
Chris Masond1310b22008-01-24 16:13:08 -05004870
4871void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4872 unsigned long start,
4873 unsigned long len)
4874{
4875 size_t cur;
4876 size_t offset;
4877 struct page *page;
4878 char *kaddr;
4879 char *dst = (char *)dstv;
4880 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4881 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004882
4883 WARN_ON(start > eb->len);
4884 WARN_ON(start + len > eb->start + eb->len);
4885
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004886 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004887
Chris Masond3977122009-01-05 21:25:51 -05004888 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004889 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004890
4891 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004892 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004893 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004894
4895 dst += cur;
4896 len -= cur;
4897 offset = 0;
4898 i++;
4899 }
4900}
Chris Masond1310b22008-01-24 16:13:08 -05004901
4902int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004903 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004904 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004905 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004906{
4907 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4908 char *kaddr;
4909 struct page *p;
4910 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4911 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4912 unsigned long end_i = (start_offset + start + min_len - 1) >>
4913 PAGE_CACHE_SHIFT;
4914
4915 if (i != end_i)
4916 return -EINVAL;
4917
4918 if (i == 0) {
4919 offset = start_offset;
4920 *map_start = 0;
4921 } else {
4922 offset = 0;
4923 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4924 }
Chris Masond3977122009-01-05 21:25:51 -05004925
Chris Masond1310b22008-01-24 16:13:08 -05004926 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004927 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004928 "wanted %lu %lu\n",
4929 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004930 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004931 }
4932
4933 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004934 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004935 *map = kaddr + offset;
4936 *map_len = PAGE_CACHE_SIZE - offset;
4937 return 0;
4938}
Chris Masond1310b22008-01-24 16:13:08 -05004939
Chris Masond1310b22008-01-24 16:13:08 -05004940int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4941 unsigned long start,
4942 unsigned long len)
4943{
4944 size_t cur;
4945 size_t offset;
4946 struct page *page;
4947 char *kaddr;
4948 char *ptr = (char *)ptrv;
4949 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4950 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4951 int ret = 0;
4952
4953 WARN_ON(start > eb->len);
4954 WARN_ON(start + len > eb->start + eb->len);
4955
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004956 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004957
Chris Masond3977122009-01-05 21:25:51 -05004958 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004959 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004960
4961 cur = min(len, (PAGE_CACHE_SIZE - offset));
4962
Chris Masona6591712011-07-19 12:04:14 -04004963 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004964 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004965 if (ret)
4966 break;
4967
4968 ptr += cur;
4969 len -= cur;
4970 offset = 0;
4971 i++;
4972 }
4973 return ret;
4974}
Chris Masond1310b22008-01-24 16:13:08 -05004975
4976void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4977 unsigned long start, unsigned long len)
4978{
4979 size_t cur;
4980 size_t offset;
4981 struct page *page;
4982 char *kaddr;
4983 char *src = (char *)srcv;
4984 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4985 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4986
4987 WARN_ON(start > eb->len);
4988 WARN_ON(start + len > eb->start + eb->len);
4989
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004990 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004991
Chris Masond3977122009-01-05 21:25:51 -05004992 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004993 page = extent_buffer_page(eb, i);
4994 WARN_ON(!PageUptodate(page));
4995
4996 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004997 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004998 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004999
5000 src += cur;
5001 len -= cur;
5002 offset = 0;
5003 i++;
5004 }
5005}
Chris Masond1310b22008-01-24 16:13:08 -05005006
5007void memset_extent_buffer(struct extent_buffer *eb, char c,
5008 unsigned long start, unsigned long len)
5009{
5010 size_t cur;
5011 size_t offset;
5012 struct page *page;
5013 char *kaddr;
5014 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5015 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5016
5017 WARN_ON(start > eb->len);
5018 WARN_ON(start + len > eb->start + eb->len);
5019
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005020 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005021
Chris Masond3977122009-01-05 21:25:51 -05005022 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005023 page = extent_buffer_page(eb, i);
5024 WARN_ON(!PageUptodate(page));
5025
5026 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005027 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005028 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005029
5030 len -= cur;
5031 offset = 0;
5032 i++;
5033 }
5034}
Chris Masond1310b22008-01-24 16:13:08 -05005035
5036void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5037 unsigned long dst_offset, unsigned long src_offset,
5038 unsigned long len)
5039{
5040 u64 dst_len = dst->len;
5041 size_t cur;
5042 size_t offset;
5043 struct page *page;
5044 char *kaddr;
5045 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5046 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5047
5048 WARN_ON(src->len != dst_len);
5049
5050 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005051 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005052
Chris Masond3977122009-01-05 21:25:51 -05005053 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005054 page = extent_buffer_page(dst, i);
5055 WARN_ON(!PageUptodate(page));
5056
5057 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5058
Chris Masona6591712011-07-19 12:04:14 -04005059 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005060 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005061
5062 src_offset += cur;
5063 len -= cur;
5064 offset = 0;
5065 i++;
5066 }
5067}
Chris Masond1310b22008-01-24 16:13:08 -05005068
5069static void move_pages(struct page *dst_page, struct page *src_page,
5070 unsigned long dst_off, unsigned long src_off,
5071 unsigned long len)
5072{
Chris Masona6591712011-07-19 12:04:14 -04005073 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005074 if (dst_page == src_page) {
5075 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
5076 } else {
Chris Masona6591712011-07-19 12:04:14 -04005077 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05005078 char *p = dst_kaddr + dst_off + len;
5079 char *s = src_kaddr + src_off + len;
5080
5081 while (len--)
5082 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05005083 }
Chris Masond1310b22008-01-24 16:13:08 -05005084}
5085
Sergei Trofimovich33872062011-04-11 21:52:52 +00005086static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5087{
5088 unsigned long distance = (src > dst) ? src - dst : dst - src;
5089 return distance < len;
5090}
5091
Chris Masond1310b22008-01-24 16:13:08 -05005092static void copy_pages(struct page *dst_page, struct page *src_page,
5093 unsigned long dst_off, unsigned long src_off,
5094 unsigned long len)
5095{
Chris Masona6591712011-07-19 12:04:14 -04005096 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005097 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005098 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005099
Sergei Trofimovich33872062011-04-11 21:52:52 +00005100 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005101 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005102 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005103 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005104 if (areas_overlap(src_off, dst_off, len))
5105 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005106 }
Chris Masond1310b22008-01-24 16:13:08 -05005107
Chris Mason727011e2010-08-06 13:21:20 -04005108 if (must_memmove)
5109 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5110 else
5111 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005112}
5113
5114void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5115 unsigned long src_offset, unsigned long len)
5116{
5117 size_t cur;
5118 size_t dst_off_in_page;
5119 size_t src_off_in_page;
5120 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5121 unsigned long dst_i;
5122 unsigned long src_i;
5123
5124 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005125 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5126 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005127 BUG_ON(1);
5128 }
5129 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005130 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5131 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005132 BUG_ON(1);
5133 }
5134
Chris Masond3977122009-01-05 21:25:51 -05005135 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005136 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005137 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005138 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005139 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005140
5141 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5142 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5143
5144 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5145 src_off_in_page));
5146 cur = min_t(unsigned long, cur,
5147 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5148
5149 copy_pages(extent_buffer_page(dst, dst_i),
5150 extent_buffer_page(dst, src_i),
5151 dst_off_in_page, src_off_in_page, cur);
5152
5153 src_offset += cur;
5154 dst_offset += cur;
5155 len -= cur;
5156 }
5157}
Chris Masond1310b22008-01-24 16:13:08 -05005158
5159void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5160 unsigned long src_offset, unsigned long len)
5161{
5162 size_t cur;
5163 size_t dst_off_in_page;
5164 size_t src_off_in_page;
5165 unsigned long dst_end = dst_offset + len - 1;
5166 unsigned long src_end = src_offset + len - 1;
5167 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5168 unsigned long dst_i;
5169 unsigned long src_i;
5170
5171 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005172 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5173 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005174 BUG_ON(1);
5175 }
5176 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005177 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5178 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005179 BUG_ON(1);
5180 }
Chris Mason727011e2010-08-06 13:21:20 -04005181 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005182 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5183 return;
5184 }
Chris Masond3977122009-01-05 21:25:51 -05005185 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005186 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5187 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5188
5189 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005190 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005191 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005192 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005193
5194 cur = min_t(unsigned long, len, src_off_in_page + 1);
5195 cur = min(cur, dst_off_in_page + 1);
5196 move_pages(extent_buffer_page(dst, dst_i),
5197 extent_buffer_page(dst, src_i),
5198 dst_off_in_page - cur + 1,
5199 src_off_in_page - cur + 1, cur);
5200
5201 dst_end -= cur;
5202 src_end -= cur;
5203 len -= cur;
5204 }
5205}
Chris Mason6af118ce2008-07-22 11:18:07 -04005206
David Sterbaf7a52a42013-04-26 14:56:29 +00005207int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005208{
Chris Mason6af118ce2008-07-22 11:18:07 -04005209 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005210
Miao Xie19fe0a82010-10-26 20:57:29 -04005211 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005212 * We need to make sure noboody is attaching this page to an eb right
5213 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005214 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005215 spin_lock(&page->mapping->private_lock);
5216 if (!PagePrivate(page)) {
5217 spin_unlock(&page->mapping->private_lock);
5218 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005219 }
5220
Josef Bacik3083ee22012-03-09 16:01:49 -05005221 eb = (struct extent_buffer *)page->private;
5222 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005223
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005224 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005225 * This is a little awful but should be ok, we need to make sure that
5226 * the eb doesn't disappear out from under us while we're looking at
5227 * this page.
5228 */
5229 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005230 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005231 spin_unlock(&eb->refs_lock);
5232 spin_unlock(&page->mapping->private_lock);
5233 return 0;
5234 }
5235 spin_unlock(&page->mapping->private_lock);
5236
Josef Bacik3083ee22012-03-09 16:01:49 -05005237 /*
5238 * If tree ref isn't set then we know the ref on this eb is a real ref,
5239 * so just return, this page will likely be freed soon anyway.
5240 */
5241 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5242 spin_unlock(&eb->refs_lock);
5243 return 0;
5244 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005245
David Sterbaf7a52a42013-04-26 14:56:29 +00005246 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005247}