blob: 27fdb250b4467f65a8c6a42d06835f3bb3a36aec [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"
Lu Fengqiafce7722016-06-13 09:36:46 +080023#include "transaction.h"
Chris Masond1310b22008-01-24 16:13:08 -050024
Chris Masond1310b22008-01-24 16:13:08 -050025static struct kmem_cache *extent_state_cache;
26static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040027static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050028
Filipe Manana27a35072014-07-06 20:09:59 +010029static inline bool extent_state_in_tree(const struct extent_state *state)
30{
31 return !RB_EMPTY_NODE(&state->rb_node);
32}
33
Eric Sandeen6d49ba12013-04-22 16:12:31 +000034#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050035static LIST_HEAD(buffers);
36static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040037
Chris Masond3977122009-01-05 21:25:51 -050038static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000039
40static inline
41void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
42{
43 unsigned long flags;
44
45 spin_lock_irqsave(&leak_lock, flags);
46 list_add(new, head);
47 spin_unlock_irqrestore(&leak_lock, flags);
48}
49
50static inline
51void btrfs_leak_debug_del(struct list_head *entry)
52{
53 unsigned long flags;
54
55 spin_lock_irqsave(&leak_lock, flags);
56 list_del(entry);
57 spin_unlock_irqrestore(&leak_lock, flags);
58}
59
60static inline
61void btrfs_leak_debug_check(void)
62{
63 struct extent_state *state;
64 struct extent_buffer *eb;
65
66 while (!list_empty(&states)) {
67 state = list_entry(states.next, struct extent_state, leak_list);
David Sterba9ee49a042015-01-14 19:52:13 +010068 pr_err("BTRFS: state leak: start %llu end %llu state %u in tree %d refs %d\n",
Filipe Manana27a35072014-07-06 20:09:59 +010069 state->start, state->end, state->state,
70 extent_state_in_tree(state),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020071 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000072 list_del(&state->leak_list);
73 kmem_cache_free(extent_state_cache, state);
74 }
75
76 while (!list_empty(&buffers)) {
77 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Jeff Mahoney62e85572016-09-20 10:05:01 -040078 pr_err("BTRFS: buffer leak start %llu len %lu refs %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020079 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]",
David Sterbaf85b7372017-01-20 14:54:07 +0100101 caller, btrfs_ino(BTRFS_I(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
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600130 /* tells the submit_bio code to use REQ_SYNC */
Chris Masonffbd5172009-04-20 15:50:09 -0400131 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;
David Sterba53d32352017-02-13 13:42:29 +0100147 ret = ulist_add(&changeset->range_changed, state->start, state->end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800148 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,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300166 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,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300172 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();
Kinglong Mee5598e902016-01-29 21:36:35 +0800209 kmem_cache_destroy(extent_state_cache);
210 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400211 if (btrfs_bioset)
212 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500213}
214
215void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200216 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500217{
Eric Paris6bef4d32010-02-23 19:43:04 +0000218 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500219 tree->ops = NULL;
220 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500221 spin_lock_init(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500222 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500223}
Chris Masond1310b22008-01-24 16:13:08 -0500224
Christoph Hellwigb2950862008-12-02 09:54:17 -0500225static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500226{
227 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500228
Michal Hocko3ba7ab22017-01-09 15:39:02 +0100229 /*
230 * The given mask might be not appropriate for the slab allocator,
231 * drop the unsupported bits
232 */
233 mask &= ~(__GFP_DMA32|__GFP_HIGHMEM);
Chris Masond1310b22008-01-24 16:13:08 -0500234 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400235 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500236 return state;
237 state->state = 0;
David Sterba47dc1962016-02-11 13:24:13 +0100238 state->failrec = NULL;
Filipe Manana27a35072014-07-06 20:09:59 +0100239 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000240 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500241 atomic_set(&state->refs, 1);
242 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100243 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500244 return state;
245}
Chris Masond1310b22008-01-24 16:13:08 -0500246
Chris Mason4845e442010-05-25 20:56:50 -0400247void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500248{
Chris Masond1310b22008-01-24 16:13:08 -0500249 if (!state)
250 return;
251 if (atomic_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100252 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000253 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100254 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500255 kmem_cache_free(extent_state_cache, state);
256 }
257}
Chris Masond1310b22008-01-24 16:13:08 -0500258
Filipe Mananaf2071b22014-02-12 15:05:53 +0000259static struct rb_node *tree_insert(struct rb_root *root,
260 struct rb_node *search_start,
261 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000262 struct rb_node *node,
263 struct rb_node ***p_in,
264 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500265{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000266 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500267 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500268 struct tree_entry *entry;
269
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000270 if (p_in && parent_in) {
271 p = *p_in;
272 parent = *parent_in;
273 goto do_insert;
274 }
275
Filipe Mananaf2071b22014-02-12 15:05:53 +0000276 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500277 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500278 parent = *p;
279 entry = rb_entry(parent, struct tree_entry, rb_node);
280
281 if (offset < entry->start)
282 p = &(*p)->rb_left;
283 else if (offset > entry->end)
284 p = &(*p)->rb_right;
285 else
286 return parent;
287 }
288
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000289do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500290 rb_link_node(node, parent, p);
291 rb_insert_color(node, root);
292 return NULL;
293}
294
Chris Mason80ea96b2008-02-01 14:51:59 -0500295static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000296 struct rb_node **prev_ret,
297 struct rb_node **next_ret,
298 struct rb_node ***p_ret,
299 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500300{
Chris Mason80ea96b2008-02-01 14:51:59 -0500301 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000302 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500303 struct rb_node *prev = NULL;
304 struct rb_node *orig_prev = NULL;
305 struct tree_entry *entry;
306 struct tree_entry *prev_entry = NULL;
307
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000308 while (*n) {
309 prev = *n;
310 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500311 prev_entry = entry;
312
313 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000314 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500315 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000316 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500317 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000318 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500319 }
320
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000321 if (p_ret)
322 *p_ret = n;
323 if (parent_ret)
324 *parent_ret = prev;
325
Chris Masond1310b22008-01-24 16:13:08 -0500326 if (prev_ret) {
327 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500328 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500329 prev = rb_next(prev);
330 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
331 }
332 *prev_ret = prev;
333 prev = orig_prev;
334 }
335
336 if (next_ret) {
337 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500338 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500339 prev = rb_prev(prev);
340 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
341 }
342 *next_ret = prev;
343 }
344 return NULL;
345}
346
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000347static inline struct rb_node *
348tree_search_for_insert(struct extent_io_tree *tree,
349 u64 offset,
350 struct rb_node ***p_ret,
351 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500352{
Chris Mason70dec802008-01-29 09:59:12 -0500353 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500354 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500355
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000356 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500357 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500358 return prev;
359 return ret;
360}
361
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000362static inline struct rb_node *tree_search(struct extent_io_tree *tree,
363 u64 offset)
364{
365 return tree_search_for_insert(tree, offset, NULL, NULL);
366}
367
Josef Bacik9ed74f22009-09-11 16:12:44 -0400368static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
369 struct extent_state *other)
370{
371 if (tree->ops && tree->ops->merge_extent_hook)
372 tree->ops->merge_extent_hook(tree->mapping->host, new,
373 other);
374}
375
Chris Masond1310b22008-01-24 16:13:08 -0500376/*
377 * utility function to look for merge candidates inside a given range.
378 * Any extents with matching state are merged together into a single
379 * extent in the tree. Extents with EXTENT_IO in their state field
380 * are not merged because the end_io handlers need to be able to do
381 * operations on them without sleeping (or doing allocations/splits).
382 *
383 * This should be called with the tree lock held.
384 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000385static void merge_state(struct extent_io_tree *tree,
386 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500387{
388 struct extent_state *other;
389 struct rb_node *other_node;
390
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400391 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000392 return;
Chris Masond1310b22008-01-24 16:13:08 -0500393
394 other_node = rb_prev(&state->rb_node);
395 if (other_node) {
396 other = rb_entry(other_node, struct extent_state, rb_node);
397 if (other->end == state->start - 1 &&
398 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400399 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500400 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500401 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100402 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500403 free_extent_state(other);
404 }
405 }
406 other_node = rb_next(&state->rb_node);
407 if (other_node) {
408 other = rb_entry(other_node, struct extent_state, rb_node);
409 if (other->start == state->end + 1 &&
410 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400411 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400412 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400413 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100414 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400415 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500416 }
417 }
Chris Masond1310b22008-01-24 16:13:08 -0500418}
419
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000420static void set_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100421 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500422{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000423 if (tree->ops && tree->ops->set_bit_hook)
424 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500425}
426
427static void clear_state_cb(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +0100428 struct extent_state *state, unsigned *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500429{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400430 if (tree->ops && tree->ops->clear_bit_hook)
Nikolay Borisov6fc0ef62017-02-20 13:51:03 +0200431 tree->ops->clear_bit_hook(BTRFS_I(tree->mapping->host),
432 state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500433}
434
Xiao Guangrong3150b692011-07-14 03:19:08 +0000435static void set_state_bits(struct extent_io_tree *tree,
Qu Wenruod38ed272015-10-12 14:53:37 +0800436 struct extent_state *state, unsigned *bits,
437 struct extent_changeset *changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000438
Chris Masond1310b22008-01-24 16:13:08 -0500439/*
440 * insert an extent_state struct into the tree. 'bits' are set on the
441 * struct before it is inserted.
442 *
443 * This may return -EEXIST if the extent is already there, in which case the
444 * state struct is freed.
445 *
446 * The tree lock is not taken internally. This is a utility function and
447 * probably isn't what you want to call (see set/clear_extent_bit).
448 */
449static int insert_state(struct extent_io_tree *tree,
450 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000451 struct rb_node ***p,
452 struct rb_node **parent,
Qu Wenruod38ed272015-10-12 14:53:37 +0800453 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500454{
455 struct rb_node *node;
456
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000457 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500458 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200459 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500460 state->start = start;
461 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400462
Qu Wenruod38ed272015-10-12 14:53:37 +0800463 set_state_bits(tree, state, bits, changeset);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000464
Filipe Mananaf2071b22014-02-12 15:05:53 +0000465 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500466 if (node) {
467 struct extent_state *found;
468 found = rb_entry(node, struct extent_state, rb_node);
Jeff Mahoney62e85572016-09-20 10:05:01 -0400469 pr_err("BTRFS: found node %llu %llu on insert of %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200470 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500471 return -EEXIST;
472 }
473 merge_state(tree, state);
474 return 0;
475}
476
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000477static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400478 u64 split)
479{
480 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000481 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400482}
483
Chris Masond1310b22008-01-24 16:13:08 -0500484/*
485 * split a given extent state struct in two, inserting the preallocated
486 * struct 'prealloc' as the newly created second half. 'split' indicates an
487 * offset inside 'orig' where it should be split.
488 *
489 * Before calling,
490 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
491 * are two extent state structs in the tree:
492 * prealloc: [orig->start, split - 1]
493 * orig: [ split, orig->end ]
494 *
495 * The tree locks are not taken by this function. They need to be held
496 * by the caller.
497 */
498static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
499 struct extent_state *prealloc, u64 split)
500{
501 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400502
503 split_cb(tree, orig, split);
504
Chris Masond1310b22008-01-24 16:13:08 -0500505 prealloc->start = orig->start;
506 prealloc->end = split - 1;
507 prealloc->state = orig->state;
508 orig->start = split;
509
Filipe Mananaf2071b22014-02-12 15:05:53 +0000510 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
511 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500512 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500513 free_extent_state(prealloc);
514 return -EEXIST;
515 }
516 return 0;
517}
518
Li Zefancdc6a392012-03-12 16:39:48 +0800519static struct extent_state *next_state(struct extent_state *state)
520{
521 struct rb_node *next = rb_next(&state->rb_node);
522 if (next)
523 return rb_entry(next, struct extent_state, rb_node);
524 else
525 return NULL;
526}
527
Chris Masond1310b22008-01-24 16:13:08 -0500528/*
529 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800530 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500531 *
532 * If no bits are set on the state struct after clearing things, the
533 * struct is freed and removed from the tree
534 */
Li Zefancdc6a392012-03-12 16:39:48 +0800535static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
536 struct extent_state *state,
Qu Wenruofefdc552015-10-12 15:35:38 +0800537 unsigned *bits, int wake,
538 struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500539{
Li Zefancdc6a392012-03-12 16:39:48 +0800540 struct extent_state *next;
David Sterba9ee49a042015-01-14 19:52:13 +0100541 unsigned bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500542
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400543 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500544 u64 range = state->end - state->start + 1;
545 WARN_ON(range > tree->dirty_bytes);
546 tree->dirty_bytes -= range;
547 }
Chris Mason291d6732008-01-29 15:55:23 -0500548 clear_state_cb(tree, state, bits);
Qu Wenruofefdc552015-10-12 15:35:38 +0800549 add_extent_changeset(state, bits_to_clear, changeset, 0);
Josef Bacik32c00af2009-10-08 13:34:05 -0400550 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500551 if (wake)
552 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400553 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800554 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100555 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500556 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100557 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500558 free_extent_state(state);
559 } else {
560 WARN_ON(1);
561 }
562 } else {
563 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800564 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500565 }
Li Zefancdc6a392012-03-12 16:39:48 +0800566 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500567}
568
Xiao Guangrong82337672011-04-20 06:44:57 +0000569static struct extent_state *
570alloc_extent_state_atomic(struct extent_state *prealloc)
571{
572 if (!prealloc)
573 prealloc = alloc_extent_state(GFP_ATOMIC);
574
575 return prealloc;
576}
577
Eric Sandeen48a3b632013-04-25 20:41:01 +0000578static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400579{
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400580 btrfs_panic(tree_fs_info(tree), err,
581 "Locking error: Extent tree was modified by another thread while locked.");
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400582}
583
Chris Masond1310b22008-01-24 16:13:08 -0500584/*
585 * clear some bits on a range in the tree. This may require splitting
586 * or inserting elements in the tree, so the gfp mask is used to
587 * indicate which allocations or sleeping are allowed.
588 *
589 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
590 * the given range from the tree regardless of state (ie for truncate).
591 *
592 * the range [start, end] is inclusive.
593 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100594 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500595 */
Qu Wenruofefdc552015-10-12 15:35:38 +0800596static int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
597 unsigned bits, int wake, int delete,
598 struct extent_state **cached_state,
599 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500600{
601 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400602 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500603 struct extent_state *prealloc = NULL;
604 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400605 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500606 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000607 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500608
Josef Bacika5dee372013-12-13 10:02:44 -0500609 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000610
Josef Bacik7ee9e442013-06-21 16:37:03 -0400611 if (bits & EXTENT_DELALLOC)
612 bits |= EXTENT_NORESERVE;
613
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400614 if (delete)
615 bits |= ~EXTENT_CTLBITS;
616 bits |= EXTENT_FIRST_DELALLOC;
617
Josef Bacik2ac55d42010-02-03 19:33:23 +0000618 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
619 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500620again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800621 if (!prealloc && gfpflags_allow_blocking(mask)) {
Filipe Mananac7bc6312014-11-03 14:12:57 +0000622 /*
623 * Don't care for allocation failure here because we might end
624 * up not needing the pre-allocated extent state at all, which
625 * is the case if we only have in the tree extent states that
626 * cover our input range and don't cover too any other range.
627 * If we end up needing a new extent state we allocate it later.
628 */
Chris Masond1310b22008-01-24 16:13:08 -0500629 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500630 }
631
Chris Masoncad321a2008-12-17 14:51:42 -0500632 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400633 if (cached_state) {
634 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000635
636 if (clear) {
637 *cached_state = NULL;
638 cached_state = NULL;
639 }
640
Filipe Manana27a35072014-07-06 20:09:59 +0100641 if (cached && extent_state_in_tree(cached) &&
642 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000643 if (clear)
644 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400645 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400646 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400647 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000648 if (clear)
649 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400650 }
Chris Masond1310b22008-01-24 16:13:08 -0500651 /*
652 * this search will find the extents that end after
653 * our range starts
654 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500655 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500656 if (!node)
657 goto out;
658 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400659hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500660 if (state->start > end)
661 goto out;
662 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400663 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500664
Liu Bo04493142012-02-16 18:34:37 +0800665 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800666 if (!(state->state & bits)) {
667 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800668 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800669 }
Liu Bo04493142012-02-16 18:34:37 +0800670
Chris Masond1310b22008-01-24 16:13:08 -0500671 /*
672 * | ---- desired range ---- |
673 * | state | or
674 * | ------------- state -------------- |
675 *
676 * We need to split the extent we found, and may flip
677 * bits on second half.
678 *
679 * If the extent we found extends past our range, we
680 * just split and search again. It'll get split again
681 * the next time though.
682 *
683 * If the extent we found is inside our range, we clear
684 * the desired bit on it.
685 */
686
687 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000688 prealloc = alloc_extent_state_atomic(prealloc);
689 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500690 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400691 if (err)
692 extent_io_tree_panic(tree, err);
693
Chris Masond1310b22008-01-24 16:13:08 -0500694 prealloc = NULL;
695 if (err)
696 goto out;
697 if (state->end <= end) {
Qu Wenruofefdc552015-10-12 15:35:38 +0800698 state = clear_state_bit(tree, state, &bits, wake,
699 changeset);
Liu Bod1ac6e42012-05-10 18:10:39 +0800700 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500701 }
702 goto search_again;
703 }
704 /*
705 * | ---- desired range ---- |
706 * | state |
707 * We need to split the extent, and clear the bit
708 * on the first half
709 */
710 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000711 prealloc = alloc_extent_state_atomic(prealloc);
712 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500713 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400714 if (err)
715 extent_io_tree_panic(tree, err);
716
Chris Masond1310b22008-01-24 16:13:08 -0500717 if (wake)
718 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400719
Qu Wenruofefdc552015-10-12 15:35:38 +0800720 clear_state_bit(tree, prealloc, &bits, wake, changeset);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400721
Chris Masond1310b22008-01-24 16:13:08 -0500722 prealloc = NULL;
723 goto out;
724 }
Chris Mason42daec22009-09-23 19:51:09 -0400725
Qu Wenruofefdc552015-10-12 15:35:38 +0800726 state = clear_state_bit(tree, state, &bits, wake, changeset);
Liu Bo04493142012-02-16 18:34:37 +0800727next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400728 if (last_end == (u64)-1)
729 goto out;
730 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800731 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800732 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500733
734search_again:
735 if (start > end)
736 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500737 spin_unlock(&tree->lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800738 if (gfpflags_allow_blocking(mask))
Chris Masond1310b22008-01-24 16:13:08 -0500739 cond_resched();
740 goto again;
David Sterba7ab5cb22016-04-27 01:02:15 +0200741
742out:
743 spin_unlock(&tree->lock);
744 if (prealloc)
745 free_extent_state(prealloc);
746
747 return 0;
748
Chris Masond1310b22008-01-24 16:13:08 -0500749}
Chris Masond1310b22008-01-24 16:13:08 -0500750
Jeff Mahoney143bede2012-03-01 14:56:26 +0100751static void wait_on_state(struct extent_io_tree *tree,
752 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500753 __releases(tree->lock)
754 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500755{
756 DEFINE_WAIT(wait);
757 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500758 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500759 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500760 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500761 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500762}
763
764/*
765 * waits for one or more bits to clear on a range in the state tree.
766 * The range [start, end] is inclusive.
767 * The tree lock is taken by this function
768 */
David Sterba41074882013-04-29 13:38:46 +0000769static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
770 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500771{
772 struct extent_state *state;
773 struct rb_node *node;
774
Josef Bacika5dee372013-12-13 10:02:44 -0500775 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000776
Chris Masoncad321a2008-12-17 14:51:42 -0500777 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500778again:
779 while (1) {
780 /*
781 * this search will find all the extents that end after
782 * our range starts
783 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500784 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100785process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500786 if (!node)
787 break;
788
789 state = rb_entry(node, struct extent_state, rb_node);
790
791 if (state->start > end)
792 goto out;
793
794 if (state->state & bits) {
795 start = state->start;
796 atomic_inc(&state->refs);
797 wait_on_state(tree, state);
798 free_extent_state(state);
799 goto again;
800 }
801 start = state->end + 1;
802
803 if (start > end)
804 break;
805
Filipe Mananac50d3e72014-03-31 14:53:25 +0100806 if (!cond_resched_lock(&tree->lock)) {
807 node = rb_next(node);
808 goto process_node;
809 }
Chris Masond1310b22008-01-24 16:13:08 -0500810 }
811out:
Chris Masoncad321a2008-12-17 14:51:42 -0500812 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500813}
Chris Masond1310b22008-01-24 16:13:08 -0500814
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000815static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500816 struct extent_state *state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800817 unsigned *bits, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500818{
David Sterba9ee49a042015-01-14 19:52:13 +0100819 unsigned bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400820
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000821 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400822 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500823 u64 range = state->end - state->start + 1;
824 tree->dirty_bytes += range;
825 }
Qu Wenruod38ed272015-10-12 14:53:37 +0800826 add_extent_changeset(state, bits_to_set, changeset, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400827 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500828}
829
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100830static void cache_state_if_flags(struct extent_state *state,
831 struct extent_state **cached_ptr,
David Sterba9ee49a042015-01-14 19:52:13 +0100832 unsigned flags)
Chris Mason2c64c532009-09-02 15:04:12 -0400833{
834 if (cached_ptr && !(*cached_ptr)) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100835 if (!flags || (state->state & flags)) {
Chris Mason2c64c532009-09-02 15:04:12 -0400836 *cached_ptr = state;
837 atomic_inc(&state->refs);
838 }
839 }
840}
841
Filipe Mananae38e2ed2014-10-13 12:28:38 +0100842static void cache_state(struct extent_state *state,
843 struct extent_state **cached_ptr)
844{
845 return cache_state_if_flags(state, cached_ptr,
846 EXTENT_IOBITS | EXTENT_BOUNDARY);
847}
848
Chris Masond1310b22008-01-24 16:13:08 -0500849/*
Chris Mason1edbb732009-09-02 13:24:36 -0400850 * set some bits on a range in the tree. This may require allocations or
851 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500852 *
Chris Mason1edbb732009-09-02 13:24:36 -0400853 * If any of the exclusive bits are set, this will fail with -EEXIST if some
854 * part of the range already has the desired bits set. The start of the
855 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500856 *
Chris Mason1edbb732009-09-02 13:24:36 -0400857 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500858 */
Chris Mason1edbb732009-09-02 13:24:36 -0400859
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100860static int __must_check
861__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100862 unsigned bits, unsigned exclusive_bits,
David Sterba41074882013-04-29 13:38:46 +0000863 u64 *failed_start, struct extent_state **cached_state,
Qu Wenruod38ed272015-10-12 14:53:37 +0800864 gfp_t mask, struct extent_changeset *changeset)
Chris Masond1310b22008-01-24 16:13:08 -0500865{
866 struct extent_state *state;
867 struct extent_state *prealloc = NULL;
868 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000869 struct rb_node **p;
870 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500871 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500872 u64 last_start;
873 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400874
Josef Bacika5dee372013-12-13 10:02:44 -0500875 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000876
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400877 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500878again:
Mel Gormand0164ad2015-11-06 16:28:21 -0800879 if (!prealloc && gfpflags_allow_blocking(mask)) {
David Sterba059f7912016-04-27 01:03:45 +0200880 /*
881 * Don't care for allocation failure here because we might end
882 * up not needing the pre-allocated extent state at all, which
883 * is the case if we only have in the tree extent states that
884 * cover our input range and don't cover too any other range.
885 * If we end up needing a new extent state we allocate it later.
886 */
Chris Masond1310b22008-01-24 16:13:08 -0500887 prealloc = alloc_extent_state(mask);
Chris Masond1310b22008-01-24 16:13:08 -0500888 }
889
Chris Masoncad321a2008-12-17 14:51:42 -0500890 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400891 if (cached_state && *cached_state) {
892 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400893 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100894 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400895 node = &state->rb_node;
896 goto hit_next;
897 }
898 }
Chris Masond1310b22008-01-24 16:13:08 -0500899 /*
900 * this search will find all the extents that end after
901 * our range starts.
902 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000903 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500904 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000905 prealloc = alloc_extent_state_atomic(prealloc);
906 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000907 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +0800908 &p, &parent, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400909 if (err)
910 extent_io_tree_panic(tree, err);
911
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000912 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500913 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500914 goto out;
915 }
Chris Masond1310b22008-01-24 16:13:08 -0500916 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400917hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500918 last_start = state->start;
919 last_end = state->end;
920
921 /*
922 * | ---- desired range ---- |
923 * | state |
924 *
925 * Just lock what we found and keep going
926 */
927 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400928 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500929 *failed_start = state->start;
930 err = -EEXIST;
931 goto out;
932 }
Chris Mason42daec22009-09-23 19:51:09 -0400933
Qu Wenruod38ed272015-10-12 14:53:37 +0800934 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400935 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500936 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400937 if (last_end == (u64)-1)
938 goto out;
939 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800940 state = next_state(state);
941 if (start < end && state && state->start == start &&
942 !need_resched())
943 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500944 goto search_again;
945 }
946
947 /*
948 * | ---- desired range ---- |
949 * | state |
950 * or
951 * | ------------- state -------------- |
952 *
953 * We need to split the extent we found, and may flip bits on
954 * second half.
955 *
956 * If the extent we found extends past our
957 * range, we just split and search again. It'll get split
958 * again the next time though.
959 *
960 * If the extent we found is inside our range, we set the
961 * desired bit on it.
962 */
963 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400964 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500965 *failed_start = start;
966 err = -EEXIST;
967 goto out;
968 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000969
970 prealloc = alloc_extent_state_atomic(prealloc);
971 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500972 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400973 if (err)
974 extent_io_tree_panic(tree, err);
975
Chris Masond1310b22008-01-24 16:13:08 -0500976 prealloc = NULL;
977 if (err)
978 goto out;
979 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +0800980 set_state_bits(tree, state, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -0400981 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500982 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400983 if (last_end == (u64)-1)
984 goto out;
985 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800986 state = next_state(state);
987 if (start < end && state && state->start == start &&
988 !need_resched())
989 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500990 }
991 goto search_again;
992 }
993 /*
994 * | ---- desired range ---- |
995 * | state | or | state |
996 *
997 * There's a hole, we need to insert something in it and
998 * ignore the extent we found.
999 */
1000 if (state->start > start) {
1001 u64 this_end;
1002 if (end < last_start)
1003 this_end = end;
1004 else
Chris Masond3977122009-01-05 21:25:51 -05001005 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +00001006
1007 prealloc = alloc_extent_state_atomic(prealloc);
1008 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +00001009
1010 /*
1011 * Avoid to free 'prealloc' if it can be merged with
1012 * the later extent.
1013 */
Chris Masond1310b22008-01-24 16:13:08 -05001014 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001015 NULL, NULL, &bits, changeset);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001016 if (err)
1017 extent_io_tree_panic(tree, err);
1018
Chris Mason2c64c532009-09-02 15:04:12 -04001019 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001020 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001021 start = this_end + 1;
1022 goto search_again;
1023 }
1024 /*
1025 * | ---- desired range ---- |
1026 * | state |
1027 * We need to split the extent, and set the bit
1028 * on the first half
1029 */
1030 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -04001031 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001032 *failed_start = start;
1033 err = -EEXIST;
1034 goto out;
1035 }
Xiao Guangrong82337672011-04-20 06:44:57 +00001036
1037 prealloc = alloc_extent_state_atomic(prealloc);
1038 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -05001039 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001040 if (err)
1041 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -05001042
Qu Wenruod38ed272015-10-12 14:53:37 +08001043 set_state_bits(tree, prealloc, &bits, changeset);
Chris Mason2c64c532009-09-02 15:04:12 -04001044 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001045 merge_state(tree, prealloc);
1046 prealloc = NULL;
1047 goto out;
1048 }
1049
David Sterbab5a4ba12016-04-27 01:02:15 +02001050search_again:
1051 if (start > end)
1052 goto out;
1053 spin_unlock(&tree->lock);
1054 if (gfpflags_allow_blocking(mask))
1055 cond_resched();
1056 goto again;
Chris Masond1310b22008-01-24 16:13:08 -05001057
1058out:
Chris Masoncad321a2008-12-17 14:51:42 -05001059 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001060 if (prealloc)
1061 free_extent_state(prealloc);
1062
1063 return err;
1064
Chris Masond1310b22008-01-24 16:13:08 -05001065}
Chris Masond1310b22008-01-24 16:13:08 -05001066
David Sterba41074882013-04-29 13:38:46 +00001067int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001068 unsigned bits, u64 * failed_start,
David Sterba41074882013-04-29 13:38:46 +00001069 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001070{
1071 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001072 cached_state, mask, NULL);
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001073}
1074
1075
Josef Bacik462d6fa2011-09-26 13:56:12 -04001076/**
Liu Bo10983f22012-07-11 15:26:19 +08001077 * convert_extent_bit - convert all bits in a given range from one bit to
1078 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001079 * @tree: the io tree to search
1080 * @start: the start offset in bytes
1081 * @end: the end offset in bytes (inclusive)
1082 * @bits: the bits to set in this range
1083 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001084 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001085 *
1086 * This will go through and set bits for the given range. If any states exist
1087 * already in this range they are set with the given bit and cleared of the
1088 * clear_bits. This is only meant to be used by things that are mergeable, ie
1089 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1090 * boundary bits like LOCK.
David Sterba210aa272016-04-26 23:54:39 +02001091 *
1092 * All allocations are done with GFP_NOFS.
Josef Bacik462d6fa2011-09-26 13:56:12 -04001093 */
1094int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001095 unsigned bits, unsigned clear_bits,
David Sterba210aa272016-04-26 23:54:39 +02001096 struct extent_state **cached_state)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001097{
1098 struct extent_state *state;
1099 struct extent_state *prealloc = NULL;
1100 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001101 struct rb_node **p;
1102 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001103 int err = 0;
1104 u64 last_start;
1105 u64 last_end;
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001106 bool first_iteration = true;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001107
Josef Bacika5dee372013-12-13 10:02:44 -05001108 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001109
Josef Bacik462d6fa2011-09-26 13:56:12 -04001110again:
David Sterba210aa272016-04-26 23:54:39 +02001111 if (!prealloc) {
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001112 /*
1113 * Best effort, don't worry if extent state allocation fails
1114 * here for the first iteration. We might have a cached state
1115 * that matches exactly the target range, in which case no
1116 * extent state allocations are needed. We'll only know this
1117 * after locking the tree.
1118 */
David Sterba210aa272016-04-26 23:54:39 +02001119 prealloc = alloc_extent_state(GFP_NOFS);
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001120 if (!prealloc && !first_iteration)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001121 return -ENOMEM;
1122 }
1123
1124 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001125 if (cached_state && *cached_state) {
1126 state = *cached_state;
1127 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001128 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001129 node = &state->rb_node;
1130 goto hit_next;
1131 }
1132 }
1133
Josef Bacik462d6fa2011-09-26 13:56:12 -04001134 /*
1135 * this search will find all the extents that end after
1136 * our range starts.
1137 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001138 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001139 if (!node) {
1140 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001141 if (!prealloc) {
1142 err = -ENOMEM;
1143 goto out;
1144 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001145 err = insert_state(tree, prealloc, start, end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001146 &p, &parent, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001147 if (err)
1148 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001149 cache_state(prealloc, cached_state);
1150 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001151 goto out;
1152 }
1153 state = rb_entry(node, struct extent_state, rb_node);
1154hit_next:
1155 last_start = state->start;
1156 last_end = state->end;
1157
1158 /*
1159 * | ---- desired range ---- |
1160 * | state |
1161 *
1162 * Just lock what we found and keep going
1163 */
1164 if (state->start == start && state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001165 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001166 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001167 state = clear_state_bit(tree, state, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001168 if (last_end == (u64)-1)
1169 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001170 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001171 if (start < end && state && state->start == start &&
1172 !need_resched())
1173 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001174 goto search_again;
1175 }
1176
1177 /*
1178 * | ---- desired range ---- |
1179 * | state |
1180 * or
1181 * | ------------- state -------------- |
1182 *
1183 * We need to split the extent we found, and may flip bits on
1184 * second half.
1185 *
1186 * If the extent we found extends past our
1187 * range, we just split and search again. It'll get split
1188 * again the next time though.
1189 *
1190 * If the extent we found is inside our range, we set the
1191 * desired bit on it.
1192 */
1193 if (state->start < start) {
1194 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001195 if (!prealloc) {
1196 err = -ENOMEM;
1197 goto out;
1198 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001199 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001200 if (err)
1201 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001202 prealloc = NULL;
1203 if (err)
1204 goto out;
1205 if (state->end <= end) {
Qu Wenruod38ed272015-10-12 14:53:37 +08001206 set_state_bits(tree, state, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001207 cache_state(state, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001208 state = clear_state_bit(tree, state, &clear_bits, 0,
1209 NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001210 if (last_end == (u64)-1)
1211 goto out;
1212 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001213 if (start < end && state && state->start == start &&
1214 !need_resched())
1215 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001216 }
1217 goto search_again;
1218 }
1219 /*
1220 * | ---- desired range ---- |
1221 * | state | or | state |
1222 *
1223 * There's a hole, we need to insert something in it and
1224 * ignore the extent we found.
1225 */
1226 if (state->start > start) {
1227 u64 this_end;
1228 if (end < last_start)
1229 this_end = end;
1230 else
1231 this_end = last_start - 1;
1232
1233 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001234 if (!prealloc) {
1235 err = -ENOMEM;
1236 goto out;
1237 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001238
1239 /*
1240 * Avoid to free 'prealloc' if it can be merged with
1241 * the later extent.
1242 */
1243 err = insert_state(tree, prealloc, start, this_end,
Qu Wenruod38ed272015-10-12 14:53:37 +08001244 NULL, NULL, &bits, NULL);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001245 if (err)
1246 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001247 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001248 prealloc = NULL;
1249 start = this_end + 1;
1250 goto search_again;
1251 }
1252 /*
1253 * | ---- desired range ---- |
1254 * | state |
1255 * We need to split the extent, and set the bit
1256 * on the first half
1257 */
1258 if (state->start <= end && state->end > end) {
1259 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001260 if (!prealloc) {
1261 err = -ENOMEM;
1262 goto out;
1263 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001264
1265 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001266 if (err)
1267 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001268
Qu Wenruod38ed272015-10-12 14:53:37 +08001269 set_state_bits(tree, prealloc, &bits, NULL);
Josef Bacike6138872012-09-27 17:07:30 -04001270 cache_state(prealloc, cached_state);
Qu Wenruofefdc552015-10-12 15:35:38 +08001271 clear_state_bit(tree, prealloc, &clear_bits, 0, NULL);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001272 prealloc = NULL;
1273 goto out;
1274 }
1275
Josef Bacik462d6fa2011-09-26 13:56:12 -04001276search_again:
1277 if (start > end)
1278 goto out;
1279 spin_unlock(&tree->lock);
David Sterba210aa272016-04-26 23:54:39 +02001280 cond_resched();
Filipe Mananac8fd3de2014-10-13 12:28:39 +01001281 first_iteration = false;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001282 goto again;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001283
1284out:
1285 spin_unlock(&tree->lock);
1286 if (prealloc)
1287 free_extent_state(prealloc);
1288
1289 return err;
1290}
1291
Chris Masond1310b22008-01-24 16:13:08 -05001292/* wrappers around set/clear extent bit */
Qu Wenruod38ed272015-10-12 14:53:37 +08001293int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba2c53b912016-04-26 23:54:39 +02001294 unsigned bits, struct extent_changeset *changeset)
Qu Wenruod38ed272015-10-12 14:53:37 +08001295{
1296 /*
1297 * We don't support EXTENT_LOCKED yet, as current changeset will
1298 * record any bits changed, so for EXTENT_LOCKED case, it will
1299 * either fail with -EEXIST or changeset will record the whole
1300 * range.
1301 */
1302 BUG_ON(bits & EXTENT_LOCKED);
1303
David Sterba2c53b912016-04-26 23:54:39 +02001304 return __set_extent_bit(tree, start, end, bits, 0, NULL, NULL, GFP_NOFS,
Qu Wenruod38ed272015-10-12 14:53:37 +08001305 changeset);
1306}
1307
Qu Wenruofefdc552015-10-12 15:35:38 +08001308int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1309 unsigned bits, int wake, int delete,
1310 struct extent_state **cached, gfp_t mask)
1311{
1312 return __clear_extent_bit(tree, start, end, bits, wake, delete,
1313 cached, mask, NULL);
1314}
1315
Qu Wenruofefdc552015-10-12 15:35:38 +08001316int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaf734c442016-04-26 23:54:39 +02001317 unsigned bits, struct extent_changeset *changeset)
Qu Wenruofefdc552015-10-12 15:35:38 +08001318{
1319 /*
1320 * Don't support EXTENT_LOCKED case, same reason as
1321 * set_record_extent_bits().
1322 */
1323 BUG_ON(bits & EXTENT_LOCKED);
1324
David Sterbaf734c442016-04-26 23:54:39 +02001325 return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
Qu Wenruofefdc552015-10-12 15:35:38 +08001326 changeset);
1327}
1328
Chris Masond352ac62008-09-29 15:18:18 -04001329/*
1330 * either insert or lock state struct between start and end use mask to tell
1331 * us if waiting is desired.
1332 */
Chris Mason1edbb732009-09-02 13:24:36 -04001333int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterbaff13db42015-12-03 14:30:40 +01001334 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001335{
1336 int err;
1337 u64 failed_start;
David Sterba9ee49a042015-01-14 19:52:13 +01001338
Chris Masond1310b22008-01-24 16:13:08 -05001339 while (1) {
David Sterbaff13db42015-12-03 14:30:40 +01001340 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001341 EXTENT_LOCKED, &failed_start,
Qu Wenruod38ed272015-10-12 14:53:37 +08001342 cached_state, GFP_NOFS, NULL);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001343 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001344 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1345 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001346 } else
Chris Masond1310b22008-01-24 16:13:08 -05001347 break;
Chris Masond1310b22008-01-24 16:13:08 -05001348 WARN_ON(start > end);
1349 }
1350 return err;
1351}
Chris Masond1310b22008-01-24 16:13:08 -05001352
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001353int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001354{
1355 int err;
1356 u64 failed_start;
1357
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001358 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
Qu Wenruod38ed272015-10-12 14:53:37 +08001359 &failed_start, NULL, GFP_NOFS, NULL);
Yan Zheng66435582008-10-30 14:19:50 -04001360 if (err == -EEXIST) {
1361 if (failed_start > start)
1362 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001363 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001364 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001365 }
Josef Bacik25179202008-10-29 14:49:05 -04001366 return 1;
1367}
Josef Bacik25179202008-10-29 14:49:05 -04001368
David Sterbabd1fa4f2015-12-03 13:08:59 +01001369void extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001370{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001371 unsigned long index = start >> PAGE_SHIFT;
1372 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001373 struct page *page;
1374
1375 while (index <= end_index) {
1376 page = find_get_page(inode->i_mapping, index);
1377 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1378 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001379 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001380 index++;
1381 }
Chris Mason4adaa612013-03-26 13:07:00 -04001382}
1383
David Sterbaf6311572015-12-03 13:08:59 +01001384void extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
Chris Mason4adaa612013-03-26 13:07:00 -04001385{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001386 unsigned long index = start >> PAGE_SHIFT;
1387 unsigned long end_index = end >> PAGE_SHIFT;
Chris Mason4adaa612013-03-26 13:07:00 -04001388 struct page *page;
1389
1390 while (index <= end_index) {
1391 page = find_get_page(inode->i_mapping, index);
1392 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Mason4adaa612013-03-26 13:07:00 -04001393 __set_page_dirty_nobuffers(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08001394 account_page_redirty(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001395 put_page(page);
Chris Mason4adaa612013-03-26 13:07:00 -04001396 index++;
1397 }
Chris Mason4adaa612013-03-26 13:07:00 -04001398}
1399
Chris Masond1310b22008-01-24 16:13:08 -05001400/*
Chris Masond1310b22008-01-24 16:13:08 -05001401 * helper function to set both pages and extents in the tree writeback
1402 */
David Sterba35de6db2015-12-03 13:08:59 +01001403static void set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001404{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001405 unsigned long index = start >> PAGE_SHIFT;
1406 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05001407 struct page *page;
1408
1409 while (index <= end_index) {
1410 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001411 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001412 set_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001413 put_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05001414 index++;
1415 }
Chris Masond1310b22008-01-24 16:13:08 -05001416}
Chris Masond1310b22008-01-24 16:13:08 -05001417
Chris Masond352ac62008-09-29 15:18:18 -04001418/* find the first state struct with 'bits' set after 'start', and
1419 * return it. tree->lock must be held. NULL will returned if
1420 * nothing was found after 'start'
1421 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001422static struct extent_state *
1423find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba9ee49a042015-01-14 19:52:13 +01001424 u64 start, unsigned bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001425{
1426 struct rb_node *node;
1427 struct extent_state *state;
1428
1429 /*
1430 * this search will find all the extents that end after
1431 * our range starts.
1432 */
1433 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001434 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001435 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001436
Chris Masond3977122009-01-05 21:25:51 -05001437 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001438 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001439 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001440 return state;
Chris Masond3977122009-01-05 21:25:51 -05001441
Chris Masond7fc6402008-02-18 12:12:38 -05001442 node = rb_next(node);
1443 if (!node)
1444 break;
1445 }
1446out:
1447 return NULL;
1448}
Chris Masond7fc6402008-02-18 12:12:38 -05001449
Chris Masond352ac62008-09-29 15:18:18 -04001450/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001451 * find the first offset in the io tree with 'bits' set. zero is
1452 * returned if we find something, and *start_ret and *end_ret are
1453 * set to reflect the state struct that was found.
1454 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001455 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001456 */
1457int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +01001458 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -04001459 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001460{
1461 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001462 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001463 int ret = 1;
1464
1465 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001466 if (cached_state && *cached_state) {
1467 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001468 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001469 n = rb_next(&state->rb_node);
1470 while (n) {
1471 state = rb_entry(n, struct extent_state,
1472 rb_node);
1473 if (state->state & bits)
1474 goto got_it;
1475 n = rb_next(n);
1476 }
1477 free_extent_state(*cached_state);
1478 *cached_state = NULL;
1479 goto out;
1480 }
1481 free_extent_state(*cached_state);
1482 *cached_state = NULL;
1483 }
1484
Xiao Guangrong69261c42011-07-14 03:19:45 +00001485 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001486got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001487 if (state) {
Filipe Mananae38e2ed2014-10-13 12:28:38 +01001488 cache_state_if_flags(state, cached_state, 0);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001489 *start_ret = state->start;
1490 *end_ret = state->end;
1491 ret = 0;
1492 }
Josef Bacike6138872012-09-27 17:07:30 -04001493out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001494 spin_unlock(&tree->lock);
1495 return ret;
1496}
1497
1498/*
Chris Masond352ac62008-09-29 15:18:18 -04001499 * find a contiguous range of bytes in the file marked as delalloc, not
1500 * more than 'max_bytes'. start and end are used to return the range,
1501 *
1502 * 1 is returned if we find something, 0 if nothing was in the tree
1503 */
Chris Masonc8b97812008-10-29 14:49:59 -04001504static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001505 u64 *start, u64 *end, u64 max_bytes,
1506 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001507{
1508 struct rb_node *node;
1509 struct extent_state *state;
1510 u64 cur_start = *start;
1511 u64 found = 0;
1512 u64 total_bytes = 0;
1513
Chris Masoncad321a2008-12-17 14:51:42 -05001514 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001515
Chris Masond1310b22008-01-24 16:13:08 -05001516 /*
1517 * this search will find all the extents that end after
1518 * our range starts.
1519 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001520 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001521 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001522 if (!found)
1523 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001524 goto out;
1525 }
1526
Chris Masond3977122009-01-05 21:25:51 -05001527 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001528 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001529 if (found && (state->start != cur_start ||
1530 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001531 goto out;
1532 }
1533 if (!(state->state & EXTENT_DELALLOC)) {
1534 if (!found)
1535 *end = state->end;
1536 goto out;
1537 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001538 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001539 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001540 *cached_state = state;
1541 atomic_inc(&state->refs);
1542 }
Chris Masond1310b22008-01-24 16:13:08 -05001543 found++;
1544 *end = state->end;
1545 cur_start = state->end + 1;
1546 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001547 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001548 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001549 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001550 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001551 break;
1552 }
1553out:
Chris Masoncad321a2008-12-17 14:51:42 -05001554 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001555 return found;
1556}
1557
Liu Boda2c7002017-02-10 16:41:05 +01001558static int __process_pages_contig(struct address_space *mapping,
1559 struct page *locked_page,
1560 pgoff_t start_index, pgoff_t end_index,
1561 unsigned long page_ops, pgoff_t *index_ret);
1562
Jeff Mahoney143bede2012-03-01 14:56:26 +01001563static noinline void __unlock_for_delalloc(struct inode *inode,
1564 struct page *locked_page,
1565 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001566{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001567 unsigned long index = start >> PAGE_SHIFT;
1568 unsigned long end_index = end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001569
Liu Bo76c00212017-02-10 16:42:14 +01001570 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001571 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001572 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001573
Liu Bo76c00212017-02-10 16:42:14 +01001574 __process_pages_contig(inode->i_mapping, locked_page, index, end_index,
1575 PAGE_UNLOCK, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -04001576}
1577
1578static noinline int lock_delalloc_pages(struct inode *inode,
1579 struct page *locked_page,
1580 u64 delalloc_start,
1581 u64 delalloc_end)
1582{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001583 unsigned long index = delalloc_start >> PAGE_SHIFT;
Liu Bo76c00212017-02-10 16:42:14 +01001584 unsigned long index_ret = index;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001585 unsigned long end_index = delalloc_end >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -04001586 int ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001587
Liu Bo76c00212017-02-10 16:42:14 +01001588 ASSERT(locked_page);
Chris Masonc8b97812008-10-29 14:49:59 -04001589 if (index == locked_page->index && index == end_index)
1590 return 0;
1591
Liu Bo76c00212017-02-10 16:42:14 +01001592 ret = __process_pages_contig(inode->i_mapping, locked_page, index,
1593 end_index, PAGE_LOCK, &index_ret);
1594 if (ret == -EAGAIN)
1595 __unlock_for_delalloc(inode, locked_page, delalloc_start,
1596 (u64)index_ret << PAGE_SHIFT);
Chris Masonc8b97812008-10-29 14:49:59 -04001597 return ret;
1598}
1599
1600/*
1601 * find a contiguous range of bytes in the file marked as delalloc, not
1602 * more than 'max_bytes'. start and end are used to return the range,
1603 *
1604 * 1 is returned if we find something, 0 if nothing was in the tree
1605 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001606STATIC u64 find_lock_delalloc_range(struct inode *inode,
1607 struct extent_io_tree *tree,
1608 struct page *locked_page, u64 *start,
1609 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001610{
1611 u64 delalloc_start;
1612 u64 delalloc_end;
1613 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001614 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001615 int ret;
1616 int loops = 0;
1617
1618again:
1619 /* step one, find a bunch of delalloc bytes starting at start */
1620 delalloc_start = *start;
1621 delalloc_end = 0;
1622 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001623 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001624 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001625 *start = delalloc_start;
1626 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001627 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001628 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001629 }
1630
1631 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001632 * start comes from the offset of locked_page. We have to lock
1633 * pages in order, so we can't process delalloc bytes before
1634 * locked_page
1635 */
Chris Masond3977122009-01-05 21:25:51 -05001636 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001637 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001638
1639 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001640 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001641 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001642 if (delalloc_end + 1 - delalloc_start > max_bytes)
1643 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001644
Chris Masonc8b97812008-10-29 14:49:59 -04001645 /* step two, lock all the pages after the page that has start */
1646 ret = lock_delalloc_pages(inode, locked_page,
1647 delalloc_start, delalloc_end);
1648 if (ret == -EAGAIN) {
1649 /* some of the pages are gone, lets avoid looping by
1650 * shortening the size of the delalloc range we're searching
1651 */
Chris Mason9655d292009-09-02 15:22:30 -04001652 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001653 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001654 if (!loops) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001655 max_bytes = PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001656 loops = 1;
1657 goto again;
1658 } else {
1659 found = 0;
1660 goto out_failed;
1661 }
1662 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001663 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001664
1665 /* step three, lock the state bits for the whole range */
David Sterbaff13db42015-12-03 14:30:40 +01001666 lock_extent_bits(tree, delalloc_start, delalloc_end, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001667
1668 /* then test to make sure it is all still delalloc */
1669 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001670 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001671 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001672 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1673 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001674 __unlock_for_delalloc(inode, locked_page,
1675 delalloc_start, delalloc_end);
1676 cond_resched();
1677 goto again;
1678 }
Chris Mason9655d292009-09-02 15:22:30 -04001679 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001680 *start = delalloc_start;
1681 *end = delalloc_end;
1682out_failed:
1683 return found;
1684}
1685
Liu Boda2c7002017-02-10 16:41:05 +01001686static int __process_pages_contig(struct address_space *mapping,
1687 struct page *locked_page,
1688 pgoff_t start_index, pgoff_t end_index,
1689 unsigned long page_ops, pgoff_t *index_ret)
Chris Masonc8b97812008-10-29 14:49:59 -04001690{
Liu Bo873695b2017-02-02 17:49:22 -08001691 unsigned long nr_pages = end_index - start_index + 1;
Liu Boda2c7002017-02-10 16:41:05 +01001692 unsigned long pages_locked = 0;
Liu Bo873695b2017-02-02 17:49:22 -08001693 pgoff_t index = start_index;
Chris Masonc8b97812008-10-29 14:49:59 -04001694 struct page *pages[16];
Liu Bo873695b2017-02-02 17:49:22 -08001695 unsigned ret;
Liu Boda2c7002017-02-10 16:41:05 +01001696 int err = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001697 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001698
Liu Boda2c7002017-02-10 16:41:05 +01001699 if (page_ops & PAGE_LOCK) {
1700 ASSERT(page_ops == PAGE_LOCK);
1701 ASSERT(index_ret && *index_ret == start_index);
1702 }
1703
Filipe Manana704de492014-10-06 22:14:22 +01001704 if ((page_ops & PAGE_SET_ERROR) && nr_pages > 0)
Liu Bo873695b2017-02-02 17:49:22 -08001705 mapping_set_error(mapping, -EIO);
Filipe Manana704de492014-10-06 22:14:22 +01001706
Chris Masond3977122009-01-05 21:25:51 -05001707 while (nr_pages > 0) {
Liu Bo873695b2017-02-02 17:49:22 -08001708 ret = find_get_pages_contig(mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001709 min_t(unsigned long,
1710 nr_pages, ARRAY_SIZE(pages)), pages);
Liu Boda2c7002017-02-10 16:41:05 +01001711 if (ret == 0) {
1712 /*
1713 * Only if we're going to lock these pages,
1714 * can we find nothing at @index.
1715 */
1716 ASSERT(page_ops & PAGE_LOCK);
Liu Bo49d4a332017-03-06 18:20:56 -08001717 err = -EAGAIN;
1718 goto out;
Liu Boda2c7002017-02-10 16:41:05 +01001719 }
Chris Mason8b62b722009-09-02 16:53:46 -04001720
Liu Boda2c7002017-02-10 16:41:05 +01001721 for (i = 0; i < ret; i++) {
Josef Bacikc2790a22013-07-29 11:20:47 -04001722 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001723 SetPagePrivate2(pages[i]);
1724
Chris Masonc8b97812008-10-29 14:49:59 -04001725 if (pages[i] == locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001726 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001727 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001728 continue;
1729 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001730 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001731 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001732 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001733 set_page_writeback(pages[i]);
Filipe Manana704de492014-10-06 22:14:22 +01001734 if (page_ops & PAGE_SET_ERROR)
1735 SetPageError(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001736 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001737 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001738 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001739 unlock_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001740 if (page_ops & PAGE_LOCK) {
1741 lock_page(pages[i]);
1742 if (!PageDirty(pages[i]) ||
1743 pages[i]->mapping != mapping) {
1744 unlock_page(pages[i]);
1745 put_page(pages[i]);
1746 err = -EAGAIN;
1747 goto out;
1748 }
1749 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001750 put_page(pages[i]);
Liu Boda2c7002017-02-10 16:41:05 +01001751 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001752 }
1753 nr_pages -= ret;
1754 index += ret;
1755 cond_resched();
1756 }
Liu Boda2c7002017-02-10 16:41:05 +01001757out:
1758 if (err && index_ret)
1759 *index_ret = start_index + pages_locked - 1;
1760 return err;
Chris Masonc8b97812008-10-29 14:49:59 -04001761}
Chris Masonc8b97812008-10-29 14:49:59 -04001762
Liu Bo873695b2017-02-02 17:49:22 -08001763void extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1764 u64 delalloc_end, struct page *locked_page,
1765 unsigned clear_bits,
1766 unsigned long page_ops)
1767{
1768 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, clear_bits, 1, 0,
1769 NULL, GFP_NOFS);
1770
1771 __process_pages_contig(inode->i_mapping, locked_page,
1772 start >> PAGE_SHIFT, end >> PAGE_SHIFT,
Liu Boda2c7002017-02-10 16:41:05 +01001773 page_ops, NULL);
Liu Bo873695b2017-02-02 17:49:22 -08001774}
1775
Chris Masond352ac62008-09-29 15:18:18 -04001776/*
1777 * count the number of bytes in the tree that have a given bit(s)
1778 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1779 * cached. The total number found is returned.
1780 */
Chris Masond1310b22008-01-24 16:13:08 -05001781u64 count_range_bits(struct extent_io_tree *tree,
1782 u64 *start, u64 search_end, u64 max_bytes,
David Sterba9ee49a042015-01-14 19:52:13 +01001783 unsigned bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001784{
1785 struct rb_node *node;
1786 struct extent_state *state;
1787 u64 cur_start = *start;
1788 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001789 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001790 int found = 0;
1791
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301792 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001793 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001794
Chris Masoncad321a2008-12-17 14:51:42 -05001795 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001796 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1797 total_bytes = tree->dirty_bytes;
1798 goto out;
1799 }
1800 /*
1801 * this search will find all the extents that end after
1802 * our range starts.
1803 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001804 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001805 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001806 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001807
Chris Masond3977122009-01-05 21:25:51 -05001808 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001809 state = rb_entry(node, struct extent_state, rb_node);
1810 if (state->start > search_end)
1811 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001812 if (contig && found && state->start > last + 1)
1813 break;
1814 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001815 total_bytes += min(search_end, state->end) + 1 -
1816 max(cur_start, state->start);
1817 if (total_bytes >= max_bytes)
1818 break;
1819 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001820 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001821 found = 1;
1822 }
Chris Masonec29ed52011-02-23 16:23:20 -05001823 last = state->end;
1824 } else if (contig && found) {
1825 break;
Chris Masond1310b22008-01-24 16:13:08 -05001826 }
1827 node = rb_next(node);
1828 if (!node)
1829 break;
1830 }
1831out:
Chris Masoncad321a2008-12-17 14:51:42 -05001832 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001833 return total_bytes;
1834}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001835
Chris Masond352ac62008-09-29 15:18:18 -04001836/*
1837 * set the private field for a given byte offset in the tree. If there isn't
1838 * an extent_state there already, this does nothing.
1839 */
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001840static noinline int set_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001841 struct io_failure_record *failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001842{
1843 struct rb_node *node;
1844 struct extent_state *state;
1845 int ret = 0;
1846
Chris Masoncad321a2008-12-17 14:51:42 -05001847 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001848 /*
1849 * this search will find all the extents that end after
1850 * our range starts.
1851 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001852 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001853 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001854 ret = -ENOENT;
1855 goto out;
1856 }
1857 state = rb_entry(node, struct extent_state, rb_node);
1858 if (state->start != start) {
1859 ret = -ENOENT;
1860 goto out;
1861 }
David Sterba47dc1962016-02-11 13:24:13 +01001862 state->failrec = failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001863out:
Chris Masoncad321a2008-12-17 14:51:42 -05001864 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001865 return ret;
1866}
1867
Arnd Bergmannf827ba92016-02-22 22:53:20 +01001868static noinline int get_state_failrec(struct extent_io_tree *tree, u64 start,
David Sterba47dc1962016-02-11 13:24:13 +01001869 struct io_failure_record **failrec)
Chris Masond1310b22008-01-24 16:13:08 -05001870{
1871 struct rb_node *node;
1872 struct extent_state *state;
1873 int ret = 0;
1874
Chris Masoncad321a2008-12-17 14:51:42 -05001875 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001876 /*
1877 * this search will find all the extents that end after
1878 * our range starts.
1879 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001880 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001881 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001882 ret = -ENOENT;
1883 goto out;
1884 }
1885 state = rb_entry(node, struct extent_state, rb_node);
1886 if (state->start != start) {
1887 ret = -ENOENT;
1888 goto out;
1889 }
David Sterba47dc1962016-02-11 13:24:13 +01001890 *failrec = state->failrec;
Chris Masond1310b22008-01-24 16:13:08 -05001891out:
Chris Masoncad321a2008-12-17 14:51:42 -05001892 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001893 return ret;
1894}
1895
1896/*
1897 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001898 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001899 * has the bits set. Otherwise, 1 is returned if any bit in the
1900 * range is found set.
1901 */
1902int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +01001903 unsigned bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001904{
1905 struct extent_state *state = NULL;
1906 struct rb_node *node;
1907 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001908
Chris Masoncad321a2008-12-17 14:51:42 -05001909 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001910 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001911 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001912 node = &cached->rb_node;
1913 else
1914 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001915 while (node && start <= end) {
1916 state = rb_entry(node, struct extent_state, rb_node);
1917
1918 if (filled && state->start > start) {
1919 bitset = 0;
1920 break;
1921 }
1922
1923 if (state->start > end)
1924 break;
1925
1926 if (state->state & bits) {
1927 bitset = 1;
1928 if (!filled)
1929 break;
1930 } else if (filled) {
1931 bitset = 0;
1932 break;
1933 }
Chris Mason46562ce2009-09-23 20:23:16 -04001934
1935 if (state->end == (u64)-1)
1936 break;
1937
Chris Masond1310b22008-01-24 16:13:08 -05001938 start = state->end + 1;
1939 if (start > end)
1940 break;
1941 node = rb_next(node);
1942 if (!node) {
1943 if (filled)
1944 bitset = 0;
1945 break;
1946 }
1947 }
Chris Masoncad321a2008-12-17 14:51:42 -05001948 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001949 return bitset;
1950}
Chris Masond1310b22008-01-24 16:13:08 -05001951
1952/*
1953 * helper function to set a given page up to date if all the
1954 * extents in the tree for that page are up to date
1955 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001956static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001957{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001958 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001959 u64 end = start + PAGE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001960 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001961 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001962}
1963
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02001964int free_io_failure(struct btrfs_inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001965{
1966 int ret;
1967 int err = 0;
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02001968 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001969
David Sterba47dc1962016-02-11 13:24:13 +01001970 set_state_failrec(failure_tree, rec->start, NULL);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001971 ret = clear_extent_bits(failure_tree, rec->start,
1972 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001973 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001974 if (ret)
1975 err = ret;
1976
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02001977 ret = clear_extent_bits(&inode->io_tree, rec->start,
David Woodhouse53b381b2013-01-29 18:40:14 -05001978 rec->start + rec->len - 1,
David Sterba91166212016-04-26 23:54:39 +02001979 EXTENT_DAMAGED);
David Woodhouse53b381b2013-01-29 18:40:14 -05001980 if (ret && !err)
1981 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001982
1983 kfree(rec);
1984 return err;
1985}
1986
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001987/*
1988 * this bypasses the standard btrfs submit functions deliberately, as
1989 * the standard behavior is to write all copies in a raid setup. here we only
1990 * want to write the one bad copy. so we do the mapping for ourselves and issue
1991 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001992 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001993 * actually prevents the read that triggered the error from finishing.
1994 * currently, there can be no more than two copies of every data bit. thus,
1995 * exactly one rewrite is required.
1996 */
Nikolay Borisov9d4f7f82017-02-20 13:50:55 +02001997int repair_io_failure(struct btrfs_inode *inode, u64 start, u64 length,
1998 u64 logical, struct page *page,
1999 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002000{
Nikolay Borisov9d4f7f82017-02-20 13:50:55 +02002001 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002002 struct bio *bio;
2003 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002004 u64 map_length = 0;
2005 u64 sector;
2006 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002007 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002008 int ret;
2009
Ilya Dryomov908960c2013-11-03 19:06:39 +02002010 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002011 BUG_ON(!mirror_num);
2012
David Woodhouse53b381b2013-01-29 18:40:14 -05002013 /* we can't repair anything in raid56 yet */
2014 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2015 return 0;
2016
Chris Mason9be33952013-05-17 18:30:14 -04002017 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002018 if (!bio)
2019 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002020 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002021 map_length = length;
2022
Filipe Mananab5de8d02016-05-27 22:21:27 +01002023 /*
2024 * Avoid races with device replace and make sure our bbio has devices
2025 * associated to its stripes that don't go away while we are doing the
2026 * read repair operation.
2027 */
2028 btrfs_bio_counter_inc_blocked(fs_info);
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002029 ret = btrfs_map_block(fs_info, BTRFS_MAP_WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002030 &map_length, &bbio, mirror_num);
2031 if (ret) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002032 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002033 bio_put(bio);
2034 return -EIO;
2035 }
2036 BUG_ON(mirror_num != bbio->mirror_num);
2037 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002038 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002039 dev = bbio->stripes[mirror_num-1].dev;
Zhao Lei6e9606d2015-01-20 15:11:34 +08002040 btrfs_put_bbio(bbio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002041 if (!dev || !dev->bdev || !dev->writeable) {
Filipe Mananab5de8d02016-05-27 22:21:27 +01002042 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002043 bio_put(bio);
2044 return -EIO;
2045 }
2046 bio->bi_bdev = dev->bdev;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002047 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
Miao Xieffdd2012014-09-12 18:44:00 +08002048 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002049
Mike Christie4e49ea42016-06-05 14:31:41 -05002050 if (btrfsic_submit_bio_wait(bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002051 /* try to remap that extent elsewhere? */
Filipe Mananab5de8d02016-05-27 22:21:27 +01002052 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002053 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002054 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002055 return -EIO;
2056 }
2057
David Sterbab14af3b2015-10-08 10:43:10 +02002058 btrfs_info_rl_in_rcu(fs_info,
2059 "read error corrected: ino %llu off %llu (dev %s sector %llu)",
Nikolay Borisov9d4f7f82017-02-20 13:50:55 +02002060 btrfs_ino(inode), start,
Miao Xie1203b682014-09-12 18:44:01 +08002061 rcu_str_deref(dev->name), sector);
Filipe Mananab5de8d02016-05-27 22:21:27 +01002062 btrfs_bio_counter_dec(fs_info);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002063 bio_put(bio);
2064 return 0;
2065}
2066
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002067int repair_eb_io_failure(struct btrfs_fs_info *fs_info,
2068 struct extent_buffer *eb, int mirror_num)
Josef Bacikea466792012-03-26 21:57:36 -04002069{
Josef Bacikea466792012-03-26 21:57:36 -04002070 u64 start = eb->start;
2071 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002072 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002073
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002074 if (fs_info->sb->s_flags & MS_RDONLY)
Ilya Dryomov908960c2013-11-03 19:06:39 +02002075 return -EROFS;
2076
Josef Bacikea466792012-03-26 21:57:36 -04002077 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02002078 struct page *p = eb->pages[i];
Miao Xie1203b682014-09-12 18:44:01 +08002079
Nikolay Borisov9d4f7f82017-02-20 13:50:55 +02002080 ret = repair_io_failure(BTRFS_I(fs_info->btree_inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002081 PAGE_SIZE, start, p,
Miao Xie1203b682014-09-12 18:44:01 +08002082 start - page_offset(p), mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002083 if (ret)
2084 break;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002085 start += PAGE_SIZE;
Josef Bacikea466792012-03-26 21:57:36 -04002086 }
2087
2088 return ret;
2089}
2090
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091/*
2092 * each time an IO finishes, we do a fast check in the IO failure tree
2093 * to see if we need to process or clean up an io_failure_record
2094 */
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002095int clean_io_failure(struct btrfs_inode *inode, u64 start, struct page *page,
Miao Xie8b110e32014-09-12 18:44:03 +08002096 unsigned int pg_offset)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002097{
2098 u64 private;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099 struct io_failure_record *failrec;
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002100 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002101 struct extent_state *state;
2102 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002103 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104
2105 private = 0;
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002106 ret = count_range_bits(&inode->io_failure_tree, &private,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002107 (u64)-1, 1, EXTENT_DIRTY, 0);
2108 if (!ret)
2109 return 0;
2110
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002111 ret = get_state_failrec(&inode->io_failure_tree, start,
David Sterba47dc1962016-02-11 13:24:13 +01002112 &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002113 if (ret)
2114 return 0;
2115
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002116 BUG_ON(!failrec->this_mirror);
2117
2118 if (failrec->in_validation) {
2119 /* there was no real error, just free the record */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002120 btrfs_debug(fs_info,
2121 "clean_io_failure: freeing dummy error at %llu",
2122 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002123 goto out;
2124 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002125 if (fs_info->sb->s_flags & MS_RDONLY)
2126 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002127
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002128 spin_lock(&inode->io_tree.lock);
2129 state = find_first_extent_bit_state(&inode->io_tree,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002130 failrec->start,
2131 EXTENT_LOCKED);
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002132 spin_unlock(&inode->io_tree.lock);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002133
Miao Xie883d0de2013-07-25 19:22:35 +08002134 if (state && state->start <= failrec->start &&
2135 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002136 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2137 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002138 if (num_copies > 1) {
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002139 repair_io_failure(inode, start, failrec->len,
Miao Xie454ff3d2014-09-12 18:43:58 +08002140 failrec->logical, page,
Miao Xie1203b682014-09-12 18:44:01 +08002141 pg_offset, failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002142 }
2143 }
2144
2145out:
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002146 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002147
Miao Xie454ff3d2014-09-12 18:43:58 +08002148 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002149}
2150
Miao Xief6124962014-09-12 18:44:04 +08002151/*
2152 * Can be called when
2153 * - hold extent lock
2154 * - under ordered extent
2155 * - the inode is freeing
2156 */
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002157void btrfs_free_io_failure_record(struct btrfs_inode *inode, u64 start, u64 end)
Miao Xief6124962014-09-12 18:44:04 +08002158{
Nikolay Borisov7ab79562017-02-20 13:50:57 +02002159 struct extent_io_tree *failure_tree = &inode->io_failure_tree;
Miao Xief6124962014-09-12 18:44:04 +08002160 struct io_failure_record *failrec;
2161 struct extent_state *state, *next;
2162
2163 if (RB_EMPTY_ROOT(&failure_tree->state))
2164 return;
2165
2166 spin_lock(&failure_tree->lock);
2167 state = find_first_extent_bit_state(failure_tree, start, EXTENT_DIRTY);
2168 while (state) {
2169 if (state->start > end)
2170 break;
2171
2172 ASSERT(state->end <= end);
2173
2174 next = next_state(state);
2175
David Sterba47dc1962016-02-11 13:24:13 +01002176 failrec = state->failrec;
Miao Xief6124962014-09-12 18:44:04 +08002177 free_extent_state(state);
2178 kfree(failrec);
2179
2180 state = next;
2181 }
2182 spin_unlock(&failure_tree->lock);
2183}
2184
Miao Xie2fe63032014-09-12 18:43:59 +08002185int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
David Sterba47dc1962016-02-11 13:24:13 +01002186 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002187{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002188 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002189 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002190 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002191 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2192 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2193 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002194 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002195 u64 logical;
2196
David Sterba47dc1962016-02-11 13:24:13 +01002197 ret = get_state_failrec(failure_tree, start, &failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002198 if (ret) {
2199 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2200 if (!failrec)
2201 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002202
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002203 failrec->start = start;
2204 failrec->len = end - start + 1;
2205 failrec->this_mirror = 0;
2206 failrec->bio_flags = 0;
2207 failrec->in_validation = 0;
2208
2209 read_lock(&em_tree->lock);
2210 em = lookup_extent_mapping(em_tree, start, failrec->len);
2211 if (!em) {
2212 read_unlock(&em_tree->lock);
2213 kfree(failrec);
2214 return -EIO;
2215 }
2216
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002217 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002218 free_extent_map(em);
2219 em = NULL;
2220 }
2221 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002222 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002223 kfree(failrec);
2224 return -EIO;
2225 }
Miao Xie2fe63032014-09-12 18:43:59 +08002226
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002227 logical = start - em->start;
2228 logical = em->block_start + logical;
2229 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2230 logical = em->block_start;
2231 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2232 extent_set_compress_type(&failrec->bio_flags,
2233 em->compress_type);
2234 }
Miao Xie2fe63032014-09-12 18:43:59 +08002235
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002236 btrfs_debug(fs_info,
2237 "Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu",
2238 logical, start, failrec->len);
Miao Xie2fe63032014-09-12 18:43:59 +08002239
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002240 failrec->logical = logical;
2241 free_extent_map(em);
2242
2243 /* set the bits in the private failure tree */
2244 ret = set_extent_bits(failure_tree, start, end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002245 EXTENT_LOCKED | EXTENT_DIRTY);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002246 if (ret >= 0)
David Sterba47dc1962016-02-11 13:24:13 +01002247 ret = set_state_failrec(failure_tree, start, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002248 /* set the bits in the inode's tree */
2249 if (ret >= 0)
David Sterbaceeb0ae2016-04-26 23:54:39 +02002250 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002251 if (ret < 0) {
2252 kfree(failrec);
2253 return ret;
2254 }
2255 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002256 btrfs_debug(fs_info,
2257 "Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d",
2258 failrec->logical, failrec->start, failrec->len,
2259 failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002260 /*
2261 * when data can be on disk more than twice, add to failrec here
2262 * (e.g. with a list for failed_mirror) to make
2263 * clean_io_failure() clean all those errors at once.
2264 */
2265 }
Miao Xie2fe63032014-09-12 18:43:59 +08002266
2267 *failrec_ret = failrec;
2268
2269 return 0;
2270}
2271
2272int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2273 struct io_failure_record *failrec, int failed_mirror)
2274{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002275 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002276 int num_copies;
2277
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002278 num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002279 if (num_copies == 1) {
2280 /*
2281 * we only have a single copy of the data, so don't bother with
2282 * all the retry and error correction code that follows. no
2283 * matter what the error is, it is very likely to persist.
2284 */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002285 btrfs_debug(fs_info,
2286 "Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d",
2287 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002288 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002289 }
2290
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002291 /*
2292 * there are two premises:
2293 * a) deliver good data to the caller
2294 * b) correct the bad sectors on disk
2295 */
2296 if (failed_bio->bi_vcnt > 1) {
2297 /*
2298 * to fulfill b), we need to know the exact failing sectors, as
2299 * we don't want to rewrite any more than the failed ones. thus,
2300 * we need separate read requests for the failed bio
2301 *
2302 * if the following BUG_ON triggers, our validation request got
2303 * merged. we need separate requests for our algorithm to work.
2304 */
2305 BUG_ON(failrec->in_validation);
2306 failrec->in_validation = 1;
2307 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002308 } else {
2309 /*
2310 * we're ready to fulfill a) and b) alongside. get a good copy
2311 * of the failed sector and if we succeed, we have setup
2312 * everything for repair_io_failure to do the rest for us.
2313 */
2314 if (failrec->in_validation) {
2315 BUG_ON(failrec->this_mirror != failed_mirror);
2316 failrec->in_validation = 0;
2317 failrec->this_mirror = 0;
2318 }
2319 failrec->failed_mirror = failed_mirror;
2320 failrec->this_mirror++;
2321 if (failrec->this_mirror == failed_mirror)
2322 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002323 }
2324
Miao Xiefacc8a222013-07-25 19:22:34 +08002325 if (failrec->this_mirror > num_copies) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002326 btrfs_debug(fs_info,
2327 "Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d",
2328 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002329 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002330 }
2331
Miao Xie2fe63032014-09-12 18:43:59 +08002332 return 1;
2333}
2334
2335
2336struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2337 struct io_failure_record *failrec,
2338 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +08002339 bio_end_io_t *endio_func, void *data)
Miao Xie2fe63032014-09-12 18:43:59 +08002340{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002341 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Miao Xie2fe63032014-09-12 18:43:59 +08002342 struct bio *bio;
2343 struct btrfs_io_bio *btrfs_failed_bio;
2344 struct btrfs_io_bio *btrfs_bio;
2345
Chris Mason9be33952013-05-17 18:30:14 -04002346 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002347 if (!bio)
2348 return NULL;
2349
2350 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002351 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002352 bio->bi_bdev = fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002353 bio->bi_iter.bi_size = 0;
Miao Xie8b110e32014-09-12 18:44:03 +08002354 bio->bi_private = data;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002355
Miao Xiefacc8a222013-07-25 19:22:34 +08002356 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2357 if (btrfs_failed_bio->csum) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002358 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2359
2360 btrfs_bio = btrfs_io_bio(bio);
2361 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002362 icsum *= csum_size;
2363 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a222013-07-25 19:22:34 +08002364 csum_size);
2365 }
2366
Miao Xie2fe63032014-09-12 18:43:59 +08002367 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002368
Miao Xie2fe63032014-09-12 18:43:59 +08002369 return bio;
2370}
2371
2372/*
2373 * this is a generic handler for readpage errors (default
2374 * readpage_io_failed_hook). if other copies exist, read those and write back
2375 * good data to the failed position. does not investigate in remapping the
2376 * failed extent elsewhere, hoping the device will be smart enough to do this as
2377 * needed
2378 */
2379
2380static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2381 struct page *page, u64 start, u64 end,
2382 int failed_mirror)
2383{
2384 struct io_failure_record *failrec;
2385 struct inode *inode = page->mapping->host;
2386 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2387 struct bio *bio;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002388 int read_mode = 0;
Miao Xie2fe63032014-09-12 18:43:59 +08002389 int ret;
2390
Mike Christie1f7ad752016-06-05 14:31:51 -05002391 BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE);
Miao Xie2fe63032014-09-12 18:43:59 +08002392
2393 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2394 if (ret)
2395 return ret;
2396
2397 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2398 if (!ret) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02002399 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002400 return -EIO;
2401 }
2402
2403 if (failed_bio->bi_vcnt > 1)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06002404 read_mode |= REQ_FAILFAST_DEV;
Miao Xie2fe63032014-09-12 18:43:59 +08002405
2406 phy_offset >>= inode->i_sb->s_blocksize_bits;
2407 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2408 start - page_offset(page),
Miao Xie8b110e32014-09-12 18:44:03 +08002409 (int)phy_offset, failed_bio->bi_end_io,
2410 NULL);
Miao Xie2fe63032014-09-12 18:43:59 +08002411 if (!bio) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02002412 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie2fe63032014-09-12 18:43:59 +08002413 return -EIO;
2414 }
Mike Christie1f7ad752016-06-05 14:31:51 -05002415 bio_set_op_attrs(bio, REQ_OP_READ, read_mode);
Miao Xie2fe63032014-09-12 18:43:59 +08002416
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002417 btrfs_debug(btrfs_sb(inode->i_sb),
2418 "Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d",
2419 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002420
Mike Christie81a75f672016-06-05 14:31:54 -05002421 ret = tree->ops->submit_bio_hook(inode, bio, failrec->this_mirror,
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002422 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002423 if (ret) {
Nikolay Borisov4ac1f4a2017-02-20 13:50:52 +02002424 free_io_failure(BTRFS_I(inode), failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002425 bio_put(bio);
2426 }
2427
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002428 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002429}
2430
Chris Masond1310b22008-01-24 16:13:08 -05002431/* lots and lots of room for performance fixes in the end_bio funcs */
2432
David Sterbab5227c02015-12-03 13:08:59 +01002433void end_extent_writepage(struct page *page, int err, u64 start, u64 end)
Jeff Mahoney87826df2012-02-15 16:23:57 +01002434{
2435 int uptodate = (err == 0);
2436 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002437 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002438
2439 tree = &BTRFS_I(page->mapping->host)->io_tree;
2440
David Sterbac3988d62017-02-17 15:18:32 +01002441 if (tree->ops && tree->ops->writepage_end_io_hook)
2442 tree->ops->writepage_end_io_hook(page, start, end, NULL,
2443 uptodate);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002444
Jeff Mahoney87826df2012-02-15 16:23:57 +01002445 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002446 ClearPageUptodate(page);
2447 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002448 ret = ret < 0 ? ret : -EIO;
2449 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002450 }
Jeff Mahoney87826df2012-02-15 16:23:57 +01002451}
2452
Chris Masond1310b22008-01-24 16:13:08 -05002453/*
2454 * after a writepage IO is done, we need to:
2455 * clear the uptodate bits on error
2456 * clear the writeback bits in the extent tree for this IO
2457 * end_page_writeback if the page has no more pending IO
2458 *
2459 * Scheduling is not allowed, so the extent state tree is expected
2460 * to have one and only one object corresponding to this IO.
2461 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002462static void end_bio_extent_writepage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002463{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002464 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002465 u64 start;
2466 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002467 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002468
Kent Overstreet2c30c712013-11-07 12:20:26 -08002469 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002470 struct page *page = bvec->bv_page;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002471 struct inode *inode = page->mapping->host;
2472 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Woodhouse902b22f2008-08-20 08:51:49 -04002473
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002474 /* We always issue full-page reads, but if some block
2475 * in a page fails to read, blk_update_request() will
2476 * advance bv_offset and adjust bv_len to compensate.
2477 * Print a warning for nonzero offsets, and an error
2478 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002479 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2480 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002481 btrfs_err(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002482 "partial page write in btrfs with offset %u and length %u",
2483 bvec->bv_offset, bvec->bv_len);
2484 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002485 btrfs_info(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002486 "incomplete page write in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002487 bvec->bv_offset, bvec->bv_len);
2488 }
Chris Masond1310b22008-01-24 16:13:08 -05002489
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002490 start = page_offset(page);
2491 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002492
David Sterbab5227c02015-12-03 13:08:59 +01002493 end_extent_writepage(page, bio->bi_error, start, end);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002494 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002495 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002496
Chris Masond1310b22008-01-24 16:13:08 -05002497 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002498}
2499
Miao Xie883d0de2013-07-25 19:22:35 +08002500static void
2501endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2502 int uptodate)
2503{
2504 struct extent_state *cached = NULL;
2505 u64 end = start + len - 1;
2506
2507 if (uptodate && tree->track_uptodate)
2508 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2509 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2510}
2511
Chris Masond1310b22008-01-24 16:13:08 -05002512/*
2513 * after a readpage IO is done, we need to:
2514 * clear the uptodate bits on error
2515 * set the uptodate bits if things worked
2516 * set the page up to date if all extents in the tree are uptodate
2517 * clear the lock bit in the extent tree
2518 * unlock the page if there are no other extents locked for it
2519 *
2520 * Scheduling is not allowed, so the extent state tree is expected
2521 * to have one and only one object corresponding to this IO.
2522 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002523static void end_bio_extent_readpage(struct bio *bio)
Chris Masond1310b22008-01-24 16:13:08 -05002524{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002525 struct bio_vec *bvec;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002526 int uptodate = !bio->bi_error;
Miao Xiefacc8a222013-07-25 19:22:34 +08002527 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002528 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002529 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002530 u64 start;
2531 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002532 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002533 u64 extent_start = 0;
2534 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002535 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002536 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002537 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002538
Kent Overstreet2c30c712013-11-07 12:20:26 -08002539 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002540 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002541 struct inode *inode = page->mapping->host;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002542 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen507903b2011-04-06 10:02:20 +00002543
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002544 btrfs_debug(fs_info,
2545 "end_bio_extent_readpage: bi_sector=%llu, err=%d, mirror=%u",
2546 (u64)bio->bi_iter.bi_sector, bio->bi_error,
2547 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002548 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002549
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002550 /* We always issue full-page reads, but if some block
2551 * in a page fails to read, blk_update_request() will
2552 * advance bv_offset and adjust bv_len to compensate.
2553 * Print a warning for nonzero offsets, and an error
2554 * if they don't add up to a full page. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002555 if (bvec->bv_offset || bvec->bv_len != PAGE_SIZE) {
2556 if (bvec->bv_offset + bvec->bv_len != PAGE_SIZE)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002557 btrfs_err(fs_info,
2558 "partial page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002559 bvec->bv_offset, bvec->bv_len);
2560 else
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002561 btrfs_info(fs_info,
2562 "incomplete page read in btrfs with offset %u and length %u",
Frank Holtonefe120a2013-12-20 11:37:06 -05002563 bvec->bv_offset, bvec->bv_len);
2564 }
Chris Masond1310b22008-01-24 16:13:08 -05002565
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002566 start = page_offset(page);
2567 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002568 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002569
Chris Mason9be33952013-05-17 18:30:14 -04002570 mirror = io_bio->mirror_num;
David Sterba20c98012017-02-17 15:59:35 +01002571 if (likely(uptodate && tree->ops)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002572 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2573 page, start, end,
2574 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002575 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002576 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002577 else
Nikolay Borisovb30cb442017-02-20 13:50:56 +02002578 clean_io_failure(BTRFS_I(inode), start,
2579 page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002580 }
Josef Bacikea466792012-03-26 21:57:36 -04002581
Miao Xief2a09da2013-07-25 19:22:33 +08002582 if (likely(uptodate))
2583 goto readpage_ok;
2584
David Sterba20a7db82017-02-17 16:24:29 +01002585 if (tree->ops) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002586 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Liu Bo9d0d1c82017-03-24 15:04:50 -07002587 if (ret == -EAGAIN) {
2588 /*
2589 * Data inode's readpage_io_failed_hook() always
2590 * returns -EAGAIN.
2591 *
2592 * The generic bio_readpage_error handles errors
2593 * the following way: If possible, new read
2594 * requests are created and submitted and will
2595 * end up in end_bio_extent_readpage as well (if
2596 * we're lucky, not in the !uptodate case). In
2597 * that case it returns 0 and we just go on with
2598 * the next page in our bio. If it can't handle
2599 * the error it will return -EIO and we remain
2600 * responsible for that page.
2601 */
2602 ret = bio_readpage_error(bio, offset, page,
2603 start, end, mirror);
2604 if (ret == 0) {
2605 uptodate = !bio->bi_error;
2606 offset += len;
2607 continue;
2608 }
Chris Mason7e383262008-04-09 16:28:12 -04002609 }
Liu Bo9d0d1c82017-03-24 15:04:50 -07002610
2611 /*
2612 * metadata's readpage_io_failed_hook() always returns
2613 * -EIO and fixes nothing. -EIO is also returned if
2614 * data inode error could not be fixed.
2615 */
2616 ASSERT(ret == -EIO);
Chris Mason7e383262008-04-09 16:28:12 -04002617 }
Miao Xief2a09da2013-07-25 19:22:33 +08002618readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002619 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002620 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002621 pgoff_t end_index = i_size >> PAGE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002622 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002623
2624 /* Zero out the end if this page straddles i_size */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002625 off = i_size & (PAGE_SIZE-1);
Liu Boa583c022014-08-19 23:32:22 +08002626 if (page->index == end_index && off)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002627 zero_user_segment(page, off, PAGE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002628 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002629 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002630 ClearPageUptodate(page);
2631 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002632 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002633 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002634 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002635
2636 if (unlikely(!uptodate)) {
2637 if (extent_len) {
2638 endio_readpage_release_extent(tree,
2639 extent_start,
2640 extent_len, 1);
2641 extent_start = 0;
2642 extent_len = 0;
2643 }
2644 endio_readpage_release_extent(tree, start,
2645 end - start + 1, 0);
2646 } else if (!extent_len) {
2647 extent_start = start;
2648 extent_len = end + 1 - start;
2649 } else if (extent_start + extent_len == start) {
2650 extent_len += end + 1 - start;
2651 } else {
2652 endio_readpage_release_extent(tree, extent_start,
2653 extent_len, uptodate);
2654 extent_start = start;
2655 extent_len = end + 1 - start;
2656 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002657 }
Chris Masond1310b22008-01-24 16:13:08 -05002658
Miao Xie883d0de2013-07-25 19:22:35 +08002659 if (extent_len)
2660 endio_readpage_release_extent(tree, extent_start, extent_len,
2661 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002662 if (io_bio->end_io)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002663 io_bio->end_io(io_bio, bio->bi_error);
Chris Masond1310b22008-01-24 16:13:08 -05002664 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002665}
2666
Chris Mason9be33952013-05-17 18:30:14 -04002667/*
2668 * this allocates from the btrfs_bioset. We're returning a bio right now
2669 * but you can call btrfs_io_bio for the appropriate container_of magic
2670 */
Miao Xie88f794e2010-11-22 03:02:55 +00002671struct bio *
2672btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2673 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002674{
Miao Xiefacc8a222013-07-25 19:22:34 +08002675 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002676 struct bio *bio;
2677
Chris Mason9be33952013-05-17 18:30:14 -04002678 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002679
2680 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002681 while (!bio && (nr_vecs /= 2)) {
2682 bio = bio_alloc_bioset(gfp_flags,
2683 nr_vecs, btrfs_bioset);
2684 }
Chris Masond1310b22008-01-24 16:13:08 -05002685 }
2686
2687 if (bio) {
2688 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002689 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002690 btrfs_bio = btrfs_io_bio(bio);
2691 btrfs_bio->csum = NULL;
2692 btrfs_bio->csum_allocated = NULL;
2693 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002694 }
2695 return bio;
2696}
2697
Chris Mason9be33952013-05-17 18:30:14 -04002698struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2699{
Miao Xie23ea8e52014-09-12 18:43:54 +08002700 struct btrfs_io_bio *btrfs_bio;
2701 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002702
Miao Xie23ea8e52014-09-12 18:43:54 +08002703 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2704 if (new) {
2705 btrfs_bio = btrfs_io_bio(new);
2706 btrfs_bio->csum = NULL;
2707 btrfs_bio->csum_allocated = NULL;
2708 btrfs_bio->end_io = NULL;
2709 }
2710 return new;
2711}
Chris Mason9be33952013-05-17 18:30:14 -04002712
2713/* this also allocates from the btrfs_bioset */
2714struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2715{
Miao Xiefacc8a222013-07-25 19:22:34 +08002716 struct btrfs_io_bio *btrfs_bio;
2717 struct bio *bio;
2718
2719 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2720 if (bio) {
2721 btrfs_bio = btrfs_io_bio(bio);
2722 btrfs_bio->csum = NULL;
2723 btrfs_bio->csum_allocated = NULL;
2724 btrfs_bio->end_io = NULL;
2725 }
2726 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002727}
2728
2729
Mike Christie1f7ad752016-06-05 14:31:51 -05002730static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
2731 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002732{
Chris Masond1310b22008-01-24 16:13:08 -05002733 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002734 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2735 struct page *page = bvec->bv_page;
2736 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002737 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002738
Miao Xie4eee4fa2012-12-21 09:17:45 +00002739 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002740
David Woodhouse902b22f2008-08-20 08:51:49 -04002741 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002742 bio_get(bio);
2743
David Sterba20c98012017-02-17 15:59:35 +01002744 if (tree->ops)
Mike Christie81a75f672016-06-05 14:31:54 -05002745 ret = tree->ops->submit_bio_hook(page->mapping->host, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002746 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002747 else
Mike Christie4e49ea42016-06-05 14:31:41 -05002748 btrfsic_submit_bio(bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002749
Chris Masond1310b22008-01-24 16:13:08 -05002750 bio_put(bio);
2751 return ret;
2752}
2753
Mike Christie1f7ad752016-06-05 14:31:51 -05002754static int merge_bio(struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002755 unsigned long offset, size_t size, struct bio *bio,
2756 unsigned long bio_flags)
2757{
2758 int ret = 0;
David Sterba20c98012017-02-17 15:59:35 +01002759 if (tree->ops)
Mike Christie81a75f672016-06-05 14:31:54 -05002760 ret = tree->ops->merge_bio_hook(page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002761 bio_flags);
Jeff Mahoney3444a972011-10-03 23:23:13 -04002762 return ret;
2763
2764}
2765
Mike Christie1f7ad752016-06-05 14:31:51 -05002766static int submit_extent_page(int op, int op_flags, struct extent_io_tree *tree,
Chris Masonda2f0f72015-07-02 13:57:22 -07002767 struct writeback_control *wbc,
Chris Masond1310b22008-01-24 16:13:08 -05002768 struct page *page, sector_t sector,
2769 size_t size, unsigned long offset,
2770 struct block_device *bdev,
2771 struct bio **bio_ret,
Chris Masonf1885912008-04-09 16:28:12 -04002772 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002773 int mirror_num,
2774 unsigned long prev_bio_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002775 unsigned long bio_flags,
2776 bool force_bio_submit)
Chris Masond1310b22008-01-24 16:13:08 -05002777{
2778 int ret = 0;
2779 struct bio *bio;
Chris Masonc8b97812008-10-29 14:49:59 -04002780 int contig = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002781 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002782 size_t page_size = min_t(size_t, size, PAGE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002783
2784 if (bio_ret && *bio_ret) {
2785 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002786 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002787 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002788 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002789 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002790
2791 if (prev_bio_flags != bio_flags || !contig ||
Filipe Manana005efed2015-09-14 09:09:31 +01002792 force_bio_submit ||
Mike Christie1f7ad752016-06-05 14:31:51 -05002793 merge_bio(tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002794 bio_add_page(bio, page, page_size, offset) < page_size) {
Mike Christie1f7ad752016-06-05 14:31:51 -05002795 ret = submit_one_bio(bio, mirror_num, prev_bio_flags);
Naohiro Aota289454a2015-01-06 01:01:03 +09002796 if (ret < 0) {
2797 *bio_ret = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002798 return ret;
Naohiro Aota289454a2015-01-06 01:01:03 +09002799 }
Chris Masond1310b22008-01-24 16:13:08 -05002800 bio = NULL;
2801 } else {
Chris Masonda2f0f72015-07-02 13:57:22 -07002802 if (wbc)
2803 wbc_account_io(wbc, page, page_size);
Chris Masond1310b22008-01-24 16:13:08 -05002804 return 0;
2805 }
2806 }
Chris Masonc8b97812008-10-29 14:49:59 -04002807
Kent Overstreetb54ffb72015-05-19 14:31:01 +02002808 bio = btrfs_bio_alloc(bdev, sector, BIO_MAX_PAGES,
2809 GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002810 if (!bio)
2811 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002812
Chris Masonc8b97812008-10-29 14:49:59 -04002813 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002814 bio->bi_end_io = end_io_func;
2815 bio->bi_private = tree;
Mike Christie1f7ad752016-06-05 14:31:51 -05002816 bio_set_op_attrs(bio, op, op_flags);
Chris Masonda2f0f72015-07-02 13:57:22 -07002817 if (wbc) {
2818 wbc_init_bio(wbc, bio);
2819 wbc_account_io(wbc, page, page_size);
2820 }
Chris Mason70dec802008-01-29 09:59:12 -05002821
Chris Masond3977122009-01-05 21:25:51 -05002822 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002823 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002824 else
Mike Christie1f7ad752016-06-05 14:31:51 -05002825 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002826
2827 return ret;
2828}
2829
Eric Sandeen48a3b632013-04-25 20:41:01 +00002830static void attach_extent_buffer_page(struct extent_buffer *eb,
2831 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002832{
2833 if (!PagePrivate(page)) {
2834 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002835 get_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002836 set_page_private(page, (unsigned long)eb);
2837 } else {
2838 WARN_ON(page->private != (unsigned long)eb);
2839 }
2840}
2841
Chris Masond1310b22008-01-24 16:13:08 -05002842void set_page_extent_mapped(struct page *page)
2843{
2844 if (!PagePrivate(page)) {
2845 SetPagePrivate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002846 get_page(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002847 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002848 }
2849}
2850
Miao Xie125bac012013-07-25 19:22:37 +08002851static struct extent_map *
2852__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2853 u64 start, u64 len, get_extent_t *get_extent,
2854 struct extent_map **em_cached)
2855{
2856 struct extent_map *em;
2857
2858 if (em_cached && *em_cached) {
2859 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002860 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002861 start < extent_map_end(em)) {
2862 atomic_inc(&em->refs);
2863 return em;
2864 }
2865
2866 free_extent_map(em);
2867 *em_cached = NULL;
2868 }
2869
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02002870 em = get_extent(BTRFS_I(inode), page, pg_offset, start, len, 0);
Miao Xie125bac012013-07-25 19:22:37 +08002871 if (em_cached && !IS_ERR_OR_NULL(em)) {
2872 BUG_ON(*em_cached);
2873 atomic_inc(&em->refs);
2874 *em_cached = em;
2875 }
2876 return em;
2877}
Chris Masond1310b22008-01-24 16:13:08 -05002878/*
2879 * basic readpage implementation. Locked extent state structs are inserted
2880 * into the tree that are removed when the IO is done (by the end_io
2881 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002882 * XXX JDM: This needs looking at to ensure proper page locking
Liu Bobaf863b2016-07-11 10:39:07 -07002883 * return 0 on success, otherwise return error
Chris Masond1310b22008-01-24 16:13:08 -05002884 */
Miao Xie99740902013-07-25 19:22:36 +08002885static int __do_readpage(struct extent_io_tree *tree,
2886 struct page *page,
2887 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002888 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002889 struct bio **bio, int mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05002890 unsigned long *bio_flags, int read_flags,
Filipe Manana005efed2015-09-14 09:09:31 +01002891 u64 *prev_em_start)
Chris Masond1310b22008-01-24 16:13:08 -05002892{
2893 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002894 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002895 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002896 u64 end;
2897 u64 cur = start;
2898 u64 extent_offset;
2899 u64 last_byte = i_size_read(inode);
2900 u64 block_start;
2901 u64 cur_end;
2902 sector_t sector;
2903 struct extent_map *em;
2904 struct block_device *bdev;
Liu Bobaf863b2016-07-11 10:39:07 -07002905 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002906 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002907 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002908 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002909 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002910 size_t blocksize = inode->i_sb->s_blocksize;
Filipe Manana7f042a82016-01-27 19:17:20 +00002911 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002912
2913 set_page_extent_mapped(page);
2914
Miao Xie99740902013-07-25 19:22:36 +08002915 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002916 if (!PageUptodate(page)) {
2917 if (cleancache_get_page(page) == 0) {
2918 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002919 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002920 goto out;
2921 }
2922 }
2923
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002924 if (page->index == last_byte >> PAGE_SHIFT) {
Chris Masonc8b97812008-10-29 14:49:59 -04002925 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002926 size_t zero_offset = last_byte & (PAGE_SIZE - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002927
2928 if (zero_offset) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002929 iosize = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002930 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002931 memset(userpage + zero_offset, 0, iosize);
2932 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002933 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002934 }
2935 }
Chris Masond1310b22008-01-24 16:13:08 -05002936 while (cur <= end) {
Filipe Manana005efed2015-09-14 09:09:31 +01002937 bool force_bio_submit = false;
Josef Bacikc8f2f242013-02-11 11:33:00 -05002938
Chris Masond1310b22008-01-24 16:13:08 -05002939 if (cur >= last_byte) {
2940 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002941 struct extent_state *cached = NULL;
2942
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002943 iosize = PAGE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002944 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002945 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002946 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002947 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002948 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002949 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00002950 unlock_extent_cached(tree, cur,
2951 cur + iosize - 1,
2952 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002953 break;
2954 }
Miao Xie125bac012013-07-25 19:22:37 +08002955 em = __get_extent_map(inode, page, pg_offset, cur,
2956 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002957 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002958 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00002959 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002960 break;
2961 }
Chris Masond1310b22008-01-24 16:13:08 -05002962 extent_offset = cur - em->start;
2963 BUG_ON(extent_map_end(em) <= cur);
2964 BUG_ON(end < cur);
2965
Li Zefan261507a02010-12-17 14:21:50 +08002966 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002967 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002968 extent_set_compress_type(&this_bio_flag,
2969 em->compress_type);
2970 }
Chris Masonc8b97812008-10-29 14:49:59 -04002971
Chris Masond1310b22008-01-24 16:13:08 -05002972 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2973 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002974 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002975 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2976 disk_io_size = em->block_len;
2977 sector = em->block_start >> 9;
2978 } else {
2979 sector = (em->block_start + extent_offset) >> 9;
2980 disk_io_size = iosize;
2981 }
Chris Masond1310b22008-01-24 16:13:08 -05002982 bdev = em->bdev;
2983 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002984 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2985 block_start = EXTENT_MAP_HOLE;
Filipe Manana005efed2015-09-14 09:09:31 +01002986
2987 /*
2988 * If we have a file range that points to a compressed extent
2989 * and it's followed by a consecutive file range that points to
2990 * to the same compressed extent (possibly with a different
2991 * offset and/or length, so it either points to the whole extent
2992 * or only part of it), we must make sure we do not submit a
2993 * single bio to populate the pages for the 2 ranges because
2994 * this makes the compressed extent read zero out the pages
2995 * belonging to the 2nd range. Imagine the following scenario:
2996 *
2997 * File layout
2998 * [0 - 8K] [8K - 24K]
2999 * | |
3000 * | |
3001 * points to extent X, points to extent X,
3002 * offset 4K, length of 8K offset 0, length 16K
3003 *
3004 * [extent X, compressed length = 4K uncompressed length = 16K]
3005 *
3006 * If the bio to read the compressed extent covers both ranges,
3007 * it will decompress extent X into the pages belonging to the
3008 * first range and then it will stop, zeroing out the remaining
3009 * pages that belong to the other range that points to extent X.
3010 * So here we make sure we submit 2 bios, one for the first
3011 * range and another one for the third range. Both will target
3012 * the same physical extent from disk, but we can't currently
3013 * make the compressed bio endio callback populate the pages
3014 * for both ranges because each compressed bio is tightly
3015 * coupled with a single extent map, and each range can have
3016 * an extent map with a different offset value relative to the
3017 * uncompressed data of our extent and different lengths. This
3018 * is a corner case so we prioritize correctness over
3019 * non-optimal behavior (submitting 2 bios for the same extent).
3020 */
3021 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) &&
3022 prev_em_start && *prev_em_start != (u64)-1 &&
3023 *prev_em_start != em->orig_start)
3024 force_bio_submit = true;
3025
3026 if (prev_em_start)
3027 *prev_em_start = em->orig_start;
3028
Chris Masond1310b22008-01-24 16:13:08 -05003029 free_extent_map(em);
3030 em = NULL;
3031
3032 /* we've found a hole, just zero and go on */
3033 if (block_start == EXTENT_MAP_HOLE) {
3034 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00003035 struct extent_state *cached = NULL;
3036
Cong Wang7ac687d2011-11-25 23:14:28 +08003037 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02003038 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05003039 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08003040 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05003041
3042 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00003043 &cached, GFP_NOFS);
Filipe Manana7f042a82016-01-27 19:17:20 +00003044 unlock_extent_cached(tree, cur,
3045 cur + iosize - 1,
3046 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003047 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003048 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003049 continue;
3050 }
3051 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04003052 if (test_range_bit(tree, cur, cur_end,
3053 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04003054 check_page_uptodate(tree, page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003055 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003056 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003057 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003058 continue;
3059 }
Chris Mason70dec802008-01-29 09:59:12 -05003060 /* we have an inline extent but it didn't get marked up
3061 * to date. Error out
3062 */
3063 if (block_start == EXTENT_MAP_INLINE) {
3064 SetPageError(page);
Filipe Manana7f042a82016-01-27 19:17:20 +00003065 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05003066 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003067 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05003068 continue;
3069 }
Chris Masond1310b22008-01-24 16:13:08 -05003070
Mike Christie1f7ad752016-06-05 14:31:51 -05003071 ret = submit_extent_page(REQ_OP_READ, read_flags, tree, NULL,
3072 page, sector, disk_io_size, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003073 bdev, bio,
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);
Filipe Manana7f042a82016-01-27 19:17:20 +00003083 unlock_extent(tree, cur, cur + iosize - 1);
Liu Bobaf863b2016-07-11 10:39:07 -07003084 goto out;
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 }
Liu Bobaf863b2016-07-11 10:39:07 -07003095 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003096}
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,
Mike Christie1f7ad752016-06-05 14:31:51 -05003104 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003105 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);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003114 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Miao Xie99740902013-07-25 19:22:36 +08003115 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,
Mike Christie1f7ad752016-06-05 14:31:51 -05003125 mirror_num, bio_flags, 0, prev_em_start);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003126 put_page(pages[index]);
Miao Xie99740902013-07-25 19:22:36 +08003127 }
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,
Mike Christie1f7ad752016-06-05 14:31:51 -05003135 unsigned long *bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003136 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;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003148 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003149 first_index = index;
3150 } else if (end + 1 == page_start) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003151 end += PAGE_SIZE;
Miao Xie99740902013-07-25 19:22:36 +08003152 } 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,
Mike Christie1f7ad752016-06-05 14:31:51 -05003157 prev_em_start);
Miao Xie99740902013-07-25 19:22:36 +08003158 start = page_start;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003159 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003160 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,
Mike Christie1f7ad752016-06-05 14:31:51 -05003168 mirror_num, bio_flags,
Filipe Manana808f80b2015-09-28 09:56:26 +01003169 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,
Mike Christie1f7ad752016-06-05 14:31:51 -05003176 unsigned long *bio_flags, int read_flags)
Miao Xie99740902013-07-25 19:22:36 +08003177{
3178 struct inode *inode = page->mapping->host;
3179 struct btrfs_ordered_extent *ordered;
3180 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003181 u64 end = start + PAGE_SIZE - 1;
Miao Xie99740902013-07-25 19:22:36 +08003182 int ret;
3183
3184 while (1) {
3185 lock_extent(tree, start, end);
Nikolay Borisova776c6f2017-02-20 13:50:49 +02003186 ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003187 PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08003188 if (!ordered)
3189 break;
3190 unlock_extent(tree, start, end);
3191 btrfs_start_ordered_extent(inode, ordered, 1);
3192 btrfs_put_ordered_extent(ordered);
3193 }
3194
Miao Xie125bac012013-07-25 19:22:37 +08003195 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003196 bio_flags, read_flags, NULL);
Miao Xie99740902013-07-25 19:22:36 +08003197 return ret;
3198}
3199
Chris Masond1310b22008-01-24 16:13:08 -05003200int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003201 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003202{
3203 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003204 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003205 int ret;
3206
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003207 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Mike Christie1f7ad752016-06-05 14:31:51 -05003208 &bio_flags, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003209 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05003210 ret = submit_one_bio(bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003211 return ret;
3212}
Chris Masond1310b22008-01-24 16:13:08 -05003213
David Sterba3d4b9492017-02-10 19:33:41 +01003214static void update_nr_written(struct writeback_control *wbc,
Liu Boa91326672016-03-07 16:56:21 -08003215 unsigned long nr_written)
Chris Mason11c83492009-04-20 15:50:09 -04003216{
3217 wbc->nr_to_write -= nr_written;
Chris Mason11c83492009-04-20 15:50:09 -04003218}
3219
Chris Masond1310b22008-01-24 16:13:08 -05003220/*
Chris Mason40f76582014-05-21 13:35:51 -07003221 * helper for __extent_writepage, doing all of the delayed allocation setup.
3222 *
3223 * This returns 1 if our fill_delalloc function did all the work required
3224 * to write the page (copy into inline extent). In this case the IO has
3225 * been started and the page is already unlocked.
3226 *
3227 * This returns 0 if all went well (page still locked)
3228 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003229 */
Chris Mason40f76582014-05-21 13:35:51 -07003230static noinline_for_stack int writepage_delalloc(struct inode *inode,
3231 struct page *page, struct writeback_control *wbc,
3232 struct extent_page_data *epd,
3233 u64 delalloc_start,
3234 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003235{
Chris Mason40f76582014-05-21 13:35:51 -07003236 struct extent_io_tree *tree = epd->tree;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003237 u64 page_end = delalloc_start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003238 u64 nr_delalloc;
3239 u64 delalloc_to_write = 0;
3240 u64 delalloc_end = 0;
3241 int ret;
3242 int page_started = 0;
3243
3244 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3245 return 0;
3246
3247 while (delalloc_end < page_end) {
3248 nr_delalloc = find_lock_delalloc_range(inode, tree,
3249 page,
3250 &delalloc_start,
3251 &delalloc_end,
Josef Bacikdcab6a32015-02-11 15:08:59 -05003252 BTRFS_MAX_EXTENT_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003253 if (nr_delalloc == 0) {
3254 delalloc_start = delalloc_end + 1;
3255 continue;
3256 }
3257 ret = tree->ops->fill_delalloc(inode, page,
3258 delalloc_start,
3259 delalloc_end,
3260 &page_started,
3261 nr_written);
3262 /* File system has been set read-only */
3263 if (ret) {
3264 SetPageError(page);
3265 /* fill_delalloc should be return < 0 for error
3266 * but just in case, we use > 0 here meaning the
3267 * IO is started, so we don't want to return > 0
3268 * unless things are going well.
3269 */
3270 ret = ret < 0 ? ret : -EIO;
3271 goto done;
3272 }
3273 /*
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003274 * delalloc_end is already one less than the total length, so
3275 * we don't subtract one from PAGE_SIZE
Chris Mason40f76582014-05-21 13:35:51 -07003276 */
3277 delalloc_to_write += (delalloc_end - delalloc_start +
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03003278 PAGE_SIZE) >> PAGE_SHIFT;
Chris Mason40f76582014-05-21 13:35:51 -07003279 delalloc_start = delalloc_end + 1;
3280 }
3281 if (wbc->nr_to_write < delalloc_to_write) {
3282 int thresh = 8192;
3283
3284 if (delalloc_to_write < thresh * 2)
3285 thresh = delalloc_to_write;
3286 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3287 thresh);
3288 }
3289
3290 /* did the fill delalloc function already unlock and start
3291 * the IO?
3292 */
3293 if (page_started) {
3294 /*
3295 * we've unlocked the page, so we can't update
3296 * the mapping's writeback index, just update
3297 * nr_to_write.
3298 */
3299 wbc->nr_to_write -= *nr_written;
3300 return 1;
3301 }
3302
3303 ret = 0;
3304
3305done:
3306 return ret;
3307}
3308
3309/*
3310 * helper for __extent_writepage. This calls the writepage start hooks,
3311 * and does the loop to map the page into extents and bios.
3312 *
3313 * We return 1 if the IO is started and the page is unlocked,
3314 * 0 if all went well (page still locked)
3315 * < 0 if there were errors (page still locked)
3316 */
3317static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3318 struct page *page,
3319 struct writeback_control *wbc,
3320 struct extent_page_data *epd,
3321 loff_t i_size,
3322 unsigned long nr_written,
3323 int write_flags, int *nr_ret)
3324{
Chris Masond1310b22008-01-24 16:13:08 -05003325 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003326 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003327 u64 page_end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05003328 u64 end;
3329 u64 cur = start;
3330 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003331 u64 block_start;
3332 u64 iosize;
3333 sector_t sector;
3334 struct extent_map *em;
3335 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003336 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003337 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003338 int ret = 0;
3339 int nr = 0;
3340 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003341
Chris Mason247e7432008-07-17 12:53:51 -04003342 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003343 ret = tree->ops->writepage_start_hook(page, start,
3344 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003345 if (ret) {
3346 /* Fixup worker will requeue */
3347 if (ret == -EBUSY)
3348 wbc->pages_skipped++;
3349 else
3350 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003351
David Sterba3d4b9492017-02-10 19:33:41 +01003352 update_nr_written(wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003353 unlock_page(page);
Liu Bobcf93482017-01-25 17:15:54 -08003354 return 1;
Chris Mason247e7432008-07-17 12:53:51 -04003355 }
3356 }
3357
Chris Mason11c83492009-04-20 15:50:09 -04003358 /*
3359 * we don't want to touch the inode after unlocking the page,
3360 * so we update the mapping writeback index now
3361 */
David Sterba3d4b9492017-02-10 19:33:41 +01003362 update_nr_written(wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003363
Chris Masond1310b22008-01-24 16:13:08 -05003364 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003365 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003366 if (tree->ops && tree->ops->writepage_end_io_hook)
3367 tree->ops->writepage_end_io_hook(page, start,
3368 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003369 goto done;
3370 }
3371
Chris Masond1310b22008-01-24 16:13:08 -05003372 blocksize = inode->i_sb->s_blocksize;
3373
3374 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003375 u64 em_end;
David Sterba58409ed2016-05-04 11:46:10 +02003376
Chris Mason40f76582014-05-21 13:35:51 -07003377 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003378 if (tree->ops && tree->ops->writepage_end_io_hook)
3379 tree->ops->writepage_end_io_hook(page, cur,
3380 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003381 break;
3382 }
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02003383 em = epd->get_extent(BTRFS_I(inode), page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003384 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003385 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003386 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003387 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003388 break;
3389 }
3390
3391 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003392 em_end = extent_map_end(em);
3393 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003394 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003395 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003396 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003397 sector = (em->block_start + extent_offset) >> 9;
3398 bdev = em->bdev;
3399 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003400 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003401 free_extent_map(em);
3402 em = NULL;
3403
Chris Masonc8b97812008-10-29 14:49:59 -04003404 /*
3405 * compressed and inline extents are written through other
3406 * paths in the FS
3407 */
3408 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003409 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003410 /*
3411 * end_io notification does not happen here for
3412 * compressed extents
3413 */
3414 if (!compressed && tree->ops &&
3415 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003416 tree->ops->writepage_end_io_hook(page, cur,
3417 cur + iosize - 1,
3418 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003419 else if (compressed) {
3420 /* we don't want to end_page_writeback on
3421 * a compressed extent. this happens
3422 * elsewhere
3423 */
3424 nr++;
3425 }
3426
3427 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003428 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003429 continue;
3430 }
Chris Masonc8b97812008-10-29 14:49:59 -04003431
David Sterba58409ed2016-05-04 11:46:10 +02003432 set_range_writeback(tree, cur, cur + iosize - 1);
3433 if (!PageWriteback(page)) {
3434 btrfs_err(BTRFS_I(inode)->root->fs_info,
3435 "page %lu not writeback, cur %llu end %llu",
3436 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003437 }
David Sterba58409ed2016-05-04 11:46:10 +02003438
Mike Christie1f7ad752016-06-05 14:31:51 -05003439 ret = submit_extent_page(REQ_OP_WRITE, write_flags, tree, wbc,
3440 page, sector, iosize, pg_offset,
David Sterbac2df8bb2017-02-10 19:29:38 +01003441 bdev, &epd->bio,
David Sterba58409ed2016-05-04 11:46:10 +02003442 end_bio_extent_writepage,
3443 0, 0, 0, false);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003444 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003445 SetPageError(page);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003446 if (PageWriteback(page))
3447 end_page_writeback(page);
3448 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003449
Chris Masond1310b22008-01-24 16:13:08 -05003450 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003451 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003452 nr++;
3453 }
3454done:
Chris Mason40f76582014-05-21 13:35:51 -07003455 *nr_ret = nr;
Chris Mason40f76582014-05-21 13:35:51 -07003456 return ret;
3457}
3458
3459/*
3460 * the writepage semantics are similar to regular writepage. extent
3461 * records are inserted to lock ranges in the tree, and as dirty areas
3462 * are found, they are marked writeback. Then the lock bits are removed
3463 * and the end_io handler clears the writeback ranges
3464 */
3465static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3466 void *data)
3467{
3468 struct inode *inode = page->mapping->host;
3469 struct extent_page_data *epd = data;
3470 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003471 u64 page_end = start + PAGE_SIZE - 1;
Chris Mason40f76582014-05-21 13:35:51 -07003472 int ret;
3473 int nr = 0;
3474 size_t pg_offset = 0;
3475 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003476 unsigned long end_index = i_size >> PAGE_SHIFT;
Mike Christie1f7ad752016-06-05 14:31:51 -05003477 int write_flags = 0;
Chris Mason40f76582014-05-21 13:35:51 -07003478 unsigned long nr_written = 0;
3479
3480 if (wbc->sync_mode == WB_SYNC_ALL)
Christoph Hellwig70fd7612016-11-01 07:40:10 -06003481 write_flags = REQ_SYNC;
Chris Mason40f76582014-05-21 13:35:51 -07003482
3483 trace___extent_writepage(page, inode, wbc);
3484
3485 WARN_ON(!PageLocked(page));
3486
3487 ClearPageError(page);
3488
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003489 pg_offset = i_size & (PAGE_SIZE - 1);
Chris Mason40f76582014-05-21 13:35:51 -07003490 if (page->index > end_index ||
3491 (page->index == end_index && !pg_offset)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003492 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Chris Mason40f76582014-05-21 13:35:51 -07003493 unlock_page(page);
3494 return 0;
3495 }
3496
3497 if (page->index == end_index) {
3498 char *userpage;
3499
3500 userpage = kmap_atomic(page);
3501 memset(userpage + pg_offset, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003502 PAGE_SIZE - pg_offset);
Chris Mason40f76582014-05-21 13:35:51 -07003503 kunmap_atomic(userpage);
3504 flush_dcache_page(page);
3505 }
3506
3507 pg_offset = 0;
3508
3509 set_page_extent_mapped(page);
3510
3511 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3512 if (ret == 1)
3513 goto done_unlocked;
3514 if (ret)
3515 goto done;
3516
3517 ret = __extent_writepage_io(inode, page, wbc, epd,
3518 i_size, nr_written, write_flags, &nr);
3519 if (ret == 1)
3520 goto done_unlocked;
3521
3522done:
Chris Masond1310b22008-01-24 16:13:08 -05003523 if (nr == 0) {
3524 /* make sure the mapping tag for page dirty gets cleared */
3525 set_page_writeback(page);
3526 end_page_writeback(page);
3527 }
Filipe Manana61391d52014-05-09 17:17:40 +01003528 if (PageError(page)) {
3529 ret = ret < 0 ? ret : -EIO;
3530 end_extent_writepage(page, ret, start, page_end);
3531 }
Chris Masond1310b22008-01-24 16:13:08 -05003532 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003533 return ret;
Chris Mason771ed682008-11-06 22:02:51 -05003534
Chris Mason11c83492009-04-20 15:50:09 -04003535done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003536 return 0;
3537}
3538
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003539void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003540{
NeilBrown74316202014-07-07 15:16:04 +10003541 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3542 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003543}
3544
Chris Mason0e378df2014-05-19 20:55:27 -07003545static noinline_for_stack int
3546lock_extent_buffer_for_io(struct extent_buffer *eb,
3547 struct btrfs_fs_info *fs_info,
3548 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003549{
3550 unsigned long i, num_pages;
3551 int flush = 0;
3552 int ret = 0;
3553
3554 if (!btrfs_try_tree_write_lock(eb)) {
3555 flush = 1;
3556 flush_write_bio(epd);
3557 btrfs_tree_lock(eb);
3558 }
3559
3560 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3561 btrfs_tree_unlock(eb);
3562 if (!epd->sync_io)
3563 return 0;
3564 if (!flush) {
3565 flush_write_bio(epd);
3566 flush = 1;
3567 }
Chris Masona098d8e2012-03-21 12:09:56 -04003568 while (1) {
3569 wait_on_extent_buffer_writeback(eb);
3570 btrfs_tree_lock(eb);
3571 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3572 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003573 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003574 }
3575 }
3576
Josef Bacik51561ff2012-07-20 16:25:24 -04003577 /*
3578 * We need to do this to prevent races in people who check if the eb is
3579 * under IO since we can end up having no IO bits set for a short period
3580 * of time.
3581 */
3582 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003583 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3584 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003585 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003586 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003587 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3588 -eb->len,
3589 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003590 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003591 } else {
3592 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003593 }
3594
3595 btrfs_tree_unlock(eb);
3596
3597 if (!ret)
3598 return ret;
3599
3600 num_pages = num_extent_pages(eb->start, eb->len);
3601 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003602 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003603
3604 if (!trylock_page(p)) {
3605 if (!flush) {
3606 flush_write_bio(epd);
3607 flush = 1;
3608 }
3609 lock_page(p);
3610 }
3611 }
3612
3613 return ret;
3614}
3615
3616static void end_extent_buffer_writeback(struct extent_buffer *eb)
3617{
3618 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003619 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003620 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3621}
3622
Filipe Manana656f30d2014-09-26 12:25:56 +01003623static void set_btree_ioerr(struct page *page)
3624{
3625 struct extent_buffer *eb = (struct extent_buffer *)page->private;
Filipe Manana656f30d2014-09-26 12:25:56 +01003626
3627 SetPageError(page);
3628 if (test_and_set_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags))
3629 return;
3630
3631 /*
3632 * If writeback for a btree extent that doesn't belong to a log tree
3633 * failed, increment the counter transaction->eb_write_errors.
3634 * We do this because while the transaction is running and before it's
3635 * committing (when we call filemap_fdata[write|wait]_range against
3636 * the btree inode), we might have
3637 * btree_inode->i_mapping->a_ops->writepages() called by the VM - if it
3638 * returns an error or an error happens during writeback, when we're
3639 * committing the transaction we wouldn't know about it, since the pages
3640 * can be no longer dirty nor marked anymore for writeback (if a
3641 * subsequent modification to the extent buffer didn't happen before the
3642 * transaction commit), which makes filemap_fdata[write|wait]_range not
3643 * able to find the pages tagged with SetPageError at transaction
3644 * commit time. So if this happens we must abort the transaction,
3645 * otherwise we commit a super block with btree roots that point to
3646 * btree nodes/leafs whose content on disk is invalid - either garbage
3647 * or the content of some node/leaf from a past generation that got
3648 * cowed or deleted and is no longer valid.
3649 *
3650 * Note: setting AS_EIO/AS_ENOSPC in the btree inode's i_mapping would
3651 * not be enough - we need to distinguish between log tree extents vs
3652 * non-log tree extents, and the next filemap_fdatawait_range() call
3653 * will catch and clear such errors in the mapping - and that call might
3654 * be from a log sync and not from a transaction commit. Also, checking
3655 * for the eb flag EXTENT_BUFFER_WRITE_ERR at transaction commit time is
3656 * not done and would not be reliable - the eb might have been released
3657 * from memory and reading it back again means that flag would not be
3658 * set (since it's a runtime flag, not persisted on disk).
3659 *
3660 * Using the flags below in the btree inode also makes us achieve the
3661 * goal of AS_EIO/AS_ENOSPC when writepages() returns success, started
3662 * writeback for all dirty pages and before filemap_fdatawait_range()
3663 * is called, the writeback for all dirty pages had already finished
3664 * with errors - because we were not using AS_EIO/AS_ENOSPC,
3665 * filemap_fdatawait_range() would return success, as it could not know
3666 * that writeback errors happened (the pages were no longer tagged for
3667 * writeback).
3668 */
3669 switch (eb->log_index) {
3670 case -1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003671 set_bit(BTRFS_FS_BTREE_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003672 break;
3673 case 0:
Josef Bacikafcdd122016-09-02 15:40:02 -04003674 set_bit(BTRFS_FS_LOG1_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003675 break;
3676 case 1:
Josef Bacikafcdd122016-09-02 15:40:02 -04003677 set_bit(BTRFS_FS_LOG2_ERR, &eb->fs_info->flags);
Filipe Manana656f30d2014-09-26 12:25:56 +01003678 break;
3679 default:
3680 BUG(); /* unexpected, logic error */
3681 }
3682}
3683
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003684static void end_bio_extent_buffer_writepage(struct bio *bio)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003685{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003686 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003687 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003688 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003689
Kent Overstreet2c30c712013-11-07 12:20:26 -08003690 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003691 struct page *page = bvec->bv_page;
3692
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003693 eb = (struct extent_buffer *)page->private;
3694 BUG_ON(!eb);
3695 done = atomic_dec_and_test(&eb->io_pages);
3696
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003697 if (bio->bi_error ||
3698 test_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003699 ClearPageUptodate(page);
Filipe Manana656f30d2014-09-26 12:25:56 +01003700 set_btree_ioerr(page);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003701 }
3702
3703 end_page_writeback(page);
3704
3705 if (!done)
3706 continue;
3707
3708 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003709 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003710
3711 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003712}
3713
Chris Mason0e378df2014-05-19 20:55:27 -07003714static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003715 struct btrfs_fs_info *fs_info,
3716 struct writeback_control *wbc,
3717 struct extent_page_data *epd)
3718{
3719 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003720 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003721 u64 offset = eb->start;
Liu Bo851cd172016-09-23 13:44:44 -07003722 u32 nritems;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003723 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003724 unsigned long bio_flags = 0;
Liu Bo851cd172016-09-23 13:44:44 -07003725 unsigned long start, end;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06003726 int write_flags = (epd->sync_io ? REQ_SYNC : 0) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003727 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003728
Filipe Manana656f30d2014-09-26 12:25:56 +01003729 clear_bit(EXTENT_BUFFER_WRITE_ERR, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003730 num_pages = num_extent_pages(eb->start, eb->len);
3731 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003732 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3733 bio_flags = EXTENT_BIO_TREE_LOG;
3734
Liu Bo851cd172016-09-23 13:44:44 -07003735 /* set btree blocks beyond nritems with 0 to avoid stale content. */
3736 nritems = btrfs_header_nritems(eb);
Liu Bo3eb548e2016-09-14 17:22:57 -07003737 if (btrfs_header_level(eb) > 0) {
Liu Bo3eb548e2016-09-14 17:22:57 -07003738 end = btrfs_node_key_ptr_offset(nritems);
3739
David Sterbab159fa22016-11-08 18:09:03 +01003740 memzero_extent_buffer(eb, end, eb->len - end);
Liu Bo851cd172016-09-23 13:44:44 -07003741 } else {
3742 /*
3743 * leaf:
3744 * header 0 1 2 .. N ... data_N .. data_2 data_1 data_0
3745 */
3746 start = btrfs_item_nr_offset(nritems);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003747 end = btrfs_leaf_data(eb) + leaf_data_end(fs_info, eb);
David Sterbab159fa22016-11-08 18:09:03 +01003748 memzero_extent_buffer(eb, start, end - start);
Liu Bo3eb548e2016-09-14 17:22:57 -07003749 }
3750
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003751 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02003752 struct page *p = eb->pages[i];
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003753
3754 clear_page_dirty_for_io(p);
3755 set_page_writeback(p);
Mike Christie1f7ad752016-06-05 14:31:51 -05003756 ret = submit_extent_page(REQ_OP_WRITE, write_flags, tree, wbc,
3757 p, offset >> 9, PAGE_SIZE, 0, bdev,
David Sterbac2df8bb2017-02-10 19:29:38 +01003758 &epd->bio,
Mike Christie1f7ad752016-06-05 14:31:51 -05003759 end_bio_extent_buffer_writepage,
Filipe Manana005efed2015-09-14 09:09:31 +01003760 0, epd->bio_flags, bio_flags, false);
Josef Bacikde0022b2012-09-25 14:25:58 -04003761 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003762 if (ret) {
Filipe Manana656f30d2014-09-26 12:25:56 +01003763 set_btree_ioerr(p);
Takafumi Kubotafe01aa62017-02-09 17:24:33 +09003764 if (PageWriteback(p))
3765 end_page_writeback(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003766 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3767 end_extent_buffer_writeback(eb);
3768 ret = -EIO;
3769 break;
3770 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003771 offset += PAGE_SIZE;
David Sterba3d4b9492017-02-10 19:33:41 +01003772 update_nr_written(wbc, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003773 unlock_page(p);
3774 }
3775
3776 if (unlikely(ret)) {
3777 for (; i < num_pages; i++) {
Chris Masonbbf65cf2014-10-04 09:56:45 -07003778 struct page *p = eb->pages[i];
Liu Bo81465022014-09-23 22:22:33 +08003779 clear_page_dirty_for_io(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003780 unlock_page(p);
3781 }
3782 }
3783
3784 return ret;
3785}
3786
3787int btree_write_cache_pages(struct address_space *mapping,
3788 struct writeback_control *wbc)
3789{
3790 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3791 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3792 struct extent_buffer *eb, *prev_eb = NULL;
3793 struct extent_page_data epd = {
3794 .bio = NULL,
3795 .tree = tree,
3796 .extent_locked = 0,
3797 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003798 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003799 };
3800 int ret = 0;
3801 int done = 0;
3802 int nr_to_write_done = 0;
3803 struct pagevec pvec;
3804 int nr_pages;
3805 pgoff_t index;
3806 pgoff_t end; /* Inclusive */
3807 int scanned = 0;
3808 int tag;
3809
3810 pagevec_init(&pvec, 0);
3811 if (wbc->range_cyclic) {
3812 index = mapping->writeback_index; /* Start from prev offset */
3813 end = -1;
3814 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003815 index = wbc->range_start >> PAGE_SHIFT;
3816 end = wbc->range_end >> PAGE_SHIFT;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003817 scanned = 1;
3818 }
3819 if (wbc->sync_mode == WB_SYNC_ALL)
3820 tag = PAGECACHE_TAG_TOWRITE;
3821 else
3822 tag = PAGECACHE_TAG_DIRTY;
3823retry:
3824 if (wbc->sync_mode == WB_SYNC_ALL)
3825 tag_pages_for_writeback(mapping, index, end);
3826 while (!done && !nr_to_write_done && (index <= end) &&
3827 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3828 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3829 unsigned i;
3830
3831 scanned = 1;
3832 for (i = 0; i < nr_pages; i++) {
3833 struct page *page = pvec.pages[i];
3834
3835 if (!PagePrivate(page))
3836 continue;
3837
3838 if (!wbc->range_cyclic && page->index > end) {
3839 done = 1;
3840 break;
3841 }
3842
Josef Bacikb5bae262012-09-14 13:43:01 -04003843 spin_lock(&mapping->private_lock);
3844 if (!PagePrivate(page)) {
3845 spin_unlock(&mapping->private_lock);
3846 continue;
3847 }
3848
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003849 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003850
3851 /*
3852 * Shouldn't happen and normally this would be a BUG_ON
3853 * but no sense in crashing the users box for something
3854 * we can survive anyway.
3855 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303856 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003857 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003858 continue;
3859 }
3860
Josef Bacikb5bae262012-09-14 13:43:01 -04003861 if (eb == prev_eb) {
3862 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003863 continue;
3864 }
3865
Josef Bacikb5bae262012-09-14 13:43:01 -04003866 ret = atomic_inc_not_zero(&eb->refs);
3867 spin_unlock(&mapping->private_lock);
3868 if (!ret)
3869 continue;
3870
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003871 prev_eb = eb;
3872 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3873 if (!ret) {
3874 free_extent_buffer(eb);
3875 continue;
3876 }
3877
3878 ret = write_one_eb(eb, fs_info, wbc, &epd);
3879 if (ret) {
3880 done = 1;
3881 free_extent_buffer(eb);
3882 break;
3883 }
3884 free_extent_buffer(eb);
3885
3886 /*
3887 * the filesystem may choose to bump up nr_to_write.
3888 * We have to make sure to honor the new nr_to_write
3889 * at any time
3890 */
3891 nr_to_write_done = wbc->nr_to_write <= 0;
3892 }
3893 pagevec_release(&pvec);
3894 cond_resched();
3895 }
3896 if (!scanned && !done) {
3897 /*
3898 * We hit the last page and there is more work to be done: wrap
3899 * back to the start of the file
3900 */
3901 scanned = 1;
3902 index = 0;
3903 goto retry;
3904 }
3905 flush_write_bio(&epd);
3906 return ret;
3907}
3908
Chris Masond1310b22008-01-24 16:13:08 -05003909/**
Chris Mason4bef0842008-09-08 11:18:08 -04003910 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
Chris Masond1310b22008-01-24 16:13:08 -05003911 * @mapping: address space structure to write
3912 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3913 * @writepage: function called for each page
3914 * @data: data passed to writepage function
3915 *
3916 * If a page is already under I/O, write_cache_pages() skips it, even
3917 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3918 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3919 * and msync() need to guarantee that all the data which was dirty at the time
3920 * the call was made get new I/O started against them. If wbc->sync_mode is
3921 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3922 * existing IO to complete.
3923 */
David Sterba4242b642017-02-10 19:38:24 +01003924static int extent_write_cache_pages(struct address_space *mapping,
Chris Mason4bef0842008-09-08 11:18:08 -04003925 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003926 writepage_t writepage, void *data,
3927 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003928{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003929 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003930 int ret = 0;
3931 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003932 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003933 struct pagevec pvec;
3934 int nr_pages;
3935 pgoff_t index;
3936 pgoff_t end; /* Inclusive */
Liu Boa91326672016-03-07 16:56:21 -08003937 pgoff_t done_index;
3938 int range_whole = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003939 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003940 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003941
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003942 /*
3943 * We have to hold onto the inode so that ordered extents can do their
3944 * work when the IO finishes. The alternative to this is failing to add
3945 * an ordered extent if the igrab() fails there and that is a huge pain
3946 * to deal with, so instead just hold onto the inode throughout the
3947 * writepages operation. If it fails here we are freeing up the inode
3948 * anyway and we'd rather not waste our time writing out stuff that is
3949 * going to be truncated anyway.
3950 */
3951 if (!igrab(inode))
3952 return 0;
3953
Chris Masond1310b22008-01-24 16:13:08 -05003954 pagevec_init(&pvec, 0);
3955 if (wbc->range_cyclic) {
3956 index = mapping->writeback_index; /* Start from prev offset */
3957 end = -1;
3958 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003959 index = wbc->range_start >> PAGE_SHIFT;
3960 end = wbc->range_end >> PAGE_SHIFT;
Liu Boa91326672016-03-07 16:56:21 -08003961 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
3962 range_whole = 1;
Chris Masond1310b22008-01-24 16:13:08 -05003963 scanned = 1;
3964 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003965 if (wbc->sync_mode == WB_SYNC_ALL)
3966 tag = PAGECACHE_TAG_TOWRITE;
3967 else
3968 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003969retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003970 if (wbc->sync_mode == WB_SYNC_ALL)
3971 tag_pages_for_writeback(mapping, index, end);
Liu Boa91326672016-03-07 16:56:21 -08003972 done_index = index;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003973 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003974 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3975 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003976 unsigned i;
3977
3978 scanned = 1;
3979 for (i = 0; i < nr_pages; i++) {
3980 struct page *page = pvec.pages[i];
3981
Liu Boa91326672016-03-07 16:56:21 -08003982 done_index = page->index;
Chris Masond1310b22008-01-24 16:13:08 -05003983 /*
3984 * At this point we hold neither mapping->tree_lock nor
3985 * lock on the page itself: the page may be truncated or
3986 * invalidated (changing page->mapping to NULL), or even
3987 * swizzled back from swapper_space to tmpfs file
3988 * mapping
3989 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003990 if (!trylock_page(page)) {
3991 flush_fn(data);
3992 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003993 }
Chris Masond1310b22008-01-24 16:13:08 -05003994
3995 if (unlikely(page->mapping != mapping)) {
3996 unlock_page(page);
3997 continue;
3998 }
3999
4000 if (!wbc->range_cyclic && page->index > end) {
4001 done = 1;
4002 unlock_page(page);
4003 continue;
4004 }
4005
Chris Masond2c3f4f2008-11-19 12:44:22 -05004006 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05004007 if (PageWriteback(page))
4008 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05004009 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004010 }
Chris Masond1310b22008-01-24 16:13:08 -05004011
4012 if (PageWriteback(page) ||
4013 !clear_page_dirty_for_io(page)) {
4014 unlock_page(page);
4015 continue;
4016 }
4017
4018 ret = (*writepage)(page, wbc, data);
4019
4020 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
4021 unlock_page(page);
4022 ret = 0;
4023 }
Liu Boa91326672016-03-07 16:56:21 -08004024 if (ret < 0) {
4025 /*
4026 * done_index is set past this page,
4027 * so media errors will not choke
4028 * background writeout for the entire
4029 * file. This has consequences for
4030 * range_cyclic semantics (ie. it may
4031 * not be suitable for data integrity
4032 * writeout).
4033 */
4034 done_index = page->index + 1;
4035 done = 1;
4036 break;
4037 }
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 }
Liu Bo894b36e2016-03-07 16:56:22 -08004049 if (!scanned && !done) {
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 }
Liu Boa91326672016-03-07 16:56:21 -08004058
4059 if (wbc->range_cyclic || (wbc->nr_to_write > 0 && range_whole))
4060 mapping->writeback_index = done_index;
4061
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04004062 btrfs_add_delayed_iput(inode);
Liu Bo894b36e2016-03-07 16:56:22 -08004063 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004064}
Chris Masond1310b22008-01-24 16:13:08 -05004065
Chris Masonffbd5172009-04-20 15:50:09 -04004066static void flush_epd_write_bio(struct extent_page_data *epd)
4067{
4068 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04004069 int ret;
4070
Mike Christie1f7ad752016-06-05 14:31:51 -05004071 bio_set_op_attrs(epd->bio, REQ_OP_WRITE,
Christoph Hellwig70fd7612016-11-01 07:40:10 -06004072 epd->sync_io ? REQ_SYNC : 0);
Jeff Mahoney355808c2011-10-03 23:23:14 -04004073
Mike Christie1f7ad752016-06-05 14:31:51 -05004074 ret = submit_one_bio(epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004075 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04004076 epd->bio = NULL;
4077 }
4078}
4079
Chris Masond2c3f4f2008-11-19 12:44:22 -05004080static noinline void flush_write_bio(void *data)
4081{
4082 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04004083 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05004084}
4085
Chris Masond1310b22008-01-24 16:13:08 -05004086int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
4087 get_extent_t *get_extent,
4088 struct writeback_control *wbc)
4089{
4090 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004091 struct extent_page_data epd = {
4092 .bio = NULL,
4093 .tree = tree,
4094 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004095 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004096 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004097 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004098 };
Chris Masond1310b22008-01-24 16:13:08 -05004099
Chris Masond1310b22008-01-24 16:13:08 -05004100 ret = __extent_writepage(page, wbc, &epd);
4101
Chris Masonffbd5172009-04-20 15:50:09 -04004102 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004103 return ret;
4104}
Chris Masond1310b22008-01-24 16:13:08 -05004105
Chris Mason771ed682008-11-06 22:02:51 -05004106int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
4107 u64 start, u64 end, get_extent_t *get_extent,
4108 int mode)
4109{
4110 int ret = 0;
4111 struct address_space *mapping = inode->i_mapping;
4112 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004113 unsigned long nr_pages = (end - start + PAGE_SIZE) >>
4114 PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -05004115
4116 struct extent_page_data epd = {
4117 .bio = NULL,
4118 .tree = tree,
4119 .get_extent = get_extent,
4120 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04004121 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004122 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05004123 };
4124 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05004125 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05004126 .nr_to_write = nr_pages * 2,
4127 .range_start = start,
4128 .range_end = end + 1,
4129 };
4130
Chris Masond3977122009-01-05 21:25:51 -05004131 while (start <= end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004132 page = find_get_page(mapping, start >> PAGE_SHIFT);
Chris Mason771ed682008-11-06 22:02:51 -05004133 if (clear_page_dirty_for_io(page))
4134 ret = __extent_writepage(page, &wbc_writepages, &epd);
4135 else {
4136 if (tree->ops && tree->ops->writepage_end_io_hook)
4137 tree->ops->writepage_end_io_hook(page, start,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004138 start + PAGE_SIZE - 1,
Chris Mason771ed682008-11-06 22:02:51 -05004139 NULL, 1);
4140 unlock_page(page);
4141 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004142 put_page(page);
4143 start += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -05004144 }
4145
Chris Masonffbd5172009-04-20 15:50:09 -04004146 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05004147 return ret;
4148}
Chris Masond1310b22008-01-24 16:13:08 -05004149
4150int extent_writepages(struct extent_io_tree *tree,
4151 struct address_space *mapping,
4152 get_extent_t *get_extent,
4153 struct writeback_control *wbc)
4154{
4155 int ret = 0;
4156 struct extent_page_data epd = {
4157 .bio = NULL,
4158 .tree = tree,
4159 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004160 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004161 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004162 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004163 };
4164
David Sterba4242b642017-02-10 19:38:24 +01004165 ret = extent_write_cache_pages(mapping, wbc, __extent_writepage, &epd,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004166 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004167 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004168 return ret;
4169}
Chris Masond1310b22008-01-24 16:13:08 -05004170
4171int extent_readpages(struct extent_io_tree *tree,
4172 struct address_space *mapping,
4173 struct list_head *pages, unsigned nr_pages,
4174 get_extent_t get_extent)
4175{
4176 struct bio *bio = NULL;
4177 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004178 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004179 struct page *pagepool[16];
4180 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004181 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004182 int nr = 0;
Filipe Manana808f80b2015-09-28 09:56:26 +01004183 u64 prev_em_start = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05004184
Chris Masond1310b22008-01-24 16:13:08 -05004185 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004186 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004187
4188 prefetchw(&page->flags);
4189 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004190 if (add_to_page_cache_lru(page, mapping,
Michal Hocko8a5c7432016-07-26 15:24:53 -07004191 page->index,
4192 readahead_gfp_mask(mapping))) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004193 put_page(page);
Liu Bo67c96842012-07-20 21:43:09 -06004194 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004195 }
Liu Bo67c96842012-07-20 21:43:09 -06004196
4197 pagepool[nr++] = page;
4198 if (nr < ARRAY_SIZE(pagepool))
4199 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004200 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Mike Christie1f7ad752016-06-05 14:31:51 -05004201 &bio, 0, &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004202 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004203 }
Miao Xie99740902013-07-25 19:22:36 +08004204 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004205 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Mike Christie1f7ad752016-06-05 14:31:51 -05004206 &bio, 0, &bio_flags, &prev_em_start);
Liu Bo67c96842012-07-20 21:43:09 -06004207
Miao Xie125bac012013-07-25 19:22:37 +08004208 if (em_cached)
4209 free_extent_map(em_cached);
4210
Chris Masond1310b22008-01-24 16:13:08 -05004211 BUG_ON(!list_empty(pages));
4212 if (bio)
Mike Christie1f7ad752016-06-05 14:31:51 -05004213 return submit_one_bio(bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004214 return 0;
4215}
Chris Masond1310b22008-01-24 16:13:08 -05004216
4217/*
4218 * basic invalidatepage code, this waits on any locked or writeback
4219 * ranges corresponding to the page, and then deletes any extent state
4220 * records from the tree
4221 */
4222int extent_invalidatepage(struct extent_io_tree *tree,
4223 struct page *page, unsigned long offset)
4224{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004225 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004226 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004227 u64 end = start + PAGE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05004228 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4229
Qu Wenruofda28322013-02-26 08:10:22 +00004230 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004231 if (start > end)
4232 return 0;
4233
David Sterbaff13db42015-12-03 14:30:40 +01004234 lock_extent_bits(tree, start, end, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004235 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004236 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004237 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4238 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004239 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004240 return 0;
4241}
Chris Masond1310b22008-01-24 16:13:08 -05004242
4243/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004244 * a helper for releasepage, this tests for areas of the page that
4245 * are locked or under IO and drops the related state bits if it is safe
4246 * to drop the page.
4247 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004248static int try_release_extent_state(struct extent_map_tree *map,
4249 struct extent_io_tree *tree,
4250 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004251{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004252 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004253 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004254 int ret = 1;
4255
Chris Mason211f90e2008-07-18 11:56:15 -04004256 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004257 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004258 ret = 0;
4259 else {
Chris Mason11ef1602009-09-23 20:28:46 -04004260 /*
4261 * at this point we can safely clear everything except the
4262 * locked bit and the nodatasum bit
4263 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004264 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004265 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4266 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004267
4268 /* if clear_extent_bit failed for enomem reasons,
4269 * we can't allow the release to continue.
4270 */
4271 if (ret < 0)
4272 ret = 0;
4273 else
4274 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004275 }
4276 return ret;
4277}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004278
4279/*
Chris Masond1310b22008-01-24 16:13:08 -05004280 * a helper for releasepage. As long as there are no locked extents
4281 * in the range corresponding to the page, both state records and extent
4282 * map records are removed
4283 */
4284int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004285 struct extent_io_tree *tree, struct page *page,
4286 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004287{
4288 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004289 u64 start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004290 u64 end = start + PAGE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004291
Mel Gormand0164ad2015-11-06 16:28:21 -08004292 if (gfpflags_allow_blocking(mask) &&
Byongho Leeee221842015-12-15 01:42:10 +09004293 page->mapping->host->i_size > SZ_16M) {
Yan39b56372008-02-15 10:40:50 -05004294 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004295 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004296 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004297 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004298 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004299 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004300 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004301 break;
4302 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004303 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4304 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004305 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004306 free_extent_map(em);
4307 break;
4308 }
4309 if (!test_range_bit(tree, em->start,
4310 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004311 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004312 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004313 remove_extent_mapping(map, em);
4314 /* once for the rb tree */
4315 free_extent_map(em);
4316 }
4317 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004318 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004319
4320 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004321 free_extent_map(em);
4322 }
Chris Masond1310b22008-01-24 16:13:08 -05004323 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004324 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004325}
Chris Masond1310b22008-01-24 16:13:08 -05004326
Chris Masonec29ed52011-02-23 16:23:20 -05004327/*
4328 * helper function for fiemap, which doesn't want to see any holes.
4329 * This maps until we find something past 'last'
4330 */
4331static struct extent_map *get_extent_skip_holes(struct inode *inode,
4332 u64 offset,
4333 u64 last,
4334 get_extent_t *get_extent)
4335{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004336 u64 sectorsize = btrfs_inode_sectorsize(inode);
Chris Masonec29ed52011-02-23 16:23:20 -05004337 struct extent_map *em;
4338 u64 len;
4339
4340 if (offset >= last)
4341 return NULL;
4342
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304343 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004344 len = last - offset;
4345 if (len == 0)
4346 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004347 len = ALIGN(len, sectorsize);
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02004348 em = get_extent(BTRFS_I(inode), NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004349 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004350 return em;
4351
4352 /* if this isn't a hole return it */
4353 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4354 em->block_start != EXTENT_MAP_HOLE) {
4355 return em;
4356 }
4357
4358 /* this is a hole, advance to the next extent */
4359 offset = extent_map_end(em);
4360 free_extent_map(em);
4361 if (offset >= last)
4362 break;
4363 }
4364 return NULL;
4365}
4366
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004367int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4368 __u64 start, __u64 len, get_extent_t *get_extent)
4369{
Josef Bacik975f84f2010-11-23 19:36:57 +00004370 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004371 u64 off = start;
4372 u64 max = start + len;
4373 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004374 u32 found_type;
4375 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004376 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004377 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004378 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004379 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004380 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004381 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004382 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004383 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004384 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004385 u64 em_start = 0;
4386 u64 em_len = 0;
4387 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004388
4389 if (len == 0)
4390 return -EINVAL;
4391
Josef Bacik975f84f2010-11-23 19:36:57 +00004392 path = btrfs_alloc_path();
4393 if (!path)
4394 return -ENOMEM;
4395 path->leave_spinning = 1;
4396
Jeff Mahoneyda170662016-06-15 09:22:56 -04004397 start = round_down(start, btrfs_inode_sectorsize(inode));
4398 len = round_up(max, btrfs_inode_sectorsize(inode)) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004399
Chris Masonec29ed52011-02-23 16:23:20 -05004400 /*
4401 * lookup the last file extent. We're not using i_size here
4402 * because there might be preallocation past i_size
4403 */
David Sterbaf85b7372017-01-20 14:54:07 +01004404 ret = btrfs_lookup_file_extent(NULL, root, path,
4405 btrfs_ino(BTRFS_I(inode)), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004406 if (ret < 0) {
4407 btrfs_free_path(path);
4408 return ret;
Liu Bo2d324f52016-05-17 17:21:48 -07004409 } else {
4410 WARN_ON(!ret);
4411 if (ret == 1)
4412 ret = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004413 }
Liu Bo2d324f52016-05-17 17:21:48 -07004414
Josef Bacik975f84f2010-11-23 19:36:57 +00004415 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004416 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004417 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004418
Chris Masonec29ed52011-02-23 16:23:20 -05004419 /* No extents, but there might be delalloc bits */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004420 if (found_key.objectid != btrfs_ino(BTRFS_I(inode)) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004421 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004422 /* have to trust i_size as the end */
4423 last = (u64)-1;
4424 last_for_get_extent = isize;
4425 } else {
4426 /*
4427 * remember the start of the last extent. There are a
4428 * bunch of different factors that go into the length of the
4429 * extent, so its much less complex to remember where it started
4430 */
4431 last = found_key.offset;
4432 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004433 }
Liu Bofe09e162013-09-22 12:54:23 +08004434 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004435
Chris Masonec29ed52011-02-23 16:23:20 -05004436 /*
4437 * we might have some extents allocated but more delalloc past those
4438 * extents. so, we trust isize unless the start of the last extent is
4439 * beyond isize
4440 */
4441 if (last < isize) {
4442 last = (u64)-1;
4443 last_for_get_extent = isize;
4444 }
4445
David Sterbaff13db42015-12-03 14:30:40 +01004446 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004447 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004448
Josef Bacik4d479cf2011-11-17 11:34:31 -05004449 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004450 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004451 if (!em)
4452 goto out;
4453 if (IS_ERR(em)) {
4454 ret = PTR_ERR(em);
4455 goto out;
4456 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004457
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004458 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004459 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004460
Chris Masonea8efc72011-03-08 11:54:40 -05004461 /* break if the extent we found is outside the range */
4462 if (em->start >= max || extent_map_end(em) < off)
4463 break;
4464
4465 /*
4466 * get_extent may return an extent that starts before our
4467 * requested range. We have to make sure the ranges
4468 * we return to fiemap always move forward and don't
4469 * overlap, so adjust the offsets here
4470 */
4471 em_start = max(em->start, off);
4472
4473 /*
4474 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004475 * for adjusting the disk offset below. Only do this if the
4476 * extent isn't compressed since our in ram offset may be past
4477 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004478 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004479 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4480 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004481 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004482 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004483 disko = 0;
4484 flags = 0;
4485
Chris Masonea8efc72011-03-08 11:54:40 -05004486 /*
4487 * bump off for our next call to get_extent
4488 */
4489 off = extent_map_end(em);
4490 if (off >= max)
4491 end = 1;
4492
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004493 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004494 end = 1;
4495 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004496 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004497 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4498 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004499 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004500 flags |= (FIEMAP_EXTENT_DELALLOC |
4501 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004502 } else if (fieinfo->fi_extents_max) {
Lu Fengqiafce7722016-06-13 09:36:46 +08004503 struct btrfs_trans_handle *trans;
4504
Josef Bacikdc046b12014-09-10 16:20:45 -04004505 u64 bytenr = em->block_start -
4506 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004507
Chris Masonea8efc72011-03-08 11:54:40 -05004508 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004509
4510 /*
Lu Fengqiafce7722016-06-13 09:36:46 +08004511 * We need a trans handle to get delayed refs
4512 */
4513 trans = btrfs_join_transaction(root);
4514 /*
4515 * It's OK if we can't start a trans we can still check
4516 * from commit_root
4517 */
4518 if (IS_ERR(trans))
4519 trans = NULL;
4520
4521 /*
Liu Bofe09e162013-09-22 12:54:23 +08004522 * As btrfs supports shared space, this information
4523 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004524 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4525 * then we're just getting a count and we can skip the
4526 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004527 */
Lu Fengqiafce7722016-06-13 09:36:46 +08004528 ret = btrfs_check_shared(trans, root->fs_info,
David Sterbaf85b7372017-01-20 14:54:07 +01004529 root->objectid,
4530 btrfs_ino(BTRFS_I(inode)), bytenr);
Lu Fengqiafce7722016-06-13 09:36:46 +08004531 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004532 btrfs_end_transaction(trans);
Josef Bacikdc046b12014-09-10 16:20:45 -04004533 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004534 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004535 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004536 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004537 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004538 }
4539 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4540 flags |= FIEMAP_EXTENT_ENCODED;
Josef Bacik0d2b2372015-05-19 10:44:04 -04004541 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4542 flags |= FIEMAP_EXTENT_UNWRITTEN;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004543
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004544 free_extent_map(em);
4545 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004546 if ((em_start >= last) || em_len == (u64)-1 ||
4547 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004548 flags |= FIEMAP_EXTENT_LAST;
4549 end = 1;
4550 }
4551
Chris Masonec29ed52011-02-23 16:23:20 -05004552 /* now scan forward to see if this is really the last extent. */
4553 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4554 get_extent);
4555 if (IS_ERR(em)) {
4556 ret = PTR_ERR(em);
4557 goto out;
4558 }
4559 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004560 flags |= FIEMAP_EXTENT_LAST;
4561 end = 1;
4562 }
Chris Masonec29ed52011-02-23 16:23:20 -05004563 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4564 em_len, flags);
Chengyu Song26e726a2015-03-24 18:12:56 -04004565 if (ret) {
4566 if (ret == 1)
4567 ret = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004568 goto out_free;
Chengyu Song26e726a2015-03-24 18:12:56 -04004569 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004570 }
4571out_free:
4572 free_extent_map(em);
4573out:
Liu Bofe09e162013-09-22 12:54:23 +08004574 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004575 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004576 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004577 return ret;
4578}
4579
Chris Mason727011e2010-08-06 13:21:20 -04004580static void __free_extent_buffer(struct extent_buffer *eb)
4581{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004582 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004583 kmem_cache_free(extent_buffer_cache, eb);
4584}
4585
Josef Bacika26e8c92014-03-28 17:07:27 -04004586int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004587{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004588 return (atomic_read(&eb->io_pages) ||
4589 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4590 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004591}
4592
Miao Xie897ca6e92010-10-26 20:57:29 -04004593/*
4594 * Helper for releasing extent buffer page.
4595 */
David Sterbaa50924e2014-07-31 00:51:36 +02004596static void btrfs_release_extent_buffer_page(struct extent_buffer *eb)
Miao Xie897ca6e92010-10-26 20:57:29 -04004597{
4598 unsigned long index;
4599 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004600 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004601
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004602 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004603
David Sterbaa50924e2014-07-31 00:51:36 +02004604 index = num_extent_pages(eb->start, eb->len);
4605 if (index == 0)
Miao Xie897ca6e92010-10-26 20:57:29 -04004606 return;
4607
4608 do {
4609 index--;
David Sterbafb85fc92014-07-31 01:03:53 +02004610 page = eb->pages[index];
Forrest Liu5d2361d2015-02-09 17:31:45 +08004611 if (!page)
4612 continue;
4613 if (mapped)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004614 spin_lock(&page->mapping->private_lock);
Forrest Liu5d2361d2015-02-09 17:31:45 +08004615 /*
4616 * We do this since we'll remove the pages after we've
4617 * removed the eb from the radix tree, so we could race
4618 * and have this page now attached to the new eb. So
4619 * only clear page_private if it's still connected to
4620 * this eb.
4621 */
4622 if (PagePrivate(page) &&
4623 page->private == (unsigned long)eb) {
4624 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4625 BUG_ON(PageDirty(page));
4626 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004627 /*
Forrest Liu5d2361d2015-02-09 17:31:45 +08004628 * We need to make sure we haven't be attached
4629 * to a new eb.
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004630 */
Forrest Liu5d2361d2015-02-09 17:31:45 +08004631 ClearPagePrivate(page);
4632 set_page_private(page, 0);
4633 /* One for the page private */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004634 put_page(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004635 }
Forrest Liu5d2361d2015-02-09 17:31:45 +08004636
4637 if (mapped)
4638 spin_unlock(&page->mapping->private_lock);
4639
Nicholas D Steeves01327612016-05-19 21:18:45 -04004640 /* One for when we allocated the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004641 put_page(page);
David Sterbaa50924e2014-07-31 00:51:36 +02004642 } while (index != 0);
Miao Xie897ca6e92010-10-26 20:57:29 -04004643}
4644
4645/*
4646 * Helper for releasing the extent buffer.
4647 */
4648static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4649{
David Sterbaa50924e2014-07-31 00:51:36 +02004650 btrfs_release_extent_buffer_page(eb);
Miao Xie897ca6e92010-10-26 20:57:29 -04004651 __free_extent_buffer(eb);
4652}
4653
Josef Bacikf28491e2013-12-16 13:24:27 -05004654static struct extent_buffer *
4655__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
David Sterba23d79d82014-06-15 02:55:29 +02004656 unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004657{
4658 struct extent_buffer *eb = NULL;
4659
Michal Hockod1b5c562015-08-19 14:17:40 +02004660 eb = kmem_cache_zalloc(extent_buffer_cache, GFP_NOFS|__GFP_NOFAIL);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004661 eb->start = start;
4662 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004663 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004664 eb->bflags = 0;
4665 rwlock_init(&eb->lock);
4666 atomic_set(&eb->write_locks, 0);
4667 atomic_set(&eb->read_locks, 0);
4668 atomic_set(&eb->blocking_readers, 0);
4669 atomic_set(&eb->blocking_writers, 0);
4670 atomic_set(&eb->spinning_readers, 0);
4671 atomic_set(&eb->spinning_writers, 0);
4672 eb->lock_nested = 0;
4673 init_waitqueue_head(&eb->write_lock_wq);
4674 init_waitqueue_head(&eb->read_lock_wq);
4675
4676 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4677
4678 spin_lock_init(&eb->refs_lock);
4679 atomic_set(&eb->refs, 1);
4680 atomic_set(&eb->io_pages, 0);
4681
4682 /*
4683 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4684 */
4685 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4686 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4687 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4688
4689 return eb;
4690}
4691
4692struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4693{
4694 unsigned long i;
4695 struct page *p;
4696 struct extent_buffer *new;
4697 unsigned long num_pages = num_extent_pages(src->start, src->len);
4698
David Sterba3f556f72014-06-15 03:20:26 +02004699 new = __alloc_extent_buffer(src->fs_info, src->start, src->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004700 if (new == NULL)
4701 return NULL;
4702
4703 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004704 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004705 if (!p) {
4706 btrfs_release_extent_buffer(new);
4707 return NULL;
4708 }
4709 attach_extent_buffer_page(new, p);
4710 WARN_ON(PageDirty(p));
4711 SetPageUptodate(p);
4712 new->pages[i] = p;
David Sterbafba1acf2016-11-08 17:56:24 +01004713 copy_page(page_address(p), page_address(src->pages[i]));
Josef Bacikdb7f3432013-08-07 14:54:37 -04004714 }
4715
Josef Bacikdb7f3432013-08-07 14:54:37 -04004716 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4717 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4718
4719 return new;
4720}
4721
Omar Sandoval0f331222015-09-29 20:50:31 -07004722struct extent_buffer *__alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
4723 u64 start, unsigned long len)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004724{
4725 struct extent_buffer *eb;
David Sterba3f556f72014-06-15 03:20:26 +02004726 unsigned long num_pages;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004727 unsigned long i;
4728
Omar Sandoval0f331222015-09-29 20:50:31 -07004729 num_pages = num_extent_pages(start, len);
David Sterba3f556f72014-06-15 03:20:26 +02004730
4731 eb = __alloc_extent_buffer(fs_info, start, len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004732 if (!eb)
4733 return NULL;
4734
4735 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004736 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004737 if (!eb->pages[i])
4738 goto err;
4739 }
4740 set_extent_buffer_uptodate(eb);
4741 btrfs_set_header_nritems(eb, 0);
4742 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4743
4744 return eb;
4745err:
4746 for (; i > 0; i--)
4747 __free_page(eb->pages[i - 1]);
4748 __free_extent_buffer(eb);
4749 return NULL;
4750}
4751
Omar Sandoval0f331222015-09-29 20:50:31 -07004752struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004753 u64 start)
Omar Sandoval0f331222015-09-29 20:50:31 -07004754{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004755 return __alloc_dummy_extent_buffer(fs_info, start, fs_info->nodesize);
Omar Sandoval0f331222015-09-29 20:50:31 -07004756}
4757
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004758static void check_buffer_tree_ref(struct extent_buffer *eb)
4759{
Chris Mason242e18c2013-01-29 17:49:37 -05004760 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004761 /* the ref bit is tricky. We have to make sure it is set
4762 * if we have the buffer dirty. Otherwise the
4763 * code to free a buffer can end up dropping a dirty
4764 * page
4765 *
4766 * Once the ref bit is set, it won't go away while the
4767 * buffer is dirty or in writeback, and it also won't
4768 * go away while we have the reference count on the
4769 * eb bumped.
4770 *
4771 * We can't just set the ref bit without bumping the
4772 * ref on the eb because free_extent_buffer might
4773 * see the ref bit and try to clear it. If this happens
4774 * free_extent_buffer might end up dropping our original
4775 * ref by mistake and freeing the page before we are able
4776 * to add one more ref.
4777 *
4778 * So bump the ref count first, then set the bit. If someone
4779 * beat us to it, drop the ref we added.
4780 */
Chris Mason242e18c2013-01-29 17:49:37 -05004781 refs = atomic_read(&eb->refs);
4782 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4783 return;
4784
Josef Bacik594831c2012-07-20 16:11:08 -04004785 spin_lock(&eb->refs_lock);
4786 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004787 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004788 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004789}
4790
Mel Gorman2457aec2014-06-04 16:10:31 -07004791static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4792 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004793{
4794 unsigned long num_pages, i;
4795
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004796 check_buffer_tree_ref(eb);
4797
Josef Bacik5df42352012-03-15 18:24:42 -04004798 num_pages = num_extent_pages(eb->start, eb->len);
4799 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02004800 struct page *p = eb->pages[i];
4801
Mel Gorman2457aec2014-06-04 16:10:31 -07004802 if (p != accessed)
4803 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004804 }
4805}
4806
Josef Bacikf28491e2013-12-16 13:24:27 -05004807struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4808 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004809{
4810 struct extent_buffer *eb;
4811
4812 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004813 eb = radix_tree_lookup(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004814 start >> PAGE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004815 if (eb && atomic_inc_not_zero(&eb->refs)) {
4816 rcu_read_unlock();
Filipe Manana062c19e2015-04-23 11:28:48 +01004817 /*
4818 * Lock our eb's refs_lock to avoid races with
4819 * free_extent_buffer. When we get our eb it might be flagged
4820 * with EXTENT_BUFFER_STALE and another task running
4821 * free_extent_buffer might have seen that flag set,
4822 * eb->refs == 2, that the buffer isn't under IO (dirty and
4823 * writeback flags not set) and it's still in the tree (flag
4824 * EXTENT_BUFFER_TREE_REF set), therefore being in the process
4825 * of decrementing the extent buffer's reference count twice.
4826 * So here we could race and increment the eb's reference count,
4827 * clear its stale flag, mark it as dirty and drop our reference
4828 * before the other task finishes executing free_extent_buffer,
4829 * which would later result in an attempt to free an extent
4830 * buffer that is dirty.
4831 */
4832 if (test_bit(EXTENT_BUFFER_STALE, &eb->bflags)) {
4833 spin_lock(&eb->refs_lock);
4834 spin_unlock(&eb->refs_lock);
4835 }
Mel Gorman2457aec2014-06-04 16:10:31 -07004836 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004837 return eb;
4838 }
4839 rcu_read_unlock();
4840
4841 return NULL;
4842}
4843
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004844#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4845struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
Jeff Mahoneyda170662016-06-15 09:22:56 -04004846 u64 start)
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004847{
4848 struct extent_buffer *eb, *exists = NULL;
4849 int ret;
4850
4851 eb = find_extent_buffer(fs_info, start);
4852 if (eb)
4853 return eb;
Jeff Mahoneyda170662016-06-15 09:22:56 -04004854 eb = alloc_dummy_extent_buffer(fs_info, start);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004855 if (!eb)
4856 return NULL;
4857 eb->fs_info = fs_info;
4858again:
David Sterbae1860a72016-05-09 14:11:38 +02004859 ret = radix_tree_preload(GFP_NOFS);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004860 if (ret)
4861 goto free_eb;
4862 spin_lock(&fs_info->buffer_lock);
4863 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004864 start >> PAGE_SHIFT, eb);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004865 spin_unlock(&fs_info->buffer_lock);
4866 radix_tree_preload_end();
4867 if (ret == -EEXIST) {
4868 exists = find_extent_buffer(fs_info, start);
4869 if (exists)
4870 goto free_eb;
4871 else
4872 goto again;
4873 }
4874 check_buffer_tree_ref(eb);
4875 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4876
4877 /*
4878 * We will free dummy extent buffer's if they come into
4879 * free_extent_buffer with a ref count of 2, but if we are using this we
4880 * want the buffers to stay in memory until we're done with them, so
4881 * bump the ref count again.
4882 */
4883 atomic_inc(&eb->refs);
4884 return eb;
4885free_eb:
4886 btrfs_release_extent_buffer(eb);
4887 return exists;
4888}
4889#endif
4890
Josef Bacikf28491e2013-12-16 13:24:27 -05004891struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +02004892 u64 start)
Chris Masond1310b22008-01-24 16:13:08 -05004893{
Jeff Mahoneyda170662016-06-15 09:22:56 -04004894 unsigned long len = fs_info->nodesize;
Chris Masond1310b22008-01-24 16:13:08 -05004895 unsigned long num_pages = num_extent_pages(start, len);
4896 unsigned long i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004897 unsigned long index = start >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004898 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004899 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004900 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004901 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004902 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004903 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004904
Jeff Mahoneyda170662016-06-15 09:22:56 -04004905 if (!IS_ALIGNED(start, fs_info->sectorsize)) {
Liu Boc871b0f2016-06-06 12:01:23 -07004906 btrfs_err(fs_info, "bad tree block start %llu", start);
4907 return ERR_PTR(-EINVAL);
4908 }
4909
Josef Bacikf28491e2013-12-16 13:24:27 -05004910 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004911 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004912 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004913
David Sterba23d79d82014-06-15 02:55:29 +02004914 eb = __alloc_extent_buffer(fs_info, start, len);
Peter2b114d12008-04-01 11:21:40 -04004915 if (!eb)
Liu Boc871b0f2016-06-06 12:01:23 -07004916 return ERR_PTR(-ENOMEM);
Chris Masond1310b22008-01-24 16:13:08 -05004917
Chris Mason727011e2010-08-06 13:21:20 -04004918 for (i = 0; i < num_pages; i++, index++) {
Michal Hockod1b5c562015-08-19 14:17:40 +02004919 p = find_or_create_page(mapping, index, GFP_NOFS|__GFP_NOFAIL);
Liu Boc871b0f2016-06-06 12:01:23 -07004920 if (!p) {
4921 exists = ERR_PTR(-ENOMEM);
Chris Mason6af118ce2008-07-22 11:18:07 -04004922 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004923 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004924
4925 spin_lock(&mapping->private_lock);
4926 if (PagePrivate(p)) {
4927 /*
4928 * We could have already allocated an eb for this page
4929 * and attached one so lets see if we can get a ref on
4930 * the existing eb, and if we can we know it's good and
4931 * we can just return that one, else we know we can just
4932 * overwrite page->private.
4933 */
4934 exists = (struct extent_buffer *)p->private;
4935 if (atomic_inc_not_zero(&exists->refs)) {
4936 spin_unlock(&mapping->private_lock);
4937 unlock_page(p);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004938 put_page(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004939 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004940 goto free_eb;
4941 }
Omar Sandoval5ca64f42015-02-24 02:47:05 -08004942 exists = NULL;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004943
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004944 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004945 * Do this so attach doesn't complain and we need to
4946 * drop the ref the old guy had.
4947 */
4948 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004949 WARN_ON(PageDirty(p));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004950 put_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05004951 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004952 attach_extent_buffer_page(eb, p);
4953 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004954 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004955 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004956 if (!PageUptodate(p))
4957 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004958
4959 /*
4960 * see below about how we avoid a nasty race with release page
4961 * and why we unlock later
4962 */
Chris Masond1310b22008-01-24 16:13:08 -05004963 }
4964 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004965 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004966again:
David Sterbae1860a72016-05-09 14:11:38 +02004967 ret = radix_tree_preload(GFP_NOFS);
Liu Boc871b0f2016-06-06 12:01:23 -07004968 if (ret) {
4969 exists = ERR_PTR(ret);
Miao Xie19fe0a82010-10-26 20:57:29 -04004970 goto free_eb;
Liu Boc871b0f2016-06-06 12:01:23 -07004971 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004972
Josef Bacikf28491e2013-12-16 13:24:27 -05004973 spin_lock(&fs_info->buffer_lock);
4974 ret = radix_tree_insert(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004975 start >> PAGE_SHIFT, eb);
Josef Bacikf28491e2013-12-16 13:24:27 -05004976 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004977 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004978 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004979 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004980 if (exists)
4981 goto free_eb;
4982 else
Josef Bacik115391d2012-03-09 09:51:43 -05004983 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004984 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004985 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004986 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004987 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004988
4989 /*
4990 * there is a race where release page may have
4991 * tried to find this extent buffer in the radix
4992 * but failed. It will tell the VM it is safe to
4993 * reclaim the, and it will clear the page private bit.
4994 * We must make sure to set the page private bit properly
4995 * after the extent buffer is in the radix tree so
4996 * it doesn't get lost
4997 */
Chris Mason727011e2010-08-06 13:21:20 -04004998 SetPageChecked(eb->pages[0]);
4999 for (i = 1; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005000 p = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005001 ClearPageChecked(p);
5002 unlock_page(p);
5003 }
5004 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05005005 return eb;
5006
Chris Mason6af118ce2008-07-22 11:18:07 -04005007free_eb:
Omar Sandoval5ca64f42015-02-24 02:47:05 -08005008 WARN_ON(!atomic_dec_and_test(&eb->refs));
Chris Mason727011e2010-08-06 13:21:20 -04005009 for (i = 0; i < num_pages; i++) {
5010 if (eb->pages[i])
5011 unlock_page(eb->pages[i]);
5012 }
Chris Masoneb14ab82011-02-10 12:35:00 -05005013
Miao Xie897ca6e92010-10-26 20:57:29 -04005014 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005015 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05005016}
Chris Masond1310b22008-01-24 16:13:08 -05005017
Josef Bacik3083ee22012-03-09 16:01:49 -05005018static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
5019{
5020 struct extent_buffer *eb =
5021 container_of(head, struct extent_buffer, rcu_head);
5022
5023 __free_extent_buffer(eb);
5024}
5025
Josef Bacik3083ee22012-03-09 16:01:49 -05005026/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00005027static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05005028{
5029 WARN_ON(atomic_read(&eb->refs) == 0);
5030 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05005031 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05005032 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05005033
Jan Schmidt815a51c2012-05-16 17:00:02 +02005034 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05005035
Josef Bacikf28491e2013-12-16 13:24:27 -05005036 spin_lock(&fs_info->buffer_lock);
5037 radix_tree_delete(&fs_info->buffer_radix,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005038 eb->start >> PAGE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05005039 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05005040 } else {
5041 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02005042 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005043
5044 /* Should be safe to release our pages at this point */
David Sterbaa50924e2014-07-31 00:51:36 +02005045 btrfs_release_extent_buffer_page(eb);
Josef Bacikbcb7e442015-03-16 17:38:02 -04005046#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
5047 if (unlikely(test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))) {
5048 __free_extent_buffer(eb);
5049 return 1;
5050 }
5051#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05005052 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04005053 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05005054 }
5055 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04005056
5057 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05005058}
5059
Chris Masond1310b22008-01-24 16:13:08 -05005060void free_extent_buffer(struct extent_buffer *eb)
5061{
Chris Mason242e18c2013-01-29 17:49:37 -05005062 int refs;
5063 int old;
Chris Masond1310b22008-01-24 16:13:08 -05005064 if (!eb)
5065 return;
5066
Chris Mason242e18c2013-01-29 17:49:37 -05005067 while (1) {
5068 refs = atomic_read(&eb->refs);
5069 if (refs <= 3)
5070 break;
5071 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
5072 if (old == refs)
5073 return;
5074 }
5075
Josef Bacik3083ee22012-03-09 16:01:49 -05005076 spin_lock(&eb->refs_lock);
5077 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02005078 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
5079 atomic_dec(&eb->refs);
5080
5081 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005082 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005083 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005084 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5085 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05005086
Josef Bacik3083ee22012-03-09 16:01:49 -05005087 /*
5088 * I know this is terrible, but it's temporary until we stop tracking
5089 * the uptodate bits and such for the extent buffers.
5090 */
David Sterbaf7a52a42013-04-26 14:56:29 +00005091 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005092}
Chris Masond1310b22008-01-24 16:13:08 -05005093
Josef Bacik3083ee22012-03-09 16:01:49 -05005094void free_extent_buffer_stale(struct extent_buffer *eb)
5095{
5096 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05005097 return;
5098
Josef Bacik3083ee22012-03-09 16:01:49 -05005099 spin_lock(&eb->refs_lock);
5100 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
5101
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005102 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05005103 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
5104 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00005105 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05005106}
5107
Chris Mason1d4284b2012-03-28 20:31:37 -04005108void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005109{
Chris Masond1310b22008-01-24 16:13:08 -05005110 unsigned long i;
5111 unsigned long num_pages;
5112 struct page *page;
5113
Chris Masond1310b22008-01-24 16:13:08 -05005114 num_pages = num_extent_pages(eb->start, eb->len);
5115
5116 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005117 page = eb->pages[i];
Chris Masonb9473432009-03-13 11:00:37 -04005118 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05005119 continue;
5120
Chris Masona61e6f22008-07-22 11:18:08 -04005121 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05005122 WARN_ON(!PagePrivate(page));
5123
Chris Masond1310b22008-01-24 16:13:08 -05005124 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005125 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05005126 if (!PageDirty(page)) {
5127 radix_tree_tag_clear(&page->mapping->page_tree,
5128 page_index(page),
5129 PAGECACHE_TAG_DIRTY);
5130 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005131 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04005132 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04005133 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05005134 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005135 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05005136}
Chris Masond1310b22008-01-24 16:13:08 -05005137
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005138int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005139{
5140 unsigned long i;
5141 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04005142 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005143
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005144 check_buffer_tree_ref(eb);
5145
Chris Masonb9473432009-03-13 11:00:37 -04005146 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005147
Chris Masond1310b22008-01-24 16:13:08 -05005148 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05005149 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005150 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
5151
Chris Masonb9473432009-03-13 11:00:37 -04005152 for (i = 0; i < num_pages; i++)
David Sterbafb85fc92014-07-31 01:03:53 +02005153 set_page_dirty(eb->pages[i]);
Chris Masonb9473432009-03-13 11:00:37 -04005154 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05005155}
Chris Masond1310b22008-01-24 16:13:08 -05005156
David Sterba69ba3922015-12-03 13:08:59 +01005157void clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04005158{
5159 unsigned long i;
5160 struct page *page;
5161 unsigned long num_pages;
5162
Chris Masonb4ce94d2009-02-04 09:25:08 -05005163 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005164 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04005165 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005166 page = eb->pages[i];
Chris Mason33958dc2008-07-30 10:29:12 -04005167 if (page)
5168 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04005169 }
Chris Mason1259ab72008-05-12 13:39:03 -04005170}
5171
David Sterba09c25a82015-12-03 13:08:59 +01005172void set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005173{
5174 unsigned long i;
5175 struct page *page;
5176 unsigned long num_pages;
5177
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005178 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005179 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05005180 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005181 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005182 SetPageUptodate(page);
5183 }
Chris Masond1310b22008-01-24 16:13:08 -05005184}
Chris Masond1310b22008-01-24 16:13:08 -05005185
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005186int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05005187{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005188 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05005189}
Chris Masond1310b22008-01-24 16:13:08 -05005190
5191int read_extent_buffer_pages(struct extent_io_tree *tree,
Josef Bacik8436ea912016-09-02 15:40:03 -04005192 struct extent_buffer *eb, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04005193 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05005194{
5195 unsigned long i;
Chris Masond1310b22008-01-24 16:13:08 -05005196 struct page *page;
5197 int err;
5198 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04005199 int locked_pages = 0;
5200 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05005201 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04005202 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005203 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04005204 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05005205
Chris Masonb4ce94d2009-02-04 09:25:08 -05005206 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05005207 return 0;
5208
Chris Masond1310b22008-01-24 16:13:08 -05005209 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik8436ea912016-09-02 15:40:03 -04005210 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005211 page = eb->pages[i];
Arne Jansenbb82ab82011-06-10 14:06:53 +02005212 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005213 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005214 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005215 } else {
5216 lock_page(page);
5217 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005218 locked_pages++;
Liu Bo2571e732016-08-03 12:33:01 -07005219 }
5220 /*
5221 * We need to firstly lock all pages to make sure that
5222 * the uptodate bit of our pages won't be affected by
5223 * clear_extent_buffer_uptodate().
5224 */
Josef Bacik8436ea912016-09-02 15:40:03 -04005225 for (i = 0; i < num_pages; i++) {
Liu Bo2571e732016-08-03 12:33:01 -07005226 page = eb->pages[i];
Chris Mason727011e2010-08-06 13:21:20 -04005227 if (!PageUptodate(page)) {
5228 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005229 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005230 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005231 }
Liu Bo2571e732016-08-03 12:33:01 -07005232
Chris Masonce9adaa2008-04-09 16:28:12 -04005233 if (all_uptodate) {
Josef Bacik8436ea912016-09-02 15:40:03 -04005234 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005235 goto unlock_exit;
5236 }
5237
Filipe Manana656f30d2014-09-26 12:25:56 +01005238 clear_bit(EXTENT_BUFFER_READ_ERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005239 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005240 atomic_set(&eb->io_pages, num_reads);
Josef Bacik8436ea912016-09-02 15:40:03 -04005241 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005242 page = eb->pages[i];
Liu Bobaf863b2016-07-11 10:39:07 -07005243
Chris Masonce9adaa2008-04-09 16:28:12 -04005244 if (!PageUptodate(page)) {
Liu Bobaf863b2016-07-11 10:39:07 -07005245 if (ret) {
5246 atomic_dec(&eb->io_pages);
5247 unlock_page(page);
5248 continue;
5249 }
5250
Chris Masonf1885912008-04-09 16:28:12 -04005251 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005252 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005253 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005254 mirror_num, &bio_flags,
Mike Christie1f7ad752016-06-05 14:31:51 -05005255 REQ_META);
Liu Bobaf863b2016-07-11 10:39:07 -07005256 if (err) {
Chris Masond1310b22008-01-24 16:13:08 -05005257 ret = err;
Liu Bobaf863b2016-07-11 10:39:07 -07005258 /*
5259 * We use &bio in above __extent_read_full_page,
5260 * so we ensure that if it returns error, the
5261 * current page fails to add itself to bio and
5262 * it's been unlocked.
5263 *
5264 * We must dec io_pages by ourselves.
5265 */
5266 atomic_dec(&eb->io_pages);
5267 }
Chris Masond1310b22008-01-24 16:13:08 -05005268 } else {
5269 unlock_page(page);
5270 }
5271 }
5272
Jeff Mahoney355808c2011-10-03 23:23:14 -04005273 if (bio) {
Mike Christie1f7ad752016-06-05 14:31:51 -05005274 err = submit_one_bio(bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005275 if (err)
5276 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005277 }
Chris Masona86c12c2008-02-07 10:50:54 -05005278
Arne Jansenbb82ab82011-06-10 14:06:53 +02005279 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005280 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005281
Josef Bacik8436ea912016-09-02 15:40:03 -04005282 for (i = 0; i < num_pages; i++) {
David Sterbafb85fc92014-07-31 01:03:53 +02005283 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005284 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005285 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005286 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005287 }
Chris Masond3977122009-01-05 21:25:51 -05005288
Chris Masond1310b22008-01-24 16:13:08 -05005289 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005290
5291unlock_exit:
Chris Masond3977122009-01-05 21:25:51 -05005292 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005293 locked_pages--;
Josef Bacik8436ea912016-09-02 15:40:03 -04005294 page = eb->pages[locked_pages];
5295 unlock_page(page);
Chris Masonce9adaa2008-04-09 16:28:12 -04005296 }
5297 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005298}
Chris Masond1310b22008-01-24 16:13:08 -05005299
5300void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5301 unsigned long start,
5302 unsigned long len)
5303{
5304 size_t cur;
5305 size_t offset;
5306 struct page *page;
5307 char *kaddr;
5308 char *dst = (char *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005309 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5310 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005311
5312 WARN_ON(start > eb->len);
5313 WARN_ON(start + len > eb->start + eb->len);
5314
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005315 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005316
Chris Masond3977122009-01-05 21:25:51 -05005317 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005318 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005319
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005320 cur = min(len, (PAGE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005321 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005322 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005323
5324 dst += cur;
5325 len -= cur;
5326 offset = 0;
5327 i++;
5328 }
5329}
Chris Masond1310b22008-01-24 16:13:08 -05005330
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005331int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5332 unsigned long start,
5333 unsigned long len)
5334{
5335 size_t cur;
5336 size_t offset;
5337 struct page *page;
5338 char *kaddr;
5339 char __user *dst = (char __user *)dstv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005340 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5341 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005342 int ret = 0;
5343
5344 WARN_ON(start > eb->len);
5345 WARN_ON(start + len > eb->start + eb->len);
5346
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005347 offset = (start_offset + start) & (PAGE_SIZE - 1);
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005348
5349 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005350 page = eb->pages[i];
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005351
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005352 cur = min(len, (PAGE_SIZE - offset));
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005353 kaddr = page_address(page);
5354 if (copy_to_user(dst, kaddr + offset, cur)) {
5355 ret = -EFAULT;
5356 break;
5357 }
5358
5359 dst += cur;
5360 len -= cur;
5361 offset = 0;
5362 i++;
5363 }
5364
5365 return ret;
5366}
5367
Liu Bo415b35a2016-06-17 19:16:21 -07005368/*
5369 * return 0 if the item is found within a page.
5370 * return 1 if the item spans two pages.
5371 * return -EINVAL otherwise.
5372 */
Chris Masond1310b22008-01-24 16:13:08 -05005373int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005374 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005375 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005376 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005377{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005378 size_t offset = start & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005379 char *kaddr;
5380 struct page *p;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005381 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5382 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005383 unsigned long end_i = (start_offset + start + min_len - 1) >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005384 PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005385
5386 if (i != end_i)
Liu Bo415b35a2016-06-17 19:16:21 -07005387 return 1;
Chris Masond1310b22008-01-24 16:13:08 -05005388
5389 if (i == 0) {
5390 offset = start_offset;
5391 *map_start = 0;
5392 } else {
5393 offset = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005394 *map_start = ((u64)i << PAGE_SHIFT) - start_offset;
Chris Masond1310b22008-01-24 16:13:08 -05005395 }
Chris Masond3977122009-01-05 21:25:51 -05005396
Chris Masond1310b22008-01-24 16:13:08 -05005397 if (start + min_len > eb->len) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005398 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, wanted %lu %lu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005399 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005400 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005401 }
5402
David Sterbafb85fc92014-07-31 01:03:53 +02005403 p = eb->pages[i];
Chris Masona6591712011-07-19 12:04:14 -04005404 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005405 *map = kaddr + offset;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005406 *map_len = PAGE_SIZE - offset;
Chris Masond1310b22008-01-24 16:13:08 -05005407 return 0;
5408}
Chris Masond1310b22008-01-24 16:13:08 -05005409
Chris Masond1310b22008-01-24 16:13:08 -05005410int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5411 unsigned long start,
5412 unsigned long len)
5413{
5414 size_t cur;
5415 size_t offset;
5416 struct page *page;
5417 char *kaddr;
5418 char *ptr = (char *)ptrv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005419 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5420 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005421 int ret = 0;
5422
5423 WARN_ON(start > eb->len);
5424 WARN_ON(start + len > eb->start + eb->len);
5425
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005426 offset = (start_offset + start) & (PAGE_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
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005431 cur = min(len, (PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005432
Chris Masona6591712011-07-19 12:04:14 -04005433 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005434 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005435 if (ret)
5436 break;
5437
5438 ptr += cur;
5439 len -= cur;
5440 offset = 0;
5441 i++;
5442 }
5443 return ret;
5444}
Chris Masond1310b22008-01-24 16:13:08 -05005445
David Sterbaf157bf72016-11-09 17:43:38 +01005446void write_extent_buffer_chunk_tree_uuid(struct extent_buffer *eb,
5447 const void *srcv)
5448{
5449 char *kaddr;
5450
5451 WARN_ON(!PageUptodate(eb->pages[0]));
5452 kaddr = page_address(eb->pages[0]);
5453 memcpy(kaddr + offsetof(struct btrfs_header, chunk_tree_uuid), srcv,
5454 BTRFS_FSID_SIZE);
5455}
5456
5457void write_extent_buffer_fsid(struct extent_buffer *eb, const void *srcv)
5458{
5459 char *kaddr;
5460
5461 WARN_ON(!PageUptodate(eb->pages[0]));
5462 kaddr = page_address(eb->pages[0]);
5463 memcpy(kaddr + offsetof(struct btrfs_header, fsid), srcv,
5464 BTRFS_FSID_SIZE);
5465}
5466
Chris Masond1310b22008-01-24 16:13:08 -05005467void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5468 unsigned long start, unsigned long len)
5469{
5470 size_t cur;
5471 size_t offset;
5472 struct page *page;
5473 char *kaddr;
5474 char *src = (char *)srcv;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005475 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5476 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005477
5478 WARN_ON(start > eb->len);
5479 WARN_ON(start + len > eb->start + eb->len);
5480
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005481 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005482
Chris Masond3977122009-01-05 21:25:51 -05005483 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005484 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005485 WARN_ON(!PageUptodate(page));
5486
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005487 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005488 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005489 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005490
5491 src += cur;
5492 len -= cur;
5493 offset = 0;
5494 i++;
5495 }
5496}
Chris Masond1310b22008-01-24 16:13:08 -05005497
David Sterbab159fa22016-11-08 18:09:03 +01005498void memzero_extent_buffer(struct extent_buffer *eb, unsigned long start,
5499 unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05005500{
5501 size_t cur;
5502 size_t offset;
5503 struct page *page;
5504 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005505 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
5506 unsigned long i = (start_offset + start) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005507
5508 WARN_ON(start > eb->len);
5509 WARN_ON(start + len > eb->start + eb->len);
5510
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005511 offset = (start_offset + start) & (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005512
Chris Masond3977122009-01-05 21:25:51 -05005513 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005514 page = eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005515 WARN_ON(!PageUptodate(page));
5516
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005517 cur = min(len, PAGE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005518 kaddr = page_address(page);
David Sterbab159fa22016-11-08 18:09:03 +01005519 memset(kaddr + offset, 0, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005520
5521 len -= cur;
5522 offset = 0;
5523 i++;
5524 }
5525}
Chris Masond1310b22008-01-24 16:13:08 -05005526
David Sterba58e80122016-11-08 18:30:31 +01005527void copy_extent_buffer_full(struct extent_buffer *dst,
5528 struct extent_buffer *src)
5529{
5530 int i;
5531 unsigned num_pages;
5532
5533 ASSERT(dst->len == src->len);
5534
5535 num_pages = num_extent_pages(dst->start, dst->len);
5536 for (i = 0; i < num_pages; i++)
5537 copy_page(page_address(dst->pages[i]),
5538 page_address(src->pages[i]));
5539}
5540
Chris Masond1310b22008-01-24 16:13:08 -05005541void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5542 unsigned long dst_offset, unsigned long src_offset,
5543 unsigned long len)
5544{
5545 u64 dst_len = dst->len;
5546 size_t cur;
5547 size_t offset;
5548 struct page *page;
5549 char *kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005550 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
5551 unsigned long i = (start_offset + dst_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005552
5553 WARN_ON(src->len != dst_len);
5554
5555 offset = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005556 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005557
Chris Masond3977122009-01-05 21:25:51 -05005558 while (len > 0) {
David Sterbafb85fc92014-07-31 01:03:53 +02005559 page = dst->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05005560 WARN_ON(!PageUptodate(page));
5561
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005562 cur = min(len, (unsigned long)(PAGE_SIZE - offset));
Chris Masond1310b22008-01-24 16:13:08 -05005563
Chris Masona6591712011-07-19 12:04:14 -04005564 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005565 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005566
5567 src_offset += cur;
5568 len -= cur;
5569 offset = 0;
5570 i++;
5571 }
5572}
Chris Masond1310b22008-01-24 16:13:08 -05005573
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005574void le_bitmap_set(u8 *map, unsigned int start, int len)
5575{
5576 u8 *p = map + BIT_BYTE(start);
5577 const unsigned int size = start + len;
5578 int bits_to_set = BITS_PER_BYTE - (start % BITS_PER_BYTE);
5579 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(start);
5580
5581 while (len - bits_to_set >= 0) {
5582 *p |= mask_to_set;
5583 len -= bits_to_set;
5584 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005585 mask_to_set = ~0;
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005586 p++;
5587 }
5588 if (len) {
5589 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5590 *p |= mask_to_set;
5591 }
5592}
5593
5594void le_bitmap_clear(u8 *map, unsigned int start, int len)
5595{
5596 u8 *p = map + BIT_BYTE(start);
5597 const unsigned int size = start + len;
5598 int bits_to_clear = BITS_PER_BYTE - (start % BITS_PER_BYTE);
5599 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(start);
5600
5601 while (len - bits_to_clear >= 0) {
5602 *p &= ~mask_to_clear;
5603 len -= bits_to_clear;
5604 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005605 mask_to_clear = ~0;
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005606 p++;
5607 }
5608 if (len) {
5609 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5610 *p &= ~mask_to_clear;
5611 }
5612}
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005613
5614/*
5615 * eb_bitmap_offset() - calculate the page and offset of the byte containing the
5616 * given bit number
5617 * @eb: the extent buffer
5618 * @start: offset of the bitmap item in the extent buffer
5619 * @nr: bit number
5620 * @page_index: return index of the page in the extent buffer that contains the
5621 * given bit number
5622 * @page_offset: return offset into the page given by page_index
5623 *
5624 * This helper hides the ugliness of finding the byte in an extent buffer which
5625 * contains a given bit.
5626 */
5627static inline void eb_bitmap_offset(struct extent_buffer *eb,
5628 unsigned long start, unsigned long nr,
5629 unsigned long *page_index,
5630 size_t *page_offset)
5631{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005632 size_t start_offset = eb->start & ((u64)PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005633 size_t byte_offset = BIT_BYTE(nr);
5634 size_t offset;
5635
5636 /*
5637 * The byte we want is the offset of the extent buffer + the offset of
5638 * the bitmap item in the extent buffer + the offset of the byte in the
5639 * bitmap item.
5640 */
5641 offset = start_offset + start + byte_offset;
5642
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005643 *page_index = offset >> PAGE_SHIFT;
5644 *page_offset = offset & (PAGE_SIZE - 1);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005645}
5646
5647/**
5648 * extent_buffer_test_bit - determine whether a bit in a bitmap item is set
5649 * @eb: the extent buffer
5650 * @start: offset of the bitmap item in the extent buffer
5651 * @nr: bit number to test
5652 */
5653int extent_buffer_test_bit(struct extent_buffer *eb, unsigned long start,
5654 unsigned long nr)
5655{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005656 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005657 struct page *page;
5658 unsigned long i;
5659 size_t offset;
5660
5661 eb_bitmap_offset(eb, start, nr, &i, &offset);
5662 page = eb->pages[i];
5663 WARN_ON(!PageUptodate(page));
5664 kaddr = page_address(page);
5665 return 1U & (kaddr[offset] >> (nr & (BITS_PER_BYTE - 1)));
5666}
5667
5668/**
5669 * extent_buffer_bitmap_set - set an area of a bitmap
5670 * @eb: the extent buffer
5671 * @start: offset of the bitmap item in the extent buffer
5672 * @pos: bit number of the first bit
5673 * @len: number of bits to set
5674 */
5675void extent_buffer_bitmap_set(struct extent_buffer *eb, unsigned long start,
5676 unsigned long pos, unsigned long len)
5677{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005678 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005679 struct page *page;
5680 unsigned long i;
5681 size_t offset;
5682 const unsigned int size = pos + len;
5683 int bits_to_set = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005684 u8 mask_to_set = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005685
5686 eb_bitmap_offset(eb, start, pos, &i, &offset);
5687 page = eb->pages[i];
5688 WARN_ON(!PageUptodate(page));
5689 kaddr = page_address(page);
5690
5691 while (len >= bits_to_set) {
5692 kaddr[offset] |= mask_to_set;
5693 len -= bits_to_set;
5694 bits_to_set = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005695 mask_to_set = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005696 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005697 offset = 0;
5698 page = eb->pages[++i];
5699 WARN_ON(!PageUptodate(page));
5700 kaddr = page_address(page);
5701 }
5702 }
5703 if (len) {
5704 mask_to_set &= BITMAP_LAST_BYTE_MASK(size);
5705 kaddr[offset] |= mask_to_set;
5706 }
5707}
5708
5709
5710/**
5711 * extent_buffer_bitmap_clear - clear an area of a bitmap
5712 * @eb: the extent buffer
5713 * @start: offset of the bitmap item in the extent buffer
5714 * @pos: bit number of the first bit
5715 * @len: number of bits to clear
5716 */
5717void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
5718 unsigned long pos, unsigned long len)
5719{
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005720 u8 *kaddr;
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005721 struct page *page;
5722 unsigned long i;
5723 size_t offset;
5724 const unsigned int size = pos + len;
5725 int bits_to_clear = BITS_PER_BYTE - (pos % BITS_PER_BYTE);
Omar Sandoval2fe1d552016-09-22 17:24:20 -07005726 u8 mask_to_clear = BITMAP_FIRST_BYTE_MASK(pos);
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005727
5728 eb_bitmap_offset(eb, start, pos, &i, &offset);
5729 page = eb->pages[i];
5730 WARN_ON(!PageUptodate(page));
5731 kaddr = page_address(page);
5732
5733 while (len >= bits_to_clear) {
5734 kaddr[offset] &= ~mask_to_clear;
5735 len -= bits_to_clear;
5736 bits_to_clear = BITS_PER_BYTE;
Dan Carpenter9c894692016-10-12 11:33:21 +03005737 mask_to_clear = ~0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005738 if (++offset >= PAGE_SIZE && len > 0) {
Omar Sandoval3e1e8bb2015-09-29 20:50:30 -07005739 offset = 0;
5740 page = eb->pages[++i];
5741 WARN_ON(!PageUptodate(page));
5742 kaddr = page_address(page);
5743 }
5744 }
5745 if (len) {
5746 mask_to_clear &= BITMAP_LAST_BYTE_MASK(size);
5747 kaddr[offset] &= ~mask_to_clear;
5748 }
5749}
5750
Sergei Trofimovich33872062011-04-11 21:52:52 +00005751static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5752{
5753 unsigned long distance = (src > dst) ? src - dst : dst - src;
5754 return distance < len;
5755}
5756
Chris Masond1310b22008-01-24 16:13:08 -05005757static void copy_pages(struct page *dst_page, struct page *src_page,
5758 unsigned long dst_off, unsigned long src_off,
5759 unsigned long len)
5760{
Chris Masona6591712011-07-19 12:04:14 -04005761 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005762 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005763 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005764
Sergei Trofimovich33872062011-04-11 21:52:52 +00005765 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005766 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005767 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005768 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005769 if (areas_overlap(src_off, dst_off, len))
5770 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005771 }
Chris Masond1310b22008-01-24 16:13:08 -05005772
Chris Mason727011e2010-08-06 13:21:20 -04005773 if (must_memmove)
5774 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5775 else
5776 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005777}
5778
5779void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5780 unsigned long src_offset, unsigned long len)
5781{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005782 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005783 size_t cur;
5784 size_t dst_off_in_page;
5785 size_t src_off_in_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005786 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005787 unsigned long dst_i;
5788 unsigned long src_i;
5789
5790 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005791 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005792 "memmove bogus src_offset %lu move len %lu dst len %lu",
5793 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005794 BUG_ON(1);
5795 }
5796 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005797 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005798 "memmove bogus dst_offset %lu move len %lu dst len %lu",
5799 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005800 BUG_ON(1);
5801 }
5802
Chris Masond3977122009-01-05 21:25:51 -05005803 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005804 dst_off_in_page = (start_offset + dst_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005805 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005806 src_off_in_page = (start_offset + src_offset) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005807 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005808
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005809 dst_i = (start_offset + dst_offset) >> PAGE_SHIFT;
5810 src_i = (start_offset + src_offset) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005811
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005812 cur = min(len, (unsigned long)(PAGE_SIZE -
Chris Masond1310b22008-01-24 16:13:08 -05005813 src_off_in_page));
5814 cur = min_t(unsigned long, cur,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005815 (unsigned long)(PAGE_SIZE - dst_off_in_page));
Chris Masond1310b22008-01-24 16:13:08 -05005816
David Sterbafb85fc92014-07-31 01:03:53 +02005817 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005818 dst_off_in_page, src_off_in_page, cur);
5819
5820 src_offset += cur;
5821 dst_offset += cur;
5822 len -= cur;
5823 }
5824}
Chris Masond1310b22008-01-24 16:13:08 -05005825
5826void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5827 unsigned long src_offset, unsigned long len)
5828{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005829 struct btrfs_fs_info *fs_info = dst->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05005830 size_t cur;
5831 size_t dst_off_in_page;
5832 size_t src_off_in_page;
5833 unsigned long dst_end = dst_offset + len - 1;
5834 unsigned long src_end = src_offset + len - 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005835 size_t start_offset = dst->start & ((u64)PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005836 unsigned long dst_i;
5837 unsigned long src_i;
5838
5839 if (src_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005840 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005841 "memmove bogus src_offset %lu move len %lu len %lu",
5842 src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005843 BUG_ON(1);
5844 }
5845 if (dst_offset + len > dst->len) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005846 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005847 "memmove bogus dst_offset %lu move len %lu len %lu",
5848 dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005849 BUG_ON(1);
5850 }
Chris Mason727011e2010-08-06 13:21:20 -04005851 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005852 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5853 return;
5854 }
Chris Masond3977122009-01-05 21:25:51 -05005855 while (len > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005856 dst_i = (start_offset + dst_end) >> PAGE_SHIFT;
5857 src_i = (start_offset + src_end) >> PAGE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005858
5859 dst_off_in_page = (start_offset + dst_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005860 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005861 src_off_in_page = (start_offset + src_end) &
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005862 (PAGE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005863
5864 cur = min_t(unsigned long, len, src_off_in_page + 1);
5865 cur = min(cur, dst_off_in_page + 1);
David Sterbafb85fc92014-07-31 01:03:53 +02005866 copy_pages(dst->pages[dst_i], dst->pages[src_i],
Chris Masond1310b22008-01-24 16:13:08 -05005867 dst_off_in_page - cur + 1,
5868 src_off_in_page - cur + 1, cur);
5869
5870 dst_end -= cur;
5871 src_end -= cur;
5872 len -= cur;
5873 }
5874}
Chris Mason6af118ce2008-07-22 11:18:07 -04005875
David Sterbaf7a52a42013-04-26 14:56:29 +00005876int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005877{
Chris Mason6af118ce2008-07-22 11:18:07 -04005878 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005879
Miao Xie19fe0a82010-10-26 20:57:29 -04005880 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005881 * We need to make sure nobody is attaching this page to an eb right
Josef Bacik3083ee22012-03-09 16:01:49 -05005882 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005883 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005884 spin_lock(&page->mapping->private_lock);
5885 if (!PagePrivate(page)) {
5886 spin_unlock(&page->mapping->private_lock);
5887 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005888 }
5889
Josef Bacik3083ee22012-03-09 16:01:49 -05005890 eb = (struct extent_buffer *)page->private;
5891 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005892
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005893 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005894 * This is a little awful but should be ok, we need to make sure that
5895 * the eb doesn't disappear out from under us while we're looking at
5896 * this page.
5897 */
5898 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005899 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005900 spin_unlock(&eb->refs_lock);
5901 spin_unlock(&page->mapping->private_lock);
5902 return 0;
5903 }
5904 spin_unlock(&page->mapping->private_lock);
5905
Josef Bacik3083ee22012-03-09 16:01:49 -05005906 /*
5907 * If tree ref isn't set then we know the ref on this eb is a real ref,
5908 * so just return, this page will likely be freed soon anyway.
5909 */
5910 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5911 spin_unlock(&eb->refs_lock);
5912 return 0;
5913 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005914
David Sterbaf7a52a42013-04-26 14:56:29 +00005915 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005916}