blob: f3910ac00d895c998fd8da1cae9d7f2e8eb80a14 [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/bitops.h>
2#include <linux/slab.h>
3#include <linux/bio.h>
4#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05005#include <linux/pagemap.h>
6#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/spinlock.h>
8#include <linux/blkdev.h>
9#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050010#include <linux/writeback.h>
11#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070012#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060013#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050014#include "extent_io.h"
15#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040016#include "ctree.h"
17#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020018#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010019#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040020#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040021#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080022#include "backref.h"
Chris Masond1310b22008-01-24 16:13:08 -050023
Chris Masond1310b22008-01-24 16:13:08 -050024static struct kmem_cache *extent_state_cache;
25static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040026static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050027
Filipe Manana27a35072014-07-06 20:09:59 +010028static inline bool extent_state_in_tree(const struct extent_state *state)
29{
30 return !RB_EMPTY_NODE(&state->rb_node);
31}
32
Eric Sandeen6d49ba12013-04-22 16:12:31 +000033#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050034static LIST_HEAD(buffers);
35static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040036
Chris Masond3977122009-01-05 21:25:51 -050037static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000038
39static inline
40void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
41{
42 unsigned long flags;
43
44 spin_lock_irqsave(&leak_lock, flags);
45 list_add(new, head);
46 spin_unlock_irqrestore(&leak_lock, flags);
47}
48
49static inline
50void btrfs_leak_debug_del(struct list_head *entry)
51{
52 unsigned long flags;
53
54 spin_lock_irqsave(&leak_lock, flags);
55 list_del(entry);
56 spin_unlock_irqrestore(&leak_lock, flags);
57}
58
59static inline
60void btrfs_leak_debug_check(void)
61{
62 struct extent_state *state;
63 struct extent_buffer *eb;
64
65 while (!list_empty(&states)) {
66 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010067 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010068 state->start, state->end, state->state,
69 extent_state_in_tree(state),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020070 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000071 list_del(&state->leak_list);
72 kmem_cache_free(extent_state_cache, state);
73 }
74
75 while (!list_empty(&buffers)) {
76 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Frank Holtonefe120a2013-12-20 11:37:06 -050077 printk(KERN_ERR "BTRFS: buffer leak start %llu len %lu "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020078 "refs %d\n",
79 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000080 list_del(&eb->leak_list);
81 kmem_cache_free(extent_buffer_cache, eb);
82 }
83}
David Sterba8d599ae2013-04-30 15:22:23 +000084
Josef Bacika5dee372013-12-13 10:02:44 -050085#define btrfs_debug_check_extent_io_range(tree, start, end) \
86 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000087static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050088 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000089{
Josef Bacika5dee372013-12-13 10:02:44 -050090 struct inode *inode;
91 u64 isize;
David Sterba8d599ae2013-04-30 15:22:23 +000092
Josef Bacika5dee372013-12-13 10:02:44 -050093 if (!tree->mapping)
94 return;
95
96 inode = tree->mapping->host;
97 isize = i_size_read(inode);
David Sterba8d599ae2013-04-30 15:22:23 +000098 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
David Sterba94647322015-10-08 11:01:36 +020099 btrfs_debug_rl(BTRFS_I(inode)->root->fs_info,
100 "%s: ino %llu isize %llu odd range [%llu,%llu]",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200101 caller, btrfs_ino(inode), isize, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000102 }
103}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000104#else
105#define btrfs_leak_debug_add(new, head) do {} while (0)
106#define btrfs_leak_debug_del(entry) do {} while (0)
107#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000108#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400109#endif
Chris Masond1310b22008-01-24 16:13:08 -0500110
Chris Masond1310b22008-01-24 16:13:08 -0500111#define BUFFER_LRU_MAX 64
112
113struct tree_entry {
114 u64 start;
115 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500116 struct rb_node rb_node;
117};
118
119struct extent_page_data {
120 struct bio *bio;
121 struct extent_io_tree *tree;
122 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -0400123 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500124
125 /* tells writepage not to lock the state bits for this range
126 * it still does the unlocking
127 */
Chris Masonffbd5172009-04-20 15:50:09 -0400128 unsigned int extent_locked:1;
129
130 /* tells the submit_bio code to use a WRITE_SYNC */
131 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500132};
133
Qu Wenruod38ed272015-10-12 14:53:37 +0800134static void add_extent_changeset(struct extent_state *state, unsigned bits,
135 struct extent_changeset *changeset,
136 int set)
137{
138 int ret;
139
140 if (!changeset)
141 return;
142 if (set && (state->state & bits) == bits)
143 return;
Qu Wenruofefdc552015-10-12 15:35:38 +0800144 if (!set && (state->state & bits) == 0)
145 return;
Qu Wenruod38ed272015-10-12 14:53:37 +0800146 changeset->bytes_changed += state->end - state->start + 1;
147 ret = ulist_add(changeset->range_changed, state->start, state->end,
148 GFP_ATOMIC);
149 /* ENOMEM */
150 BUG_ON(ret < 0);
151}
152
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400153static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400154static inline struct btrfs_fs_info *
155tree_fs_info(struct extent_io_tree *tree)
156{
Josef Bacika5dee372013-12-13 10:02:44 -0500157 if (!tree->mapping)
158 return NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400159 return btrfs_sb(tree->mapping->host->i_sb);
160}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400161
Chris Masond1310b22008-01-24 16:13:08 -0500162int __init extent_io_init(void)
163{
David Sterba837e1972012-09-07 03:00:48 -0600164 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200165 sizeof(struct extent_state), 0,
166 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500167 if (!extent_state_cache)
168 return -ENOMEM;
169
David Sterba837e1972012-09-07 03:00:48 -0600170 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200171 sizeof(struct extent_buffer), 0,
172 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500173 if (!extent_buffer_cache)
174 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400175
176 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
177 offsetof(struct btrfs_io_bio, bio));
178 if (!btrfs_bioset)
179 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700180
181 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
182 goto free_bioset;
183
Chris Masond1310b22008-01-24 16:13:08 -0500184 return 0;
185
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700186free_bioset:
187 bioset_free(btrfs_bioset);
188 btrfs_bioset = NULL;
189
Chris Mason9be33952013-05-17 18:30:14 -0400190free_buffer_cache:
191 kmem_cache_destroy(extent_buffer_cache);
192 extent_buffer_cache = NULL;
193
Chris Masond1310b22008-01-24 16:13:08 -0500194free_state_cache:
195 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400196 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500197 return -ENOMEM;
198}
199
200void extent_io_exit(void)
201{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000202 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000203
204 /*
205 * Make sure all delayed rcu free are flushed before we
206 * destroy caches.
207 */
208 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500209 if (extent_state_cache)
210 kmem_cache_destroy(extent_state_cache);
211 if (extent_buffer_cache)
212 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400213 if (btrfs_bioset)
214 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500215}
216
217void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200218 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500219{
Eric Paris6bef4d32010-02-23 19:43:04 +0000220 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500221 tree->ops = NULL;
222 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500223 spin_lock_init(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500224 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500225}
Chris Masond1310b22008-01-24 16:13:08 -0500226
Christoph Hellwigb2950862008-12-02 09:54:17 -0500227static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500228{
229 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500230
231 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400232 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500233 return state;
234 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100235 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100236 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000237 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500238 atomic_set(&state->refs, 1);
239 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100240 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500241 return state;
242}
Chris Masond1310b22008-01-24 16:13:08 -0500243
Chris Mason4845e442010-05-25 20:56:50 -0400244void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500245{
Chris Masond1310b22008-01-24 16:13:08 -0500246 if (!state)
247 return;
248 if (atomic_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100249 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000250 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100251 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500252 kmem_cache_free(extent_state_cache, state);
253 }
254}
Chris Masond1310b22008-01-24 16:13:08 -0500255
Filipe Mananaf2071b22014-02-12 15:05:53 +0000256static struct rb_node *tree_insert(struct rb_root *root,
257 struct rb_node *search_start,
258 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000259 struct rb_node *node,
260 struct rb_node ***p_in,
261 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500262{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000263 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500264 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500265 struct tree_entry *entry;
266
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000267 if (p_in && parent_in) {
268 p = *p_in;
269 parent = *parent_in;
270 goto do_insert;
271 }
272
Filipe Mananaf2071b22014-02-12 15:05:53 +0000273 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500274 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500275 parent = *p;
276 entry = rb_entry(parent, struct tree_entry, rb_node);
277
278 if (offset < entry->start)
279 p = &(*p)->rb_left;
280 else if (offset > entry->end)
281 p = &(*p)->rb_right;
282 else
283 return parent;
284 }
285
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000286do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500287 rb_link_node(node, parent, p);
288 rb_insert_color(node, root);
289 return NULL;
290}
291
Chris Mason80ea96b2008-02-01 14:51:59 -0500292static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000293 struct rb_node **prev_ret,
294 struct rb_node **next_ret,
295 struct rb_node ***p_ret,
296 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500297{
Chris Mason80ea96b2008-02-01 14:51:59 -0500298 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000299 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500300 struct rb_node *prev = NULL;
301 struct rb_node *orig_prev = NULL;
302 struct tree_entry *entry;
303 struct tree_entry *prev_entry = NULL;
304
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000305 while (*n) {
306 prev = *n;
307 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500308 prev_entry = entry;
309
310 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000311 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500312 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000313 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500314 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000315 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500316 }
317
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000318 if (p_ret)
319 *p_ret = n;
320 if (parent_ret)
321 *parent_ret = prev;
322
Chris Masond1310b22008-01-24 16:13:08 -0500323 if (prev_ret) {
324 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500325 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500326 prev = rb_next(prev);
327 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
328 }
329 *prev_ret = prev;
330 prev = orig_prev;
331 }
332
333 if (next_ret) {
334 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500335 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500336 prev = rb_prev(prev);
337 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
338 }
339 *next_ret = prev;
340 }
341 return NULL;
342}
343
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000344static inline struct rb_node *
345tree_search_for_insert(struct extent_io_tree *tree,
346 u64 offset,
347 struct rb_node ***p_ret,
348 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500349{
Chris Mason70dec802008-01-29 09:59:12 -0500350 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500351 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500352
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000353 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500354 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500355 return prev;
356 return ret;
357}
358
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000359static inline struct rb_node *tree_search(struct extent_io_tree *tree,
360 u64 offset)
361{
362 return tree_search_for_insert(tree, offset, NULL, NULL);
363}
364
Josef Bacik9ed74f22009-09-11 16:12:44 -0400365static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
366 struct extent_state *other)
367{
368 if (tree->ops && tree->ops->merge_extent_hook)
369 tree->ops->merge_extent_hook(tree->mapping->host, new,
370 other);
371}
372
Chris Masond1310b22008-01-24 16:13:08 -0500373/*
374 * utility function to look for merge candidates inside a given range.
375 * Any extents with matching state are merged together into a single
376 * extent in the tree. Extents with EXTENT_IO in their state field
377 * are not merged because the end_io handlers need to be able to do
378 * operations on them without sleeping (or doing allocations/splits).
379 *
380 * This should be called with the tree lock held.
381 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000382static void merge_state(struct extent_io_tree *tree,
383 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500384{
385 struct extent_state *other;
386 struct rb_node *other_node;
387
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400388 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000389 return;
Chris Masond1310b22008-01-24 16:13:08 -0500390
391 other_node = rb_prev(&state->rb_node);
392 if (other_node) {
393 other = rb_entry(other_node, struct extent_state, rb_node);
394 if (other->end == state->start - 1 &&
395 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400396 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500397 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500398 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100399 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500400 free_extent_state(other);
401 }
402 }
403 other_node = rb_next(&state->rb_node);
404 if (other_node) {
405 other = rb_entry(other_node, struct extent_state, rb_node);
406 if (other->start == state->end + 1 &&
407 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400408 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400409 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400410 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100411 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400412 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500413 }
414 }
Chris Masond1310b22008-01-24 16:13:08 -0500415}
416
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000417static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100418 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500419{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000420 if (tree->ops && tree->ops->set_bit_hook)
421 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500422}
423
424static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100425 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500426{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400427 if (tree->ops && tree->ops->clear_bit_hook)
428 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500429}
430
Xiao Guangrong3150b692011-07-14 03:19:08 +0000431static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800432 struct extent_state *state, unsigned *bits,
433 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000434
Chris Masond1310b22008-01-24 16:13:08 -0500435/*
436 * insert an extent_state struct into the tree. 'bits' are set on the
437 * struct before it is inserted.
438 *
439 * This may return -EEXIST if the extent is already there, in which case the
440 * state struct is freed.
441 *
442 * The tree lock is not taken internally. This is a utility function and
443 * probably isn't what you want to call (see set/clear_extent_bit).
444 */
445static int insert_state(struct extent_io_tree *tree,
446 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000447 struct rb_node ***p,
448 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800449 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500450{
451 struct rb_node *node;
452
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000453 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500454 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200455 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500456 state->start = start;
457 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400458
Qu Wenruod38ed272015-10-12 14:53:37 +0800459 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000460
Filipe Mananaf2071b22014-02-12 15:05:53 +0000461 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500462 if (node) {
463 struct extent_state *found;
464 found = rb_entry(node, struct extent_state, rb_node);
Frank Holtonefe120a2013-12-20 11:37:06 -0500465 printk(KERN_ERR "BTRFS: found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200466 "%llu %llu\n",
467 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500468 return -EEXIST;
469 }
470 merge_state(tree, state);
471 return 0;
472}
473
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000474static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400475 u64 split)
476{
477 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000478 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400479}
480
Chris Masond1310b22008-01-24 16:13:08 -0500481/*
482 * split a given extent state struct in two, inserting the preallocated
483 * struct 'prealloc' as the newly created second half. 'split' indicates an
484 * offset inside 'orig' where it should be split.
485 *
486 * Before calling,
487 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
488 * are two extent state structs in the tree:
489 * prealloc: [orig->start, split - 1]
490 * orig: [ split, orig->end ]
491 *
492 * The tree locks are not taken by this function. They need to be held
493 * by the caller.
494 */
495static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
496 struct extent_state *prealloc, u64 split)
497{
498 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400499
500 split_cb(tree, orig, split);
501
Chris Masond1310b22008-01-24 16:13:08 -0500502 prealloc->start = orig->start;
503 prealloc->end = split - 1;
504 prealloc->state = orig->state;
505 orig->start = split;
506
Filipe Mananaf2071b22014-02-12 15:05:53 +0000507 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
508 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500509 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500510 free_extent_state(prealloc);
511 return -EEXIST;
512 }
513 return 0;
514}
515
Li Zefancdc6a392012-03-12 16:39:48 +0800516static struct extent_state *next_state(struct extent_state *state)
517{
518 struct rb_node *next = rb_next(&state->rb_node);
519 if (next)
520 return rb_entry(next, struct extent_state, rb_node);
521 else
522 return NULL;
523}
524
Chris Masond1310b22008-01-24 16:13:08 -0500525/*
526 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800527 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500528 *
529 * If no bits are set on the state struct after clearing things, the
530 * struct is freed and removed from the tree
531 */
Li Zefancdc6a392012-03-12 16:39:48 +0800532static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
533 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800534 unsigned *bits, int wake,
535 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500536{
Li Zefancdc6a392012-03-12 16:39:48 +0800537 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100538 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500539
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400540 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500541 u64 range = state->end - state->start + 1;
542 WARN_ON(range > tree->dirty_bytes);
543 tree->dirty_bytes -= range;
544 }
Chris Mason291d6732008-01-29 15:55:23 -0500545 clear_state_cb(tree, state, bits);
Qu Wenruofefdc552015-10-12 15:35:38 +0800546 add_extent_changeset(state, bits_to_clear, changeset, 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400547 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500548 if (wake)
549 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400550 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800551 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100552 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500553 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100554 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500555 free_extent_state(state);
556 } else {
557 WARN_ON(1);
558 }
559 } else {
560 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800561 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500562 }
Li Zefancdc6a392012-03-12 16:39:48 +0800563 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500564}
565
Xiao Guangrong82337672011-04-20 06:44:57 +0000566static struct extent_state *
567alloc_extent_state_atomic(struct extent_state *prealloc)
568{
569 if (!prealloc)
570 prealloc = alloc_extent_state(GFP_ATOMIC);
571
572 return prealloc;
573}
574
Eric Sandeen48a3b632013-04-25 20:41:01 +0000575static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400576{
577 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
578 "Extent tree was modified by another "
579 "thread while locked.");
580}
581
Chris Masond1310b22008-01-24 16:13:08 -0500582/*
583 * clear some bits on a range in the tree. This may require splitting
584 * or inserting elements in the tree, so the gfp mask is used to
585 * indicate which allocations or sleeping are allowed.
586 *
587 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
588 * the given range from the tree regardless of state (ie for truncate).
589 *
590 * the range [start, end] is inclusive.
591 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100592 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500593 */
Qu Wenruofefdc552015-10-12 15:35:38 +0800594static int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
595 unsigned bits, int wake, int delete,
596 struct extent_state **cached_state,
597 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500598{
599 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400600 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500601 struct extent_state *prealloc = NULL;
602 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400603 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500604 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000605 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500606
Josef Bacika5dee372013-12-13 10:02:44 -0500607 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000608
Josef Bacik7ee9e442013-06-21 16:37:03 -0400609 if (bits & EXTENT_DELALLOC)
610 bits |= EXTENT_NORESERVE;
611
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400612 if (delete)
613 bits |= ~EXTENT_CTLBITS;
614 bits |= EXTENT_FIRST_DELALLOC;
615
Josef Bacik2ac55d42010-02-03 19:33:23 +0000616 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
617 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500618again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800619 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000620 /*
621 * Don't care for allocation failure here because we might end
622 * up not needing the pre-allocated extent state at all, which
623 * is the case if we only have in the tree extent states that
624 * cover our input range and don't cover too any other range.
625 * If we end up needing a new extent state we allocate it later.
626 */
Chris Masond1310b22008-01-24 16:13:08 -0500627 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500628 }
629
Chris Masoncad321a2008-12-17 14:51:42 -0500630 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400631 if (cached_state) {
632 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000633
634 if (clear) {
635 *cached_state = NULL;
636 cached_state = NULL;
637 }
638
Filipe Manana27a35072014-07-06 20:09:59 +0100639 if (cached && extent_state_in_tree(cached) &&
640 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000641 if (clear)
642 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400643 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400644 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400645 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000646 if (clear)
647 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400648 }
Chris Masond1310b22008-01-24 16:13:08 -0500649 /*
650 * this search will find the extents that end after
651 * our range starts
652 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500653 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500654 if (!node)
655 goto out;
656 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400657hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500658 if (state->start > end)
659 goto out;
660 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400661 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500662
Liu Bo04493142012-02-16 18:34:37 +0800663 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800664 if (!(state->state & bits)) {
665 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800666 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800667 }
Liu Bo04493142012-02-16 18:34:37 +0800668
Chris Masond1310b22008-01-24 16:13:08 -0500669 /*
670 * | ---- desired range ---- |
671 * | state | or
672 * | ------------- state -------------- |
673 *
674 * We need to split the extent we found, and may flip
675 * bits on second half.
676 *
677 * If the extent we found extends past our range, we
678 * just split and search again. It'll get split again
679 * the next time though.
680 *
681 * If the extent we found is inside our range, we clear
682 * the desired bit on it.
683 */
684
685 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000686 prealloc = alloc_extent_state_atomic(prealloc);
687 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500688 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400689 if (err)
690 extent_io_tree_panic(tree, err);
691
Chris Masond1310b22008-01-24 16:13:08 -0500692 prealloc = NULL;
693 if (err)
694 goto out;
695 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800696 state = clear_state_bit(tree, state, &bits, wake,
697 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800698 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500699 }
700 goto search_again;
701 }
702 /*
703 * | ---- desired range ---- |
704 * | state |
705 * We need to split the extent, and clear the bit
706 * on the first half
707 */
708 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000709 prealloc = alloc_extent_state_atomic(prealloc);
710 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500711 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400712 if (err)
713 extent_io_tree_panic(tree, err);
714
Chris Masond1310b22008-01-24 16:13:08 -0500715 if (wake)
716 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400717
Qu Wenruofefdc552015-10-12 15:35:38 +0800718 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400719
Chris Masond1310b22008-01-24 16:13:08 -0500720 prealloc = NULL;
721 goto out;
722 }
Chris Mason42daec22009-09-23 19:51:09 -0400723
Qu Wenruofefdc552015-10-12 15:35:38 +0800724 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800725next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400726 if (last_end == (u64)-1)
727 goto out;
728 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800729 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800730 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500731 goto search_again;
732
733out:
Chris Masoncad321a2008-12-17 14:51:42 -0500734 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500735 if (prealloc)
736 free_extent_state(prealloc);
737
Jeff Mahoney6763af82012-03-01 14:56:29 +0100738 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500739
740search_again:
741 if (start > end)
742 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500743 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800744 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500745 cond_resched();
746 goto again;
747}
Chris Masond1310b22008-01-24 16:13:08 -0500748
Jeff Mahoney143bede2012-03-01 14:56:26 +0100749static void wait_on_state(struct extent_io_tree *tree,
750 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500751 __releases(tree->lock)
752 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500753{
754 DEFINE_WAIT(wait);
755 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500756 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500757 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500758 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500759 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500760}
761
762/*
763 * waits for one or more bits to clear on a range in the state tree.
764 * The range [start, end] is inclusive.
765 * The tree lock is taken by this function
766 */
David Sterba41074882013-04-29 13:38:46 +0000767static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
768 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500769{
770 struct extent_state *state;
771 struct rb_node *node;
772
Josef Bacika5dee372013-12-13 10:02:44 -0500773 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000774
Chris Masoncad321a2008-12-17 14:51:42 -0500775 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500776again:
777 while (1) {
778 /*
779 * this search will find all the extents that end after
780 * our range starts
781 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500782 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100783process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500784 if (!node)
785 break;
786
787 state = rb_entry(node, struct extent_state, rb_node);
788
789 if (state->start > end)
790 goto out;
791
792 if (state->state & bits) {
793 start = state->start;
794 atomic_inc(&state->refs);
795 wait_on_state(tree, state);
796 free_extent_state(state);
797 goto again;
798 }
799 start = state->end + 1;
800
801 if (start > end)
802 break;
803
Filipe Mananac50d3e72014-03-31 14:53:25 +0100804 if (!cond_resched_lock(&tree->lock)) {
805 node = rb_next(node);
806 goto process_node;
807 }
Chris Masond1310b22008-01-24 16:13:08 -0500808 }
809out:
Chris Masoncad321a2008-12-17 14:51:42 -0500810 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500811}
Chris Masond1310b22008-01-24 16:13:08 -0500812
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000813static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500814 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800815 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500816{
David Sterba9ee49a042015-01-14 19:52:13 +0100817 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400818
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000819 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400820 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500821 u64 range = state->end - state->start + 1;
822 tree->dirty_bytes += range;
823 }
Qu Wenruod38ed272015-10-12 14:53:37 +0800824 add_extent_changeset(state, bits_to_set, changeset, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400825 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500826}
827
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100828static void cache_state_if_flags(struct extent_state *state,
829 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100830 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400831{
832 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100833 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400834 *cached_ptr = state;
835 atomic_inc(&state->refs);
836 }
837 }
838}
839
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100840static void cache_state(struct extent_state *state,
841 struct extent_state **cached_ptr)
842{
843 return cache_state_if_flags(state, cached_ptr,
844 EXTENT_IOBITS | EXTENT_BOUNDARY);
845}
846
Chris Masond1310b22008-01-24 16:13:08 -0500847/*
Chris Mason1edbb732009-09-02 13:24:36 -0400848 * set some bits on a range in the tree. This may require allocations or
849 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500850 *
Chris Mason1edbb732009-09-02 13:24:36 -0400851 * If any of the exclusive bits are set, this will fail with -EEXIST if some
852 * part of the range already has the desired bits set. The start of the
853 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500854 *
Chris Mason1edbb732009-09-02 13:24:36 -0400855 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500856 */
Chris Mason1edbb732009-09-02 13:24:36 -0400857
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100858static int __must_check
859__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100860 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000861 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800862 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500863{
864 struct extent_state *state;
865 struct extent_state *prealloc = NULL;
866 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000867 struct rb_node **p;
868 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500869 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500870 u64 last_start;
871 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400872
Josef Bacika5dee372013-12-13 10:02:44 -0500873 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000874
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400875 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500876again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800877 if (!prealloc && gfpflags_allow_blocking(mask)) {
Chris Masond1310b22008-01-24 16:13:08 -0500878 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000879 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500880 }
881
Chris Masoncad321a2008-12-17 14:51:42 -0500882 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400883 if (cached_state && *cached_state) {
884 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400885 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100886 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400887 node = &state->rb_node;
888 goto hit_next;
889 }
890 }
Chris Masond1310b22008-01-24 16:13:08 -0500891 /*
892 * this search will find all the extents that end after
893 * our range starts.
894 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000895 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500896 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000897 prealloc = alloc_extent_state_atomic(prealloc);
898 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000899 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800900 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400901 if (err)
902 extent_io_tree_panic(tree, err);
903
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000904 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500905 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500906 goto out;
907 }
Chris Masond1310b22008-01-24 16:13:08 -0500908 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400909hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500910 last_start = state->start;
911 last_end = state->end;
912
913 /*
914 * | ---- desired range ---- |
915 * | state |
916 *
917 * Just lock what we found and keep going
918 */
919 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400920 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500921 *failed_start = state->start;
922 err = -EEXIST;
923 goto out;
924 }
Chris Mason42daec22009-09-23 19:51:09 -0400925
Qu Wenruod38ed272015-10-12 14:53:37 +0800926 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400927 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500928 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400929 if (last_end == (u64)-1)
930 goto out;
931 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800932 state = next_state(state);
933 if (start < end && state && state->start == start &&
934 !need_resched())
935 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500936 goto search_again;
937 }
938
939 /*
940 * | ---- desired range ---- |
941 * | state |
942 * or
943 * | ------------- state -------------- |
944 *
945 * We need to split the extent we found, and may flip bits on
946 * second half.
947 *
948 * If the extent we found extends past our
949 * range, we just split and search again. It'll get split
950 * again the next time though.
951 *
952 * If the extent we found is inside our range, we set the
953 * desired bit on it.
954 */
955 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400956 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500957 *failed_start = start;
958 err = -EEXIST;
959 goto out;
960 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000961
962 prealloc = alloc_extent_state_atomic(prealloc);
963 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500964 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400965 if (err)
966 extent_io_tree_panic(tree, err);
967
Chris Masond1310b22008-01-24 16:13:08 -0500968 prealloc = NULL;
969 if (err)
970 goto out;
971 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800972 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400973 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500974 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400975 if (last_end == (u64)-1)
976 goto out;
977 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800978 state = next_state(state);
979 if (start < end && state && state->start == start &&
980 !need_resched())
981 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500982 }
983 goto search_again;
984 }
985 /*
986 * | ---- desired range ---- |
987 * | state | or | state |
988 *
989 * There's a hole, we need to insert something in it and
990 * ignore the extent we found.
991 */
992 if (state->start > start) {
993 u64 this_end;
994 if (end < last_start)
995 this_end = end;
996 else
Chris Masond3977122009-01-05 21:25:51 -0500997 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000998
999 prealloc = alloc_extent_state_atomic(prealloc);
1000 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001001
1002 /*
1003 * Avoid to free 'prealloc' if it can be merged with
1004 * the later extent.
1005 */
Chris Masond1310b22008-01-24 16:13:08 -05001006 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001007 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001008 if (err)
1009 extent_io_tree_panic(tree, err);
1010
Chris Mason2c64c532009-09-02 15:04:12 -04001011 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001012 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001013 start = this_end + 1;
1014 goto search_again;
1015 }
1016 /*
1017 * | ---- desired range ---- |
1018 * | state |
1019 * We need to split the extent, and set the bit
1020 * on the first half
1021 */
1022 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001023 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001024 *failed_start = start;
1025 err = -EEXIST;
1026 goto out;
1027 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001028
1029 prealloc = alloc_extent_state_atomic(prealloc);
1030 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001031 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001032 if (err)
1033 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001034
Qu Wenruod38ed272015-10-12 14:53:37 +08001035 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001036 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001037 merge_state(tree, prealloc);
1038 prealloc = NULL;
1039 goto out;
1040 }
1041
1042 goto search_again;
1043
1044out:
Chris Masoncad321a2008-12-17 14:51:42 -05001045 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001046 if (prealloc)
1047 free_extent_state(prealloc);
1048
1049 return err;
1050
1051search_again:
1052 if (start > end)
1053 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -05001054 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -08001055 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -05001056 cond_resched();
1057 goto again;
1058}
Chris Masond1310b22008-01-24 16:13:08 -05001059
David Sterba41074882013-04-29 13:38:46 +00001060int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001061 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001062 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001063{
1064 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001065 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001066}
1067
1068
Josef Bacik462d6fa2011-09-26 13:56:12 -04001069/**
Liu Bo10983f22012-07-11 15:26:19 +08001070 * convert_extent_bit - convert all bits in a given range from one bit to
1071 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001072 * @tree: the io tree to search
1073 * @start: the start offset in bytes
1074 * @end: the end offset in bytes (inclusive)
1075 * @bits: the bits to set in this range
1076 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001077 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001078 * @mask: the allocation mask
1079 *
1080 * This will go through and set bits for the given range. If any states exist
1081 * already in this range they are set with the given bit and cleared of the
1082 * clear_bits. This is only meant to be used by things that are mergeable, ie
1083 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1084 * boundary bits like LOCK.
1085 */
1086int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001087 unsigned bits, unsigned clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001088 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001089{
1090 struct extent_state *state;
1091 struct extent_state *prealloc = NULL;
1092 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001093 struct rb_node **p;
1094 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001095 int err = 0;
1096 u64 last_start;
1097 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001098 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001099
Josef Bacika5dee372013-12-13 10:02:44 -05001100 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001101
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102again:
Mel Gormand0164ad2015-11-06 16:28:21 -08001103 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001104 /*
1105 * Best effort, don't worry if extent state allocation fails
1106 * here for the first iteration. We might have a cached state
1107 * that matches exactly the target range, in which case no
1108 * extent state allocations are needed. We'll only know this
1109 * after locking the tree.
1110 */
Josef Bacik462d6fa2011-09-26 13:56:12 -04001111 prealloc = alloc_extent_state(mask);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001112 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001113 return -ENOMEM;
1114 }
1115
1116 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001117 if (cached_state && *cached_state) {
1118 state = *cached_state;
1119 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001120 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001121 node = &state->rb_node;
1122 goto hit_next;
1123 }
1124 }
1125
Josef Bacik462d6fa2011-09-26 13:56:12 -04001126 /*
1127 * this search will find all the extents that end after
1128 * our range starts.
1129 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001130 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001131 if (!node) {
1132 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001133 if (!prealloc) {
1134 err = -ENOMEM;
1135 goto out;
1136 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001137 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001138 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001139 if (err)
1140 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001141 cache_state(prealloc, cached_state);
1142 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001143 goto out;
1144 }
1145 state = rb_entry(node, struct extent_state, rb_node);
1146hit_next:
1147 last_start = state->start;
1148 last_end = state->end;
1149
1150 /*
1151 * | ---- desired range ---- |
1152 * | state |
1153 *
1154 * Just lock what we found and keep going
1155 */
1156 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001157 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001158 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001159 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001160 if (last_end == (u64)-1)
1161 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001163 if (start < end && state && state->start == start &&
1164 !need_resched())
1165 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001166 goto search_again;
1167 }
1168
1169 /*
1170 * | ---- desired range ---- |
1171 * | state |
1172 * or
1173 * | ------------- state -------------- |
1174 *
1175 * We need to split the extent we found, and may flip bits on
1176 * second half.
1177 *
1178 * If the extent we found extends past our
1179 * range, we just split and search again. It'll get split
1180 * again the next time though.
1181 *
1182 * If the extent we found is inside our range, we set the
1183 * desired bit on it.
1184 */
1185 if (state->start < start) {
1186 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001187 if (!prealloc) {
1188 err = -ENOMEM;
1189 goto out;
1190 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001191 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001192 if (err)
1193 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001194 prealloc = NULL;
1195 if (err)
1196 goto out;
1197 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001198 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001199 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001200 state = clear_state_bit(tree, state, &clear_bits, 0,
1201 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001202 if (last_end == (u64)-1)
1203 goto out;
1204 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001205 if (start < end && state && state->start == start &&
1206 !need_resched())
1207 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001208 }
1209 goto search_again;
1210 }
1211 /*
1212 * | ---- desired range ---- |
1213 * | state | or | state |
1214 *
1215 * There's a hole, we need to insert something in it and
1216 * ignore the extent we found.
1217 */
1218 if (state->start > start) {
1219 u64 this_end;
1220 if (end < last_start)
1221 this_end = end;
1222 else
1223 this_end = last_start - 1;
1224
1225 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001226 if (!prealloc) {
1227 err = -ENOMEM;
1228 goto out;
1229 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001230
1231 /*
1232 * Avoid to free 'prealloc' if it can be merged with
1233 * the later extent.
1234 */
1235 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001236 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001237 if (err)
1238 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001239 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001240 prealloc = NULL;
1241 start = this_end + 1;
1242 goto search_again;
1243 }
1244 /*
1245 * | ---- desired range ---- |
1246 * | state |
1247 * We need to split the extent, and set the bit
1248 * on the first half
1249 */
1250 if (state->start <= end && state->end > end) {
1251 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001252 if (!prealloc) {
1253 err = -ENOMEM;
1254 goto out;
1255 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001256
1257 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001258 if (err)
1259 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001260
Qu Wenruod38ed272015-10-12 14:53:37 +08001261 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001262 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001263 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001264 prealloc = NULL;
1265 goto out;
1266 }
1267
1268 goto search_again;
1269
1270out:
1271 spin_unlock(&tree->lock);
1272 if (prealloc)
1273 free_extent_state(prealloc);
1274
1275 return err;
1276
1277search_again:
1278 if (start > end)
1279 goto out;
1280 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -08001281 if (gfpflags_allow_blocking(mask))
Josef Bacik462d6fa2011-09-26 13:56:12 -04001282 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001283 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001284 goto again;
1285}
1286
Chris Masond1310b22008-01-24 16:13:08 -05001287/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001288int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1289 unsigned bits, gfp_t mask,
1290 struct extent_changeset *changeset)
1291{
1292 /*
1293 * We don't support EXTENT_LOCKED yet, as current changeset will
1294 * record any bits changed, so for EXTENT_LOCKED case, it will
1295 * either fail with -EEXIST or changeset will record the whole
1296 * range.
1297 */
1298 BUG_ON(bits & EXTENT_LOCKED);
1299
1300 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, mask,
1301 changeset);
1302}
1303
Qu Wenruofefdc552015-10-12 15:35:38 +08001304int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1305 unsigned bits, int wake, int delete,
1306 struct extent_state **cached, gfp_t mask)
1307{
1308 return __clear_extent_bit(tree, start, end, bits, wake, delete,
1309 cached, mask, NULL);
1310}
1311
Qu Wenruofefdc552015-10-12 15:35:38 +08001312int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1313 unsigned bits, gfp_t mask,
1314 struct extent_changeset *changeset)
1315{
1316 /*
1317 * Don't support EXTENT_LOCKED case, same reason as
1318 * set_record_extent_bits().
1319 */
1320 BUG_ON(bits & EXTENT_LOCKED);
1321
1322 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask,
1323 changeset);
1324}
1325
Chris Masond352ac62008-09-29 15:18:18 -04001326/*
1327 * either insert or lock state struct between start and end use mask to tell
1328 * us if waiting is desired.
1329 */
Chris Mason1edbb732009-09-02 13:24:36 -04001330int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001331 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001332{
1333 int err;
1334 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001335
Chris Masond1310b22008-01-24 16:13:08 -05001336 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001337 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001338 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001339 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001340 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001341 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1342 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001343 } else
Chris Masond1310b22008-01-24 16:13:08 -05001344 break;
Chris Masond1310b22008-01-24 16:13:08 -05001345 WARN_ON(start > end);
1346 }
1347 return err;
1348}
Chris Masond1310b22008-01-24 16:13:08 -05001349
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001350int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001351{
1352 int err;
1353 u64 failed_start;
1354
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001355 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001356 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001357 if (err == -EEXIST) {
1358 if (failed_start > start)
1359 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001360 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001361 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001362 }
Josef Bacik25179202008-10-29 14:49:05 -04001363 return 1;
1364}
Josef Bacik25179202008-10-29 14:49:05 -04001365
David Sterbabd1fa4f2015-12-03 13:08:59 +01001366void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001367{
1368 unsigned long index = start >> PAGE_CACHE_SHIFT;
1369 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1370 struct page *page;
1371
1372 while (index <= end_index) {
1373 page = find_get_page(inode->i_mapping, index);
1374 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1375 clear_page_dirty_for_io(page);
1376 page_cache_release(page);
1377 index++;
1378 }
Chris Mason4adaa612013-03-26 13:07:00 -04001379}
1380
David Sterbaf6311572015-12-03 13:08:59 +01001381void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001382{
1383 unsigned long index = start >> PAGE_CACHE_SHIFT;
1384 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1385 struct page *page;
1386
1387 while (index <= end_index) {
1388 page = find_get_page(inode->i_mapping, index);
1389 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001390 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001391 account_page_redirty(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001392 page_cache_release(page);
1393 index++;
1394 }
Chris Mason4adaa612013-03-26 13:07:00 -04001395}
1396
Chris Masond1310b22008-01-24 16:13:08 -05001397/*
Chris Masond1310b22008-01-24 16:13:08 -05001398 * helper function to set both pages and extents in the tree writeback
1399 */
David Sterba35de6db2015-12-03 13:08:59 +01001400static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001401{
1402 unsigned long index = start >> PAGE_CACHE_SHIFT;
1403 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1404 struct page *page;
1405
1406 while (index <= end_index) {
1407 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001408 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001409 set_page_writeback(page);
1410 page_cache_release(page);
1411 index++;
1412 }
Chris Masond1310b22008-01-24 16:13:08 -05001413}
Chris Masond1310b22008-01-24 16:13:08 -05001414
Chris Masond352ac62008-09-29 15:18:18 -04001415/* find the first state struct with 'bits' set after 'start', and
1416 * return it. tree->lock must be held. NULL will returned if
1417 * nothing was found after 'start'
1418 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001419static struct extent_state *
1420find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001421 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001422{
1423 struct rb_node *node;
1424 struct extent_state *state;
1425
1426 /*
1427 * this search will find all the extents that end after
1428 * our range starts.
1429 */
1430 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001431 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001432 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001433
Chris Masond3977122009-01-05 21:25:51 -05001434 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001435 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001436 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001437 return state;
Chris Masond3977122009-01-05 21:25:51 -05001438
Chris Masond7fc6402008-02-18 12:12:38 -05001439 node = rb_next(node);
1440 if (!node)
1441 break;
1442 }
1443out:
1444 return NULL;
1445}
Chris Masond7fc6402008-02-18 12:12:38 -05001446
Chris Masond352ac62008-09-29 15:18:18 -04001447/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001448 * find the first offset in the io tree with 'bits' set. zero is
1449 * returned if we find something, and *start_ret and *end_ret are
1450 * set to reflect the state struct that was found.
1451 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001452 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001453 */
1454int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001455 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001456 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001457{
1458 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001459 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001460 int ret = 1;
1461
1462 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001463 if (cached_state && *cached_state) {
1464 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001465 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001466 n = rb_next(&state->rb_node);
1467 while (n) {
1468 state = rb_entry(n, struct extent_state,
1469 rb_node);
1470 if (state->state & bits)
1471 goto got_it;
1472 n = rb_next(n);
1473 }
1474 free_extent_state(*cached_state);
1475 *cached_state = NULL;
1476 goto out;
1477 }
1478 free_extent_state(*cached_state);
1479 *cached_state = NULL;
1480 }
1481
Xiao Guangrong69261c42011-07-14 03:19:45 +00001482 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001483got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001484 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001485 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001486 *start_ret = state->start;
1487 *end_ret = state->end;
1488 ret = 0;
1489 }
Josef Bacike6138872012-09-27 17:07:30 -04001490out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001491 spin_unlock(&tree->lock);
1492 return ret;
1493}
1494
1495/*
Chris Masond352ac62008-09-29 15:18:18 -04001496 * find a contiguous range of bytes in the file marked as delalloc, not
1497 * more than 'max_bytes'. start and end are used to return the range,
1498 *
1499 * 1 is returned if we find something, 0 if nothing was in the tree
1500 */
Chris Masonc8b97812008-10-29 14:49:59 -04001501static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001502 u64 *start, u64 *end, u64 max_bytes,
1503 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001504{
1505 struct rb_node *node;
1506 struct extent_state *state;
1507 u64 cur_start = *start;
1508 u64 found = 0;
1509 u64 total_bytes = 0;
1510
Chris Masoncad321a2008-12-17 14:51:42 -05001511 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001512
Chris Masond1310b22008-01-24 16:13:08 -05001513 /*
1514 * this search will find all the extents that end after
1515 * our range starts.
1516 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001517 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001518 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001519 if (!found)
1520 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001521 goto out;
1522 }
1523
Chris Masond3977122009-01-05 21:25:51 -05001524 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001525 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001526 if (found && (state->start != cur_start ||
1527 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001528 goto out;
1529 }
1530 if (!(state->state & EXTENT_DELALLOC)) {
1531 if (!found)
1532 *end = state->end;
1533 goto out;
1534 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001535 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001536 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001537 *cached_state = state;
1538 atomic_inc(&state->refs);
1539 }
Chris Masond1310b22008-01-24 16:13:08 -05001540 found++;
1541 *end = state->end;
1542 cur_start = state->end + 1;
1543 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001544 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001545 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001546 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001547 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001548 break;
1549 }
1550out:
Chris Masoncad321a2008-12-17 14:51:42 -05001551 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001552 return found;
1553}
1554
Jeff Mahoney143bede2012-03-01 14:56:26 +01001555static noinline void __unlock_for_delalloc(struct inode *inode,
1556 struct page *locked_page,
1557 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001558{
1559 int ret;
1560 struct page *pages[16];
1561 unsigned long index = start >> PAGE_CACHE_SHIFT;
1562 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1563 unsigned long nr_pages = end_index - index + 1;
1564 int i;
1565
1566 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001567 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001568
Chris Masond3977122009-01-05 21:25:51 -05001569 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001570 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001571 min_t(unsigned long, nr_pages,
1572 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001573 for (i = 0; i < ret; i++) {
1574 if (pages[i] != locked_page)
1575 unlock_page(pages[i]);
1576 page_cache_release(pages[i]);
1577 }
1578 nr_pages -= ret;
1579 index += ret;
1580 cond_resched();
1581 }
Chris Masonc8b97812008-10-29 14:49:59 -04001582}
1583
1584static noinline int lock_delalloc_pages(struct inode *inode,
1585 struct page *locked_page,
1586 u64 delalloc_start,
1587 u64 delalloc_end)
1588{
1589 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1590 unsigned long start_index = index;
1591 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1592 unsigned long pages_locked = 0;
1593 struct page *pages[16];
1594 unsigned long nrpages;
1595 int ret;
1596 int i;
1597
1598 /* the caller is responsible for locking the start index */
1599 if (index == locked_page->index && index == end_index)
1600 return 0;
1601
1602 /* skip the page at the start index */
1603 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001604 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001605 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001606 min_t(unsigned long,
1607 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001608 if (ret == 0) {
1609 ret = -EAGAIN;
1610 goto done;
1611 }
1612 /* now we have an array of pages, lock them all */
1613 for (i = 0; i < ret; i++) {
1614 /*
1615 * the caller is taking responsibility for
1616 * locked_page
1617 */
Chris Mason771ed682008-11-06 22:02:51 -05001618 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001619 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001620 if (!PageDirty(pages[i]) ||
1621 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001622 ret = -EAGAIN;
1623 unlock_page(pages[i]);
1624 page_cache_release(pages[i]);
1625 goto done;
1626 }
1627 }
Chris Masonc8b97812008-10-29 14:49:59 -04001628 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001629 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001630 }
Chris Masonc8b97812008-10-29 14:49:59 -04001631 nrpages -= ret;
1632 index += ret;
1633 cond_resched();
1634 }
1635 ret = 0;
1636done:
1637 if (ret && pages_locked) {
1638 __unlock_for_delalloc(inode, locked_page,
1639 delalloc_start,
1640 ((u64)(start_index + pages_locked - 1)) <<
1641 PAGE_CACHE_SHIFT);
1642 }
1643 return ret;
1644}
1645
1646/*
1647 * find a contiguous range of bytes in the file marked as delalloc, not
1648 * more than 'max_bytes'. start and end are used to return the range,
1649 *
1650 * 1 is returned if we find something, 0 if nothing was in the tree
1651 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001652STATIC u64 find_lock_delalloc_range(struct inode *inode,
1653 struct extent_io_tree *tree,
1654 struct page *locked_page, u64 *start,
1655 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001656{
1657 u64 delalloc_start;
1658 u64 delalloc_end;
1659 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001660 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001661 int ret;
1662 int loops = 0;
1663
1664again:
1665 /* step one, find a bunch of delalloc bytes starting at start */
1666 delalloc_start = *start;
1667 delalloc_end = 0;
1668 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001669 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001670 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001671 *start = delalloc_start;
1672 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001673 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001674 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001675 }
1676
1677 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001678 * start comes from the offset of locked_page. We have to lock
1679 * pages in order, so we can't process delalloc bytes before
1680 * locked_page
1681 */
Chris Masond3977122009-01-05 21:25:51 -05001682 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001683 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001684
1685 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001686 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001687 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001688 if (delalloc_end + 1 - delalloc_start > max_bytes)
1689 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001690
Chris Masonc8b97812008-10-29 14:49:59 -04001691 /* step two, lock all the pages after the page that has start */
1692 ret = lock_delalloc_pages(inode, locked_page,
1693 delalloc_start, delalloc_end);
1694 if (ret == -EAGAIN) {
1695 /* some of the pages are gone, lets avoid looping by
1696 * shortening the size of the delalloc range we're searching
1697 */
Chris Mason9655d292009-09-02 15:22:30 -04001698 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001699 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001700 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001701 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001702 loops = 1;
1703 goto again;
1704 } else {
1705 found = 0;
1706 goto out_failed;
1707 }
1708 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001709 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001710
1711 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001712 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001713
1714 /* then test to make sure it is all still delalloc */
1715 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001716 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001717 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001718 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1719 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001720 __unlock_for_delalloc(inode, locked_page,
1721 delalloc_start, delalloc_end);
1722 cond_resched();
1723 goto again;
1724 }
Chris Mason9655d292009-09-02 15:22:30 -04001725 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001726 *start = delalloc_start;
1727 *end = delalloc_end;
1728out_failed:
1729 return found;
1730}
1731
David Sterbaa9d93e12015-12-03 13:08:59 +01001732void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
Josef Bacikc2790a22013-07-29 11:20:47 -04001733 struct page *locked_page,
David Sterba9ee49a042015-01-14 19:52:13 +01001734 unsigned clear_bits,
Josef Bacikc2790a22013-07-29 11:20:47 -04001735 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001736{
Josef Bacikc2790a22013-07-29 11:20:47 -04001737 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001738 int ret;
1739 struct page *pages[16];
1740 unsigned long index = start >> PAGE_CACHE_SHIFT;
1741 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1742 unsigned long nr_pages = end_index - index + 1;
1743 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001744
Chris Mason2c64c532009-09-02 15:04:12 -04001745 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001746 if (page_ops == 0)
David Sterbaa9d93e12015-12-03 13:08:59 +01001747 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001748
Filipe Manana704de492014-10-06 22:14:22 +01001749 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
1750 mapping_set_error(inode->i_mapping, -EIO);
1751
Chris Masond3977122009-01-05 21:25:51 -05001752 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001753 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001754 min_t(unsigned long,
1755 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001756 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001757
Josef Bacikc2790a22013-07-29 11:20:47 -04001758 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001759 SetPagePrivate2(pages[i]);
1760
Chris Masonc8b97812008-10-29 14:49:59 -04001761 if (pages[i] == locked_page) {
1762 page_cache_release(pages[i]);
1763 continue;
1764 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001765 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001766 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001767 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001768 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001769 if (page_ops & PAGE_SET_ERROR)
1770 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001771 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001772 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001773 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001774 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001775 page_cache_release(pages[i]);
1776 }
1777 nr_pages -= ret;
1778 index += ret;
1779 cond_resched();
1780 }
Chris Masonc8b97812008-10-29 14:49:59 -04001781}
Chris Masonc8b97812008-10-29 14:49:59 -04001782
Chris Masond352ac62008-09-29 15:18:18 -04001783/*
1784 * count the number of bytes in the tree that have a given bit(s)
1785 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1786 * cached. The total number found is returned.
1787 */
Chris Masond1310b22008-01-24 16:13:08 -05001788u64 count_range_bits(struct extent_io_tree *tree,
1789 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001790 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001791{
1792 struct rb_node *node;
1793 struct extent_state *state;
1794 u64 cur_start = *start;
1795 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001796 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001797 int found = 0;
1798
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301799 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001800 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001801
Chris Masoncad321a2008-12-17 14:51:42 -05001802 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001803 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1804 total_bytes = tree->dirty_bytes;
1805 goto out;
1806 }
1807 /*
1808 * this search will find all the extents that end after
1809 * our range starts.
1810 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001811 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001812 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001813 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001814
Chris Masond3977122009-01-05 21:25:51 -05001815 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001816 state = rb_entry(node, struct extent_state, rb_node);
1817 if (state->start > search_end)
1818 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001819 if (contig && found && state->start > last + 1)
1820 break;
1821 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001822 total_bytes += min(search_end, state->end) + 1 -
1823 max(cur_start, state->start);
1824 if (total_bytes >= max_bytes)
1825 break;
1826 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001827 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001828 found = 1;
1829 }
Chris Masonec29ed52011-02-23 16:23:20 -05001830 last = state->end;
1831 } else if (contig && found) {
1832 break;
Chris Masond1310b22008-01-24 16:13:08 -05001833 }
1834 node = rb_next(node);
1835 if (!node)
1836 break;
1837 }
1838out:
Chris Masoncad321a2008-12-17 14:51:42 -05001839 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001840 return total_bytes;
1841}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001842
Chris Masond352ac62008-09-29 15:18:18 -04001843/*
1844 * set the private field for a given byte offset in the tree. If there isn't
1845 * an extent_state there already, this does nothing.
1846 */
David Sterba47dc1962016-02-11 13:24:13 +01001847static int set_state_failrec(struct extent_io_tree *tree, u64 start,
1848 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001849{
1850 struct rb_node *node;
1851 struct extent_state *state;
1852 int ret = 0;
1853
Chris Masoncad321a2008-12-17 14:51:42 -05001854 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001855 /*
1856 * this search will find all the extents that end after
1857 * our range starts.
1858 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001859 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001860 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001861 ret = -ENOENT;
1862 goto out;
1863 }
1864 state = rb_entry(node, struct extent_state, rb_node);
1865 if (state->start != start) {
1866 ret = -ENOENT;
1867 goto out;
1868 }
David Sterba47dc1962016-02-11 13:24:13 +01001869 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001870out:
Chris Masoncad321a2008-12-17 14:51:42 -05001871 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001872 return ret;
1873}
1874
David Sterba47dc1962016-02-11 13:24:13 +01001875static int get_state_failrec(struct extent_io_tree *tree, u64 start,
1876 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001877{
1878 struct rb_node *node;
1879 struct extent_state *state;
1880 int ret = 0;
1881
Chris Masoncad321a2008-12-17 14:51:42 -05001882 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001883 /*
1884 * this search will find all the extents that end after
1885 * our range starts.
1886 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001887 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001888 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001889 ret = -ENOENT;
1890 goto out;
1891 }
1892 state = rb_entry(node, struct extent_state, rb_node);
1893 if (state->start != start) {
1894 ret = -ENOENT;
1895 goto out;
1896 }
David Sterba47dc1962016-02-11 13:24:13 +01001897 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001898out:
Chris Masoncad321a2008-12-17 14:51:42 -05001899 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001900 return ret;
1901}
1902
1903/*
1904 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001905 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001906 * has the bits set. Otherwise, 1 is returned if any bit in the
1907 * range is found set.
1908 */
1909int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001910 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001911{
1912 struct extent_state *state = NULL;
1913 struct rb_node *node;
1914 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001915
Chris Masoncad321a2008-12-17 14:51:42 -05001916 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001917 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001918 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001919 node = &cached->rb_node;
1920 else
1921 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001922 while (node && start <= end) {
1923 state = rb_entry(node, struct extent_state, rb_node);
1924
1925 if (filled && state->start > start) {
1926 bitset = 0;
1927 break;
1928 }
1929
1930 if (state->start > end)
1931 break;
1932
1933 if (state->state & bits) {
1934 bitset = 1;
1935 if (!filled)
1936 break;
1937 } else if (filled) {
1938 bitset = 0;
1939 break;
1940 }
Chris Mason46562cec2009-09-23 20:23:16 -04001941
1942 if (state->end == (u64)-1)
1943 break;
1944
Chris Masond1310b22008-01-24 16:13:08 -05001945 start = state->end + 1;
1946 if (start > end)
1947 break;
1948 node = rb_next(node);
1949 if (!node) {
1950 if (filled)
1951 bitset = 0;
1952 break;
1953 }
1954 }
Chris Masoncad321a2008-12-17 14:51:42 -05001955 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001956 return bitset;
1957}
Chris Masond1310b22008-01-24 16:13:08 -05001958
1959/*
1960 * helper function to set a given page up to date if all the
1961 * extents in the tree for that page are up to date
1962 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001963static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001964{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001965 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001966 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001967 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001968 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001969}
1970
Miao Xie8b110e32014-09-12 18:44:03 +08001971int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001972{
1973 int ret;
1974 int err = 0;
1975 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1976
David Sterba47dc1962016-02-11 13:24:13 +01001977 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001978 ret = clear_extent_bits(failure_tree, rec->start,
1979 rec->start + rec->len - 1,
1980 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1981 if (ret)
1982 err = ret;
1983
David Woodhouse53b381b2013-01-29 18:40:14 -05001984 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1985 rec->start + rec->len - 1,
1986 EXTENT_DAMAGED, GFP_NOFS);
1987 if (ret && !err)
1988 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001989
1990 kfree(rec);
1991 return err;
1992}
1993
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001994/*
1995 * this bypasses the standard btrfs submit functions deliberately, as
1996 * the standard behavior is to write all copies in a raid setup. here we only
1997 * want to write the one bad copy. so we do the mapping for ourselves and issue
1998 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001999 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002000 * actually prevents the read that triggered the error from finishing.
2001 * currently, there can be no more than two copies of every data bit. thus,
2002 * exactly one rewrite is required.
2003 */
Miao Xie1203b682014-09-12 18:44:01 +08002004int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
2005 struct page *page, unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002006{
Miao Xie1203b682014-09-12 18:44:01 +08002007 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002008 struct bio *bio;
2009 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002010 u64 map_length = 0;
2011 u64 sector;
2012 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002013 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002014 int ret;
2015
Ilya Dryomov908960c2013-11-03 19:06:39 +02002016 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002017 BUG_ON(!mirror_num);
2018
David Woodhouse53b381b2013-01-29 18:40:14 -05002019 /* we can't repair anything in raid56 yet */
2020 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2021 return 0;
2022
Chris Mason9be33952013-05-17 18:30:14 -04002023 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002024 if (!bio)
2025 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002026 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002027 map_length = length;
2028
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002029 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002030 &map_length, &bbio, mirror_num);
2031 if (ret) {
2032 bio_put(bio);
2033 return -EIO;
2034 }
2035 BUG_ON(mirror_num != bbio->mirror_num);
2036 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002037 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002038 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002039 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002040 if (!dev || !dev->bdev || !dev->writeable) {
2041 bio_put(bio);
2042 return -EIO;
2043 }
2044 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002045 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002046
Kent Overstreet33879d42013-11-23 22:33:32 -08002047 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002048 /* try to remap that extent elsewhere? */
2049 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002050 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002051 return -EIO;
2052 }
2053
David Sterbab14af3b2015-10-08 10:43:10 +02002054 btrfs_info_rl_in_rcu(fs_info,
2055 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Miao Xie1203b682014-09-12 18:44:01 +08002056 btrfs_ino(inode), start,
2057 rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002058 bio_put(bio);
2059 return 0;
2060}
2061
Josef Bacikea466792012-03-26 21:57:36 -04002062int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2063 int mirror_num)
2064{
Josef Bacikea466792012-03-26 21:57:36 -04002065 u64 start = eb->start;
2066 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002067 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002068
Ilya Dryomov908960c2013-11-03 19:06:39 +02002069 if (root->fs_info->sb->s_flags & MS_RDONLY)
2070 return -EROFS;
2071
Josef Bacikea466792012-03-26 21:57:36 -04002072 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002073 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002074
2075 ret = repair_io_failure(root->fs_info->btree_inode, start,
2076 PAGE_CACHE_SIZE, start, p,
2077 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002078 if (ret)
2079 break;
2080 start += PAGE_CACHE_SIZE;
2081 }
2082
2083 return ret;
2084}
2085
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002086/*
2087 * each time an IO finishes, we do a fast check in the IO failure tree
2088 * to see if we need to process or clean up an io_failure_record
2089 */
Miao Xie8b110e32014-09-12 18:44:03 +08002090int clean_io_failure(struct inode *inode, u64 start, struct page *page,
2091 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002092{
2093 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002094 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002095 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002096 struct extent_state *state;
2097 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002098 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099
2100 private = 0;
2101 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2102 (u64)-1, 1, EXTENT_DIRTY, 0);
2103 if (!ret)
2104 return 0;
2105
David Sterba47dc1962016-02-11 13:24:13 +01002106 ret = get_state_failrec(&BTRFS_I(inode)->io_failure_tree, start,
2107 &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002108 if (ret)
2109 return 0;
2110
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002111 BUG_ON(!failrec->this_mirror);
2112
2113 if (failrec->in_validation) {
2114 /* there was no real error, just free the record */
2115 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2116 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002117 goto out;
2118 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002119 if (fs_info->sb->s_flags & MS_RDONLY)
2120 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002121
2122 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2123 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2124 failrec->start,
2125 EXTENT_LOCKED);
2126 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2127
Miao Xie883d0de2013-07-25 19:22:35 +08002128 if (state && state->start <= failrec->start &&
2129 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002130 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2131 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002132 if (num_copies > 1) {
Miao Xie1203b682014-09-12 18:44:01 +08002133 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002134 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002135 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002136 }
2137 }
2138
2139out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002140 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002141
Miao Xie454ff3d2014-09-12 18:43:58 +08002142 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002143}
2144
Miao Xief6124962014-09-12 18:44:04 +08002145/*
2146 * Can be called when
2147 * - hold extent lock
2148 * - under ordered extent
2149 * - the inode is freeing
2150 */
2151void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end)
2152{
2153 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2154 struct io_failure_record *failrec;
2155 struct extent_state *state, *next;
2156
2157 if (RB_EMPTY_ROOT(&failure_tree->state))
2158 return;
2159
2160 spin_lock(&failure_tree->lock);
2161 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2162 while (state) {
2163 if (state->start > end)
2164 break;
2165
2166 ASSERT(state->end <= end);
2167
2168 next = next_state(state);
2169
David Sterba47dc1962016-02-11 13:24:13 +01002170 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002171 free_extent_state(state);
2172 kfree(failrec);
2173
2174 state = next;
2175 }
2176 spin_unlock(&failure_tree->lock);
2177}
2178
Miao Xie2fe63032014-09-12 18:43:59 +08002179int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002180 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002181{
Miao Xie2fe63032014-09-12 18:43:59 +08002182 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002183 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2185 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2186 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002187 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002188 u64 logical;
2189
David Sterba47dc1962016-02-11 13:24:13 +01002190 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002191 if (ret) {
2192 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2193 if (!failrec)
2194 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002195
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002196 failrec->start = start;
2197 failrec->len = end - start + 1;
2198 failrec->this_mirror = 0;
2199 failrec->bio_flags = 0;
2200 failrec->in_validation = 0;
2201
2202 read_lock(&em_tree->lock);
2203 em = lookup_extent_mapping(em_tree, start, failrec->len);
2204 if (!em) {
2205 read_unlock(&em_tree->lock);
2206 kfree(failrec);
2207 return -EIO;
2208 }
2209
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002210 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002211 free_extent_map(em);
2212 em = NULL;
2213 }
2214 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002215 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002216 kfree(failrec);
2217 return -EIO;
2218 }
Miao Xie2fe63032014-09-12 18:43:59 +08002219
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002220 logical = start - em->start;
2221 logical = em->block_start + logical;
2222 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2223 logical = em->block_start;
2224 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2225 extent_set_compress_type(&failrec->bio_flags,
2226 em->compress_type);
2227 }
Miao Xie2fe63032014-09-12 18:43:59 +08002228
2229 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2230 logical, start, failrec->len);
2231
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002232 failrec->logical = logical;
2233 free_extent_map(em);
2234
2235 /* set the bits in the private failure tree */
2236 ret = set_extent_bits(failure_tree, start, end,
2237 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2238 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002239 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002240 /* set the bits in the inode's tree */
2241 if (ret >= 0)
2242 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2243 GFP_NOFS);
2244 if (ret < 0) {
2245 kfree(failrec);
2246 return ret;
2247 }
2248 } else {
Miao Xie2fe63032014-09-12 18:43:59 +08002249 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002250 failrec->logical, failrec->start, failrec->len,
2251 failrec->in_validation);
2252 /*
2253 * when data can be on disk more than twice, add to failrec here
2254 * (e.g. with a list for failed_mirror) to make
2255 * clean_io_failure() clean all those errors at once.
2256 */
2257 }
Miao Xie2fe63032014-09-12 18:43:59 +08002258
2259 *failrec_ret = failrec;
2260
2261 return 0;
2262}
2263
2264int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2265 struct io_failure_record *failrec, int failed_mirror)
2266{
2267 int num_copies;
2268
Stefan Behrens5d964052012-11-05 14:59:07 +01002269 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2270 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002271 if (num_copies == 1) {
2272 /*
2273 * we only have a single copy of the data, so don't bother with
2274 * all the retry and error correction code that follows. no
2275 * matter what the error is, it is very likely to persist.
2276 */
Miao Xie2fe63032014-09-12 18:43:59 +08002277 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002278 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002279 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002280 }
2281
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002282 /*
2283 * there are two premises:
2284 * a) deliver good data to the caller
2285 * b) correct the bad sectors on disk
2286 */
2287 if (failed_bio->bi_vcnt > 1) {
2288 /*
2289 * to fulfill b), we need to know the exact failing sectors, as
2290 * we don't want to rewrite any more than the failed ones. thus,
2291 * we need separate read requests for the failed bio
2292 *
2293 * if the following BUG_ON triggers, our validation request got
2294 * merged. we need separate requests for our algorithm to work.
2295 */
2296 BUG_ON(failrec->in_validation);
2297 failrec->in_validation = 1;
2298 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002299 } else {
2300 /*
2301 * we're ready to fulfill a) and b) alongside. get a good copy
2302 * of the failed sector and if we succeed, we have setup
2303 * everything for repair_io_failure to do the rest for us.
2304 */
2305 if (failrec->in_validation) {
2306 BUG_ON(failrec->this_mirror != failed_mirror);
2307 failrec->in_validation = 0;
2308 failrec->this_mirror = 0;
2309 }
2310 failrec->failed_mirror = failed_mirror;
2311 failrec->this_mirror++;
2312 if (failrec->this_mirror == failed_mirror)
2313 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002314 }
2315
Miao Xiefacc8a222013-07-25 19:22:34 +08002316 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002317 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002318 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002319 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002320 }
2321
Miao Xie2fe63032014-09-12 18:43:59 +08002322 return 1;
2323}
2324
2325
2326struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2327 struct io_failure_record *failrec,
2328 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002329 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002330{
2331 struct bio *bio;
2332 struct btrfs_io_bio *btrfs_failed_bio;
2333 struct btrfs_io_bio *btrfs_bio;
2334
Chris Mason9be33952013-05-17 18:30:14 -04002335 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002336 if (!bio)
2337 return NULL;
2338
2339 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002340 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002341 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002342 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002343 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002344
Miao Xiefacc8a222013-07-25 19:22:34 +08002345 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2346 if (btrfs_failed_bio->csum) {
2347 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2348 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2349
2350 btrfs_bio = btrfs_io_bio(bio);
2351 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002352 icsum *= csum_size;
2353 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002354 csum_size);
2355 }
2356
Miao Xie2fe63032014-09-12 18:43:59 +08002357 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002358
Miao Xie2fe63032014-09-12 18:43:59 +08002359 return bio;
2360}
2361
2362/*
2363 * this is a generic handler for readpage errors (default
2364 * readpage_io_failed_hook). if other copies exist, read those and write back
2365 * good data to the failed position. does not investigate in remapping the
2366 * failed extent elsewhere, hoping the device will be smart enough to do this as
2367 * needed
2368 */
2369
2370static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2371 struct page *page, u64 start, u64 end,
2372 int failed_mirror)
2373{
2374 struct io_failure_record *failrec;
2375 struct inode *inode = page->mapping->host;
2376 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2377 struct bio *bio;
2378 int read_mode;
2379 int ret;
2380
2381 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2382
2383 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2384 if (ret)
2385 return ret;
2386
2387 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2388 if (!ret) {
2389 free_io_failure(inode, failrec);
2390 return -EIO;
2391 }
2392
2393 if (failed_bio->bi_vcnt > 1)
2394 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2395 else
2396 read_mode = READ_SYNC;
2397
2398 phy_offset >>= inode->i_sb->s_blocksize_bits;
2399 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2400 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002401 (int)phy_offset, failed_bio->bi_end_io,
2402 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002403 if (!bio) {
2404 free_io_failure(inode, failrec);
2405 return -EIO;
2406 }
2407
2408 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2409 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002410
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002411 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2412 failrec->this_mirror,
2413 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002414 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002415 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002416 bio_put(bio);
2417 }
2418
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002419 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002420}
2421
Chris Masond1310b22008-01-24 16:13:08 -05002422/* lots and lots of room for performance fixes in the end_bio funcs */
2423
David Sterbab5227c02015-12-03 13:08:59 +01002424void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002425{
2426 int uptodate = (err == 0);
2427 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002428 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002429
2430 tree = &BTRFS_I(page->mapping->host)->io_tree;
2431
2432 if (tree->ops && tree->ops->writepage_end_io_hook) {
2433 ret = tree->ops->writepage_end_io_hook(page, start,
2434 end, NULL, uptodate);
2435 if (ret)
2436 uptodate = 0;
2437 }
2438
Jeff Mahoney87826df2012-02-15 16:23:57 +01002439 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002440 ClearPageUptodate(page);
2441 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002442 ret = ret < 0 ? ret : -EIO;
2443 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002444 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002445}
2446
Chris Masond1310b22008-01-24 16:13:08 -05002447/*
2448 * after a writepage IO is done, we need to:
2449 * clear the uptodate bits on error
2450 * clear the writeback bits in the extent tree for this IO
2451 * end_page_writeback if the page has no more pending IO
2452 *
2453 * Scheduling is not allowed, so the extent state tree is expected
2454 * to have one and only one object corresponding to this IO.
2455 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002456static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002457{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002458 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002459 u64 start;
2460 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002461 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002462
Kent Overstreet2c30c712013-11-07 12:20:26 -08002463 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002464 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002465
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002466 /* We always issue full-page reads, but if some block
2467 * in a page fails to read, blk_update_request() will
2468 * advance bv_offset and adjust bv_len to compensate.
2469 * Print a warning for nonzero offsets, and an error
2470 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002471 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2472 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2473 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2474 "partial page write in btrfs with offset %u and length %u",
2475 bvec->bv_offset, bvec->bv_len);
2476 else
2477 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2478 "incomplete page write in btrfs with offset %u and "
2479 "length %u",
2480 bvec->bv_offset, bvec->bv_len);
2481 }
Chris Masond1310b22008-01-24 16:13:08 -05002482
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002483 start = page_offset(page);
2484 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002485
David Sterbab5227c02015-12-03 13:08:59 +01002486 end_extent_writepage(page, bio->bi_error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002487 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002488 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002489
Chris Masond1310b22008-01-24 16:13:08 -05002490 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002491}
2492
Miao Xie883d0de2013-07-25 19:22:35 +08002493static void
2494endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2495 int uptodate)
2496{
2497 struct extent_state *cached = NULL;
2498 u64 end = start + len - 1;
2499
2500 if (uptodate && tree->track_uptodate)
2501 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2502 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2503}
2504
Chris Masond1310b22008-01-24 16:13:08 -05002505/*
2506 * after a readpage IO is done, we need to:
2507 * clear the uptodate bits on error
2508 * set the uptodate bits if things worked
2509 * set the page up to date if all extents in the tree are uptodate
2510 * clear the lock bit in the extent tree
2511 * unlock the page if there are no other extents locked for it
2512 *
2513 * Scheduling is not allowed, so the extent state tree is expected
2514 * to have one and only one object corresponding to this IO.
2515 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002516static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002517{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002518 struct bio_vec *bvec;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002519 int uptodate = !bio->bi_error;
Miao Xiefacc8a222013-07-25 19:22:34 +08002520 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002521 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002522 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002523 u64 start;
2524 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002525 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002526 u64 extent_start = 0;
2527 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002528 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002529 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002530 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002531
Kent Overstreet2c30c712013-11-07 12:20:26 -08002532 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002533 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002534 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002535
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002536 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002537 "mirror=%u\n", (u64)bio->bi_iter.bi_sector,
2538 bio->bi_error, io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002539 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002540
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002541 /* We always issue full-page reads, but if some block
2542 * in a page fails to read, blk_update_request() will
2543 * advance bv_offset and adjust bv_len to compensate.
2544 * Print a warning for nonzero offsets, and an error
2545 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002546 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2547 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2548 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2549 "partial page read in btrfs with offset %u and length %u",
2550 bvec->bv_offset, bvec->bv_len);
2551 else
2552 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2553 "incomplete page read in btrfs with offset %u and "
2554 "length %u",
2555 bvec->bv_offset, bvec->bv_len);
2556 }
Chris Masond1310b22008-01-24 16:13:08 -05002557
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002558 start = page_offset(page);
2559 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002560 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002561
Chris Mason9be33952013-05-17 18:30:14 -04002562 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002563 if (likely(uptodate && tree->ops &&
2564 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002565 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2566 page, start, end,
2567 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002568 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002569 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002570 else
Miao Xie1203b682014-09-12 18:44:01 +08002571 clean_io_failure(inode, start, page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002572 }
Josef Bacikea466792012-03-26 21:57:36 -04002573
Miao Xief2a09da2013-07-25 19:22:33 +08002574 if (likely(uptodate))
2575 goto readpage_ok;
2576
2577 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002578 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002579 if (!ret && !bio->bi_error)
Josef Bacikea466792012-03-26 21:57:36 -04002580 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002581 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002582 /*
2583 * The generic bio_readpage_error handles errors the
2584 * following way: If possible, new read requests are
2585 * created and submitted and will end up in
2586 * end_bio_extent_readpage as well (if we're lucky, not
2587 * in the !uptodate case). In that case it returns 0 and
2588 * we just go on with the next page in our bio. If it
2589 * can't handle the error it will return -EIO and we
2590 * remain responsible for that page.
2591 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002592 ret = bio_readpage_error(bio, offset, page, start, end,
2593 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002594 if (ret == 0) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002595 uptodate = !bio->bi_error;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002596 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002597 continue;
2598 }
2599 }
Miao Xief2a09da2013-07-25 19:22:33 +08002600readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002601 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002602 loff_t i_size = i_size_read(inode);
2603 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002604 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002605
2606 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002607 off = i_size & (PAGE_CACHE_SIZE-1);
2608 if (page->index == end_index && off)
2609 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002610 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002611 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002612 ClearPageUptodate(page);
2613 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002614 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002615 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002616 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002617
2618 if (unlikely(!uptodate)) {
2619 if (extent_len) {
2620 endio_readpage_release_extent(tree,
2621 extent_start,
2622 extent_len, 1);
2623 extent_start = 0;
2624 extent_len = 0;
2625 }
2626 endio_readpage_release_extent(tree, start,
2627 end - start + 1, 0);
2628 } else if (!extent_len) {
2629 extent_start = start;
2630 extent_len = end + 1 - start;
2631 } else if (extent_start + extent_len == start) {
2632 extent_len += end + 1 - start;
2633 } else {
2634 endio_readpage_release_extent(tree, extent_start,
2635 extent_len, uptodate);
2636 extent_start = start;
2637 extent_len = end + 1 - start;
2638 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002639 }
Chris Masond1310b22008-01-24 16:13:08 -05002640
Miao Xie883d0de2013-07-25 19:22:35 +08002641 if (extent_len)
2642 endio_readpage_release_extent(tree, extent_start, extent_len,
2643 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002644 if (io_bio->end_io)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002645 io_bio->end_io(io_bio, bio->bi_error);
Chris Masond1310b22008-01-24 16:13:08 -05002646 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002647}
2648
Chris Mason9be33952013-05-17 18:30:14 -04002649/*
2650 * this allocates from the btrfs_bioset. We're returning a bio right now
2651 * but you can call btrfs_io_bio for the appropriate container_of magic
2652 */
Miao Xie88f794e2010-11-22 03:02:55 +00002653struct bio *
2654btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2655 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002656{
Miao Xiefacc8a222013-07-25 19:22:34 +08002657 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002658 struct bio *bio;
2659
Chris Mason9be33952013-05-17 18:30:14 -04002660 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002661
2662 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002663 while (!bio && (nr_vecs /= 2)) {
2664 bio = bio_alloc_bioset(gfp_flags,
2665 nr_vecs, btrfs_bioset);
2666 }
Chris Masond1310b22008-01-24 16:13:08 -05002667 }
2668
2669 if (bio) {
2670 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002671 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002672 btrfs_bio = btrfs_io_bio(bio);
2673 btrfs_bio->csum = NULL;
2674 btrfs_bio->csum_allocated = NULL;
2675 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002676 }
2677 return bio;
2678}
2679
Chris Mason9be33952013-05-17 18:30:14 -04002680struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2681{
Miao Xie23ea8e52014-09-12 18:43:54 +08002682 struct btrfs_io_bio *btrfs_bio;
2683 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002684
Miao Xie23ea8e52014-09-12 18:43:54 +08002685 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2686 if (new) {
2687 btrfs_bio = btrfs_io_bio(new);
2688 btrfs_bio->csum = NULL;
2689 btrfs_bio->csum_allocated = NULL;
2690 btrfs_bio->end_io = NULL;
Chris Mason3a9508b2015-08-21 10:05:39 -07002691
2692#ifdef CONFIG_BLK_CGROUP
Chris Masonda2f0f72015-07-02 13:57:22 -07002693 /* FIXME, put this into bio_clone_bioset */
2694 if (bio->bi_css)
2695 bio_associate_blkcg(new, bio->bi_css);
Chris Mason3a9508b2015-08-21 10:05:39 -07002696#endif
Miao Xie23ea8e52014-09-12 18:43:54 +08002697 }
2698 return new;
2699}
Chris Mason9be33952013-05-17 18:30:14 -04002700
2701/* this also allocates from the btrfs_bioset */
2702struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2703{
Miao Xiefacc8a222013-07-25 19:22:34 +08002704 struct btrfs_io_bio *btrfs_bio;
2705 struct bio *bio;
2706
2707 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2708 if (bio) {
2709 btrfs_bio = btrfs_io_bio(bio);
2710 btrfs_bio->csum = NULL;
2711 btrfs_bio->csum_allocated = NULL;
2712 btrfs_bio->end_io = NULL;
2713 }
2714 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002715}
2716
2717
Jeff Mahoney355808c2011-10-03 23:23:14 -04002718static int __must_check submit_one_bio(int rw, struct bio *bio,
2719 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002720{
Chris Masond1310b22008-01-24 16:13:08 -05002721 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002722 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2723 struct page *page = bvec->bv_page;
2724 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002725 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002726
Miao Xie4eee4fa2012-12-21 09:17:45 +00002727 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002728
David Woodhouse902b22f2008-08-20 08:51:49 -04002729 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002730
2731 bio_get(bio);
2732
Chris Mason065631f2008-02-20 12:07:25 -05002733 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002734 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002735 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002736 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002737 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002738
Chris Masond1310b22008-01-24 16:13:08 -05002739 bio_put(bio);
2740 return ret;
2741}
2742
David Woodhouse64a16702009-07-15 23:29:37 +01002743static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002744 unsigned long offset, size_t size, struct bio *bio,
2745 unsigned long bio_flags)
2746{
2747 int ret = 0;
2748 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002749 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002750 bio_flags);
2751 BUG_ON(ret < 0);
2752 return ret;
2753
2754}
2755
Chris Masond1310b22008-01-24 16:13:08 -05002756static int submit_extent_page(int rw, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002757 struct writeback_control *wbc,
Chris Masond1310b22008-01-24 16:13:08 -05002758 struct page *page, sector_t sector,
2759 size_t size, unsigned long offset,
2760 struct block_device *bdev,
2761 struct bio **bio_ret,
2762 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002763 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002764 int mirror_num,
2765 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002766 unsigned long bio_flags,
2767 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002768{
2769 int ret = 0;
2770 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002771 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002772 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002773 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002774
2775 if (bio_ret && *bio_ret) {
2776 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002777 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002778 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002779 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002780 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002781
2782 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002783 force_bio_submit ||
David Woodhouse64a16702009-07-15 23:29:37 +01002784 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002785 bio_add_page(bio, page, page_size, offset) < page_size) {
2786 ret = submit_one_bio(rw, bio, mirror_num,
2787 prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002788 if (ret < 0) {
2789 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002790 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002791 }
Chris Masond1310b22008-01-24 16:13:08 -05002792 bio = NULL;
2793 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002794 if (wbc)
2795 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002796 return 0;
2797 }
2798 }
Chris Masonc8b97812008-10-29 14:49:59 -04002799
Kent Overstreetb54ffb72015-05-19 14:31:01 +02002800 bio = btrfs_bio_alloc(bdev, sector, BIO_MAX_PAGES,
2801 GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002802 if (!bio)
2803 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002804
Chris Masonc8b97812008-10-29 14:49:59 -04002805 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002806 bio->bi_end_io = end_io_func;
2807 bio->bi_private = tree;
Chris Masonda2f0f72015-07-02 13:57:22 -07002808 if (wbc) {
2809 wbc_init_bio(wbc, bio);
2810 wbc_account_io(wbc, page, page_size);
2811 }
Chris Mason70dec802008-01-29 09:59:12 -05002812
Chris Masond3977122009-01-05 21:25:51 -05002813 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002814 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002815 else
Chris Masonc8b97812008-10-29 14:49:59 -04002816 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002817
2818 return ret;
2819}
2820
Eric Sandeen48a3b632013-04-25 20:41:01 +00002821static void attach_extent_buffer_page(struct extent_buffer *eb,
2822 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002823{
2824 if (!PagePrivate(page)) {
2825 SetPagePrivate(page);
2826 page_cache_get(page);
2827 set_page_private(page, (unsigned long)eb);
2828 } else {
2829 WARN_ON(page->private != (unsigned long)eb);
2830 }
2831}
2832
Chris Masond1310b22008-01-24 16:13:08 -05002833void set_page_extent_mapped(struct page *page)
2834{
2835 if (!PagePrivate(page)) {
2836 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002837 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002838 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002839 }
2840}
2841
Miao Xie125bac012013-07-25 19:22:37 +08002842static struct extent_map *
2843__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2844 u64 start, u64 len, get_extent_t *get_extent,
2845 struct extent_map **em_cached)
2846{
2847 struct extent_map *em;
2848
2849 if (em_cached && *em_cached) {
2850 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002851 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002852 start < extent_map_end(em)) {
2853 atomic_inc(&em->refs);
2854 return em;
2855 }
2856
2857 free_extent_map(em);
2858 *em_cached = NULL;
2859 }
2860
2861 em = get_extent(inode, page, pg_offset, start, len, 0);
2862 if (em_cached && !IS_ERR_OR_NULL(em)) {
2863 BUG_ON(*em_cached);
2864 atomic_inc(&em->refs);
2865 *em_cached = em;
2866 }
2867 return em;
2868}
Chris Masond1310b22008-01-24 16:13:08 -05002869/*
2870 * basic readpage implementation. Locked extent state structs are inserted
2871 * into the tree that are removed when the IO is done (by the end_io
2872 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002873 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002874 */
Miao Xie99740902013-07-25 19:22:36 +08002875static int __do_readpage(struct extent_io_tree *tree,
2876 struct page *page,
2877 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002878 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002879 struct bio **bio, int mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01002880 unsigned long *bio_flags, int rw,
2881 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002882{
2883 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002884 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002885 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2886 u64 end;
2887 u64 cur = start;
2888 u64 extent_offset;
2889 u64 last_byte = i_size_read(inode);
2890 u64 block_start;
2891 u64 cur_end;
2892 sector_t sector;
2893 struct extent_map *em;
2894 struct block_device *bdev;
2895 int ret;
2896 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002897 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002898 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002899 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002900 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002901 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002902 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002903
2904 set_page_extent_mapped(page);
2905
Miao Xie99740902013-07-25 19:22:36 +08002906 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002907 if (!PageUptodate(page)) {
2908 if (cleancache_get_page(page) == 0) {
2909 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002910 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002911 goto out;
2912 }
2913 }
2914
Chris Masonc8b97812008-10-29 14:49:59 -04002915 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2916 char *userpage;
2917 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2918
2919 if (zero_offset) {
2920 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002921 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002922 memset(userpage + zero_offset, 0, iosize);
2923 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002924 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002925 }
2926 }
Chris Masond1310b22008-01-24 16:13:08 -05002927 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002928 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
Filipe Manana005efed2015-09-14 09:09:31 +01002929 bool force_bio_submit = false;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002930
Chris Masond1310b22008-01-24 16:13:08 -05002931 if (cur >= last_byte) {
2932 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002933 struct extent_state *cached = NULL;
2934
David Sterba306e16c2011-04-19 14:29:38 +02002935 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002936 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002937 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002938 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002939 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002940 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002941 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002942 if (!parent_locked)
2943 unlock_extent_cached(tree, cur,
2944 cur + iosize - 1,
2945 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002946 break;
2947 }
Miao Xie125bac012013-07-25 19:22:37 +08002948 em = __get_extent_map(inode, page, pg_offset, cur,
2949 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002950 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002951 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002952 if (!parent_locked)
2953 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002954 break;
2955 }
Chris Masond1310b22008-01-24 16:13:08 -05002956 extent_offset = cur - em->start;
2957 BUG_ON(extent_map_end(em) <= cur);
2958 BUG_ON(end < cur);
2959
Li Zefan261507a02010-12-17 14:21:50 +08002960 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002961 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002962 extent_set_compress_type(&this_bio_flag,
2963 em->compress_type);
2964 }
Chris Masonc8b97812008-10-29 14:49:59 -04002965
Chris Masond1310b22008-01-24 16:13:08 -05002966 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2967 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002968 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002969 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2970 disk_io_size = em->block_len;
2971 sector = em->block_start >> 9;
2972 } else {
2973 sector = (em->block_start + extent_offset) >> 9;
2974 disk_io_size = iosize;
2975 }
Chris Masond1310b22008-01-24 16:13:08 -05002976 bdev = em->bdev;
2977 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002978 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2979 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002980
2981 /*
2982 * If we have a file range that points to a compressed extent
2983 * and it's followed by a consecutive file range that points to
2984 * to the same compressed extent (possibly with a different
2985 * offset and/or length, so it either points to the whole extent
2986 * or only part of it), we must make sure we do not submit a
2987 * single bio to populate the pages for the 2 ranges because
2988 * this makes the compressed extent read zero out the pages
2989 * belonging to the 2nd range. Imagine the following scenario:
2990 *
2991 * File layout
2992 * [0 - 8K] [8K - 24K]
2993 * | |
2994 * | |
2995 * points to extent X, points to extent X,
2996 * offset 4K, length of 8K offset 0, length 16K
2997 *
2998 * [extent X, compressed length = 4K uncompressed length = 16K]
2999 *
3000 * If the bio to read the compressed extent covers both ranges,
3001 * it will decompress extent X into the pages belonging to the
3002 * first range and then it will stop, zeroing out the remaining
3003 * pages that belong to the other range that points to extent X.
3004 * So here we make sure we submit 2 bios, one for the first
3005 * range and another one for the third range. Both will target
3006 * the same physical extent from disk, but we can't currently
3007 * make the compressed bio endio callback populate the pages
3008 * for both ranges because each compressed bio is tightly
3009 * coupled with a single extent map, and each range can have
3010 * an extent map with a different offset value relative to the
3011 * uncompressed data of our extent and different lengths. This
3012 * is a corner case so we prioritize correctness over
3013 * non-optimal behavior (submitting 2 bios for the same extent).
3014 */
3015 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3016 prev_em_start && *prev_em_start != (u64)-1 &&
3017 *prev_em_start != em->orig_start)
3018 force_bio_submit = true;
3019
3020 if (prev_em_start)
3021 *prev_em_start = em->orig_start;
3022
Chris Masond1310b22008-01-24 16:13:08 -05003023 free_extent_map(em);
3024 em = NULL;
3025
3026 /* we've found a hole, just zero and go on */
3027 if (block_start == EXTENT_MAP_HOLE) {
3028 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003029 struct extent_state *cached = NULL;
3030
Cong Wang7ac687d2011-11-25 23:14:28 +08003031 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003032 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003033 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003034 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003035
3036 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003037 &cached, GFP_NOFS);
Filipe Manana5e6ecb32015-10-13 16:36:09 +01003038 if (parent_locked)
3039 free_extent_state(cached);
3040 else
3041 unlock_extent_cached(tree, cur,
3042 cur + iosize - 1,
3043 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003044 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003045 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003046 continue;
3047 }
3048 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003049 if (test_range_bit(tree, cur, cur_end,
3050 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003051 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003052 if (!parent_locked)
3053 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003054 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003055 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003056 continue;
3057 }
Chris Mason70dec802008-01-29 09:59:12 -05003058 /* we have an inline extent but it didn't get marked up
3059 * to date. Error out
3060 */
3061 if (block_start == EXTENT_MAP_INLINE) {
3062 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003063 if (!parent_locked)
3064 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003065 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003066 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003067 continue;
3068 }
Chris Masond1310b22008-01-24 16:13:08 -05003069
Josef Bacikc8f2f242013-02-11 11:33:00 -05003070 pnr -= page->index;
Chris Masonda2f0f72015-07-02 13:57:22 -07003071 ret = submit_extent_page(rw, tree, NULL, page,
David Sterba306e16c2011-04-19 14:29:38 +02003072 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04003073 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04003074 end_bio_extent_readpage, mirror_num,
3075 *bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01003076 this_bio_flag,
3077 force_bio_submit);
Josef Bacikc8f2f242013-02-11 11:33:00 -05003078 if (!ret) {
3079 nr++;
3080 *bio_flags = this_bio_flag;
3081 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003082 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07003083 if (!parent_locked)
3084 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04003085 }
Chris Masond1310b22008-01-24 16:13:08 -05003086 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003087 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003088 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003089out:
Chris Masond1310b22008-01-24 16:13:08 -05003090 if (!nr) {
3091 if (!PageError(page))
3092 SetPageUptodate(page);
3093 unlock_page(page);
3094 }
3095 return 0;
3096}
3097
Miao Xie99740902013-07-25 19:22:36 +08003098static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3099 struct page *pages[], int nr_pages,
3100 u64 start, u64 end,
3101 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003102 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003103 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003104 unsigned long *bio_flags, int rw,
3105 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003106{
3107 struct inode *inode;
3108 struct btrfs_ordered_extent *ordered;
3109 int index;
3110
3111 inode = pages[0]->mapping->host;
3112 while (1) {
3113 lock_extent(tree, start, end);
3114 ordered = btrfs_lookup_ordered_range(inode, start,
3115 end - start + 1);
3116 if (!ordered)
3117 break;
3118 unlock_extent(tree, start, end);
3119 btrfs_start_ordered_extent(inode, ordered, 1);
3120 btrfs_put_ordered_extent(ordered);
3121 }
3122
3123 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003124 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003125 mirror_num, bio_flags, rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003126 page_cache_release(pages[index]);
3127 }
3128}
3129
3130static void __extent_readpages(struct extent_io_tree *tree,
3131 struct page *pages[],
3132 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003133 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003134 struct bio **bio, int mirror_num,
Filipe Manana808f80b2015-09-28 09:56:26 +01003135 unsigned long *bio_flags, int rw,
3136 u64 *prev_em_start)
Miao Xie99740902013-07-25 19:22:36 +08003137{
Stefan Behrens35a36212013-08-14 18:12:25 +02003138 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003139 u64 end = 0;
3140 u64 page_start;
3141 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003142 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003143
3144 for (index = 0; index < nr_pages; index++) {
3145 page_start = page_offset(pages[index]);
3146 if (!end) {
3147 start = page_start;
3148 end = start + PAGE_CACHE_SIZE - 1;
3149 first_index = index;
3150 } else if (end + 1 == page_start) {
3151 end += PAGE_CACHE_SIZE;
3152 } else {
3153 __do_contiguous_readpages(tree, &pages[first_index],
3154 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003155 end, get_extent, em_cached,
3156 bio, mirror_num, bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003157 rw, prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003158 start = page_start;
3159 end = start + PAGE_CACHE_SIZE - 1;
3160 first_index = index;
3161 }
3162 }
3163
3164 if (end)
3165 __do_contiguous_readpages(tree, &pages[first_index],
3166 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003167 end, get_extent, em_cached, bio,
Filipe Manana808f80b2015-09-28 09:56:26 +01003168 mirror_num, bio_flags, rw,
3169 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003170}
3171
3172static int __extent_read_full_page(struct extent_io_tree *tree,
3173 struct page *page,
3174 get_extent_t *get_extent,
3175 struct bio **bio, int mirror_num,
3176 unsigned long *bio_flags, int rw)
3177{
3178 struct inode *inode = page->mapping->host;
3179 struct btrfs_ordered_extent *ordered;
3180 u64 start = page_offset(page);
3181 u64 end = start + PAGE_CACHE_SIZE - 1;
3182 int ret;
3183
3184 while (1) {
3185 lock_extent(tree, start, end);
3186 ordered = btrfs_lookup_ordered_extent(inode, start);
3187 if (!ordered)
3188 break;
3189 unlock_extent(tree, start, end);
3190 btrfs_start_ordered_extent(inode, ordered, 1);
3191 btrfs_put_ordered_extent(ordered);
3192 }
3193
Miao Xie125bac012013-07-25 19:22:37 +08003194 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003195 bio_flags, rw, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003196 return ret;
3197}
3198
Chris Masond1310b22008-01-24 16:13:08 -05003199int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003200 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003201{
3202 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003203 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003204 int ret;
3205
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003206 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003207 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003208 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003209 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003210 return ret;
3211}
Chris Masond1310b22008-01-24 16:13:08 -05003212
Mark Fasheh4b384312013-08-06 11:42:50 -07003213int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3214 get_extent_t *get_extent, int mirror_num)
3215{
3216 struct bio *bio = NULL;
3217 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3218 int ret;
3219
3220 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
Filipe Manana005efed2015-09-14 09:09:31 +01003221 &bio_flags, READ, NULL);
Mark Fasheh4b384312013-08-06 11:42:50 -07003222 if (bio)
3223 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3224 return ret;
3225}
3226
Chris Mason11c83492009-04-20 15:50:09 -04003227static noinline void update_nr_written(struct page *page,
3228 struct writeback_control *wbc,
3229 unsigned long nr_written)
3230{
3231 wbc->nr_to_write -= nr_written;
3232 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3233 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3234 page->mapping->writeback_index = page->index + nr_written;
3235}
3236
Chris Masond1310b22008-01-24 16:13:08 -05003237/*
Chris Mason40f76582014-05-21 13:35:51 -07003238 * helper for __extent_writepage, doing all of the delayed allocation setup.
3239 *
3240 * This returns 1 if our fill_delalloc function did all the work required
3241 * to write the page (copy into inline extent). In this case the IO has
3242 * been started and the page is already unlocked.
3243 *
3244 * This returns 0 if all went well (page still locked)
3245 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003246 */
Chris Mason40f76582014-05-21 13:35:51 -07003247static noinline_for_stack int writepage_delalloc(struct inode *inode,
3248 struct page *page, struct writeback_control *wbc,
3249 struct extent_page_data *epd,
3250 u64 delalloc_start,
3251 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003252{
Chris Mason40f76582014-05-21 13:35:51 -07003253 struct extent_io_tree *tree = epd->tree;
3254 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3255 u64 nr_delalloc;
3256 u64 delalloc_to_write = 0;
3257 u64 delalloc_end = 0;
3258 int ret;
3259 int page_started = 0;
3260
3261 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3262 return 0;
3263
3264 while (delalloc_end < page_end) {
3265 nr_delalloc = find_lock_delalloc_range(inode, tree,
3266 page,
3267 &delalloc_start,
3268 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003269 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003270 if (nr_delalloc == 0) {
3271 delalloc_start = delalloc_end + 1;
3272 continue;
3273 }
3274 ret = tree->ops->fill_delalloc(inode, page,
3275 delalloc_start,
3276 delalloc_end,
3277 &page_started,
3278 nr_written);
3279 /* File system has been set read-only */
3280 if (ret) {
3281 SetPageError(page);
3282 /* fill_delalloc should be return < 0 for error
3283 * but just in case, we use > 0 here meaning the
3284 * IO is started, so we don't want to return > 0
3285 * unless things are going well.
3286 */
3287 ret = ret < 0 ? ret : -EIO;
3288 goto done;
3289 }
3290 /*
3291 * delalloc_end is already one less than the total
3292 * length, so we don't subtract one from
3293 * PAGE_CACHE_SIZE
3294 */
3295 delalloc_to_write += (delalloc_end - delalloc_start +
3296 PAGE_CACHE_SIZE) >>
3297 PAGE_CACHE_SHIFT;
3298 delalloc_start = delalloc_end + 1;
3299 }
3300 if (wbc->nr_to_write < delalloc_to_write) {
3301 int thresh = 8192;
3302
3303 if (delalloc_to_write < thresh * 2)
3304 thresh = delalloc_to_write;
3305 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3306 thresh);
3307 }
3308
3309 /* did the fill delalloc function already unlock and start
3310 * the IO?
3311 */
3312 if (page_started) {
3313 /*
3314 * we've unlocked the page, so we can't update
3315 * the mapping's writeback index, just update
3316 * nr_to_write.
3317 */
3318 wbc->nr_to_write -= *nr_written;
3319 return 1;
3320 }
3321
3322 ret = 0;
3323
3324done:
3325 return ret;
3326}
3327
3328/*
3329 * helper for __extent_writepage. This calls the writepage start hooks,
3330 * and does the loop to map the page into extents and bios.
3331 *
3332 * We return 1 if the IO is started and the page is unlocked,
3333 * 0 if all went well (page still locked)
3334 * < 0 if there were errors (page still locked)
3335 */
3336static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3337 struct page *page,
3338 struct writeback_control *wbc,
3339 struct extent_page_data *epd,
3340 loff_t i_size,
3341 unsigned long nr_written,
3342 int write_flags, int *nr_ret)
3343{
Chris Masond1310b22008-01-24 16:13:08 -05003344 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003345 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003346 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3347 u64 end;
3348 u64 cur = start;
3349 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003350 u64 block_start;
3351 u64 iosize;
3352 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003353 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003354 struct extent_map *em;
3355 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003356 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003357 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003358 int ret = 0;
3359 int nr = 0;
3360 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003361
Chris Mason247e7432008-07-17 12:53:51 -04003362 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003363 ret = tree->ops->writepage_start_hook(page, start,
3364 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003365 if (ret) {
3366 /* Fixup worker will requeue */
3367 if (ret == -EBUSY)
3368 wbc->pages_skipped++;
3369 else
3370 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003371
Chris Mason11c83492009-04-20 15:50:09 -04003372 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003373 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003374 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003375 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003376 }
3377 }
3378
Chris Mason11c83492009-04-20 15:50:09 -04003379 /*
3380 * we don't want to touch the inode after unlocking the page,
3381 * so we update the mapping writeback index now
3382 */
3383 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003384
Chris Masond1310b22008-01-24 16:13:08 -05003385 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003386 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003387 if (tree->ops && tree->ops->writepage_end_io_hook)
3388 tree->ops->writepage_end_io_hook(page, start,
3389 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003390 goto done;
3391 }
3392
Chris Masond1310b22008-01-24 16:13:08 -05003393 blocksize = inode->i_sb->s_blocksize;
3394
3395 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003396 u64 em_end;
3397 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003398 if (tree->ops && tree->ops->writepage_end_io_hook)
3399 tree->ops->writepage_end_io_hook(page, cur,
3400 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003401 break;
3402 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003403 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003404 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003405 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003406 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003407 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003408 break;
3409 }
3410
3411 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003412 em_end = extent_map_end(em);
3413 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003414 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003415 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003416 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003417 sector = (em->block_start + extent_offset) >> 9;
3418 bdev = em->bdev;
3419 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003420 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003421 free_extent_map(em);
3422 em = NULL;
3423
Chris Masonc8b97812008-10-29 14:49:59 -04003424 /*
3425 * compressed and inline extents are written through other
3426 * paths in the FS
3427 */
3428 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003429 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003430 /*
3431 * end_io notification does not happen here for
3432 * compressed extents
3433 */
3434 if (!compressed && tree->ops &&
3435 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003436 tree->ops->writepage_end_io_hook(page, cur,
3437 cur + iosize - 1,
3438 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003439 else if (compressed) {
3440 /* we don't want to end_page_writeback on
3441 * a compressed extent. this happens
3442 * elsewhere
3443 */
3444 nr++;
3445 }
3446
3447 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003448 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003449 continue;
3450 }
Chris Masonc8b97812008-10-29 14:49:59 -04003451
Chris Masond1310b22008-01-24 16:13:08 -05003452 if (tree->ops && tree->ops->writepage_io_hook) {
3453 ret = tree->ops->writepage_io_hook(page, cur,
3454 cur + iosize - 1);
3455 } else {
3456 ret = 0;
3457 }
Chris Mason1259ab72008-05-12 13:39:03 -04003458 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003459 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003460 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003461 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003462
Chris Masond1310b22008-01-24 16:13:08 -05003463 set_range_writeback(tree, cur, cur + iosize - 1);
3464 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003465 btrfs_err(BTRFS_I(inode)->root->fs_info,
3466 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003467 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003468 }
3469
Chris Masonda2f0f72015-07-02 13:57:22 -07003470 ret = submit_extent_page(write_flags, tree, wbc, page,
Chris Masonffbd5172009-04-20 15:50:09 -04003471 sector, iosize, pg_offset,
3472 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003473 end_bio_extent_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003474 0, 0, 0, false);
Chris Masond1310b22008-01-24 16:13:08 -05003475 if (ret)
3476 SetPageError(page);
3477 }
3478 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003479 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003480 nr++;
3481 }
3482done:
Chris Mason40f76582014-05-21 13:35:51 -07003483 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003484
Chris Mason11c83492009-04-20 15:50:09 -04003485done_unlocked:
3486
Chris Mason2c64c532009-09-02 15:04:12 -04003487 /* drop our reference on any cached states */
3488 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003489 return ret;
3490}
3491
3492/*
3493 * the writepage semantics are similar to regular writepage. extent
3494 * records are inserted to lock ranges in the tree, and as dirty areas
3495 * are found, they are marked writeback. Then the lock bits are removed
3496 * and the end_io handler clears the writeback ranges
3497 */
3498static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3499 void *data)
3500{
3501 struct inode *inode = page->mapping->host;
3502 struct extent_page_data *epd = data;
3503 u64 start = page_offset(page);
3504 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3505 int ret;
3506 int nr = 0;
3507 size_t pg_offset = 0;
3508 loff_t i_size = i_size_read(inode);
3509 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3510 int write_flags;
3511 unsigned long nr_written = 0;
3512
3513 if (wbc->sync_mode == WB_SYNC_ALL)
3514 write_flags = WRITE_SYNC;
3515 else
3516 write_flags = WRITE;
3517
3518 trace___extent_writepage(page, inode, wbc);
3519
3520 WARN_ON(!PageLocked(page));
3521
3522 ClearPageError(page);
3523
3524 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3525 if (page->index > end_index ||
3526 (page->index == end_index && !pg_offset)) {
3527 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3528 unlock_page(page);
3529 return 0;
3530 }
3531
3532 if (page->index == end_index) {
3533 char *userpage;
3534
3535 userpage = kmap_atomic(page);
3536 memset(userpage + pg_offset, 0,
3537 PAGE_CACHE_SIZE - pg_offset);
3538 kunmap_atomic(userpage);
3539 flush_dcache_page(page);
3540 }
3541
3542 pg_offset = 0;
3543
3544 set_page_extent_mapped(page);
3545
3546 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3547 if (ret == 1)
3548 goto done_unlocked;
3549 if (ret)
3550 goto done;
3551
3552 ret = __extent_writepage_io(inode, page, wbc, epd,
3553 i_size, nr_written, write_flags, &nr);
3554 if (ret == 1)
3555 goto done_unlocked;
3556
3557done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003558 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003559 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003560 set_page_writeback(page);
3561 end_page_writeback(page);
3562 }
Filipe Manana61391d52014-05-09 17:17:40 +01003563 if (PageError(page)) {
3564 ret = ret < 0 ? ret : -EIO;
3565 end_extent_writepage(page, ret, start, page_end);
3566 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003567 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003568 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003569
3570done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003571 return 0;
3572}
3573
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003574void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003575{
NeilBrown74316202014-07-07 15:16:04 +10003576 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3577 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003578}
3579
Chris Mason0e378df2014-05-19 20:55:27 -07003580static noinline_for_stack int
3581lock_extent_buffer_for_io(struct extent_buffer *eb,
3582 struct btrfs_fs_info *fs_info,
3583 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003584{
3585 unsigned long i, num_pages;
3586 int flush = 0;
3587 int ret = 0;
3588
3589 if (!btrfs_try_tree_write_lock(eb)) {
3590 flush = 1;
3591 flush_write_bio(epd);
3592 btrfs_tree_lock(eb);
3593 }
3594
3595 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3596 btrfs_tree_unlock(eb);
3597 if (!epd->sync_io)
3598 return 0;
3599 if (!flush) {
3600 flush_write_bio(epd);
3601 flush = 1;
3602 }
Chris Masona098d8e2012-03-21 12:09:56 -04003603 while (1) {
3604 wait_on_extent_buffer_writeback(eb);
3605 btrfs_tree_lock(eb);
3606 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3607 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003608 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003609 }
3610 }
3611
Josef Bacik51561ff2012-07-20 16:25:24 -04003612 /*
3613 * We need to do this to prevent races in people who check if the eb is
3614 * under IO since we can end up having no IO bits set for a short period
3615 * of time.
3616 */
3617 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003618 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3619 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003620 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003621 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003622 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3623 -eb->len,
3624 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003625 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003626 } else {
3627 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003628 }
3629
3630 btrfs_tree_unlock(eb);
3631
3632 if (!ret)
3633 return ret;
3634
3635 num_pages = num_extent_pages(eb->start, eb->len);
3636 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003637 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003638
3639 if (!trylock_page(p)) {
3640 if (!flush) {
3641 flush_write_bio(epd);
3642 flush = 1;
3643 }
3644 lock_page(p);
3645 }
3646 }
3647
3648 return ret;
3649}
3650
3651static void end_extent_buffer_writeback(struct extent_buffer *eb)
3652{
3653 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003654 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003655 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3656}
3657
Filipe Manana656f30d2014-09-26 12:25:56 +01003658static void set_btree_ioerr(struct page *page)
3659{
3660 struct extent_buffer *eb = (struct extent_buffer *)page->private;
3661 struct btrfs_inode *btree_ino = BTRFS_I(eb->fs_info->btree_inode);
3662
3663 SetPageError(page);
3664 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3665 return;
3666
3667 /*
3668 * If writeback for a btree extent that doesn't belong to a log tree
3669 * failed, increment the counter transaction->eb_write_errors.
3670 * We do this because while the transaction is running and before it's
3671 * committing (when we call filemap_fdata[write|wait]_range against
3672 * the btree inode), we might have
3673 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3674 * returns an error or an error happens during writeback, when we're
3675 * committing the transaction we wouldn't know about it, since the pages
3676 * can be no longer dirty nor marked anymore for writeback (if a
3677 * subsequent modification to the extent buffer didn't happen before the
3678 * transaction commit), which makes filemap_fdata[write|wait]_range not
3679 * able to find the pages tagged with SetPageError at transaction
3680 * commit time. So if this happens we must abort the transaction,
3681 * otherwise we commit a super block with btree roots that point to
3682 * btree nodes/leafs whose content on disk is invalid - either garbage
3683 * or the content of some node/leaf from a past generation that got
3684 * cowed or deleted and is no longer valid.
3685 *
3686 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3687 * not be enough - we need to distinguish between log tree extents vs
3688 * non-log tree extents, and the next filemap_fdatawait_range() call
3689 * will catch and clear such errors in the mapping - and that call might
3690 * be from a log sync and not from a transaction commit. Also, checking
3691 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3692 * not done and would not be reliable - the eb might have been released
3693 * from memory and reading it back again means that flag would not be
3694 * set (since it's a runtime flag, not persisted on disk).
3695 *
3696 * Using the flags below in the btree inode also makes us achieve the
3697 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3698 * writeback for all dirty pages and before filemap_fdatawait_range()
3699 * is called, the writeback for all dirty pages had already finished
3700 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3701 * filemap_fdatawait_range() would return success, as it could not know
3702 * that writeback errors happened (the pages were no longer tagged for
3703 * writeback).
3704 */
3705 switch (eb->log_index) {
3706 case -1:
3707 set_bit(BTRFS_INODE_BTREE_ERR, &btree_ino->runtime_flags);
3708 break;
3709 case 0:
3710 set_bit(BTRFS_INODE_BTREE_LOG1_ERR, &btree_ino->runtime_flags);
3711 break;
3712 case 1:
3713 set_bit(BTRFS_INODE_BTREE_LOG2_ERR, &btree_ino->runtime_flags);
3714 break;
3715 default:
3716 BUG(); /* unexpected, logic error */
3717 }
3718}
3719
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003720static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003721{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003722 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003723 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003724 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003725
Kent Overstreet2c30c712013-11-07 12:20:26 -08003726 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003727 struct page *page = bvec->bv_page;
3728
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003729 eb = (struct extent_buffer *)page->private;
3730 BUG_ON(!eb);
3731 done = atomic_dec_and_test(&eb->io_pages);
3732
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003733 if (bio->bi_error ||
3734 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003735 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003736 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003737 }
3738
3739 end_page_writeback(page);
3740
3741 if (!done)
3742 continue;
3743
3744 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003745 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003746
3747 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003748}
3749
Chris Mason0e378df2014-05-19 20:55:27 -07003750static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003751 struct btrfs_fs_info *fs_info,
3752 struct writeback_control *wbc,
3753 struct extent_page_data *epd)
3754{
3755 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003756 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003757 u64 offset = eb->start;
3758 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003759 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003760 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003761 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003762
Filipe Manana656f30d2014-09-26 12:25:56 +01003763 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003764 num_pages = num_extent_pages(eb->start, eb->len);
3765 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003766 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3767 bio_flags = EXTENT_BIO_TREE_LOG;
3768
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003769 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003770 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003771
3772 clear_page_dirty_for_io(p);
3773 set_page_writeback(p);
Chris Masonda2f0f72015-07-02 13:57:22 -07003774 ret = submit_extent_page(rw, tree, wbc, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003775 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3776 -1, end_bio_extent_buffer_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003777 0, epd->bio_flags, bio_flags, false);
Josef Bacikde0022b2012-09-25 14:25:58 -04003778 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003779 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003780 set_btree_ioerr(p);
Filipe Manana55e3bd22014-09-22 17:41:04 +01003781 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003782 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3783 end_extent_buffer_writeback(eb);
3784 ret = -EIO;
3785 break;
3786 }
3787 offset += PAGE_CACHE_SIZE;
3788 update_nr_written(p, wbc, 1);
3789 unlock_page(p);
3790 }
3791
3792 if (unlikely(ret)) {
3793 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003794 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003795 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003796 unlock_page(p);
3797 }
3798 }
3799
3800 return ret;
3801}
3802
3803int btree_write_cache_pages(struct address_space *mapping,
3804 struct writeback_control *wbc)
3805{
3806 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3807 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3808 struct extent_buffer *eb, *prev_eb = NULL;
3809 struct extent_page_data epd = {
3810 .bio = NULL,
3811 .tree = tree,
3812 .extent_locked = 0,
3813 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003814 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003815 };
3816 int ret = 0;
3817 int done = 0;
3818 int nr_to_write_done = 0;
3819 struct pagevec pvec;
3820 int nr_pages;
3821 pgoff_t index;
3822 pgoff_t end; /* Inclusive */
3823 int scanned = 0;
3824 int tag;
3825
3826 pagevec_init(&pvec, 0);
3827 if (wbc->range_cyclic) {
3828 index = mapping->writeback_index; /* Start from prev offset */
3829 end = -1;
3830 } else {
3831 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3832 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3833 scanned = 1;
3834 }
3835 if (wbc->sync_mode == WB_SYNC_ALL)
3836 tag = PAGECACHE_TAG_TOWRITE;
3837 else
3838 tag = PAGECACHE_TAG_DIRTY;
3839retry:
3840 if (wbc->sync_mode == WB_SYNC_ALL)
3841 tag_pages_for_writeback(mapping, index, end);
3842 while (!done && !nr_to_write_done && (index <= end) &&
3843 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3844 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3845 unsigned i;
3846
3847 scanned = 1;
3848 for (i = 0; i < nr_pages; i++) {
3849 struct page *page = pvec.pages[i];
3850
3851 if (!PagePrivate(page))
3852 continue;
3853
3854 if (!wbc->range_cyclic && page->index > end) {
3855 done = 1;
3856 break;
3857 }
3858
Josef Bacikb5bae262012-09-14 13:43:01 -04003859 spin_lock(&mapping->private_lock);
3860 if (!PagePrivate(page)) {
3861 spin_unlock(&mapping->private_lock);
3862 continue;
3863 }
3864
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003865 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003866
3867 /*
3868 * Shouldn't happen and normally this would be a BUG_ON
3869 * but no sense in crashing the users box for something
3870 * we can survive anyway.
3871 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303872 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003873 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003874 continue;
3875 }
3876
Josef Bacikb5bae262012-09-14 13:43:01 -04003877 if (eb == prev_eb) {
3878 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003879 continue;
3880 }
3881
Josef Bacikb5bae262012-09-14 13:43:01 -04003882 ret = atomic_inc_not_zero(&eb->refs);
3883 spin_unlock(&mapping->private_lock);
3884 if (!ret)
3885 continue;
3886
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003887 prev_eb = eb;
3888 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3889 if (!ret) {
3890 free_extent_buffer(eb);
3891 continue;
3892 }
3893
3894 ret = write_one_eb(eb, fs_info, wbc, &epd);
3895 if (ret) {
3896 done = 1;
3897 free_extent_buffer(eb);
3898 break;
3899 }
3900 free_extent_buffer(eb);
3901
3902 /*
3903 * the filesystem may choose to bump up nr_to_write.
3904 * We have to make sure to honor the new nr_to_write
3905 * at any time
3906 */
3907 nr_to_write_done = wbc->nr_to_write <= 0;
3908 }
3909 pagevec_release(&pvec);
3910 cond_resched();
3911 }
3912 if (!scanned && !done) {
3913 /*
3914 * We hit the last page and there is more work to be done: wrap
3915 * back to the start of the file
3916 */
3917 scanned = 1;
3918 index = 0;
3919 goto retry;
3920 }
3921 flush_write_bio(&epd);
3922 return ret;
3923}
3924
Chris Masond1310b22008-01-24 16:13:08 -05003925/**
3926 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
3927 * @mapping: address space structure to write
3928 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3929 * @writepage: function called for each page
3930 * @data: data passed to writepage function
3931 *
3932 * If a page is already under I/O, write_cache_pages() skips it, even
3933 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3934 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3935 * and msync() need to guarantee that all the data which was dirty at the time
3936 * the call was made get new I/O started against them. If wbc->sync_mode is
3937 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3938 * existing IO to complete.
3939 */
Chris Mason4bef0842008-09-08 11:18:08 -04003940static int extent_write_cache_pages(struct extent_io_tree *tree,
3941 struct address_space *mapping,
3942 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003943 writepage_t writepage, void *data,
3944 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003945{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003946 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003947 int ret = 0;
3948 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01003949 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003950 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003951 struct pagevec pvec;
3952 int nr_pages;
3953 pgoff_t index;
3954 pgoff_t end; /* Inclusive */
3955 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003956 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003957
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003958 /*
3959 * We have to hold onto the inode so that ordered extents can do their
3960 * work when the IO finishes. The alternative to this is failing to add
3961 * an ordered extent if the igrab() fails there and that is a huge pain
3962 * to deal with, so instead just hold onto the inode throughout the
3963 * writepages operation. If it fails here we are freeing up the inode
3964 * anyway and we'd rather not waste our time writing out stuff that is
3965 * going to be truncated anyway.
3966 */
3967 if (!igrab(inode))
3968 return 0;
3969
Chris Masond1310b22008-01-24 16:13:08 -05003970 pagevec_init(&pvec, 0);
3971 if (wbc->range_cyclic) {
3972 index = mapping->writeback_index; /* Start from prev offset */
3973 end = -1;
3974 } else {
3975 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3976 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003977 scanned = 1;
3978 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003979 if (wbc->sync_mode == WB_SYNC_ALL)
3980 tag = PAGECACHE_TAG_TOWRITE;
3981 else
3982 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003983retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003984 if (wbc->sync_mode == WB_SYNC_ALL)
3985 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003986 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003987 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3988 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003989 unsigned i;
3990
3991 scanned = 1;
3992 for (i = 0; i < nr_pages; i++) {
3993 struct page *page = pvec.pages[i];
3994
3995 /*
3996 * At this point we hold neither mapping->tree_lock nor
3997 * lock on the page itself: the page may be truncated or
3998 * invalidated (changing page->mapping to NULL), or even
3999 * swizzled back from swapper_space to tmpfs file
4000 * mapping
4001 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05004002 if (!trylock_page(page)) {
4003 flush_fn(data);
4004 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04004005 }
Chris Masond1310b22008-01-24 16:13:08 -05004006
4007 if (unlikely(page->mapping != mapping)) {
4008 unlock_page(page);
4009 continue;
4010 }
4011
4012 if (!wbc->range_cyclic && page->index > end) {
4013 done = 1;
4014 unlock_page(page);
4015 continue;
4016 }
4017
Chris Masond2c3f4f2008-11-19 12:44:22 -05004018 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05004019 if (PageWriteback(page))
4020 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05004021 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004022 }
Chris Masond1310b22008-01-24 16:13:08 -05004023
4024 if (PageWriteback(page) ||
4025 !clear_page_dirty_for_io(page)) {
4026 unlock_page(page);
4027 continue;
4028 }
4029
4030 ret = (*writepage)(page, wbc, data);
4031
4032 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4033 unlock_page(page);
4034 ret = 0;
4035 }
Filipe Manana61391d52014-05-09 17:17:40 +01004036 if (!err && ret < 0)
4037 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04004038
4039 /*
4040 * the filesystem may choose to bump up nr_to_write.
4041 * We have to make sure to honor the new nr_to_write
4042 * at any time
4043 */
4044 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05004045 }
4046 pagevec_release(&pvec);
4047 cond_resched();
4048 }
Filipe Manana61391d52014-05-09 17:17:40 +01004049 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05004050 /*
4051 * We hit the last page and there is more work to be done: wrap
4052 * back to the start of the file
4053 */
4054 scanned = 1;
4055 index = 0;
4056 goto retry;
4057 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004058 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01004059 return err;
Chris Masond1310b22008-01-24 16:13:08 -05004060}
Chris Masond1310b22008-01-24 16:13:08 -05004061
Chris Masonffbd5172009-04-20 15:50:09 -04004062static void flush_epd_write_bio(struct extent_page_data *epd)
4063{
4064 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004065 int rw = WRITE;
4066 int ret;
4067
Chris Masonffbd5172009-04-20 15:50:09 -04004068 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04004069 rw = WRITE_SYNC;
4070
Josef Bacikde0022b2012-09-25 14:25:58 -04004071 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004072 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004073 epd->bio = NULL;
4074 }
4075}
4076
Chris Masond2c3f4f2008-11-19 12:44:22 -05004077static noinline void flush_write_bio(void *data)
4078{
4079 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004080 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004081}
4082
Chris Masond1310b22008-01-24 16:13:08 -05004083int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4084 get_extent_t *get_extent,
4085 struct writeback_control *wbc)
4086{
4087 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004088 struct extent_page_data epd = {
4089 .bio = NULL,
4090 .tree = tree,
4091 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004092 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004093 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004094 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004095 };
Chris Masond1310b22008-01-24 16:13:08 -05004096
Chris Masond1310b22008-01-24 16:13:08 -05004097 ret = __extent_writepage(page, wbc, &epd);
4098
Chris Masonffbd5172009-04-20 15:50:09 -04004099 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004100 return ret;
4101}
Chris Masond1310b22008-01-24 16:13:08 -05004102
Chris Mason771ed682008-11-06 22:02:51 -05004103int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4104 u64 start, u64 end, get_extent_t *get_extent,
4105 int mode)
4106{
4107 int ret = 0;
4108 struct address_space *mapping = inode->i_mapping;
4109 struct page *page;
4110 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
4111 PAGE_CACHE_SHIFT;
4112
4113 struct extent_page_data epd = {
4114 .bio = NULL,
4115 .tree = tree,
4116 .get_extent = get_extent,
4117 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004118 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004119 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004120 };
4121 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004122 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004123 .nr_to_write = nr_pages * 2,
4124 .range_start = start,
4125 .range_end = end + 1,
4126 };
4127
Chris Masond3977122009-01-05 21:25:51 -05004128 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05004129 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
4130 if (clear_page_dirty_for_io(page))
4131 ret = __extent_writepage(page, &wbc_writepages, &epd);
4132 else {
4133 if (tree->ops && tree->ops->writepage_end_io_hook)
4134 tree->ops->writepage_end_io_hook(page, start,
4135 start + PAGE_CACHE_SIZE - 1,
4136 NULL, 1);
4137 unlock_page(page);
4138 }
4139 page_cache_release(page);
4140 start += PAGE_CACHE_SIZE;
4141 }
4142
Chris Masonffbd5172009-04-20 15:50:09 -04004143 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004144 return ret;
4145}
Chris Masond1310b22008-01-24 16:13:08 -05004146
4147int extent_writepages(struct extent_io_tree *tree,
4148 struct address_space *mapping,
4149 get_extent_t *get_extent,
4150 struct writeback_control *wbc)
4151{
4152 int ret = 0;
4153 struct extent_page_data epd = {
4154 .bio = NULL,
4155 .tree = tree,
4156 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004157 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004158 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004159 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004160 };
4161
Chris Mason4bef0842008-09-08 11:18:08 -04004162 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004163 __extent_writepage, &epd,
4164 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004165 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004166 return ret;
4167}
Chris Masond1310b22008-01-24 16:13:08 -05004168
4169int extent_readpages(struct extent_io_tree *tree,
4170 struct address_space *mapping,
4171 struct list_head *pages, unsigned nr_pages,
4172 get_extent_t get_extent)
4173{
4174 struct bio *bio = NULL;
4175 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004176 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004177 struct page *pagepool[16];
4178 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004179 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004180 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004181 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004182
Chris Masond1310b22008-01-24 16:13:08 -05004183 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004184 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004185
4186 prefetchw(&page->flags);
4187 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004188 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004189 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004190 page_cache_release(page);
4191 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004192 }
Liu Bo67c96842012-07-20 21:43:09 -06004193
4194 pagepool[nr++] = page;
4195 if (nr < ARRAY_SIZE(pagepool))
4196 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004197 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004198 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004199 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004200 }
Miao Xie99740902013-07-25 19:22:36 +08004201 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004202 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Filipe Manana808f80b2015-09-28 09:56:26 +01004203 &bio, 0, &bio_flags, READ, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004204
Miao Xie125bac012013-07-25 19:22:37 +08004205 if (em_cached)
4206 free_extent_map(em_cached);
4207
Chris Masond1310b22008-01-24 16:13:08 -05004208 BUG_ON(!list_empty(pages));
4209 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004210 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004211 return 0;
4212}
Chris Masond1310b22008-01-24 16:13:08 -05004213
4214/*
4215 * basic invalidatepage code, this waits on any locked or writeback
4216 * ranges corresponding to the page, and then deletes any extent state
4217 * records from the tree
4218 */
4219int extent_invalidatepage(struct extent_io_tree *tree,
4220 struct page *page, unsigned long offset)
4221{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004222 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004223 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004224 u64 end = start + PAGE_CACHE_SIZE - 1;
4225 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4226
Qu Wenruofda28322013-02-26 08:10:22 +00004227 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004228 if (start > end)
4229 return 0;
4230
David Sterbaff13db42015-12-03 14:30:40 +01004231 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004232 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004233 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004234 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4235 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004236 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004237 return 0;
4238}
Chris Masond1310b22008-01-24 16:13:08 -05004239
4240/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004241 * a helper for releasepage, this tests for areas of the page that
4242 * are locked or under IO and drops the related state bits if it is safe
4243 * to drop the page.
4244 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004245static int try_release_extent_state(struct extent_map_tree *map,
4246 struct extent_io_tree *tree,
4247 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004248{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004249 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004250 u64 end = start + PAGE_CACHE_SIZE - 1;
4251 int ret = 1;
4252
Chris Mason211f90e2008-07-18 11:56:15 -04004253 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004254 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004255 ret = 0;
4256 else {
4257 if ((mask & GFP_NOFS) == GFP_NOFS)
4258 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004259 /*
4260 * at this point we can safely clear everything except the
4261 * locked bit and the nodatasum bit
4262 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004263 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004264 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4265 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004266
4267 /* if clear_extent_bit failed for enomem reasons,
4268 * we can't allow the release to continue.
4269 */
4270 if (ret < 0)
4271 ret = 0;
4272 else
4273 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004274 }
4275 return ret;
4276}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004277
4278/*
Chris Masond1310b22008-01-24 16:13:08 -05004279 * a helper for releasepage. As long as there are no locked extents
4280 * in the range corresponding to the page, both state records and extent
4281 * map records are removed
4282 */
4283int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004284 struct extent_io_tree *tree, struct page *page,
4285 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004286{
4287 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004288 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004289 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004290
Mel Gormand0164ad2015-11-06 16:28:21 -08004291 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004292 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004293 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004294 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004295 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004296 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004297 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004298 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004299 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004300 break;
4301 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004302 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4303 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004304 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004305 free_extent_map(em);
4306 break;
4307 }
4308 if (!test_range_bit(tree, em->start,
4309 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004310 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004311 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004312 remove_extent_mapping(map, em);
4313 /* once for the rb tree */
4314 free_extent_map(em);
4315 }
4316 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004317 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004318
4319 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004320 free_extent_map(em);
4321 }
Chris Masond1310b22008-01-24 16:13:08 -05004322 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004323 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004324}
Chris Masond1310b22008-01-24 16:13:08 -05004325
Chris Masonec29ed52011-02-23 16:23:20 -05004326/*
4327 * helper function for fiemap, which doesn't want to see any holes.
4328 * This maps until we find something past 'last'
4329 */
4330static struct extent_map *get_extent_skip_holes(struct inode *inode,
4331 u64 offset,
4332 u64 last,
4333 get_extent_t *get_extent)
4334{
4335 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4336 struct extent_map *em;
4337 u64 len;
4338
4339 if (offset >= last)
4340 return NULL;
4341
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304342 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004343 len = last - offset;
4344 if (len == 0)
4345 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004346 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004347 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004348 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004349 return em;
4350
4351 /* if this isn't a hole return it */
4352 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4353 em->block_start != EXTENT_MAP_HOLE) {
4354 return em;
4355 }
4356
4357 /* this is a hole, advance to the next extent */
4358 offset = extent_map_end(em);
4359 free_extent_map(em);
4360 if (offset >= last)
4361 break;
4362 }
4363 return NULL;
4364}
4365
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004366int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4367 __u64 start, __u64 len, get_extent_t *get_extent)
4368{
Josef Bacik975f84f2010-11-23 19:36:57 +00004369 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004370 u64 off = start;
4371 u64 max = start + len;
4372 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004373 u32 found_type;
4374 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004375 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004376 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004377 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004378 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004379 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004380 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004381 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004382 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004383 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004384 u64 em_start = 0;
4385 u64 em_len = 0;
4386 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004387
4388 if (len == 0)
4389 return -EINVAL;
4390
Josef Bacik975f84f2010-11-23 19:36:57 +00004391 path = btrfs_alloc_path();
4392 if (!path)
4393 return -ENOMEM;
4394 path->leave_spinning = 1;
4395
Qu Wenruo2c919432014-07-18 09:55:43 +08004396 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4397 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004398
Chris Masonec29ed52011-02-23 16:23:20 -05004399 /*
4400 * lookup the last file extent. We're not using i_size here
4401 * because there might be preallocation past i_size
4402 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004403 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4404 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004405 if (ret < 0) {
4406 btrfs_free_path(path);
4407 return ret;
4408 }
4409 WARN_ON(!ret);
4410 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004411 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004412 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004413
Chris Masonec29ed52011-02-23 16:23:20 -05004414 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004415 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004416 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004417 /* have to trust i_size as the end */
4418 last = (u64)-1;
4419 last_for_get_extent = isize;
4420 } else {
4421 /*
4422 * remember the start of the last extent. There are a
4423 * bunch of different factors that go into the length of the
4424 * extent, so its much less complex to remember where it started
4425 */
4426 last = found_key.offset;
4427 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004428 }
Liu Bofe09e162013-09-22 12:54:23 +08004429 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004430
Chris Masonec29ed52011-02-23 16:23:20 -05004431 /*
4432 * we might have some extents allocated but more delalloc past those
4433 * extents. so, we trust isize unless the start of the last extent is
4434 * beyond isize
4435 */
4436 if (last < isize) {
4437 last = (u64)-1;
4438 last_for_get_extent = isize;
4439 }
4440
David Sterbaff13db42015-12-03 14:30:40 +01004441 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004442 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004443
Josef Bacik4d479cf2011-11-17 11:34:31 -05004444 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004445 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004446 if (!em)
4447 goto out;
4448 if (IS_ERR(em)) {
4449 ret = PTR_ERR(em);
4450 goto out;
4451 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004452
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004453 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004454 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004455
Chris Masonea8efc72011-03-08 11:54:40 -05004456 /* break if the extent we found is outside the range */
4457 if (em->start >= max || extent_map_end(em) < off)
4458 break;
4459
4460 /*
4461 * get_extent may return an extent that starts before our
4462 * requested range. We have to make sure the ranges
4463 * we return to fiemap always move forward and don't
4464 * overlap, so adjust the offsets here
4465 */
4466 em_start = max(em->start, off);
4467
4468 /*
4469 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004470 * for adjusting the disk offset below. Only do this if the
4471 * extent isn't compressed since our in ram offset may be past
4472 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004473 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004474 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4475 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004476 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004477 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004478 disko = 0;
4479 flags = 0;
4480
Chris Masonea8efc72011-03-08 11:54:40 -05004481 /*
4482 * bump off for our next call to get_extent
4483 */
4484 off = extent_map_end(em);
4485 if (off >= max)
4486 end = 1;
4487
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004488 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004489 end = 1;
4490 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004491 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004492 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4493 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004494 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004495 flags |= (FIEMAP_EXTENT_DELALLOC |
4496 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004497 } else if (fieinfo->fi_extents_max) {
4498 u64 bytenr = em->block_start -
4499 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004500
Chris Masonea8efc72011-03-08 11:54:40 -05004501 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004502
4503 /*
4504 * As btrfs supports shared space, this information
4505 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004506 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4507 * then we're just getting a count and we can skip the
4508 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004509 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004510 ret = btrfs_check_shared(NULL, root->fs_info,
4511 root->objectid,
4512 btrfs_ino(inode), bytenr);
4513 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004514 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004515 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004516 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004517 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004518 }
4519 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4520 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004521 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4522 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004523
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004524 free_extent_map(em);
4525 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004526 if ((em_start >= last) || em_len == (u64)-1 ||
4527 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004528 flags |= FIEMAP_EXTENT_LAST;
4529 end = 1;
4530 }
4531
Chris Masonec29ed52011-02-23 16:23:20 -05004532 /* now scan forward to see if this is really the last extent. */
4533 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4534 get_extent);
4535 if (IS_ERR(em)) {
4536 ret = PTR_ERR(em);
4537 goto out;
4538 }
4539 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004540 flags |= FIEMAP_EXTENT_LAST;
4541 end = 1;
4542 }
Chris Masonec29ed52011-02-23 16:23:20 -05004543 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4544 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004545 if (ret) {
4546 if (ret == 1)
4547 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004548 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004549 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004550 }
4551out_free:
4552 free_extent_map(em);
4553out:
Liu Bofe09e162013-09-22 12:54:23 +08004554 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004555 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004556 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004557 return ret;
4558}
4559
Chris Mason727011e2010-08-06 13:21:20 -04004560static void __free_extent_buffer(struct extent_buffer *eb)
4561{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004562 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004563 kmem_cache_free(extent_buffer_cache, eb);
4564}
4565
Josef Bacika26e8c92014-03-28 17:07:27 -04004566int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004567{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004568 return (atomic_read(&eb->io_pages) ||
4569 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4570 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004571}
4572
Miao Xie897ca6e2010-10-26 20:57:29 -04004573/*
4574 * Helper for releasing extent buffer page.
4575 */
David Sterbaa50924e2014-07-31 00:51:36 +02004576static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e2010-10-26 20:57:29 -04004577{
4578 unsigned long index;
4579 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004580 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004581
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004582 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004583
David Sterbaa50924e2014-07-31 00:51:36 +02004584 index = num_extent_pages(eb->start, eb->len);
4585 if (index == 0)
Miao Xie897ca6e2010-10-26 20:57:29 -04004586 return;
4587
4588 do {
4589 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004590 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004591 if (!page)
4592 continue;
4593 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004594 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004595 /*
4596 * We do this since we'll remove the pages after we've
4597 * removed the eb from the radix tree, so we could race
4598 * and have this page now attached to the new eb. So
4599 * only clear page_private if it's still connected to
4600 * this eb.
4601 */
4602 if (PagePrivate(page) &&
4603 page->private == (unsigned long)eb) {
4604 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4605 BUG_ON(PageDirty(page));
4606 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004607 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004608 * We need to make sure we haven't be attached
4609 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004610 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004611 ClearPagePrivate(page);
4612 set_page_private(page, 0);
4613 /* One for the page private */
Miao Xie897ca6e2010-10-26 20:57:29 -04004614 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004615 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004616
4617 if (mapped)
4618 spin_unlock(&page->mapping->private_lock);
4619
4620 /* One for when we alloced the page */
4621 page_cache_release(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004622 } while (index != 0);
Miao Xie897ca6e2010-10-26 20:57:29 -04004623}
4624
4625/*
4626 * Helper for releasing the extent buffer.
4627 */
4628static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4629{
David Sterbaa50924e2014-07-31 00:51:36 +02004630 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e2010-10-26 20:57:29 -04004631 __free_extent_buffer(eb);
4632}
4633
Josef Bacikf28491e2013-12-16 13:24:27 -05004634static struct extent_buffer *
4635__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004636 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004637{
4638 struct extent_buffer *eb = NULL;
4639
Michal Hockod1b5c562015-08-19 14:17:40 +02004640 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004641 eb->start = start;
4642 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004643 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004644 eb->bflags = 0;
4645 rwlock_init(&eb->lock);
4646 atomic_set(&eb->write_locks, 0);
4647 atomic_set(&eb->read_locks, 0);
4648 atomic_set(&eb->blocking_readers, 0);
4649 atomic_set(&eb->blocking_writers, 0);
4650 atomic_set(&eb->spinning_readers, 0);
4651 atomic_set(&eb->spinning_writers, 0);
4652 eb->lock_nested = 0;
4653 init_waitqueue_head(&eb->write_lock_wq);
4654 init_waitqueue_head(&eb->read_lock_wq);
4655
4656 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4657
4658 spin_lock_init(&eb->refs_lock);
4659 atomic_set(&eb->refs, 1);
4660 atomic_set(&eb->io_pages, 0);
4661
4662 /*
4663 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4664 */
4665 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4666 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4667 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4668
4669 return eb;
4670}
4671
4672struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4673{
4674 unsigned long i;
4675 struct page *p;
4676 struct extent_buffer *new;
4677 unsigned long num_pages = num_extent_pages(src->start, src->len);
4678
David Sterba3f556f72014-06-15 03:20:26 +02004679 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004680 if (new == NULL)
4681 return NULL;
4682
4683 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004684 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004685 if (!p) {
4686 btrfs_release_extent_buffer(new);
4687 return NULL;
4688 }
4689 attach_extent_buffer_page(new, p);
4690 WARN_ON(PageDirty(p));
4691 SetPageUptodate(p);
4692 new->pages[i] = p;
4693 }
4694
4695 copy_extent_buffer(new, src, 0, 0, src->len);
4696 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4697 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4698
4699 return new;
4700}
4701
Omar Sandoval0f331222015-09-29 20:50:31 -07004702struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4703 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004704{
4705 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004706 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004707 unsigned long i;
4708
Omar Sandoval0f331222015-09-29 20:50:31 -07004709 num_pages = num_extent_pages(start, len);
David Sterba3f556f72014-06-15 03:20:26 +02004710
4711 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004712 if (!eb)
4713 return NULL;
4714
4715 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004716 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004717 if (!eb->pages[i])
4718 goto err;
4719 }
4720 set_extent_buffer_uptodate(eb);
4721 btrfs_set_header_nritems(eb, 0);
4722 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4723
4724 return eb;
4725err:
4726 for (; i > 0; i--)
4727 __free_page(eb->pages[i - 1]);
4728 __free_extent_buffer(eb);
4729 return NULL;
4730}
4731
Omar Sandoval0f331222015-09-29 20:50:31 -07004732struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4733 u64 start)
4734{
4735 unsigned long len;
4736
4737 if (!fs_info) {
4738 /*
4739 * Called only from tests that don't always have a fs_info
4740 * available, but we know that nodesize is 4096
4741 */
4742 len = 4096;
4743 } else {
4744 len = fs_info->tree_root->nodesize;
4745 }
4746
4747 return __alloc_dummy_extent_buffer(fs_info, start, len);
4748}
4749
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004750static void check_buffer_tree_ref(struct extent_buffer *eb)
4751{
Chris Mason242e18c2013-01-29 17:49:37 -05004752 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004753 /* the ref bit is tricky. We have to make sure it is set
4754 * if we have the buffer dirty. Otherwise the
4755 * code to free a buffer can end up dropping a dirty
4756 * page
4757 *
4758 * Once the ref bit is set, it won't go away while the
4759 * buffer is dirty or in writeback, and it also won't
4760 * go away while we have the reference count on the
4761 * eb bumped.
4762 *
4763 * We can't just set the ref bit without bumping the
4764 * ref on the eb because free_extent_buffer might
4765 * see the ref bit and try to clear it. If this happens
4766 * free_extent_buffer might end up dropping our original
4767 * ref by mistake and freeing the page before we are able
4768 * to add one more ref.
4769 *
4770 * So bump the ref count first, then set the bit. If someone
4771 * beat us to it, drop the ref we added.
4772 */
Chris Mason242e18c2013-01-29 17:49:37 -05004773 refs = atomic_read(&eb->refs);
4774 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4775 return;
4776
Josef Bacik594831c2012-07-20 16:11:08 -04004777 spin_lock(&eb->refs_lock);
4778 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004779 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004780 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004781}
4782
Mel Gorman2457aec2014-06-04 16:10:31 -07004783static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4784 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004785{
4786 unsigned long num_pages, i;
4787
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004788 check_buffer_tree_ref(eb);
4789
Josef Bacik5df42352012-03-15 18:24:42 -04004790 num_pages = num_extent_pages(eb->start, eb->len);
4791 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004792 struct page *p = eb->pages[i];
4793
Mel Gorman2457aec2014-06-04 16:10:31 -07004794 if (p != accessed)
4795 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004796 }
4797}
4798
Josef Bacikf28491e2013-12-16 13:24:27 -05004799struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4800 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004801{
4802 struct extent_buffer *eb;
4803
4804 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004805 eb = radix_tree_lookup(&fs_info->buffer_radix,
4806 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004807 if (eb && atomic_inc_not_zero(&eb->refs)) {
4808 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004809 /*
4810 * Lock our eb's refs_lock to avoid races with
4811 * free_extent_buffer. When we get our eb it might be flagged
4812 * with EXTENT_BUFFER_STALE and another task running
4813 * free_extent_buffer might have seen that flag set,
4814 * eb->refs == 2, that the buffer isn't under IO (dirty and
4815 * writeback flags not set) and it's still in the tree (flag
4816 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4817 * of decrementing the extent buffer's reference count twice.
4818 * So here we could race and increment the eb's reference count,
4819 * clear its stale flag, mark it as dirty and drop our reference
4820 * before the other task finishes executing free_extent_buffer,
4821 * which would later result in an attempt to free an extent
4822 * buffer that is dirty.
4823 */
4824 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4825 spin_lock(&eb->refs_lock);
4826 spin_unlock(&eb->refs_lock);
4827 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004828 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004829 return eb;
4830 }
4831 rcu_read_unlock();
4832
4833 return NULL;
4834}
4835
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004836#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4837struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004838 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004839{
4840 struct extent_buffer *eb, *exists = NULL;
4841 int ret;
4842
4843 eb = find_extent_buffer(fs_info, start);
4844 if (eb)
4845 return eb;
David Sterba3f556f72014-06-15 03:20:26 +02004846 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004847 if (!eb)
4848 return NULL;
4849 eb->fs_info = fs_info;
4850again:
4851 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4852 if (ret)
4853 goto free_eb;
4854 spin_lock(&fs_info->buffer_lock);
4855 ret = radix_tree_insert(&fs_info->buffer_radix,
4856 start >> PAGE_CACHE_SHIFT, eb);
4857 spin_unlock(&fs_info->buffer_lock);
4858 radix_tree_preload_end();
4859 if (ret == -EEXIST) {
4860 exists = find_extent_buffer(fs_info, start);
4861 if (exists)
4862 goto free_eb;
4863 else
4864 goto again;
4865 }
4866 check_buffer_tree_ref(eb);
4867 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4868
4869 /*
4870 * We will free dummy extent buffer's if they come into
4871 * free_extent_buffer with a ref count of 2, but if we are using this we
4872 * want the buffers to stay in memory until we're done with them, so
4873 * bump the ref count again.
4874 */
4875 atomic_inc(&eb->refs);
4876 return eb;
4877free_eb:
4878 btrfs_release_extent_buffer(eb);
4879 return exists;
4880}
4881#endif
4882
Josef Bacikf28491e2013-12-16 13:24:27 -05004883struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004884 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004885{
David Sterbace3e6982014-06-15 03:00:04 +02004886 unsigned long len = fs_info->tree_root->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004887 unsigned long num_pages = num_extent_pages(start, len);
4888 unsigned long i;
4889 unsigned long index = start >> PAGE_CACHE_SHIFT;
4890 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004891 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004892 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004893 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004894 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004895 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004896
Josef Bacikf28491e2013-12-16 13:24:27 -05004897 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004898 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004899 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004900
David Sterba23d79d82014-06-15 02:55:29 +02004901 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004902 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004903 return NULL;
4904
Chris Mason727011e2010-08-06 13:21:20 -04004905 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004906 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Josef Bacik4804b382012-10-05 16:43:45 -04004907 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004908 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004909
4910 spin_lock(&mapping->private_lock);
4911 if (PagePrivate(p)) {
4912 /*
4913 * We could have already allocated an eb for this page
4914 * and attached one so lets see if we can get a ref on
4915 * the existing eb, and if we can we know it's good and
4916 * we can just return that one, else we know we can just
4917 * overwrite page->private.
4918 */
4919 exists = (struct extent_buffer *)p->private;
4920 if (atomic_inc_not_zero(&exists->refs)) {
4921 spin_unlock(&mapping->private_lock);
4922 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004923 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004924 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004925 goto free_eb;
4926 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004927 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004928
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004929 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004930 * Do this so attach doesn't complain and we need to
4931 * drop the ref the old guy had.
4932 */
4933 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004934 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004935 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004936 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004937 attach_extent_buffer_page(eb, p);
4938 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004939 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004940 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004941 if (!PageUptodate(p))
4942 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004943
4944 /*
4945 * see below about how we avoid a nasty race with release page
4946 * and why we unlock later
4947 */
Chris Masond1310b22008-01-24 16:13:08 -05004948 }
4949 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004950 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004951again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004952 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4953 if (ret)
4954 goto free_eb;
4955
Josef Bacikf28491e2013-12-16 13:24:27 -05004956 spin_lock(&fs_info->buffer_lock);
4957 ret = radix_tree_insert(&fs_info->buffer_radix,
4958 start >> PAGE_CACHE_SHIFT, eb);
4959 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004960 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004961 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004962 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004963 if (exists)
4964 goto free_eb;
4965 else
Josef Bacik115391d2012-03-09 09:51:43 -05004966 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004967 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004968 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004969 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004970 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004971
4972 /*
4973 * there is a race where release page may have
4974 * tried to find this extent buffer in the radix
4975 * but failed. It will tell the VM it is safe to
4976 * reclaim the, and it will clear the page private bit.
4977 * We must make sure to set the page private bit properly
4978 * after the extent buffer is in the radix tree so
4979 * it doesn't get lost
4980 */
Chris Mason727011e2010-08-06 13:21:20 -04004981 SetPageChecked(eb->pages[0]);
4982 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004983 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04004984 ClearPageChecked(p);
4985 unlock_page(p);
4986 }
4987 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004988 return eb;
4989
Chris Mason6af118ce2008-07-22 11:18:07 -04004990free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004991 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04004992 for (i = 0; i < num_pages; i++) {
4993 if (eb->pages[i])
4994 unlock_page(eb->pages[i]);
4995 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004996
Miao Xie897ca6e2010-10-26 20:57:29 -04004997 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004998 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004999}
Chris Masond1310b22008-01-24 16:13:08 -05005000
Josef Bacik3083ee22012-03-09 16:01:49 -05005001static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5002{
5003 struct extent_buffer *eb =
5004 container_of(head, struct extent_buffer, rcu_head);
5005
5006 __free_extent_buffer(eb);
5007}
5008
Josef Bacik3083ee22012-03-09 16:01:49 -05005009/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005010static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005011{
5012 WARN_ON(atomic_read(&eb->refs) == 0);
5013 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005014 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005015 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005016
Jan Schmidt815a51c2012-05-16 17:00:02 +02005017 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005018
Josef Bacikf28491e2013-12-16 13:24:27 -05005019 spin_lock(&fs_info->buffer_lock);
5020 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02005021 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005022 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005023 } else {
5024 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005025 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005026
5027 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005028 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005029#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5030 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5031 __free_extent_buffer(eb);
5032 return 1;
5033 }
5034#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005035 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005036 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005037 }
5038 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005039
5040 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005041}
5042
Chris Masond1310b22008-01-24 16:13:08 -05005043void free_extent_buffer(struct extent_buffer *eb)
5044{
Chris Mason242e18c2013-01-29 17:49:37 -05005045 int refs;
5046 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005047 if (!eb)
5048 return;
5049
Chris Mason242e18c2013-01-29 17:49:37 -05005050 while (1) {
5051 refs = atomic_read(&eb->refs);
5052 if (refs <= 3)
5053 break;
5054 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5055 if (old == refs)
5056 return;
5057 }
5058
Josef Bacik3083ee22012-03-09 16:01:49 -05005059 spin_lock(&eb->refs_lock);
5060 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005061 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5062 atomic_dec(&eb->refs);
5063
5064 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005065 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005066 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005067 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5068 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005069
Josef Bacik3083ee22012-03-09 16:01:49 -05005070 /*
5071 * I know this is terrible, but it's temporary until we stop tracking
5072 * the uptodate bits and such for the extent buffers.
5073 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005074 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005075}
Chris Masond1310b22008-01-24 16:13:08 -05005076
Josef Bacik3083ee22012-03-09 16:01:49 -05005077void free_extent_buffer_stale(struct extent_buffer *eb)
5078{
5079 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005080 return;
5081
Josef Bacik3083ee22012-03-09 16:01:49 -05005082 spin_lock(&eb->refs_lock);
5083 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5084
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005085 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005086 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5087 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005088 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005089}
5090
Chris Mason1d4284b2012-03-28 20:31:37 -04005091void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005092{
Chris Masond1310b22008-01-24 16:13:08 -05005093 unsigned long i;
5094 unsigned long num_pages;
5095 struct page *page;
5096
Chris Masond1310b22008-01-24 16:13:08 -05005097 num_pages = num_extent_pages(eb->start, eb->len);
5098
5099 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005100 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005101 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005102 continue;
5103
Chris Masona61e6f22008-07-22 11:18:08 -04005104 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005105 WARN_ON(!PagePrivate(page));
5106
Chris Masond1310b22008-01-24 16:13:08 -05005107 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005108 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005109 if (!PageDirty(page)) {
5110 radix_tree_tag_clear(&page->mapping->page_tree,
5111 page_index(page),
5112 PAGECACHE_TAG_DIRTY);
5113 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005114 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005115 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005116 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005117 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005118 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005119}
Chris Masond1310b22008-01-24 16:13:08 -05005120
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005121int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005122{
5123 unsigned long i;
5124 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005125 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005126
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005127 check_buffer_tree_ref(eb);
5128
Chris Masonb9473432009-03-13 11:00:37 -04005129 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005130
Chris Masond1310b22008-01-24 16:13:08 -05005131 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005132 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005133 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5134
Chris Masonb9473432009-03-13 11:00:37 -04005135 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005136 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005137 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005138}
Chris Masond1310b22008-01-24 16:13:08 -05005139
David Sterba69ba3922015-12-03 13:08:59 +01005140void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005141{
5142 unsigned long i;
5143 struct page *page;
5144 unsigned long num_pages;
5145
Chris Masonb4ce94d2009-02-04 09:25:08 -05005146 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005147 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005148 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005149 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005150 if (page)
5151 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005152 }
Chris Mason1259ab72008-05-12 13:39:03 -04005153}
5154
David Sterba09c25a82015-12-03 13:08:59 +01005155void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005156{
5157 unsigned long i;
5158 struct page *page;
5159 unsigned long num_pages;
5160
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005161 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005162 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005163 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005164 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005165 SetPageUptodate(page);
5166 }
Chris Masond1310b22008-01-24 16:13:08 -05005167}
Chris Masond1310b22008-01-24 16:13:08 -05005168
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005169int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005170{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005171 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005172}
Chris Masond1310b22008-01-24 16:13:08 -05005173
5174int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02005175 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005176 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005177{
5178 unsigned long i;
5179 unsigned long start_i;
5180 struct page *page;
5181 int err;
5182 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005183 int locked_pages = 0;
5184 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005185 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005186 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005187 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005188 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005189
Chris Masonb4ce94d2009-02-04 09:25:08 -05005190 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005191 return 0;
5192
Chris Masond1310b22008-01-24 16:13:08 -05005193 if (start) {
5194 WARN_ON(start < eb->start);
5195 start_i = (start >> PAGE_CACHE_SHIFT) -
5196 (eb->start >> PAGE_CACHE_SHIFT);
5197 } else {
5198 start_i = 0;
5199 }
5200
5201 num_pages = num_extent_pages(eb->start, eb->len);
5202 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005203 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005204 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005205 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005206 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005207 } else {
5208 lock_page(page);
5209 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005210 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005211 if (!PageUptodate(page)) {
5212 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005213 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005214 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005215 }
5216 if (all_uptodate) {
5217 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005218 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005219 goto unlock_exit;
5220 }
5221
Filipe Manana656f30d2014-09-26 12:25:56 +01005222 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005223 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005224 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005225 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005226 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005227 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005228 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005229 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005230 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005231 mirror_num, &bio_flags,
5232 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005233 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005234 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005235 } else {
5236 unlock_page(page);
5237 }
5238 }
5239
Jeff Mahoney355808c2011-10-03 23:23:14 -04005240 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005241 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5242 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005243 if (err)
5244 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005245 }
Chris Masona86c12c2008-02-07 10:50:54 -05005246
Arne Jansenbb82ab82011-06-10 14:06:53 +02005247 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005248 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005249
Chris Masond1310b22008-01-24 16:13:08 -05005250 for (i = start_i; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005251 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005252 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005253 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005254 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005255 }
Chris Masond3977122009-01-05 21:25:51 -05005256
Chris Masond1310b22008-01-24 16:13:08 -05005257 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005258
5259unlock_exit:
5260 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005261 while (locked_pages > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005262 page = eb->pages[i];
Chris Masonce9adaa2008-04-09 16:28:12 -04005263 i++;
5264 unlock_page(page);
5265 locked_pages--;
5266 }
5267 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005268}
Chris Masond1310b22008-01-24 16:13:08 -05005269
5270void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5271 unsigned long start,
5272 unsigned long len)
5273{
5274 size_t cur;
5275 size_t offset;
5276 struct page *page;
5277 char *kaddr;
5278 char *dst = (char *)dstv;
5279 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5280 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005281
5282 WARN_ON(start > eb->len);
5283 WARN_ON(start + len > eb->start + eb->len);
5284
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005285 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005286
Chris Masond3977122009-01-05 21:25:51 -05005287 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005288 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005289
5290 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005291 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005292 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005293
5294 dst += cur;
5295 len -= cur;
5296 offset = 0;
5297 i++;
5298 }
5299}
Chris Masond1310b22008-01-24 16:13:08 -05005300
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005301int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5302 unsigned long start,
5303 unsigned long len)
5304{
5305 size_t cur;
5306 size_t offset;
5307 struct page *page;
5308 char *kaddr;
5309 char __user *dst = (char __user *)dstv;
5310 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5311 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5312 int ret = 0;
5313
5314 WARN_ON(start > eb->len);
5315 WARN_ON(start + len > eb->start + eb->len);
5316
5317 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5318
5319 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005320 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005321
5322 cur = min(len, (PAGE_CACHE_SIZE - offset));
5323 kaddr = page_address(page);
5324 if (copy_to_user(dst, kaddr + offset, cur)) {
5325 ret = -EFAULT;
5326 break;
5327 }
5328
5329 dst += cur;
5330 len -= cur;
5331 offset = 0;
5332 i++;
5333 }
5334
5335 return ret;
5336}
5337
Chris Masond1310b22008-01-24 16:13:08 -05005338int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005339 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005340 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005341 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005342{
5343 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5344 char *kaddr;
5345 struct page *p;
5346 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5347 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5348 unsigned long end_i = (start_offset + start + min_len - 1) >>
5349 PAGE_CACHE_SHIFT;
5350
5351 if (i != end_i)
5352 return -EINVAL;
5353
5354 if (i == 0) {
5355 offset = start_offset;
5356 *map_start = 0;
5357 } else {
5358 offset = 0;
5359 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5360 }
Chris Masond3977122009-01-05 21:25:51 -05005361
Chris Masond1310b22008-01-24 16:13:08 -05005362 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005363 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005364 "wanted %lu %lu\n",
5365 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005366 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005367 }
5368
David Sterbafb85fc92014-07-31 01:03:53 +02005369 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005370 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005371 *map = kaddr + offset;
5372 *map_len = PAGE_CACHE_SIZE - offset;
5373 return 0;
5374}
Chris Masond1310b22008-01-24 16:13:08 -05005375
Chris Masond1310b22008-01-24 16:13:08 -05005376int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5377 unsigned long start,
5378 unsigned long len)
5379{
5380 size_t cur;
5381 size_t offset;
5382 struct page *page;
5383 char *kaddr;
5384 char *ptr = (char *)ptrv;
5385 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5386 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5387 int ret = 0;
5388
5389 WARN_ON(start > eb->len);
5390 WARN_ON(start + len > eb->start + eb->len);
5391
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005392 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005393
Chris Masond3977122009-01-05 21:25:51 -05005394 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005395 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005396
5397 cur = min(len, (PAGE_CACHE_SIZE - offset));
5398
Chris Masona6591712011-07-19 12:04:14 -04005399 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005400 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005401 if (ret)
5402 break;
5403
5404 ptr += cur;
5405 len -= cur;
5406 offset = 0;
5407 i++;
5408 }
5409 return ret;
5410}
Chris Masond1310b22008-01-24 16:13:08 -05005411
5412void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5413 unsigned long start, unsigned long len)
5414{
5415 size_t cur;
5416 size_t offset;
5417 struct page *page;
5418 char *kaddr;
5419 char *src = (char *)srcv;
5420 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5421 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5422
5423 WARN_ON(start > eb->len);
5424 WARN_ON(start + len > eb->start + eb->len);
5425
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005426 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005427
Chris Masond3977122009-01-05 21:25:51 -05005428 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005429 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005430 WARN_ON(!PageUptodate(page));
5431
5432 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005433 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005434 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005435
5436 src += cur;
5437 len -= cur;
5438 offset = 0;
5439 i++;
5440 }
5441}
Chris Masond1310b22008-01-24 16:13:08 -05005442
5443void memset_extent_buffer(struct extent_buffer *eb, char c,
5444 unsigned long start, unsigned long len)
5445{
5446 size_t cur;
5447 size_t offset;
5448 struct page *page;
5449 char *kaddr;
5450 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5451 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5452
5453 WARN_ON(start > eb->len);
5454 WARN_ON(start + len > eb->start + eb->len);
5455
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005456 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005457
Chris Masond3977122009-01-05 21:25:51 -05005458 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005459 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005460 WARN_ON(!PageUptodate(page));
5461
5462 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005463 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005464 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005465
5466 len -= cur;
5467 offset = 0;
5468 i++;
5469 }
5470}
Chris Masond1310b22008-01-24 16:13:08 -05005471
5472void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5473 unsigned long dst_offset, unsigned long src_offset,
5474 unsigned long len)
5475{
5476 u64 dst_len = dst->len;
5477 size_t cur;
5478 size_t offset;
5479 struct page *page;
5480 char *kaddr;
5481 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5482 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5483
5484 WARN_ON(src->len != dst_len);
5485
5486 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005487 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005488
Chris Masond3977122009-01-05 21:25:51 -05005489 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005490 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005491 WARN_ON(!PageUptodate(page));
5492
5493 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5494
Chris Masona6591712011-07-19 12:04:14 -04005495 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005496 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005497
5498 src_offset += cur;
5499 len -= cur;
5500 offset = 0;
5501 i++;
5502 }
5503}
Chris Masond1310b22008-01-24 16:13:08 -05005504
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005505/*
5506 * The extent buffer bitmap operations are done with byte granularity because
5507 * bitmap items are not guaranteed to be aligned to a word and therefore a
5508 * single word in a bitmap may straddle two pages in the extent buffer.
5509 */
5510#define BIT_BYTE(nr) ((nr) / BITS_PER_BYTE)
5511#define BYTE_MASK ((1 << BITS_PER_BYTE) - 1)
5512#define BITMAP_FIRST_BYTE_MASK(start) \
5513 ((BYTE_MASK << ((start) & (BITS_PER_BYTE - 1))) & BYTE_MASK)
5514#define BITMAP_LAST_BYTE_MASK(nbits) \
5515 (BYTE_MASK >> (-(nbits) & (BITS_PER_BYTE - 1)))
5516
5517/*
5518 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5519 * given bit number
5520 * @eb: the extent buffer
5521 * @start: offset of the bitmap item in the extent buffer
5522 * @nr: bit number
5523 * @page_index: return index of the page in the extent buffer that contains the
5524 * given bit number
5525 * @page_offset: return offset into the page given by page_index
5526 *
5527 * This helper hides the ugliness of finding the byte in an extent buffer which
5528 * contains a given bit.
5529 */
5530static inline void eb_bitmap_offset(struct extent_buffer *eb,
5531 unsigned long start, unsigned long nr,
5532 unsigned long *page_index,
5533 size_t *page_offset)
5534{
5535 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5536 size_t byte_offset = BIT_BYTE(nr);
5537 size_t offset;
5538
5539 /*
5540 * The byte we want is the offset of the extent buffer + the offset of
5541 * the bitmap item in the extent buffer + the offset of the byte in the
5542 * bitmap item.
5543 */
5544 offset = start_offset + start + byte_offset;
5545
5546 *page_index = offset >> PAGE_CACHE_SHIFT;
5547 *page_offset = offset & (PAGE_CACHE_SIZE - 1);
5548}
5549
5550/**
5551 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5552 * @eb: the extent buffer
5553 * @start: offset of the bitmap item in the extent buffer
5554 * @nr: bit number to test
5555 */
5556int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5557 unsigned long nr)
5558{
5559 char *kaddr;
5560 struct page *page;
5561 unsigned long i;
5562 size_t offset;
5563
5564 eb_bitmap_offset(eb, start, nr, &i, &offset);
5565 page = eb->pages[i];
5566 WARN_ON(!PageUptodate(page));
5567 kaddr = page_address(page);
5568 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5569}
5570
5571/**
5572 * extent_buffer_bitmap_set - set an area of a bitmap
5573 * @eb: the extent buffer
5574 * @start: offset of the bitmap item in the extent buffer
5575 * @pos: bit number of the first bit
5576 * @len: number of bits to set
5577 */
5578void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5579 unsigned long pos, unsigned long len)
5580{
5581 char *kaddr;
5582 struct page *page;
5583 unsigned long i;
5584 size_t offset;
5585 const unsigned int size = pos + len;
5586 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
5587 unsigned int mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
5588
5589 eb_bitmap_offset(eb, start, pos, &i, &offset);
5590 page = eb->pages[i];
5591 WARN_ON(!PageUptodate(page));
5592 kaddr = page_address(page);
5593
5594 while (len >= bits_to_set) {
5595 kaddr[offset] |= mask_to_set;
5596 len -= bits_to_set;
5597 bits_to_set = BITS_PER_BYTE;
5598 mask_to_set = ~0U;
5599 if (++offset >= PAGE_CACHE_SIZE && len > 0) {
5600 offset = 0;
5601 page = eb->pages[++i];
5602 WARN_ON(!PageUptodate(page));
5603 kaddr = page_address(page);
5604 }
5605 }
5606 if (len) {
5607 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5608 kaddr[offset] |= mask_to_set;
5609 }
5610}
5611
5612
5613/**
5614 * extent_buffer_bitmap_clear - clear an area of a bitmap
5615 * @eb: the extent buffer
5616 * @start: offset of the bitmap item in the extent buffer
5617 * @pos: bit number of the first bit
5618 * @len: number of bits to clear
5619 */
5620void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5621 unsigned long pos, unsigned long len)
5622{
5623 char *kaddr;
5624 struct page *page;
5625 unsigned long i;
5626 size_t offset;
5627 const unsigned int size = pos + len;
5628 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
5629 unsigned int mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
5630
5631 eb_bitmap_offset(eb, start, pos, &i, &offset);
5632 page = eb->pages[i];
5633 WARN_ON(!PageUptodate(page));
5634 kaddr = page_address(page);
5635
5636 while (len >= bits_to_clear) {
5637 kaddr[offset] &= ~mask_to_clear;
5638 len -= bits_to_clear;
5639 bits_to_clear = BITS_PER_BYTE;
5640 mask_to_clear = ~0U;
5641 if (++offset >= PAGE_CACHE_SIZE && len > 0) {
5642 offset = 0;
5643 page = eb->pages[++i];
5644 WARN_ON(!PageUptodate(page));
5645 kaddr = page_address(page);
5646 }
5647 }
5648 if (len) {
5649 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5650 kaddr[offset] &= ~mask_to_clear;
5651 }
5652}
5653
Sergei Trofimovich33872062011-04-11 21:52:52 +00005654static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5655{
5656 unsigned long distance = (src > dst) ? src - dst : dst - src;
5657 return distance < len;
5658}
5659
Chris Masond1310b22008-01-24 16:13:08 -05005660static void copy_pages(struct page *dst_page, struct page *src_page,
5661 unsigned long dst_off, unsigned long src_off,
5662 unsigned long len)
5663{
Chris Masona6591712011-07-19 12:04:14 -04005664 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005665 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005666 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005667
Sergei Trofimovich33872062011-04-11 21:52:52 +00005668 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005669 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005670 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005671 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005672 if (areas_overlap(src_off, dst_off, len))
5673 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005674 }
Chris Masond1310b22008-01-24 16:13:08 -05005675
Chris Mason727011e2010-08-06 13:21:20 -04005676 if (must_memmove)
5677 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5678 else
5679 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005680}
5681
5682void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5683 unsigned long src_offset, unsigned long len)
5684{
5685 size_t cur;
5686 size_t dst_off_in_page;
5687 size_t src_off_in_page;
5688 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5689 unsigned long dst_i;
5690 unsigned long src_i;
5691
5692 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005693 btrfs_err(dst->fs_info,
5694 "memmove bogus src_offset %lu move "
5695 "len %lu dst len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005696 BUG_ON(1);
5697 }
5698 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005699 btrfs_err(dst->fs_info,
5700 "memmove bogus dst_offset %lu move "
5701 "len %lu dst len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005702 BUG_ON(1);
5703 }
5704
Chris Masond3977122009-01-05 21:25:51 -05005705 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005706 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005707 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005708 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005709 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005710
5711 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5712 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5713
5714 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5715 src_off_in_page));
5716 cur = min_t(unsigned long, cur,
5717 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5718
David Sterbafb85fc92014-07-31 01:03:53 +02005719 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005720 dst_off_in_page, src_off_in_page, cur);
5721
5722 src_offset += cur;
5723 dst_offset += cur;
5724 len -= cur;
5725 }
5726}
Chris Masond1310b22008-01-24 16:13:08 -05005727
5728void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5729 unsigned long src_offset, unsigned long len)
5730{
5731 size_t cur;
5732 size_t dst_off_in_page;
5733 size_t src_off_in_page;
5734 unsigned long dst_end = dst_offset + len - 1;
5735 unsigned long src_end = src_offset + len - 1;
5736 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5737 unsigned long dst_i;
5738 unsigned long src_i;
5739
5740 if (src_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005741 btrfs_err(dst->fs_info, "memmove bogus src_offset %lu move "
5742 "len %lu len %lu", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005743 BUG_ON(1);
5744 }
5745 if (dst_offset + len > dst->len) {
David Sterbaf14d1042015-10-08 11:37:06 +02005746 btrfs_err(dst->fs_info, "memmove bogus dst_offset %lu move "
5747 "len %lu len %lu", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005748 BUG_ON(1);
5749 }
Chris Mason727011e2010-08-06 13:21:20 -04005750 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005751 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5752 return;
5753 }
Chris Masond3977122009-01-05 21:25:51 -05005754 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005755 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5756 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5757
5758 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005759 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005760 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005761 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005762
5763 cur = min_t(unsigned long, len, src_off_in_page + 1);
5764 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005765 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005766 dst_off_in_page - cur + 1,
5767 src_off_in_page - cur + 1, cur);
5768
5769 dst_end -= cur;
5770 src_end -= cur;
5771 len -= cur;
5772 }
5773}
Chris Mason6af118ce2008-07-22 11:18:07 -04005774
David Sterbaf7a52a42013-04-26 14:56:29 +00005775int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005776{
Chris Mason6af118ce2008-07-22 11:18:07 -04005777 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005778
Miao Xie19fe0a82010-10-26 20:57:29 -04005779 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005780 * We need to make sure noboody is attaching this page to an eb right
5781 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005782 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005783 spin_lock(&page->mapping->private_lock);
5784 if (!PagePrivate(page)) {
5785 spin_unlock(&page->mapping->private_lock);
5786 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005787 }
5788
Josef Bacik3083ee22012-03-09 16:01:49 -05005789 eb = (struct extent_buffer *)page->private;
5790 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005791
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005792 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005793 * This is a little awful but should be ok, we need to make sure that
5794 * the eb doesn't disappear out from under us while we're looking at
5795 * this page.
5796 */
5797 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005798 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005799 spin_unlock(&eb->refs_lock);
5800 spin_unlock(&page->mapping->private_lock);
5801 return 0;
5802 }
5803 spin_unlock(&page->mapping->private_lock);
5804
Josef Bacik3083ee22012-03-09 16:01:49 -05005805 /*
5806 * If tree ref isn't set then we know the ref on this eb is a real ref,
5807 * so just return, this page will likely be freed soon anyway.
5808 */
5809 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5810 spin_unlock(&eb->refs_lock);
5811 return 0;
5812 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005813
David Sterbaf7a52a42013-04-26 14:56:29 +00005814 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005815}